Skip to content

Instantly share code, notes, and snippets.

@Kerl1310
Created November 3, 2021 12:13
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/be8b6cb30c0d19c6469b53ffa540797b to your computer and use it in GitHub Desktop.
Save Kerl1310/be8b6cb30c0d19c6469b53ffa540797b to your computer and use it in GitHub Desktop.
Using CodeCarbon EmissionsTracker as a context manager
from codecarbon import EmissionsTracker
class MyApplication:
'''
This is the main class in my application
'''
def handler():
'''
This is my handler function
'''
with EmissionsTracker() as tracker:
# Application code goes here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment