An open API service indexing awesome lists of open source software.

https://github.com/diewland/file-counter

File based Python Counter Utility
https://github.com/diewland/file-counter

counters python utility

Last synced: 3 months ago
JSON representation

File based Python Counter Utility

Awesome Lists containing this project

README

        

# file-counter
File based Python Counter Utility

```python
# initial
filename = 'test.tmp'
fc = FileCounter('test_count.dat')

# examples
fc.val # return counter value
fc.reset() # reset to zero
fc.set(64) # set value to 64
fc.up() # counter +1
fc.down() # counter -1
fc.remove() # remove file