{ "info": { "author": "Sorelle Friedler, Kadan Lottick, Silvia Susai", "author_email": "sorelle@cs.haverford.edu", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python :: 3" ], "description": "# energyusage\n\nA Python package that measures the environmental impact of computation. Provides a function to\nevaluate the energy usage and related carbon emissions of another function.\nEmissions are calculated based on the user's location via the GeoJS API and that location's\nenergy mix data (sources: US E.I.A and eGRID for the year 2016).\n\n## Installation\n\nTo install, simply `$ pip install energyusage`.\n\n## Usage\n\nTo evaluate the emissions of a function, just call `energyusage.evaluate` with the function\nname and the arguments it requires.\n\n```python\nimport energyusage\n\n# user function to be evaluated\ndef recursive_fib(n):\n if (n <= 2): return 1\n else: return recursive_fib(n-1) + recursive_fib(n-2)\n\nenergyusage.evaluate(recursive_fib, 40, pdf=True)\n# returns 102,334,155\n```\nIt will return the value of your function, while also printing out the energy usage report on the command line.\nOptional keyword arguments:\n* `pdf`(default = `False`): generates a PDF report, alongside the command-line utility\n* `powerLoss` (default = `0.8`): accounts for PSU loss, can be set by user if known for higher accuracy of results\n* `energyOutput` (default = `False`): prints amount of energy used by the process and time taken. The order is time, enery used, return of function\n* `printToScreen` (default = `True`): controls whether there is a terminal printout of the package running\n\n### Energy Report\nThe report that will be printed out will look like the one below. The second and third lines will show a real-time reading that disappears once the process has finished evaluating.\n```\nLocation: Pennsylvania\n--------------------------------------------------------------------------------\n------------------------------- Final Readings -------------------------------\n--------------------------------------------------------------------------------\nAverage baseline wattage: 4.99 watts\nAverage total wattage: 18.32 watts\nAverage process wattage: 13.33 watts\nProcess duration: 0:00:16\n--------------------------------------------------------------------------------\n------------------------------- Energy Data -------------------------------\n--------------------------------------------------------------------------------\n Energy mix in Pennsylvania \nCoal: 25.40%\nOil: 0.20%\nNatural Gas: 31.60%\nLow Carbon: 42.50%\n--------------------------------------------------------------------------------\n------------------------------- Emissions -------------------------------\n--------------------------------------------------------------------------------\nEffective emission: 3.00e-05 kg CO2\nEquivalent miles driven: 1.23e-11 miles\nEquivalent minutes of 32-inch LCD TV watched: 1.85e-02 minutes\nPercentage of CO2 used in a US household/day: 9.86e-12%\n--------------------------------------------------------------------------------\n------------------------- Assumed Carbon Equivalencies -------------------------\n--------------------------------------------------------------------------------\nCoal: 996 kg CO2/MWh\nPetroleum: 817 kg CO2/MWh\nNatural gas: 744 kg CO2/MWh\nLow carbon: 0 kg CO2/MWh\n--------------------------------------------------------------------------------\n------------------------- Emissions Comparison -------------------------\n--------------------------------------------------------------------------------\n Quantities below expressed in kg CO2 \n US Europe Global minus US/Europe\nMax: Wyoming 7.10e-05 Kosovo 7.28e-05 Mongolia 7.13e-05\nMedian: Mississippi 3.29e-05 Ukraine 5.09e-05 Korea, South 5.82e-05\nMin: Vermont 1.99e-06 Iceland 1.31e-05 Bhutan 8.11e-06\n--------------------------------------------------------------------------------\n--------------------------------------------------------------------------------\nProcess used: 7.72e-05 kWh\n```\nThe report is divided into several sections.\n* **Final Readings**: Presents an average of:\n\t* *Average baseline wattage*: your computer's average power usage minus the process, ran for 10 seconds before starting your process\n\t* *Average total wattage*: your computer's average power usage while the process runs\n\t* *Average process usage*: the difference between the baseline and total, highlighting the usage solely from the specific process you evaluated\n\t* *Process duration*: how long your program ran for\n\n* **Energy Data**: The energy mix of the location.\n\n* **Emissions**: The effective CO2 emissions of running the program one time and some real-world equivalents to those emissions.\n\n* **Assumed Carbon Equivalencies**: The formulas used to convert from kWh to CO2 based on the energy mix of the location (for international locations, see below for more information).\n\n* **Emissions Comparison**: What the emissions would be for the same energy used in a representative group of US states and countries.\n\nNot part of a section is the energy used by the process, which is optionally printed.\n\nThe PDF report contains the same sections, but does not include the process duration or the emissions comparison momentarily.\n\n## Methodology\n### Power Measurement\n#### CPU\nWe calculate CPU power usage via the RAPL (Running Average Power Limit) interfaces found on Intel processors. These are non-architectural model-specific registers that provide power-related information\nabout the CPU. They are used primarily for limiting power consumption, but the Energy Status\nregister (MSR_PKG_ENERGY_STATUS) allows for power measurement.\n\nThe RAPL interface differentiates between several domains, based on the number of processors. For a single processor machine:\n * Package\n * Power planes:\n * Core\n * Uncore\n * DRAM\n\nFor a machine with multiple processors:\n * Package 0\n * Package 1\n * ...\n * Package n\n * DRAM\n\nPresently, we use the Package domain (or a sum of all of the domains, for a multi-processor machine), which represents the complete processor package.\n\nAs outlined by [Vince Weaver](http://web.eece.maine.edu/~vweaver/projects/rapl/), there are multiple ways to access the RAPL interface data, namely:\n * Using perf_event interface\n * Reading the underlying MSR\n * Reading the files under `/sys/class/powercap/intel-rapl/`\n\nWe elected to use the final method because it is the only one that does not require sudo access. We read the `energy_uj.txt` files inside the package folder(s) `intel-rapl:*`. These files represent the energy used in microjoules, and they update roughly every millisecond. The value in the file increases to the point of overflow and then resets. We take 2 readings with a delay in-between, and then calculate the wattage based on the difference (energy) and the delay (time). To avoid errors due to the reset of the file, we discard negative values.\n\nFor more information on the RAPL interface, consult the [Intel\u00ae 64 and IA-32 Architectures Software Developer's Manual](https://software.intel.com/sites/default/files/managed/39/c5/325462-sdm-vol-1-2abcd-3abcd.pdf).\n\n#### GPU\nTo the package measurement we also add the power usage of the GPU for machines that have an Nvidia GPU that support the NVIDIA-smi program.\n\nThe NVIDIA-smi is a command-line utility that allows for the querying of information about the GPU. If the GPU is identified as valid, we use the built-in method to query the current wattage, and then convert the output into a float.\n\nMore information on NVIDIA-smi can be found on the [Nvidia website](https://developer.nvidia.com/nvidia-system-management-interface).\n\n\n### Calculating CO2 Emissions\n#### Location\nIn order to accurately calculate the CO\u2082 emissions associated with the computational power used, we determine the geographical location of the user via their IP address with the help of the [GeoJS](https://www.geojs.io/) API. If the location cannot be determined, we use the United States as the default.\n\nLocation is especially important as the emissions differ based on the country's (and, in the case of the United States, the state's) energy mix.\n\n#### Energy Mix Information\nWe obtained international energy mix data from the [U.S. Energy Information Administration data](https://www.eia.gov/beta/international/data/browser/#/?pa=0000000010000000000000000000000000000000000000000000000000u&c=ruvvvvvfvsujvv1vrvvvvfvvvvvvfvvvou20evvvfvrvvvvvvurs&ct=0&vs=INTL.44-2-AFG-QBTU.A&cy=2016&vo=0&v=H&start=2014&end=2016) for the year 2016. Specifically, we looked at the energy consumption of countries worldwide, broken down by energy source. For the data points labeled *(s)* (meaning that the value is too small for the number of decimal places shown), we approximated those amounts to 0. No data was available for, and thus we removed from consideration, the following: Former Czechoslovakia, Former Serbia and Montenegro, Former U.S.S.R., Former Yugoslavia, Hawaiian Trade Zone, East Germany and West Germany.\n\nOur United States energy mix and emissions data was obtained from the [U.S. Environmental Protection Agency eGRID data](https://www.epa.gov/sites/production/files/2018-02/egrid2016_summarytables.xlsx) for the year 2016. We used the *State Resource Mix* section for displaying the energy mix, and the *State Output Emission Rates* section for calculating emissions in the United States. We did not use the *otherFossil* data as the values were predominantly 0 (and in cases in which the value was nonzero, it was below 1%).\n\nAs of July 2019, the most recent eGRID data was from the year 2016. We elected to use 2016 U.S. E.I.A. data for consistency between the data sources.\n\n#### Conversion to CO2\nSince the international data only contained an energy mix, and no emission data, we reverse-engineered the formulas used in the eGRID data. This gives us additionally consistency between the separate datasets.\n* *Coal*: 2195.20 lbs CO2/MWh = 995.725971 kg CO2/MWh\n* *Petroleum*: lbs CO2/MWh = 816.6885263 kg CO2/MWh\n* *Natural gas*: 1639.89 lbs CO2/MWh = 743.8415916 kg CO2/MWh\n\n\n## Related Work\n* In their paper [*Energy and Policy Considerations for Deep Learning in NLP*](https://arxiv.org/abs/1906.02243), Strubell et. al not only analyze the computational power needed for training deep learning models in NLP, but further convert the data into carbon emissions and cost. Our tool aims to facilitate this analysis for developers in a single package. We do not consider cost, instead choosing to focus solely on the environmental impact. Further, we do not focus on a specific computational area. We also extend their analysis of carbon emissions by including international data on energy consumption and CO2 emissions for localized analysis of the carbon footprint of the tested program.\n\n## Limitations\n* Due to the methods in which the energy measurement is being done (through the Intel RAPL\ninterface and NVIDIA-smi), our package is only available on Linux kernels that have the\nRAPL interface and/or machines with an Nvidia GPU.\n\n* A country\u2019s overall energy consumption mix is not necessarily representative of the mix of energy sources used to produce electricity (and even electricity production is not necessarily representative of electricity consumption due to imports/exports). However, the E.I.A. data is the most geographically comprehensive that we have found. We are working on obtaining even more accurate data.\n\n\n## Acknowledgements\nWe would like to thank [Jon Wilson](https://www.haverford.edu/users/jwilson) for all his valuable insight with regards to the environmental aspect of our project.\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/responsibleproblemsolving/energy-usage", "keywords": "", "license": "Apache 2.0", "maintainer": "", "maintainer_email": "", "name": "energyusage", "package_url": "https://pypi.org/project/energyusage/", "platform": "", "project_url": "https://pypi.org/project/energyusage/", "project_urls": { "Homepage": "https://github.com/responsibleproblemsolving/energy-usage" }, "release_url": "https://pypi.org/project/energyusage/0.0.11/", "requires_dist": [ "requests", "reportlab" ], "requires_python": "", "summary": "Measuring the environmental impact of computation", "version": "0.0.11" }, "last_serial": 5842605, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "fec8dbdda0c546310cdf1b095c103b21", "sha256": "02ec02c3117a3ba094034560e123694574900703e7002b3aaf85a28f30380e73" }, "downloads": -1, "filename": "energyusage-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "fec8dbdda0c546310cdf1b095c103b21", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 33425, "upload_time": "2019-07-23T18:56:07", "url": "https://files.pythonhosted.org/packages/d5/4c/a7af5da9aac2ecf9c91743aed385c4068a44720260b3b43f2833c4cd982f/energyusage-0.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "51f99200e96445b8f19f3d0ea423339c", "sha256": "2e57692d5b56992a15a781ef1bd63cb69de3b31fa2b81318c18cf761200ade53" }, "downloads": -1, "filename": "energyusage-0.0.1.tar.gz", "has_sig": false, "md5_digest": "51f99200e96445b8f19f3d0ea423339c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29784, "upload_time": "2019-07-23T18:56:09", "url": "https://files.pythonhosted.org/packages/68/a5/99207db5398e2255f8ef3fd591704aa17a0d11bb8e784d18b45d9262da92/energyusage-0.0.1.tar.gz" } ], "0.0.10": [ { "comment_text": "", "digests": { "md5": "761571a24272d9a4f34c4cc2b2ce16f5", "sha256": "1de2506cb07de26a78a480eab620ae876a6177fa509af72f61f23e12bc44678a" }, "downloads": -1, "filename": "energyusage-0.0.10-py3-none-any.whl", "has_sig": false, "md5_digest": "761571a24272d9a4f34c4cc2b2ce16f5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43519, "upload_time": "2019-08-21T16:34:48", "url": "https://files.pythonhosted.org/packages/28/a3/16c72eb2f340ab2a34191d3f16229f90b1cffe9364d9a346881f09b3fba0/energyusage-0.0.10-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8cc86201ebf4e4a7c8edc6fe20afae07", "sha256": "fb04b7d26fa7351ba2f68080e5b2743d004e8d2bf13d8c8771138327771f68fa" }, "downloads": -1, "filename": "energyusage-0.0.10.tar.gz", "has_sig": false, "md5_digest": "8cc86201ebf4e4a7c8edc6fe20afae07", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43636, "upload_time": "2019-08-21T16:34:49", "url": "https://files.pythonhosted.org/packages/3f/ba/bcdf57c7d9de1115b93ba7f4e02fd533f0933a79d0bd7acdf05468e29ce0/energyusage-0.0.10.tar.gz" } ], "0.0.11": [ { "comment_text": "", "digests": { "md5": "dde32b4bfbd25c165a7cd214920a4147", "sha256": "af9b623e8611c3ab86bc092f76208c7e18bd37b34605fdf62863ef4ca98f3afe" }, "downloads": -1, "filename": "energyusage-0.0.11-py3-none-any.whl", "has_sig": false, "md5_digest": "dde32b4bfbd25c165a7cd214920a4147", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43691, "upload_time": "2019-09-17T16:21:39", "url": "https://files.pythonhosted.org/packages/24/be/0bec08929d92680d266daae617c55a83f636fdb755718f24adab6d343afc/energyusage-0.0.11-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e932d1a198f62f2d9f6687339fcf4d5d", "sha256": "6e27f4c4247e16c2d392826b80184c91e909eb213b838d1f6b540b8558269746" }, "downloads": -1, "filename": "energyusage-0.0.11.tar.gz", "has_sig": false, "md5_digest": "e932d1a198f62f2d9f6687339fcf4d5d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43860, "upload_time": "2019-09-17T16:21:44", "url": "https://files.pythonhosted.org/packages/ff/5a/3788d689f8ec192517057ec591996617129b043ec928abe88bea18490c41/energyusage-0.0.11.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "cebd0ec600975f0c346000384e6192bd", "sha256": "bd2f1a920909858366ba7e1ebef5698e4980988e5fed57130a495202fe1aab7a" }, "downloads": -1, "filename": "energyusage-0.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "cebd0ec600975f0c346000384e6192bd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 39543, "upload_time": "2019-07-26T14:52:01", "url": "https://files.pythonhosted.org/packages/7b/2c/90e19c19767d729df601f125d8f74967fa92275dd4cbed14f1b105de2726/energyusage-0.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dbf4c3c3679f4f986549d6701f4c8f8a", "sha256": "40e379c7571fbfb1eee0cdc59d69c219a28f4c0b97e09e6b34024c49024fedbe" }, "downloads": -1, "filename": "energyusage-0.0.2.tar.gz", "has_sig": false, "md5_digest": "dbf4c3c3679f4f986549d6701f4c8f8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39497, "upload_time": "2019-07-26T14:52:02", "url": "https://files.pythonhosted.org/packages/90/bb/2d4a32443d9da2a698ad521c14970a3a0fd1d37ff544dfdac362eeae9a6e/energyusage-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "bf8e4d62b14c10c4238a1686699136a5", "sha256": "69028f8c6a91a59ce01f80b71a252d979c45e65e57d4d6fb1c3006495092c874" }, "downloads": -1, "filename": "energyusage-0.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "bf8e4d62b14c10c4238a1686699136a5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 41882, "upload_time": "2019-07-31T17:01:11", "url": "https://files.pythonhosted.org/packages/f6/20/cf613382b2c433791ffc22196b499ae5a784809cf47eb4b9e80048de5f4c/energyusage-0.0.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c24db25ed8a773e27d55d440061df463", "sha256": "fa686876b6c360710b252c888523bfb310ec9b279f70645aeffa05f9b1883a1d" }, "downloads": -1, "filename": "energyusage-0.0.3.tar.gz", "has_sig": false, "md5_digest": "c24db25ed8a773e27d55d440061df463", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41531, "upload_time": "2019-07-31T17:01:13", "url": "https://files.pythonhosted.org/packages/2f/9d/993fd2f0c3ab87b3ff3274fd772501ccc055aa08ddce15ad21dc857bf77b/energyusage-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "c00a11a612958dce2c2a0acdc14e24c8", "sha256": "b020d9e9d29bf34bc5a5f7f1407bfc4d3a78ae1b3ded1f242462b8898718e0e3" }, "downloads": -1, "filename": "energyusage-0.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "c00a11a612958dce2c2a0acdc14e24c8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 41756, "upload_time": "2019-08-02T15:06:55", "url": "https://files.pythonhosted.org/packages/8b/98/23539b48b87420b8c93fea94dd1f76002bd036c3a1162e3fa936a1191fe5/energyusage-0.0.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b1e47e1a47ffe1cded1032982570a409", "sha256": "6f9dddca556d1c51acf1c92aa378efc53ef7c6fde8bcd8d0c4be43c21cc19867" }, "downloads": -1, "filename": "energyusage-0.0.4.tar.gz", "has_sig": false, "md5_digest": "b1e47e1a47ffe1cded1032982570a409", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41502, "upload_time": "2019-08-02T15:06:58", "url": "https://files.pythonhosted.org/packages/c3/af/43637558fb49f69a910e31963abea177881fc2dfda50f2fd5b4fc0a398f7/energyusage-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "6641a73aa7baecf189abb1b1f89b9071", "sha256": "734e64e9d7aaacf88952a7fd05db72ab9f16c4dda48d7a98e11a0bb837a465c8" }, "downloads": -1, "filename": "energyusage-0.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "6641a73aa7baecf189abb1b1f89b9071", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 42865, "upload_time": "2019-08-14T23:59:55", "url": "https://files.pythonhosted.org/packages/a7/e9/8d9aaf383f6cd112dcd3d51b3fde145f5a86344b667691b5d4d7f278a3a8/energyusage-0.0.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "abec75aa671d390566a8b1cf30a9d5a6", "sha256": "01e2dfd0bc5b615beb27257f440abc4f93aecfc321909c6f9445d48baa397d07" }, "downloads": -1, "filename": "energyusage-0.0.5.tar.gz", "has_sig": false, "md5_digest": "abec75aa671d390566a8b1cf30a9d5a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42653, "upload_time": "2019-08-14T23:59:56", "url": "https://files.pythonhosted.org/packages/7d/36/6d0dea253dc3819fce2bb284fa0da05d12d604137a0846e340792d6f8af0/energyusage-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "4f9a8aae2ad75b998fe609cd098c09da", "sha256": "3bfdf6ae0717223fbe64807d2fafb35d65fe336c20d4bd6efcc8ff0e2764d6f2" }, "downloads": -1, "filename": "energyusage-0.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "4f9a8aae2ad75b998fe609cd098c09da", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 42919, "upload_time": "2019-08-17T23:29:27", "url": "https://files.pythonhosted.org/packages/c0/7d/7f65903b4571663a24ea2d7a34ccde9b37b909c9d637f3ca8cd7c95ebc87/energyusage-0.0.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "87791bc8eb11c788bb1e36de8ae951fa", "sha256": "c31bc4dab3213dcfe35801007771ccdc2a8cee791e75e889b08dda4e14c7fa81" }, "downloads": -1, "filename": "energyusage-0.0.6.tar.gz", "has_sig": false, "md5_digest": "87791bc8eb11c788bb1e36de8ae951fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42752, "upload_time": "2019-08-17T23:29:28", "url": "https://files.pythonhosted.org/packages/b0/62/a0fbe55179cfe85f2706531cc679fd77210b39328a28a1e8c8f14ba9b7a4/energyusage-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "bde46587a01ad87707b45c102e9fc8a9", "sha256": "4177ca09c57e38722c999c7332ebacd6e37872e22cf9bdd4c394be706a142916" }, "downloads": -1, "filename": "energyusage-0.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "bde46587a01ad87707b45c102e9fc8a9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43237, "upload_time": "2019-08-18T06:11:44", "url": "https://files.pythonhosted.org/packages/29/fe/3766d8caed9529477f420c783f36ef7557925d100b7d01f36f72fc4b7d78/energyusage-0.0.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "08a352489469420a810ce6bf73a6f3ef", "sha256": "d5dd310955e16f34755676755a005959892cfde3bdb5700f7b4b4c99d4d580f7" }, "downloads": -1, "filename": "energyusage-0.0.7.tar.gz", "has_sig": false, "md5_digest": "08a352489469420a810ce6bf73a6f3ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43295, "upload_time": "2019-08-18T06:11:45", "url": "https://files.pythonhosted.org/packages/fd/d7/bb55e036932805a8f78f3d661c8a067555fd5d4fd249bfc55ba0c4172c64/energyusage-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "2fb94e100e7ac03c26e359e2d7b56acc", "sha256": "a9a1b2788e91ef8756fc85aab33bd6022bc302e26ed739798316d3cd655c52ac" }, "downloads": -1, "filename": "energyusage-0.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "2fb94e100e7ac03c26e359e2d7b56acc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43234, "upload_time": "2019-08-18T20:44:02", "url": "https://files.pythonhosted.org/packages/cf/34/cb8de4de52738dcfde744ff3633a1bf01b29ed3cec8f9c085a3e697b39f6/energyusage-0.0.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d872e22e8f58175e00e082cdd0b2ac9d", "sha256": "9141760a5b9b65c8334266c9cd0d8fb092f4c1549a6142e3cb2efb64e2c3036c" }, "downloads": -1, "filename": "energyusage-0.0.8.tar.gz", "has_sig": false, "md5_digest": "d872e22e8f58175e00e082cdd0b2ac9d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43291, "upload_time": "2019-08-18T20:44:04", "url": "https://files.pythonhosted.org/packages/fb/f5/574c3c31f3e6c132ab91ddfd1b4ba6f77b9b5d4058c2aba7edaa8af525c4/energyusage-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "165b5641b42f549ccdeb0132d4f44222", "sha256": "597310e6f4b4f2f2438d6734a256ff17b82b410b6b13879474b1bb5833754ebf" }, "downloads": -1, "filename": "energyusage-0.0.9-py3-none-any.whl", "has_sig": false, "md5_digest": "165b5641b42f549ccdeb0132d4f44222", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43503, "upload_time": "2019-08-21T15:12:37", "url": "https://files.pythonhosted.org/packages/a5/40/1d40f8d2f891ecf0ef724869428ea03497ac20e924857d79cac7c5560f84/energyusage-0.0.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1eb93761e4d201af24e583090b990c4c", "sha256": "d8b07b2bb5ccc1e369cf93563b8ae8af86717a279efb9d46d36332f939b971e5" }, "downloads": -1, "filename": "energyusage-0.0.9.tar.gz", "has_sig": false, "md5_digest": "1eb93761e4d201af24e583090b990c4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43628, "upload_time": "2019-08-21T15:12:38", "url": "https://files.pythonhosted.org/packages/82/b2/ff97f7f215b98e06e2972da4aef8e0cddce040ac79e45fe0634d261d3748/energyusage-0.0.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "dde32b4bfbd25c165a7cd214920a4147", "sha256": "af9b623e8611c3ab86bc092f76208c7e18bd37b34605fdf62863ef4ca98f3afe" }, "downloads": -1, "filename": "energyusage-0.0.11-py3-none-any.whl", "has_sig": false, "md5_digest": "dde32b4bfbd25c165a7cd214920a4147", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43691, "upload_time": "2019-09-17T16:21:39", "url": "https://files.pythonhosted.org/packages/24/be/0bec08929d92680d266daae617c55a83f636fdb755718f24adab6d343afc/energyusage-0.0.11-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e932d1a198f62f2d9f6687339fcf4d5d", "sha256": "6e27f4c4247e16c2d392826b80184c91e909eb213b838d1f6b540b8558269746" }, "downloads": -1, "filename": "energyusage-0.0.11.tar.gz", "has_sig": false, "md5_digest": "e932d1a198f62f2d9f6687339fcf4d5d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43860, "upload_time": "2019-09-17T16:21:44", "url": "https://files.pythonhosted.org/packages/ff/5a/3788d689f8ec192517057ec591996617129b043ec928abe88bea18490c41/energyusage-0.0.11.tar.gz" } ] }