Skip to content

Instantly share code, notes, and snippets.

@Kerl1310
Created November 3, 2021 12:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kerl1310/3b03704ad6f5ab5f3d662b06b5776c25 to your computer and use it in GitHub Desktop.
Save Kerl1310/3b03704ad6f5ab5f3d662b06b5776c25 to your computer and use it in GitHub Desktop.
Using CodeCarbon EmissionsTracker as an object
from codecarbon import EmissionsTracker
tracker = EmissionsTracker()
class MyApplication:
'''
This is the main class in my application
'''
def handler():
'''
This is my handler function
'''
tracker.start()
# Application code goes here
tracker.stop()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment