/codecarbon_decorator_example.py Secret
Created
November 3, 2021 12:12
Star
You must be signed in to star a gist
Using CodeCarbon EmissionsTracker as a decorator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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