codecarbon


Namecodecarbon JSON
Version 2.4.1 PyPI version JSON
download
home_pageNone
SummaryNone
upload_time2024-05-10 06:31:12
maintainerNone
docs_urlNone
authorMila, DataForGood, BCG GAMMA, Comet.ml, Haverford College
requires_python>=3.7
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![banner](docs/edit/images/banner.png)

Estimate and track carbon emissions from your computer, quantify and analyze their impact.

[**Documentation**](https://mlco2.github.io/codecarbon)

<br/>

[![](https://anaconda.org/conda-forge/codecarbon/badges/version.svg)](https://anaconda.org/conda-forge/codecarbon)
[![](https://img.shields.io/pypi/v/codecarbon?color=024758)](https://pypi.org/project/codecarbon/)
[![DOI](https://zenodo.org/badge/263364731.svg)](https://zenodo.org/badge/latestdoi/263364731)
[![Downloads](https://static.pepy.tech/badge/codecarbon/month)](https://pepy.tech/project/codecarbon)


- [About CodeCarbon πŸ’‘](#about-codecarbon-)
- [Quickstart πŸš€](#quickstart-)
    - [Installation πŸ”§](#installation-)
    - [Start to estimate your impact πŸ“](#start-to-estimate-your-impact-)
      - [Monitoring your whole machine](#monitoring-your-machine-)
      - [In your python code](#in-your-python-code-)
      - [Visualize](#visualize-)
- [Contributing 🀝](#contributing-)
- [Contact πŸ“](#contact-)

# About CodeCarbon πŸ’‘

**CodeCarbon** started with a quite simple question: 

**What is the carbon emission impact of my computer program? :shrug:**

We found some global data like "computing currently represents roughly 0.5% of the world’s energy consumption" but nothing on our individual/organisation level impact.

At **CodeCarbon**, we believe, along with Niels Bohr, that "Nothing exists until it is measured". So we found a way to estimate how much CO<sub>2</sub> we produce while running our code.

*How?*

We created a Python package that estimates your hardware electricity power consumption (GPU + CPU + RAM) and we apply to it the carbon intensity of the region where the computing is done.

![calculation Summary](docs/edit/images/calculation.png)

We explain more about this calculation in the [**Methodology**](https://mlco2.github.io/codecarbon/methodology.html#) section of the documentation.

Our hope is that this package will be used widely for estimating the carbon footprint of computing, and for establishing best practices with regards to the disclosure and reduction of this footprint.

**So ready to "change the world one run at a time"? Let's start with a very quick set up.**

# Quickstart πŸš€

## Installation πŸ”§

**From PyPI repository**
```python
pip install codecarbon
```

**From Conda repository**
```python
conda install -c conda-forge codecarbon
```
To see more installation options please refer to the documentation: [**Installation**](https://mlco2.github.io/codecarbon/installation.html#)

## Start to estimate your impact πŸ“

To get an experiment_id enter:
```python
! codecarbon init
```
You can now store it in a **.codecarbon.config** at the root of your project 
```python
[codecarbon]
log_level = DEBUG
save_to_api = True
experiment_id = 2bcbcbb8-850d-4692-af0d-76f6f36d79b2 #the experiment_id you get with init
```
Now you have 2 main options:

### Monitoring your machine πŸ’»

In your command prompt use:
```codecarbon monitor```
The package will track your emissions independently from your code.

### In your Python code 🐍
```python
from codecarbon import track_emissions
@track_emissions()
def your_function_to_track():
  # your code
  ```
The package will track the emissions generated by the execution of your function.

There is other ways to use **codecarbon** package, please refer to the documentation to learn more about it:  [**Usage**](https://mlco2.github.io/codecarbon/usage.html#)

## Visualize πŸ“Š

You can now visualize your experiment emissions on the [dashboard](https://dashboard.codecarbon.io/).
![dashboard](docs/edit/images/dashboard.png)

*Note that for now, all emissions data send to codecarbon API are public.*

> Hope you enjoy your first steps monitoring your carbon computing impact!
> Thanks to the incredible codecarbon community πŸ’ͺ🏼 a lot more options are available using *codecarbon* including:
> - offline mode
> - cloud mode
> - comet integration...
>
> Please explore the [**Documentation**](https://mlco2.github.io/codecarbon) to learn about it
> If ever what your are looking for is not yet implemented, let us know through the *issues* and even better become one of our πŸ¦ΈπŸΌβ€β™€οΈπŸ¦ΈπŸΌβ€β™‚οΈ contributors! more info πŸ‘‡πŸΌ


# Contributing 🀝

We are hoping that the open-source community will help us edit the code and make it better!

You are welcome to open issues, even suggest solutions and better still contribute the fix/improvement! We can guide you if you're not sure where to start but want to help us out πŸ₯‡

In order to contribute a change to our code base, please submit a pull request (PR) via GitHub and someone from our team will go over it and accept it.

Check out our [contribution guidelines :arrow_upper_right:](https://github.com/mlco2/codecarbon/blob/master/CONTRIBUTING.md)

Contact [@vict0rsch](https://github.com/vict0rsch) to be added to our slack workspace if you want to contribute regularly!


# Contact πŸ“

Maintainers are [@vict0rsch](https://github.com/vict0rsch) [@benoit-cty](https://github.com/benoit-cty) and [@SaboniAmine](https://github.com/saboniamine). Codecarbon is developed by volunteers from [**Mila**](http://mila.quebec) and the [**DataForGoodFR**](https://twitter.com/dataforgood_fr) community alongside donated professional time of engineers at [**Comet.ml**](https://comet.ml) and [**BCG GAMMA**](https://www.bcg.com/en-nl/beyond-consulting/bcg-gamma/default).

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "codecarbon",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": null,
    "author": "Mila, DataForGood, BCG GAMMA, Comet.ml, Haverford College",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/20/c6/dcbb91ea58b0c739618446eb3e2b2e4efc74c442e2fd226563a2b7bd3d1a/codecarbon-2.4.1.tar.gz",
    "platform": null,
    "description": "![banner](docs/edit/images/banner.png)\n\nEstimate and track carbon emissions from your computer, quantify and analyze their impact.\n\n[**Documentation**](https://mlco2.github.io/codecarbon)\n\n<br/>\n\n[![](https://anaconda.org/conda-forge/codecarbon/badges/version.svg)](https://anaconda.org/conda-forge/codecarbon)\n[![](https://img.shields.io/pypi/v/codecarbon?color=024758)](https://pypi.org/project/codecarbon/)\n[![DOI](https://zenodo.org/badge/263364731.svg)](https://zenodo.org/badge/latestdoi/263364731)\n[![Downloads](https://static.pepy.tech/badge/codecarbon/month)](https://pepy.tech/project/codecarbon)\n\n\n- [About CodeCarbon \ud83d\udca1](#about-codecarbon-)\n- [Quickstart \ud83d\ude80](#quickstart-)\n    - [Installation \ud83d\udd27](#installation-)\n    - [Start to estimate your impact \ud83d\udccf](#start-to-estimate-your-impact-)\n      - [Monitoring your whole machine](#monitoring-your-machine-)\n      - [In your python code](#in-your-python-code-)\n      - [Visualize](#visualize-)\n- [Contributing \ud83e\udd1d](#contributing-)\n- [Contact \ud83d\udcdd](#contact-)\n\n# About CodeCarbon \ud83d\udca1\n\n**CodeCarbon** started with a quite simple question: \n\n**What is the carbon emission impact of my computer program? :shrug:**\n\nWe found some global data like \"computing currently represents roughly 0.5% of the world\u2019s energy consumption\" but nothing on our individual/organisation level impact.\n\nAt **CodeCarbon**, we believe, along with Niels Bohr, that \"Nothing exists until it is measured\". So we found a way to estimate how much CO<sub>2</sub> we produce while running our code.\n\n*How?*\n\nWe created a Python package that estimates your hardware electricity power consumption (GPU + CPU + RAM) and we apply to it the carbon intensity of the region where the computing is done.\n\n![calculation Summary](docs/edit/images/calculation.png)\n\nWe explain more about this calculation in the [**Methodology**](https://mlco2.github.io/codecarbon/methodology.html#) section of the documentation.\n\nOur hope is that this package will be used widely for estimating the carbon footprint of computing, and for establishing best practices with regards to the disclosure and reduction of this footprint.\n\n**So ready to \"change the world one run at a time\"? Let's start with a very quick set up.**\n\n# Quickstart \ud83d\ude80\n\n## Installation \ud83d\udd27\n\n**From PyPI repository**\n```python\npip install codecarbon\n```\n\n**From Conda repository**\n```python\nconda install -c conda-forge codecarbon\n```\nTo see more installation options please refer to the documentation: [**Installation**](https://mlco2.github.io/codecarbon/installation.html#)\n\n## Start to estimate your impact \ud83d\udccf\n\nTo get an experiment_id enter:\n```python\n! codecarbon init\n```\nYou can now store it in a **.codecarbon.config** at the root of your project \n```python\n[codecarbon]\nlog_level = DEBUG\nsave_to_api = True\nexperiment_id = 2bcbcbb8-850d-4692-af0d-76f6f36d79b2 #the experiment_id you get with init\n```\nNow you have 2 main options:\n\n### Monitoring your machine \ud83d\udcbb\n\nIn your command prompt use:\n```codecarbon monitor```\nThe package will track your emissions independently from your code.\n\n### In your Python code \ud83d\udc0d\n```python\nfrom codecarbon import track_emissions\n@track_emissions()\ndef your_function_to_track():\n  # your code\n  ```\nThe package will track the emissions generated by the execution of your function.\n\nThere is other ways to use **codecarbon** package, please refer to the documentation to learn more about it:  [**Usage**](https://mlco2.github.io/codecarbon/usage.html#)\n\n## Visualize \ud83d\udcca\n\nYou can now visualize your experiment emissions on the [dashboard](https://dashboard.codecarbon.io/).\n![dashboard](docs/edit/images/dashboard.png)\n\n*Note that for now, all emissions data send to codecarbon API are public.*\n\n> Hope you enjoy your first steps monitoring your carbon computing impact!\n> Thanks to the incredible codecarbon community \ud83d\udcaa\ud83c\udffc a lot more options are available using *codecarbon* including:\n> - offline mode\n> - cloud mode\n> - comet integration...\n>\n> Please explore the [**Documentation**](https://mlco2.github.io/codecarbon) to learn about it\n> If ever what your are looking for is not yet implemented, let us know through the *issues* and even better become one of our \ud83e\uddb8\ud83c\udffc\u200d\u2640\ufe0f\ud83e\uddb8\ud83c\udffc\u200d\u2642\ufe0f contributors! more info \ud83d\udc47\ud83c\udffc\n\n\n# Contributing \ud83e\udd1d\n\nWe are hoping that the open-source community will help us edit the code and make it better!\n\nYou are welcome to open issues, even suggest solutions and better still contribute the fix/improvement! We can guide you if you're not sure where to start but want to help us out \ud83e\udd47\n\nIn order to contribute a change to our code base, please submit a pull request (PR) via GitHub and someone from our team will go over it and accept it.\n\nCheck out our [contribution guidelines :arrow_upper_right:](https://github.com/mlco2/codecarbon/blob/master/CONTRIBUTING.md)\n\nContact [@vict0rsch](https://github.com/vict0rsch) to be added to our slack workspace if you want to contribute regularly!\n\n\n# Contact \ud83d\udcdd\n\nMaintainers are [@vict0rsch](https://github.com/vict0rsch) [@benoit-cty](https://github.com/benoit-cty) and [@SaboniAmine](https://github.com/saboniamine). Codecarbon is developed by volunteers from [**Mila**](http://mila.quebec) and the [**DataForGoodFR**](https://twitter.com/dataforgood_fr) community alongside donated professional time of engineers at [**Comet.ml**](https://comet.ml) and [**BCG GAMMA**](https://www.bcg.com/en-nl/beyond-consulting/bcg-gamma/default).\n",
    "bugtrack_url": null,
    "license": null,
    "summary": null,
    "version": "2.4.1",
    "project_urls": {
        "Changelog": "https://github.com/mlco2/codecarbon/releases",
        "Dashboard": "http://dashboard.codecarbon.io/",
        "Documentation": "https://mlco2.github.io/codecarbon/",
        "Homepage": "https://codecarbon.io/",
        "Issues": "https://github.com/mlco2/codecarbon/issues",
        "Repository": "https://github.com/mlco2/codecarbon"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ec33b893252a46a2084baa0c54045864e1d73dc626e73c5cead81b9a6e383fa",
                "md5": "609e624f66586bcdc2ac49d6ac55f87d",
                "sha256": "db0ad0d439b56f64a8cc393cd04aa2579c0a0af4317c988b94273a6507352314"
            },
            "downloads": -1,
            "filename": "codecarbon-2.4.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "609e624f66586bcdc2ac49d6ac55f87d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 491149,
            "upload_time": "2024-05-10T06:31:09",
            "upload_time_iso_8601": "2024-05-10T06:31:09.519861Z",
            "url": "https://files.pythonhosted.org/packages/6e/c3/3b893252a46a2084baa0c54045864e1d73dc626e73c5cead81b9a6e383fa/codecarbon-2.4.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "20c6dcbb91ea58b0c739618446eb3e2b2e4efc74c442e2fd226563a2b7bd3d1a",
                "md5": "da1ea79d605eb95e602a7af903fffb15",
                "sha256": "03de48053de64cb6bc01373e1341f90f1d589d5e2c632110b3f6a45a4d616aeb"
            },
            "downloads": -1,
            "filename": "codecarbon-2.4.1.tar.gz",
            "has_sig": false,
            "md5_digest": "da1ea79d605eb95e602a7af903fffb15",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 468278,
            "upload_time": "2024-05-10T06:31:12",
            "upload_time_iso_8601": "2024-05-10T06:31:12.126219Z",
            "url": "https://files.pythonhosted.org/packages/20/c6/dcbb91ea58b0c739618446eb3e2b2e4efc74c442e2fd226563a2b7bd3d1a/codecarbon-2.4.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-10 06:31:12",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "mlco2",
    "github_project": "codecarbon",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "codecarbon"
}
        
Elapsed time: 0.24448s