Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 36 million developers.
Sign up
Pinned
1,753 contributions in the last year
Contribution activity
May 2019
Created a pull request in cool-RR/PySnooper that received 3 comments
Allow using snoop as context manager
This lets the library be used like so:
import pysnooper def foo(): for i in range(100): pass with pysnooper.snoop(): y = 2 foo()
Output:
New var:..…
+288
−108
•
3
comments
Created an issue in cool-RR/PySnooper that received 5 comments
Repeatedly opening a file is very slow
This: from littleutils import timer import pysnooper f = open('/tmp/snoop2', 'w') @pysnooper.snoop(f.write) def foo(): for i in range(10000): pass w…
5
comments
10
contributions
in private repositories
May 1 – May 3