{ "info": { "author": "Andreas Motl", "author_email": "andreas.motl@panodata.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: Education", "Intended Audience :: Information Technology", "Intended Audience :: Manufacturing", "Intended Audience :: Science/Research", "Intended Audience :: System Administrators", "Intended Audience :: Telecommunications Industry", "License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)", "License :: OSI Approved :: GNU Affero General Public License v3", "Operating System :: MacOS", "Operating System :: POSIX", "Operating System :: Unix", "Programming Language :: Python", "Programming Language :: Python :: 3", "Topic :: Communications", "Topic :: Database", "Topic :: Internet", "Topic :: Internet :: WWW/HTTP :: Indexing/Search", "Topic :: Scientific/Engineering :: Atmospheric Science", "Topic :: Scientific/Engineering :: GIS", "Topic :: Scientific/Engineering :: Human Machine Interfaces", "Topic :: Scientific/Engineering :: Information Analysis", "Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator", "Topic :: Scientific/Engineering :: Visualization", "Topic :: Software Development :: Embedded Systems", "Topic :: Software Development :: Libraries", "Topic :: System :: Archiving", "Topic :: System :: Networking :: Monitoring", "Topic :: Text Processing", "Topic :: Utilities" ], "description": ".. image:: https://img.shields.io/badge/Python-3.6,%203.7-green.svg\n :target: https://pypi.org/project/luftdatenpumpe/\n\n.. image:: https://img.shields.io/pypi/v/luftdatenpumpe.svg\n :target: https://pypi.org/project/luftdatenpumpe/\n\n.. image:: https://img.shields.io/github/tag/hiveeyes/luftdatenpumpe.svg\n :target: https://github.com/hiveeyes/luftdatenpumpe\n\n.. image:: https://assets.okfn.org/images/ok_buttons/od_80x15_red_green.png\n :target: https://okfn.org/opendata/\n\n.. image:: https://assets.okfn.org/images/ok_buttons/oc_80x15_blue.png\n :target: https://okfn.org/opendata/\n\n.. image:: https://assets.okfn.org/images/ok_buttons/os_80x15_orange_grey.png\n :target: https://okfn.org/opendata/\n\n|\n\n##############\nLuftdatenpumpe\n##############\n\n\n*****\nAbout\n*****\nProcess live and historical data from `luftdaten.info`_, irceline_ and OpenAQ_.\nFilter by station-id, sensor-id and sensor-type, apply reverse geocoding,\nstore into TSDB_ and RDBMS_ databases (InfluxDB_ and PostGIS_),\npublish to MQTT_ or just output as JSON.\n\n.. figure:: https://cdn.jsdelivr.net/gh/hiveeyes/luftdatenpumpe@master/doc/logo.svg\n :target: https://github.com/hiveeyes/luftdatenpumpe\n :height: 200px\n :width: 200px\n\n\n********\nFeatures\n********\n\n1. Luftdatenpumpe_ acquires the measurement readings either from the livedata API\n of `luftdaten.info`_ or from its archived CSV files published to `archive.luftdaten.info`.\n To minimize impact on the upstream servers, all data gets reasonably cached.\n\n2. While iterating the readings, it optionally filters on station-id, sensor-id or sensor-type\n and restrains information processing to the corresponding stations and sensors.\n\n3. Then, each station's location information gets enhanced by\n\n - attaching its geospatial position as a Geohash_.\n - attaching a synthetic real-world address resolved using the reverse geocoding service Nominatim_ by OpenStreetMap_.\n\n4. Information about stations can be\n\n - displayed on STDOUT or STDERR in JSON format.\n - filtered and transformed interactively through jq_, the swiss army knife of JSON manipulation.\n - stored into RDBMS_ databases like PostgreSQL_ using the fine dataset_ package.\n Being built on top of SQLAlchemy_, this supports all major databases.\n - queried using advanced geospatial features when running PostGIS_, please\n follow up reading the `Luftdatenpumpe PostGIS tutorial `_.\n\n5. Measurement readings can be\n\n - displayed on STDOUT or STDERR in JSON format, which allows for piping into jq_ again.\n - forwarded to MQTT_.\n - stored to InfluxDB_ and then\n - displayed in Grafana_.\n\n\n********\nSynopsis\n********\n::\n\n # List networks\n luftdatenpumpe networks\n\n # List LDI stations\n luftdatenpumpe stations --network=ldi --station=28,297 --reverse-geocode\n\n # Store list of LDI stations and metadata into RDBMS database (PostgreSQL), also display on STDERR\n luftdatenpumpe stations --network=ldi --station=28,1071 --reverse-geocode --target=postgresql://luftdatenpumpe@localhost/weatherbase\n\n # Store LDI readings into InfluxDB\n luftdatenpumpe readings --network=ldi --station=28,1071 --target=influxdb://luftdatenpumpe@localhost/luftdaten_info\n\n # Forward LDI readings to MQTT\n luftdatenpumpe readings --network=ldi --station=28,1071 --target=mqtt://mqtt.example.org/luftdaten.info\n\n\nFor a full overview about all program options including meaningful examples,\nyou might just want to run ``luftdatenpumpe --help`` on your command line\nor visit `luftdatenpumpe --help`_.\n\n\n\n***********\nScreenshots\n***********\nLuftdaten-Viewer displays stations and measurements from luftdaten.info (LDI) in Grafana.\n\n\nMap display and filtering\n=========================\n- Filter by different synthesized address components and sensor type.\n- Display measurements from filtered stations on Grafana Worldmap Panel.\n- Display filtered list of stations with corresponding information in tabular form.\n- Measurement values are held against configured thresholds so points are colored appropriately.\n\n.. image:: https://community.hiveeyes.org/uploads/default/original/2X/f/f455d3afcd20bfa316fefbe69e43ca2fe159e62d.png\n :target: https://weather.hiveeyes.org/grafana/d/9d9rnePmk/amo-ldi-stations-5-map-by-sensor-type\n\n\nMap popup labels\n================\n- Humanized label computed from synthesized OpenStreetMap address.\n- Numeric station identifier.\n- Measurement value, unit and field name.\n\n.. image:: https://community.hiveeyes.org/uploads/default/original/2X/4/48eeda1a1d418eaf698b241a65080666abcf2497.png\n :target: https://weather.hiveeyes.org/grafana/d/9d9rnePmk/amo-ldi-stations-5-map-by-sensor-type\n\n\n************\nInstallation\n************\nIf you are running Python 3 already,\ninstalling the program should be as easy as::\n\n pip install luftdatenpumpe\n\nAt this point, you should be able to conduct simple tests like\n``luftdatenpumpe stations`` as seen in the synopsis section above.\nAt least, you should verify the installation succeeded by running::\n\n luftdatenpumpe --version\n\nHowever, you might have to resolve some prerequisites so you want to follow\nthe detailed installation instructions at `install Luftdatenpumpe`_.\n\n\n****************\nLuftdaten-Viewer\n****************\n\nAbout\n=====\nUsing Luftdatenpumpe, you can build user-friendly interactive GIS systems\non top of PostGIS, InfluxDB and Grafana. We are calling this \"Luftdaten-Viewer\".\n\nWithout further ado, you might enjoy reading about existing \"Luftdaten-Viewer\"\ninstallations at `Testimonials for Luftdatenpumpe`_.\n\nInstructions\n============\nThese installation instructions outline how to setup the whole system to build\nsimilar interactive data visualization compositions of map-, graph- and other\npanel-widgets like outlined in the \"Testimonials\" section.\n\n- `Luftdaten-Viewer Applications`_\n- `Luftdaten-Viewer Databases`_\n- `Luftdaten-Viewer Grafana`_\n\n\n*******\nLicense\n*******\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU Affero General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU Affero General Public License\nalong with this program; if not, see:\n,\nor write to the Free Software Foundation,\nInc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\n\n********************\nContent attributions\n********************\nThe copyright of particular images and pictograms are held by their respective owners, unless otherwise noted.\n\nIcons and pictograms\n====================\n- `Water Pump Free Icon `_ from\n `Icon Fonts `_ is licensed by CC BY 3.0.\n\n\n\n.. _doc-virtualenv: https://github.com/hiveeyes/luftdatenpumpe/blob/master/doc/virtualenv.rst\n.. _doc-postgis: https://github.com/hiveeyes/luftdatenpumpe/blob/master/doc/postgis.rst\n\n\n.. _luftdaten.info: https://luftdaten.info/\n.. _irceline: http://www.irceline.be/en/documentation/open-data\n.. _OpenAQ: https://openaq.org/\n\n.. _Luftdatenpumpe: https://github.com/hiveeyes/luftdatenpumpe\n\n.. _Testimonials for Luftdatenpumpe: https://github.com/hiveeyes/luftdatenpumpe/blob/master/doc/testimonials.rst\n.. _luftdatenpumpe --help: https://github.com/hiveeyes/luftdatenpumpe/blob/master/doc/usage.rst\n.. _install Luftdatenpumpe: https://github.com/hiveeyes/luftdatenpumpe/blob/master/doc/setup/luftdatenpumpe.rst\n.. _Luftdaten-Viewer Applications: https://github.com/hiveeyes/luftdatenpumpe/blob/master/doc/setup/ldview-applications.rst\n.. _Luftdaten-Viewer Databases: https://github.com/hiveeyes/luftdatenpumpe/blob/master/doc/setup/ldview-databases.rst\n.. _Luftdaten-Viewer Grafana: https://github.com/hiveeyes/luftdatenpumpe/blob/master/doc/setup/ldview-grafana.rst\n.. _Luftdaten-Viewer Cron Job: https://github.com/hiveeyes/luftdatenpumpe/blob/master/doc/setup/ldview-cronjob.rst\n\n.. _Erneuerung der Luftdatenpumpe: https://community.hiveeyes.org/t/erneuerung-der-luftdatenpumpe/1199\n\n.. _The Hiveeyes Project: https://hiveeyes.org/\n\n.. _OpenStreetMap: https://en.wikipedia.org/wiki/OpenStreetMap\n.. _Nominatim: https://wiki.openstreetmap.org/wiki/Nominatim\n.. _Geohash: https://en.wikipedia.org/wiki/Geohash\n.. _dataset: https://dataset.readthedocs.io/\n.. _SQLAlchemy: https://www.sqlalchemy.org/\n.. _TSDB: https://en.wikipedia.org/wiki/Time_series_database\n.. _RDBMS: https://en.wikipedia.org/wiki/Relational_database_management_system\n.. _MQTT: http://mqtt.org/\n\n.. _PostgreSQL: https://www.postgresql.org/\n.. _PostGIS: https://postgis.net/\n.. _InfluxDB: https://github.com/influxdata/influxdb\n.. _Grafana: https://github.com/grafana/grafana\n\n.. _jq: https://stedolan.github.io/jq/", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/panodata/luftdatenpumpe", "keywords": "luftdaten.info irceline openaq air quality particulate matter pollution feinstaub luftdaten ogc sos sensor network observation opendata data acquisition transformation export geospatial temporal timeseries http rest json api rdbms sql mysql mosquitto mqtt openstreetmap nominatim postgis postgresql influxdb grafana 52north", "license": "AGPL 3, EUPL 1.2", "maintainer": "", "maintainer_email": "", "name": "luftdatenpumpe", "package_url": "https://pypi.org/project/luftdatenpumpe/", "platform": "", "project_url": "https://pypi.org/project/luftdatenpumpe/", "project_urls": { "Homepage": "https://github.com/panodata/luftdatenpumpe" }, "release_url": "https://pypi.org/project/luftdatenpumpe/0.20.2/", "requires_dist": null, "requires_python": "", "summary": "Process live and historical data from luftdaten.info. Filter by station-id, sensor-id and sensor-type, apply reverse geocoding, store into TSDB and RDBMS databases, publish to MQTT or just output as JSON.", "version": "0.20.2", "yanked": false, "yanked_reason": null }, "last_serial": 6529158, "releases": { "0.10.0": [ { "comment_text": "", "digests": { "md5": "60dc29938ecccab1c1c73af6cfc9cfc5", "sha256": "7afc1a004ac8dbd497c03c42f5f55f8e5d4d7bab970b02c04081abae87dd79d1" }, "downloads": -1, "filename": "luftdatenpumpe-0.10.0.tar.gz", "has_sig": false, "md5_digest": "60dc29938ecccab1c1c73af6cfc9cfc5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51557, "upload_time": "2019-04-22T08:59:07", "upload_time_iso_8601": "2019-04-22T08:59:07.529308Z", "url": "https://files.pythonhosted.org/packages/0c/60/468c9bc0e43ec802a6ef20eda9b21709522c0c5c96823f101ec14646cea8/luftdatenpumpe-0.10.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "5e1a0fdc25f352d47edae5ca1177a383", "sha256": "6f7ad4e3f4d6cd0c83e4598b08706b1394e9dd1a1db836d98e34f892a7272cc1" }, "downloads": -1, "filename": "luftdatenpumpe-0.11.0.tar.gz", "has_sig": false, "md5_digest": "5e1a0fdc25f352d47edae5ca1177a383", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58727, "upload_time": "2019-04-26T03:52:45", "upload_time_iso_8601": "2019-04-26T03:52:45.694778Z", "url": "https://files.pythonhosted.org/packages/6e/ba/723024c302863c4485f0b46987c26b56540ee91ba0a8767de85a71d99852/luftdatenpumpe-0.11.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.12.0": [ { "comment_text": "", "digests": { "md5": "05cd67935c58eb3df2eb955771dc3f57", "sha256": "647968cc3cfd9da79890137b9980ff76bef11efc4ae77c865a47c6bbbc28df08" }, "downloads": -1, "filename": "luftdatenpumpe-0.12.0.tar.gz", "has_sig": false, "md5_digest": "05cd67935c58eb3df2eb955771dc3f57", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58917, "upload_time": "2019-05-19T01:31:22", "upload_time_iso_8601": "2019-05-19T01:31:22.921664Z", "url": "https://files.pythonhosted.org/packages/06/9b/98bb03323f614d33aabd1cb02470e63e73c70de2258a91c25151b6acc7ca/luftdatenpumpe-0.12.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.12.1": [ { "comment_text": "", "digests": { "md5": "02af12ea02fbe5e449bbb509df4bb571", "sha256": "b384c5112e06336a588ddfcaa4345d12812e23775351c87cc464b82efa809438" }, "downloads": -1, "filename": "luftdatenpumpe-0.12.1.tar.gz", "has_sig": false, "md5_digest": "02af12ea02fbe5e449bbb509df4bb571", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59016, "upload_time": "2019-05-19T10:46:30", "upload_time_iso_8601": "2019-05-19T10:46:30.877271Z", "url": "https://files.pythonhosted.org/packages/5e/de/3332044f25c95d84b74d4082ce2fe6f1784f3a83655c441e9d2641fc1d87/luftdatenpumpe-0.12.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.13.0": [ { "comment_text": "", "digests": { "md5": "bcccceb51be02f484954f4bdd4dcd1b9", "sha256": "c29dc0843269372495a3f5be26f329b337cc2b11c85d7b86491e04d876e1ad08" }, "downloads": -1, "filename": "luftdatenpumpe-0.13.0.tar.gz", "has_sig": false, "md5_digest": "bcccceb51be02f484954f4bdd4dcd1b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59704, "upload_time": "2019-05-20T21:14:57", "upload_time_iso_8601": "2019-05-20T21:14:57.631560Z", "url": "https://files.pythonhosted.org/packages/bf/7d/eeb7e541ea8abebf7bb937231aa6cdc9a17f04527662056f8d4eaa340c50/luftdatenpumpe-0.13.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.0": [ { "comment_text": "", "digests": { "md5": "65ff504e734c529001178290dc215330", "sha256": "7384ec5d5decbac7e6f8b36759e1038cc7e2b25a9c3c35aad19cc2cdd69f8468" }, "downloads": -1, "filename": "luftdatenpumpe-0.14.0.tar.gz", "has_sig": false, "md5_digest": "65ff504e734c529001178290dc215330", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60521, "upload_time": "2019-05-21T21:50:46", "upload_time_iso_8601": "2019-05-21T21:50:46.803226Z", "url": "https://files.pythonhosted.org/packages/f9/92/bee6bce0d6fcebd5b11b6005701580ecb03a87852c20ae064011921a7748/luftdatenpumpe-0.14.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.1": [ { "comment_text": "", "digests": { "md5": "ba1f8bdedfa161efd2fb812acabde4c0", "sha256": "332f4934d2599c50ed3c4848d93719bdda573f2375581c208cfd084e94d171cf" }, "downloads": -1, "filename": "luftdatenpumpe-0.14.1.tar.gz", "has_sig": false, "md5_digest": "ba1f8bdedfa161efd2fb812acabde4c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60539, "upload_time": "2019-05-21T21:53:06", "upload_time_iso_8601": "2019-05-21T21:53:06.440220Z", "url": "https://files.pythonhosted.org/packages/8d/1c/f4d054fbc59096c697671a5864f8e70883a5d364574c9c9ff9562a1821f1/luftdatenpumpe-0.14.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.16.0": [ { "comment_text": "", "digests": { "md5": "059b71cc2222bbbbcde8dad4f76e7b32", "sha256": "3e32b269a209187b6766b8fb23968adc02280dcdf45942f1989c9aa0dc7eabd4" }, "downloads": -1, "filename": "luftdatenpumpe-0.16.0.tar.gz", "has_sig": false, "md5_digest": "059b71cc2222bbbbcde8dad4f76e7b32", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61057, "upload_time": "2019-06-27T01:47:19", "upload_time_iso_8601": "2019-06-27T01:47:19.052835Z", "url": "https://files.pythonhosted.org/packages/59/1e/bb89ac6781033fe386626e924b649d8638da54be826f40a7425142b76c32/luftdatenpumpe-0.16.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.17.0": [ { "comment_text": "", "digests": { "md5": "33637804bd1eddd03b111fd7a8c2627f", "sha256": "c7190411a5f02c94e0a6bd2e9da77c3846ac36c103fc4f69da3c168c6e8e8436" }, "downloads": -1, "filename": "luftdatenpumpe-0.17.0.tar.gz", "has_sig": false, "md5_digest": "33637804bd1eddd03b111fd7a8c2627f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61946, "upload_time": "2019-09-27T00:59:44", "upload_time_iso_8601": "2019-09-27T00:59:44.920810Z", "url": "https://files.pythonhosted.org/packages/a2/02/877e242347b9e3b643aa2c46792ac36cff4763665aa054c6116f00a9a7e7/luftdatenpumpe-0.17.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.18.0": [ { "comment_text": "", "digests": { "md5": "4e02a52fa39cec8bf1a570811c463296", "sha256": "64c1a6538471a2ea2d0aa5a994f4c1a36c32d78a8277bff3ec995afba050ab6a" }, "downloads": -1, "filename": "luftdatenpumpe-0.18.0.tar.gz", "has_sig": false, "md5_digest": "4e02a52fa39cec8bf1a570811c463296", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62092, "upload_time": "2019-09-28T22:57:28", "upload_time_iso_8601": "2019-09-28T22:57:28.074426Z", "url": "https://files.pythonhosted.org/packages/74/45/825999c4b9ed07d636c8c44d4a76a4d6831cdb6256431144e709bdcbbcf8/luftdatenpumpe-0.18.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.18.1": [ { "comment_text": "", "digests": { "md5": "e823968506e4207b24536db0ec29322a", "sha256": "a8fa0cb5cf16ccb610fcaff7c01a94455e0912a6446513b4260f8c6d03cb1980" }, "downloads": -1, "filename": "luftdatenpumpe-0.18.1.tar.gz", "has_sig": false, "md5_digest": "e823968506e4207b24536db0ec29322a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62159, "upload_time": "2019-09-28T23:36:07", "upload_time_iso_8601": "2019-09-28T23:36:07.080217Z", "url": "https://files.pythonhosted.org/packages/f3/0b/bbd7bb8e13a42ce12ab7b1b7f1ef931b77d5814fc0aa67f25de6185ad78c/luftdatenpumpe-0.18.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.18.2": [ { "comment_text": "", "digests": { "md5": "df3db4a5bb81e1115a7e5ac527938e59", "sha256": "f8e3d223d2f416a2664e374977bd7de6fbf71aed58bad62f07222cfea665cb2b" }, "downloads": -1, "filename": "luftdatenpumpe-0.18.2.tar.gz", "has_sig": false, "md5_digest": "df3db4a5bb81e1115a7e5ac527938e59", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62867, "upload_time": "2019-09-30T21:47:42", "upload_time_iso_8601": "2019-09-30T21:47:42.039056Z", "url": "https://files.pythonhosted.org/packages/eb/1d/ede02fcba43f6c7144809bb66b4a8422abe61640e766b9ed7f1cae954053/luftdatenpumpe-0.18.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.19.0": [ { "comment_text": "", "digests": { "md5": "5f256e493ada0e8fa4d58a45937a1fae", "sha256": "674842c97186148e1be317e6d9011d8099f50ec5c6e4cc4d5b1aa3e2ce6ff4c5" }, "downloads": -1, "filename": "luftdatenpumpe-0.19.0.tar.gz", "has_sig": false, "md5_digest": "5f256e493ada0e8fa4d58a45937a1fae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63349, "upload_time": "2019-10-30T17:40:26", "upload_time_iso_8601": "2019-10-30T17:40:26.663415Z", "url": "https://files.pythonhosted.org/packages/94/f9/3e33b091a81cacb169bc6b4b2141be3f6e684ac65b2aaf383b7f99ebec97/luftdatenpumpe-0.19.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.19.1": [ { "comment_text": "", "digests": { "md5": "6a8d9de92ca0eb48a9ace56c20d645cb", "sha256": "e3d6d633d420451d7c4d11a4b08a028bd99853e2d6b3415f6f291ff57405f25d" }, "downloads": -1, "filename": "luftdatenpumpe-0.19.1.tar.gz", "has_sig": false, "md5_digest": "6a8d9de92ca0eb48a9ace56c20d645cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63422, "upload_time": "2019-12-09T20:01:43", "upload_time_iso_8601": "2019-12-09T20:01:43.746928Z", "url": "https://files.pythonhosted.org/packages/58/e0/9f66173e3d44d9b17c9350d6ccabe8715467565ce65cf14d3829fd87444a/luftdatenpumpe-0.19.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.20.0": [ { "comment_text": "", "digests": { "md5": "38e9a5f23f10be53a152320a169842e6", "sha256": "2836ff005a36062010ae63229d790cf854663880c43d413d33356f13b85c2228" }, "downloads": -1, "filename": "luftdatenpumpe-0.20.0.tar.gz", "has_sig": false, "md5_digest": "38e9a5f23f10be53a152320a169842e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65674, "upload_time": "2020-01-08T05:44:17", "upload_time_iso_8601": "2020-01-08T05:44:17.002304Z", "url": "https://files.pythonhosted.org/packages/be/ac/d9f2820a0376925eb1dc26d10e7fb300303a48bb28734094e23419a04e41/luftdatenpumpe-0.20.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.20.1": [ { "comment_text": "", "digests": { "md5": "be2831d829c6a59bf45f5a8c69d449c2", "sha256": "d10b780b7d57904388cf7537066e00396caac057a6ce0f4c66f358ff9d8612dd" }, "downloads": -1, "filename": "luftdatenpumpe-0.20.1.tar.gz", "has_sig": false, "md5_digest": "be2831d829c6a59bf45f5a8c69d449c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65716, "upload_time": "2020-01-08T08:54:22", "upload_time_iso_8601": "2020-01-08T08:54:22.695004Z", "url": "https://files.pythonhosted.org/packages/65/36/f7a9a36f896263b370759a92b2c2dd7385dff84f4c7e41f534a73d3faf5e/luftdatenpumpe-0.20.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.20.2": [ { "comment_text": "", "digests": { "md5": "3881740f0370d1a243eb38c32a0c97e3", "sha256": "e539cf806e454fa3956ed84a06e2ec7aeb7f3777ad40a3b93341cecae9b9e88d" }, "downloads": -1, "filename": "luftdatenpumpe-0.20.2.tar.gz", "has_sig": false, "md5_digest": "3881740f0370d1a243eb38c32a0c97e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65729, "upload_time": "2020-01-27T23:14:00", "upload_time_iso_8601": "2020-01-27T23:14:00.857784Z", "url": "https://files.pythonhosted.org/packages/b4/36/9f80cc6258c086fde4ea19028b25f9765597bf0e336f275ae6944236c6d6/luftdatenpumpe-0.20.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "d7bcbe632ad87da091a4c39836f38c60", "sha256": "a798ef8e7cfa0e0a51d4438943791af3815bb62cb0ef56e9355507769202ec14" }, "downloads": -1, "filename": "luftdatenpumpe-0.4.1.tar.gz", "has_sig": false, "md5_digest": "d7bcbe632ad87da091a4c39836f38c60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16093, "upload_time": "2018-12-11T22:24:31", "upload_time_iso_8601": "2018-12-11T22:24:31.095974Z", "url": "https://files.pythonhosted.org/packages/47/30/61f2b9d99c3425f19dd6a14849e0e35572dd13cb0800c0855e54fd160540/luftdatenpumpe-0.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "10f4f519de1bc614a8dd9e12ea1197bd", "sha256": "d34ffa1df1ffae0221fdd12f0f0845c38bf8d043fa7910a4b44c29b2b09b52a0" }, "downloads": -1, "filename": "luftdatenpumpe-0.4.2.tar.gz", "has_sig": false, "md5_digest": "10f4f519de1bc614a8dd9e12ea1197bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20170, "upload_time": "2018-12-11T23:11:12", "upload_time_iso_8601": "2018-12-11T23:11:12.073609Z", "url": "https://files.pythonhosted.org/packages/3d/2f/d90c6e956c44f486f689774e2b7db379956b320f5d67b4b62897309ef2d6/luftdatenpumpe-0.4.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "86926fab0e1e790b10a64feaa7a7b505", "sha256": "38bac907342b53ab68866dd2548e1dd3556fd9d53a1bd3bff931b44015e01e12" }, "downloads": -1, "filename": "luftdatenpumpe-0.4.3.tar.gz", "has_sig": false, "md5_digest": "86926fab0e1e790b10a64feaa7a7b505", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19402, "upload_time": "2018-12-11T23:21:37", "upload_time_iso_8601": "2018-12-11T23:21:37.374822Z", "url": "https://files.pythonhosted.org/packages/8b/18/dde208700ca0d863fe54e683129a18c364e1fc5854547993a660b953a5f9/luftdatenpumpe-0.4.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "e1562fa7190640872058fddcfef523b4", "sha256": "e8ebcd78eeb2fba24bfb2e3b6539a5742d0eb3134994453bcf0f5ab1fbe5f242" }, "downloads": -1, "filename": "luftdatenpumpe-0.5.0.tar.gz", "has_sig": false, "md5_digest": "e1562fa7190640872058fddcfef523b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28381, "upload_time": "2019-01-18T05:16:30", "upload_time_iso_8601": "2019-01-18T05:16:30.251648Z", "url": "https://files.pythonhosted.org/packages/08/b4/9ded9529340e4511b33cbfa39b192c8824f0cbb356240716312dd02faccd/luftdatenpumpe-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "2b85328498a7456e808a6cd3bdd8f93c", "sha256": "b8c812a0a647326a9cf9d7eb67a43dadbb584196b716e88c5b483ddf15ebbbbc" }, "downloads": -1, "filename": "luftdatenpumpe-0.6.0.tar.gz", "has_sig": false, "md5_digest": "2b85328498a7456e808a6cd3bdd8f93c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28409, "upload_time": "2019-01-18T05:32:46", "upload_time_iso_8601": "2019-01-18T05:32:46.515389Z", "url": "https://files.pythonhosted.org/packages/91/44/5db38f47e09df0626824901e9e19250576a7b82bbd6a18446a3d33e84283/luftdatenpumpe-0.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "4001fd26d05d7d96bfce558a83b544d8", "sha256": "0064eef4aab848d0a81b23ecbd1f80fffc30fa9cd53a1cac5977a94d83224b59" }, "downloads": -1, "filename": "luftdatenpumpe-0.7.0.tar.gz", "has_sig": false, "md5_digest": "4001fd26d05d7d96bfce558a83b544d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28871, "upload_time": "2019-01-18T12:31:02", "upload_time_iso_8601": "2019-01-18T12:31:02.137670Z", "url": "https://files.pythonhosted.org/packages/c5/a8/10f16c9632a90c6253800a6d438a5e49138ca790eb79d89e64f79f19df54/luftdatenpumpe-0.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "0494a3256e27b5e4a4db88893bef80d6", "sha256": "d61157dadf8367d9c1c401e91f916711d197ba3b72a617f937fda4e04c946f94" }, "downloads": -1, "filename": "luftdatenpumpe-0.8.0.tar.gz", "has_sig": false, "md5_digest": "0494a3256e27b5e4a4db88893bef80d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49692, "upload_time": "2019-01-19T02:11:00", "upload_time_iso_8601": "2019-01-19T02:11:00.363305Z", "url": "https://files.pythonhosted.org/packages/dc/50/fec443a24835b2a50b7ded15bae6ac2da3478446655cbb86c9df9bcc0b42/luftdatenpumpe-0.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "73457e1538679936781a46bd635b753c", "sha256": "eafb0a926981fafcbe176caf651c069b2d7c090ddd470d26f7a2cc87d0ede58f" }, "downloads": -1, "filename": "luftdatenpumpe-0.8.1.tar.gz", "has_sig": false, "md5_digest": "73457e1538679936781a46bd635b753c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49580, "upload_time": "2019-01-19T03:04:52", "upload_time_iso_8601": "2019-01-19T03:04:52.513118Z", "url": "https://files.pythonhosted.org/packages/c1/a7/7eaa367c4ae85381235f974a58ca3b770f51f6bd8da926c4b9e6a49bbaaa/luftdatenpumpe-0.8.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "17cdeda1a15ba8ad073d12c85937ed19", "sha256": "378a3f895e8a428fa652f9b35b185b3e68d5c4196e1764b5e10b619f2e337f37" }, "downloads": -1, "filename": "luftdatenpumpe-0.8.2.tar.gz", "has_sig": false, "md5_digest": "17cdeda1a15ba8ad073d12c85937ed19", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49912, "upload_time": "2019-01-22T01:00:05", "upload_time_iso_8601": "2019-01-22T01:00:05.242781Z", "url": "https://files.pythonhosted.org/packages/e9/c1/a482ec2f847161b047859e50774ee25ee7e4162c6b460e43353a207c05c7/luftdatenpumpe-0.8.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "f363208f16125f9dc9310bc911010c48", "sha256": "fa095b5d3a2850eeb014f6f8271df4e45b336e591727dbbe10cf75be2edf1e03" }, "downloads": -1, "filename": "luftdatenpumpe-0.9.0.tar.gz", "has_sig": false, "md5_digest": "f363208f16125f9dc9310bc911010c48", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52155, "upload_time": "2019-04-10T02:32:56", "upload_time_iso_8601": "2019-04-10T02:32:56.463521Z", "url": "https://files.pythonhosted.org/packages/d7/36/de80977f8c01d7dd15573acd322d3434dc3e034b4fc2f02d1a07964ccd4e/luftdatenpumpe-0.9.0.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "3881740f0370d1a243eb38c32a0c97e3", "sha256": "e539cf806e454fa3956ed84a06e2ec7aeb7f3777ad40a3b93341cecae9b9e88d" }, "downloads": -1, "filename": "luftdatenpumpe-0.20.2.tar.gz", "has_sig": false, "md5_digest": "3881740f0370d1a243eb38c32a0c97e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65729, "upload_time": "2020-01-27T23:14:00", "upload_time_iso_8601": "2020-01-27T23:14:00.857784Z", "url": "https://files.pythonhosted.org/packages/b4/36/9f80cc6258c086fde4ea19028b25f9765597bf0e336f275ae6944236c6d6/luftdatenpumpe-0.20.2.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }