UNO-Coders / Web-Development

Created this new Repository for Open Source Contribution for Beginners
GNU General Public License v3.0
51 stars 67 forks source link

added profiler with python decorator function #53

Closed codejunction closed 3 years ago

codejunction commented 3 years ago

Python Profiling Decorator Utility: Concepts:

  1. python decorators
  2. memory usage collection
  3. humanize raw data Libraries:
  4. Loguru for logging (in requirements.txt)
  5. tracemalloc for memory usage collection (stdlib)
  6. functools for creating decorator