Skip to content

Instantly share code, notes, and snippets.

@Kerl1310
Created November 3, 2021 12:12
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Using CodeCarbon EmissionsTracker as a decorator
from codecarbon import track_emissions
tracker = EmissionsTracker()
class MyApplication:
'''
This is the main class in my application
'''
@track_emissions
def handler():
'''
This is my handler function
'''
# Application code goes here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment