Skip to content

k-nut/counter-reimplemented

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#Counter - reimplemented

A small reimplementation of Python's Counter Class feature that lets you increment values in a dictionary like object without having to check if they are there.

c = Counter()
c['foobar'] += 1 # Note: No KeyError here!
assert c['foobar'] == 1

Setup

Install py.test (and pytest-watch) and run the test. Run ptw . to rereun the tets whenever a files changes

pip install -r requirements.txt

Other

Originally presented at Berlin Hack and Tell #43

About

A small reimplementation of one of some features of python's collections.Counter class

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages