Created
November 3, 2021 12:13
-
-
Save Kerl1310/be8b6cb30c0d19c6469b53ffa540797b to your computer and use it in GitHub Desktop.
Using CodeCarbon EmissionsTracker as a context manager
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 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