Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 356 Bytes

README.md

File metadata and controls

30 lines (19 loc) · 356 Bytes

PyToolBag

Simple tools that I use for my python applications.

ResWatcher

To watch RAM and CPU consumption.

/res_watcher

Usage:

from res_watcher import ResWatcher

def main():
  # All amazing things that you wanna do
  pass

if __name__ == '__main__':
  watcher = ResWatcher()
  watcher.start()
  main()
  watcher.stop()