20
- Python Python is a Bad Programming Language
- Python Etl Python ETL vs. ETL Tools
- Python Python’s Data Classes a Data Engineer’s best friend
- Rust Why you shouldn’t use Rust
- Python Sphinx Auto Documenting a Python Project Using Sphinx
- Python Sphinx Write Beautiful Python Documentation with Sphinx
- Devops Test Plans Automated and Manual Testing with Azure Test Plan
- Try out Python profiling
import cProfile
import pstats
with cProfile.Profile() as pr:
yourfunctionhere()
stats = pstats.Stats(pr)
stats.sort_stats(pstats.SortKey.TIME)
stats.print_stats()