Beispiel #1
0
#!/usr/bin/env python

#
# python ghellanzb statistics module
#

import ghellanzb_statistics as stats
from time import gmtime, strftime

stats = stats.get_overall()
print '\nDOWNLOAD STATS\n'
print 'Current Month :      %s' % stats['current_month']
print 'Last 30 days :       %s' % stats['last_30']
print 'Current Week :       %s' % stats['current_week']
Beispiel #2
0
today = strftime('%Y%m%d')
if today != ldate[:8] :
    print '\nLatest stat are not from today'
    response = stats.add_new_day(ldate, lvalue)
    if response == True:
        print 'Save successfull'
    else:
        print 'Problem while saving'
    print '\nWriting value to latest'
    response = stats.write_latest(value)
    if response:
        print 'Write latest succesful'
    else:
        print 'Problem while writing latest value'
else :
    print '\nLatest stats are from today'
    nvalue = int(lvalue) + value
    response = stats.write_latest(nvalue)
    if response :
        print 'New value added to lastest file\nNow latest value :     %s' % nvalue
    else :
        print 'Problem while adding new value to latest'

""" we build the stats that will be displayed """
stat_o = stats.get_overall()
print '\nDOWNLOAD STATS\n'
print 'Current Month :      %s' % stats.pretty_display(stat_o['current_month'])
print 'Last 30 days :       %s' % stats.pretty_display(stat_o['last_30'])
print 'Current Week :       %s' % stats.pretty_display(stat_o['current_week'])
print 'Last 7 days :        %s' % stats.pretty_display(stat_o['last_7'])
Beispiel #3
0
""" we compare today's date and latest date """
today = strftime('%Y%m%d')
if today != ldate[:8]:
    print '\nLatest stat are not from today'
    response = stats.add_new_day(ldate, lvalue)
    if response == True:
        print 'Save successfull'
    else:
        print 'Problem while saving'
    print '\nWriting value to latest'
    response = stats.write_latest(value)
    if response:
        print 'Write latest succesful'
    else:
        print 'Problem while writing latest value'
else:
    print '\nLatest stats are from today'
    nvalue = int(lvalue) + value
    response = stats.write_latest(nvalue)
    if response:
        print 'New value added to lastest file\nNow latest value :     %s' % nvalue
    else:
        print 'Problem while adding new value to latest'
""" we build the stats that will be displayed """
stat_o = stats.get_overall()
print '\nDOWNLOAD STATS\n'
print 'Current Month :      %s' % stats.pretty_display(stat_o['current_month'])
print 'Last 30 days :       %s' % stats.pretty_display(stat_o['last_30'])
print 'Current Week :       %s' % stats.pretty_display(stat_o['current_week'])
print 'Last 7 days :        %s' % stats.pretty_display(stat_o['last_7'])
Beispiel #4
0
#!/usr/bin/env python

#
# python ghellanzb statistics module
#

import ghellanzb_statistics as stats
from time import gmtime, strftime


stats = stats.get_overall()
print "\nDOWNLOAD STATS\n"
print "Current Month :      %s" % stats["current_month"]
print "Last 30 days :       %s" % stats["last_30"]
print "Current Week :       %s" % stats["current_week"]