Skip to content Skip to sidebar Skip to footer
Showing posts with the label Profiling

Optimizing For Pypy

(This is a follow-up to Statistical profiler for PyPy) I'm running some Python code under PyPy … Read more Optimizing For Pypy

Profiling A Python Multiprocessing Pool

I'm trying to run cProfile.runctx() on each process in a multiprocessing pool, to get an idea o… Read more Profiling A Python Multiprocessing Pool

Speeding Up Datetime.strptime

I am using the following piece of code to extract a date from a string: try: my_date = datetime… Read more Speeding Up Datetime.strptime