{ "info": { "author": "The RIPE Atlas Team", "author_email": "atlas@ripe.net", "bugtrack_url": null, "classifiers": [ "Operating System :: POSIX", "Operating System :: Unix", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Internet :: WWW/HTTP", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "RIPE Atlas Cousteau\n===================\n\n|Documentation| |Build Status| |Code Health| |PYPI Version| |Python Versions| |Python Implementations| |Python Format|\n\nA python wrapper around RIPE ATLAS API.\n\n(Until version 0.9.* this wrapper supported v1 API. After version 0.10 and above v2 RIPE ATLAS API is only supported.)\n\nComplete documentation can be found on `Read the Docs`_.\n\n.. _Read the Docs: http://ripe-atlas-cousteau.readthedocs.org/en/latest/\n\nInstallation\n------------\n\nYou can install by either cloning the repo and run the following inside\nthe repo:\n\n.. code:: bash\n\n $ python setup.py install\n\nor via pip using:\n\n.. code:: bash\n\n $ pip install ripe.atlas.cousteau\n\nUsage\n-----\n\nCreating a Measurement\n~~~~~~~~~~~~~~~~~~~~~~\n\nCreating two new RIPE Atlas UDMs is as easy as:\n\n.. code:: python\n\n from datetime import datetime\n from ripe.atlas.cousteau import (\n Ping,\n Traceroute,\n AtlasSource,\n AtlasCreateRequest\n )\n\n ATLAS_API_KEY = \"\"\n\n ping = Ping(af=4, target=\"www.google.gr\", description=\"testing new wrapper\")\n\n traceroute = Traceroute(\n af=4,\n target=\"www.ripe.net\",\n description=\"testing\",\n protocol=\"ICMP\",\n )\n\n source = AtlasSource(type=\"area\", value=\"WW\", requested=5)\n\n atlas_request = AtlasCreateRequest(\n start_time=datetime.utcnow(),\n key=ATLAS_API_KEY,\n measurements=[ping, traceroute],\n sources=[source],\n is_oneoff=True\n )\n\n (is_success, response) = atlas_request.create()\n\nKeep in mind that this library is trying to comply with what is stated\nin the `documentation pages`_. This means that if you try to create a\nrequest that is missing a field stated as required, the library won't go\nahead and do the HTTP query. On the contrary, it will raise an exception\nwith some info in it.\nThe available measurements types are Ping, Traceroute, Dns, Sslcert, Ntp, Http.\n\n.. _documentation pages: https://atlas.ripe.net/docs/api/v2/manual/measurements/types/\n\nChanging Measurement Sources\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nSimilarly if you want to change (add in the following example) probes\nfor an existing measurement you can do:\n\n.. code:: python\n\n from ripe.atlas.cousteau import AtlasChangeSource, AtlasChangeRequest\n\n ATLAS_MODIFY_API_KEY = \"\"\n\n source = AtlasChangeSource(\n value=\"GR\",\n requested=3,\n type=\"country\",\n action=\"add\"\n )\n\n atlas_request = AtlasChangeRequest(\n key=ATLAS_MODIFY_API_KEY,\n msm_id=1000001,\n sources=[source]\n )\n\n (is_success, response) = atlas_request.create()\n\nSame applies if you want to remove probes, you just have to\nchange \"action\" key to \"remove\" and specify probes you want to remove.\nKeep in mind remove action supports only a list of probes and not the rest of the source types.\nFor more info check the appropriate `docs`_.\n\n.. _docs: https://atlas.ripe.net/docs/api/v2/reference/#!/participation-requests/Participant_Request_Detail_GET\n\nStopping Measurement\n~~~~~~~~~~~~~~~~~~~~\n\nYou can stop a measurement with:\n\n.. code:: python\n\n from ripe.atlas.cousteau import AtlasStopRequest\n\n ATLAS_STOP_API_KEY = \"\"\n\n atlas_request = AtlasStopRequest(msm_id=1000001, key=ATLAS_STOP_API_KEY)\n\n (is_success, response) = atlas_request.create()\n\nIn order to be able to successfully create most of the above you need to\ncreate an `API key`_.\n\n.. _API key: https://atlas.ripe.net/docs/keys/\n\nTag and untag measurements\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nYou can add or remove tags on measurements with:\n\n.. code:: python\n\n from ripe.atlas.cousteau import MeasurementTagger\n\n ATLAS_STOP_API_KEY = \"\"\n MSM_ID = 2000001\n\n tagger = MeasurementTagger(key=ATLAS_STOP_API_KEY)\n\n (is_success, response) = tagger.add_tag(msm_id=MSM_ID, tag=\"my-tag\")\n (is_success, response) = tagger.remove_tag(msm_id=MSM_ID, tag=\"my-tag\")\n\nMake Any API Get Requests\n~~~~~~~~~~~~~~~~~~~~~~~~~\n\nIf you know the url path you can make any request easily towards ATLAS\nAPI.\n\n.. code:: python\n\n url_path = \"/api/v2/anchors\"\n request = AtlasRequest(**{\"url_path\": url_path})\n result = namedtuple('Result', 'success response')\n (is_success, response) = request.get()\n if not is_success:\n return False\n\n return result.response[\"participant_count\"]\n\nFetch Results\n~~~~~~~~~~~~~\n\nYou can fetch results for any measurements using cousteau. In the\nfollowing example we are getting all results for measurement ID 2016892\nand for probe IDs 1,2,3,4 between 2015-05-19 and 2015-05-20. Times can\nbe python datetime objects, Unix timestamps or string representations of\ndates.\n\n.. code:: python\n\n from datetime import datetime\n from ripe.atlas.cousteau import AtlasResultsRequest\n\n kwargs = {\n \"msm_id\": 2016892,\n \"start\": datetime(2015, 5, 19),\n \"stop\": datetime(2015, 5, 20),\n \"probe_ids\": [1,2,3,4]\n }\n\n is_success, results = AtlasResultsRequest(**kwargs).create()\n\n if is_success:\n print(results)\n\nFetch real time results\n~~~~~~~~~~~~~~~~~~~~~~~\n\nBesides fetching results from main API it is possible to get results\nthough `streaming API`_.\n\n.. code:: python\n\n from ripe.atlas.cousteau import AtlasStream\n\n def on_result_response(*args):\n \"\"\"\n Function that will be called every time we receive a new result.\n Args is a tuple, so you should use args[0] to access the real message.\n \"\"\"\n print args[0]\n\n atlas_stream = AtlasStream()\n atlas_stream.connect()\n # Measurement results\n channel = \"atlas_result\"\n # Bind function we want to run with every result message received\n atlas_stream.bind_channel(channel, on_result_response)\n # Subscribe to new stream for 1001 measurement results\n stream_parameters = {\"msm\": 1001}\n atlas_stream.start_stream(stream_type=\"result\", **stream_parameters)\n\n # Probe's connection status results\n channel = \"atlas_probestatus\"\n atlas_stream.bind_channel(channel, on_result_response)\n stream_parameters = {\"enrichProbes\": True}\n atlas_stream.start_stream(stream_type=\"probestatus\", **stream_parameters)\n\n # Timeout all subscriptions after 5 secs. Leave seconds empty for no timeout.\n # Make sure you have this line after you start *all* your streams\n atlas_stream.timeout(seconds=5)\n # Shut down everything\n atlas_stream.disconnect()\n\nThe available stream parameters for every stream type are described in\nthe `streaming results docs`_\n\n.. _streaming API: https://atlas.ripe.net/docs/result-streaming/\n.. _streaming results docs: https://atlas.ripe.net/docs/result-streaming/\n\nFilter Probes/Measurements\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nThis feature queries API for probes/measurements based on specified filters. Filters \nshould be as specified in `filter_api`_. It hides all the complexity of traversing\nthe API using the next url each time there are more objects. It returns\na python generator that you can use to access each object.\n\nFetches all probes from NL with asn\\_v4 3333 and with tag NAT\n\n.. code:: python\n\n from ripe.atlas.cousteau import ProbeRequest\n\n filters = {\"tags\": \"NAT\", \"country_code\": \"NL\", \"asn_v4\": \"3333\"}\n probes = ProbeRequest(**filters)\n\n for probe in probes:\n print(probe[\"id\"])\n\n # Print total count of found probes\n print(probes.total_count)\n\nFetches all specified measurements.\n\n.. code:: python\n\n from ripe.atlas.cousteau import MeasurementRequest\n\n filters = {\"status\": 1}\n measurements = MeasurementRequest(**filters)\n\n for msm in measurements:\n print(msm[\"msm_id\"])\n\n # Print total count of found measurements\n print(measurements.total_count)\n\n.. _filter_api: https://atlas.ripe.net/docs/api/v2/manual/\n\nRepresent Probes/Measurements Meta data in python\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\nThis will allow you to have a python object with attributes populated from probes/measurements meta data.\nEvery time you create a new instance it will fetch meta data from API and return an object with selected attributes.\n\n.. code:: python\n\n from ripe.atlas.cousteau import Probe, Measurement\n\n probe = Probe(id=3)\n print(probe.country_code)\n print(probe.is_anchor)\n print(probe.is_public)\n print(probe.address_v4)\n print(dir(probe)) # Full list of properties\n\n measurement = Measurement(id=1000002)\n print(measurement.protocol)\n print(measurement.description)\n print(measurement.is_oneoff)\n print(measurement.is_public)\n print(measurement.target_ip)\n print(measurement.target_asn)\n print(measurement.type)\n print(measurement.interval)\n print(dir(measurement)) # Full list of properties\n\nColophon\n========\n\nBut why `Cousteau`_? The RIPE Atlas team decided to name all of its\nmodules after explorers, and this is not an exception :)\n\n.. _Cousteau: http://en.wikipedia.org/wiki/Jacques_Cousteau\n.. |Build Status| image:: https://travis-ci.org/RIPE-NCC/ripe-atlas-cousteau.png?branch=master\n :target: https://travis-ci.org/RIPE-NCC/ripe-atlas-cousteau\n.. |Code Health| image:: https://landscape.io/github/RIPE-NCC/ripe-atlas-cousteau/master/landscape.png\n :target: https://landscape.io/github/RIPE-NCC/ripe-atlas-cousteau/master\n.. |PYPI Version| image:: https://img.shields.io/pypi/v/ripe.atlas.cousteau.svg\n.. |Python Versions| image:: https://img.shields.io/pypi/pyversions/ripe.atlas.cousteau.svg\n.. |Python Implementations| image:: https://img.shields.io/pypi/implementation/ripe.atlas.cousteau.svg\n.. |Python Format| image:: https://img.shields.io/pypi/format/ripe.atlas.cousteau.svg\n.. |Documentation| image:: https://readthedocs.org/projects/ripe-atlas-cousteau/badge/?version=latest\n :target: https://ripe-atlas-cousteau.readthedocs.org/en/latest/?badge=latest\n\n\n\nReleases History\n================\n1.4.2 (released 2018-03-22)\n---------------------------\nNew features:\n~~~~~~~~~~~~~\n- Add support for tagging and untagging measurements\n\n1.4.1 (released 2018-01-08)\n---------------------------\nChanges:\n~~~~~~~~\n- Minor fixes\n\n1.4 (released 2017-04-21)\n-------------------------\nNew features:\n~~~~~~~~~~~~~\n- Expose `bill_to` option for measurement creation\n- Enable User-Agent for stream connections\n\nChanges:\n~~~~~~~~\n - Update stream channel names to new naming scene in the background\n\nBug Fixes:\n~~~~~~~~~~\n- Fix bug where stream was not reconnected after a disconnect\n- Fix unicode cases on the stream spotted by @JonasGroeger\n\n1.3 (released 2016-10-21)\n-------------------------\nChanges:\n~~~~~~~~\n- Improved streaming support:\n\n - Introduce error handling\n - Channels errors binded by default\n - Introduced debug mode\n - Update features set. See all here https://atlas.ripe.net/docs/result-streaming/\n - Deprecated short events name and local event name checking. See the event names here https://atlas.ripe.net/docs/result-streaming/\n\n- Introduced support for proxies and additional headers\n- Timezone aware objects for measurement meta data\n\n1.2 (released 2016-03-02)\n-------------------------\nChanges:\n~~~~~~~~\n- Backwards incompatible field changes on the Measurement object:\n\n - destination_address -> target_ip\n - destination_asn -> target_asn\n - destination_name -> target\n\n1.1 (released 2016-02-09)\n-------------------------\nNew features:\n~~~~~~~~~~~~~\n- Start supporting Anchors listing API.\n- Brand new documentation hosted on readthedocs.\n\nChanges:\n~~~~~~~~\n- Various refactorings to clean up codebase.\n\n1.0.7 (released 2016-01-13)\n---------------------------\nChanges:\n~~~~~~~~\n- Backwards compatible change of the format we expect for measurement type to handle upcoming change in the API.\n\nBug Fixes:\n~~~~~~~~~~\n- Fix bug when creating stream for probes connection channel. Updating also wrong documentation.\n\n1.0.6 (released 2015-12-15)\n---------------------------\nChanges:\n~~~~~~~~\n- Add copyright text everywhere for debian packaging.\n\n1.0.5 (released 2015-12-14)\n---------------------------\nChanges:\n~~~~~~~~\n- Add tests to the package itself.\n- Make user-agent changeable by the user.\n- Various refactorings.\n\n1.0.4 (released 2015-11-06)\n---------------------------\nChanges:\n~~~~~~~~\n- Handle both string/dictionary as input for probe_ids filter for Result and LatestResult requests.\n\n1.0.2 (released 2015-10-26)\n---------------------------\nBug Fixes:\n~~~~~~~~~~\n- Fix bug where key parameter was added to the url even if it was empty.\n- Fix bug where we didn't try to unjson 4xx responses even if they could contain json structure.\n\n1.0.1 (released 2015-10-23)\n---------------------------\nChanges:\n~~~~~~~~\n- Now we conform to new API feature that allows for specifying tags when adding probes to existing measurements\n\nBug Fixes:\n~~~~~~~~~~\n- Fix bug we didn't allow user to specify single tag include/exclude.\n\n1.0 (released 2015-10-21)\n-------------------------\nNew features:\n~~~~~~~~~~~~~\n- Add support for include/exclude tags in changing sources requests.\n- Add support for latest results API call.\n- Implement HTTP measurement creation.\n- Support for python 3 (<=3.4).\n- Support for pypy/pypy3.\n- Support for wheels format.\n\nChanges:\n~~~~~~~~\n- Migrate all Atlas requests to use requests library and refactor a lot of code to have a cleaner version.\n- Create an API v2 translator to address several option name changing. A deprecation warning will be given.\n\nBug Fixes:\n~~~~~~~~~~\n- Fix bug where python representation of measurements without a stop time was exploding. \n- Make sure start/stop timestamps in measurement create request are always in UTC.\n\n0.10.1 (released 2015-10-06)\n----------------------------\nNew features:\n~~~~~~~~~~~~~\n- Implement support for object return in the request generators for probe/measurement.\n\nChanges:\n~~~~~~~~\n- Probe/Measurement python representation takes meta data from v2 API as well. Now everything should point to v2 API.\n\n0.10 (released 2015-10-01)\n--------------------------\nNew features:\n~~~~~~~~~~~~~\n- add object representation of meta data for a probe or a measurement.\n\nChanges:\n~~~~~~~~\n- Abandon v1 RIPE ATLAS API and use only v2.\n\nBug Fixes:\n~~~~~~~~~~\n- Fix bug that prevented users from specifying all possible source types when they tried to add more probes to existing measurements.\n- Cover case where a user specified really long list of probes/measurements in the ProbeRequest/MeasurementRequest that was causing 'HTTP ERROR 414: Request-URI Too Long'. Additionally, now if API returns error raise an exception instead of stopping iteration.\n\n0.9.2 (released 2015-09-21)\n---------------------------\nChanges:\n~~~~~~~~\n- Small refactor of Stream class and manually enforce websockets in SocketIO client\n\n0.9.1 (released 2015-09-03)\n---------------------------\nBug Fixes:\n~~~~~~~~~~\n- Fix bug related to binding result atlas stream.\n\n0.9 (released 2015-09-01)\n-------------------------\nNew features:\n~~~~~~~~~~~~~\n- add support for fetching real time results using RIPE Atlas stream server.\n- this version and on will be available on PYPI.\n\n0.8 (released 2015-08-31)\n-------------------------\nNew features:\n~~~~~~~~~~~~~\n- add support for NTP measurements.\n\n0.7 (released 2015-06-03)\n-------------------------\nNew features:\n~~~~~~~~~~~~~\n- add support for fetching probes/measurements meta data using python generators.\n\n0.6 (released 2014-06-17)\n-------------------------\nNew features:\n~~~~~~~~~~~~~\n- add support for querying results based on start/end time, msm_id and probe id.\n\nChanges:\n~~~~~~~~\n- add http agent according to package version to all requests.\n\n0.5 (released 2014-05-22)\n-------------------------\nChanges:\n~~~~~~~~\n- change package structure to comply with the new structure of atlas packages\n- add continuous integration support\n\n - add tests\n - enable travis\n - enable code health checks\n\n- add required files for uploading to github\n\n0.4 (released 2014-03-31)\n-------------------------\nNew features:\n~~~~~~~~~~~~~\n- add support for stopping a measurement.\n\n0.3 (released 2014-02-25)\n-------------------------\nNew features:\n~~~~~~~~~~~~~\n- add simple support for HTTP GET queries.\n\n0.2 (released 2014-02-03)\n-------------------------\nNew features:\n~~~~~~~~~~~~~\n- add support for adding/removing probes API request.\n\nChanges:\n~~~~~~~~\n- use AtlasCreateRequest instead of AtlasRequest for creating a new measurement.\n\n0.1 (released 2014-01-21)\n-------------------------\n- Initial release.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/RIPE-NCC/ripe-atlas-cousteau", "keywords": "RIPE,RIPE NCC,RIPE Atlas", "license": "GPLv3", "maintainer": "The RIPE Atlas Team", "maintainer_email": "atlas@ripe.net", "name": "ripe.atlas.cousteau", "package_url": "https://pypi.org/project/ripe.atlas.cousteau/", "platform": "", "project_url": "https://pypi.org/project/ripe.atlas.cousteau/", "project_urls": { "Homepage": "https://github.com/RIPE-NCC/ripe-atlas-cousteau" }, "release_url": "https://pypi.org/project/ripe.atlas.cousteau/1.4.2/", "requires_dist": [ "python-dateutil", "socketIO-client (>=0.6.5)", "requests (>=2.7.0)", "websocket-client (<0.99)" ], "requires_python": "", "summary": "Python wrapper for RIPE Atlas API", "version": "1.4.2" }, "last_serial": 3694729, "releases": { "0.10": [ { "comment_text": "", "digests": { "md5": "e04decf567dcc37a9f2cc6c49d2a4681", "sha256": "8afbe07ad91b578e1b175e230a37b3b115131a5fe0acdd61e010156fc338c94b" }, "downloads": -1, "filename": "ripe.atlas.cousteau-0.10.tar.gz", "has_sig": false, "md5_digest": "e04decf567dcc37a9f2cc6c49d2a4681", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47450, "upload_time": "2015-10-02T14:57:37", "url": "https://files.pythonhosted.org/packages/77/09/baf1e800a9f2117cb5de24c82fe6e475911e461d9105e90ff894c22f77b5/ripe.atlas.cousteau-0.10.tar.gz" } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "3666d473362145bbcd649dd5f3b8926b", "sha256": "e814596047b175902f5794ee4e5ebde1ca266abdd27f95df07eb8c2c98eb4d63" }, "downloads": -1, "filename": "ripe.atlas.cousteau-0.10.1.tar.gz", "has_sig": false, "md5_digest": "3666d473362145bbcd649dd5f3b8926b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48211, "upload_time": "2015-10-06T13:12:05", "url": "https://files.pythonhosted.org/packages/54/86/b493e720bad5ad27f90ae0f9333f7e28c174b1dee454899e02829ff1cd77/ripe.atlas.cousteau-0.10.1.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "55f63fc3856a5437b6ae0d8dffa55952", "sha256": "e9381b9224657cbb5aa120857906dd8eb6e3fa507e821421acea6ec4df8a6f33" }, "downloads": -1, "filename": "ripe.atlas.cousteau-0.9.tar.gz", "has_sig": false, "md5_digest": "55f63fc3856a5437b6ae0d8dffa55952", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41975, "upload_time": "2015-09-01T12:21:07", "url": "https://files.pythonhosted.org/packages/78/3f/fb6c21330d5ddeec2656b938b421ea782686c4fc298a6c55f4de2f04a668/ripe.atlas.cousteau-0.9.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "7bbd9a1881a7373e65305a7717ee1e0f", "sha256": "79fdcd15091593703613578a0b7113c1ba2ca6ee4f21e579248033720f2302f2" }, "downloads": -1, "filename": "ripe.atlas.cousteau-0.9.1.tar.gz", "has_sig": false, "md5_digest": "7bbd9a1881a7373e65305a7717ee1e0f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42084, "upload_time": "2015-09-03T10:55:50", "url": "https://files.pythonhosted.org/packages/2f/03/e87e9d4e8595ce46b22fd16c80dc7f1abed110110f59d582691c33471dcb/ripe.atlas.cousteau-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "01009c5f61dc593d4ecf8f54d34af238", "sha256": "e2a43cdb6e8ce67bb75a112531524e255e631da4e013ed433c02cf0f7653347c" }, "downloads": -1, "filename": "ripe.atlas.cousteau-0.9.2.tar.gz", "has_sig": false, "md5_digest": "01009c5f61dc593d4ecf8f54d34af238", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43514, "upload_time": "2015-09-21T16:18:27", "url": "https://files.pythonhosted.org/packages/e2/00/e9392512df68ba5b881e15f1591ab7f68dadbd7a0e0696d44722d8f9861e/ripe.atlas.cousteau-0.9.2.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "39b5299aea069a250531f9ea6114ad42", "sha256": "f009e990167707f1c1408561a2cab84d147526f760ffb400e3691292f28a46d1" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "39b5299aea069a250531f9ea6114ad42", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 76970, "upload_time": "2015-10-21T12:53:41", "url": "https://files.pythonhosted.org/packages/d0/a8/cd6e600ec2b62cbdd80d682ba66495f5db60ddb09011bf377d2f9724f188/ripe.atlas.cousteau-1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6f774b08c101e18379b4fc58b30e3f37", "sha256": "c8a3a6ace01cde808b0a35fe2df127a145b29cf87d4056e878a877c7e2ba72f4" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.0.tar.gz", "has_sig": false, "md5_digest": "6f774b08c101e18379b4fc58b30e3f37", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64840, "upload_time": "2015-10-21T12:53:37", "url": "https://files.pythonhosted.org/packages/00/5c/802d1f079a1509bed9b2427c4c4cee74c86f0dc2114c25b22024d1490826/ripe.atlas.cousteau-1.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "a8194a765c0f8d2c1908ba0be7557da7", "sha256": "11a307453f43b6071fc81b795264564ac066691fcb257ce25542c12456c4deb2" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a8194a765c0f8d2c1908ba0be7557da7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 77301, "upload_time": "2015-10-23T10:40:41", "url": "https://files.pythonhosted.org/packages/01/d5/95237ff2ff950c7f2e059f8a32ccb339e1ac513044961d04e4a7f66e7e96/ripe.atlas.cousteau-1.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e1d330fbf0ad9c73261e9a94cf7acf5c", "sha256": "101d0f3ef7464217e2adb0d48d5279825bf4a968a9f9c418e09eb271caee4c6f" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.0.1.tar.gz", "has_sig": false, "md5_digest": "e1d330fbf0ad9c73261e9a94cf7acf5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65195, "upload_time": "2015-10-23T10:40:45", "url": "https://files.pythonhosted.org/packages/52/67/668fb1dd92b74140601e4bec556cbf815e9371ba16e4d3bc85b659f161dc/ripe.atlas.cousteau-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "0dfc52b56e12675f8c7de9f3fb8af4f3", "sha256": "9b21758b30405763dae80267f42e35346b091cb8af864294e95ceef08724c879" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0dfc52b56e12675f8c7de9f3fb8af4f3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 77402, "upload_time": "2015-10-26T10:20:52", "url": "https://files.pythonhosted.org/packages/05/57/1df5c71790daad43e1d6bae18c93f06c1f9022d8f1e49c7395d4be8f5f3e/ripe.atlas.cousteau-1.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5c75f3e7dda6ce0d5a0adb09add9b5b2", "sha256": "26e411aaabff668ad0c2856676b49393dcc0e384bb30042e35c058eea2deebc6" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.0.2.tar.gz", "has_sig": false, "md5_digest": "5c75f3e7dda6ce0d5a0adb09add9b5b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65406, "upload_time": "2015-10-26T10:20:56", "url": "https://files.pythonhosted.org/packages/63/d2/66a7da494d92119374bc9416ccc4d45470217da7098c67e99345e87f14ea/ripe.atlas.cousteau-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "25862dbb97d552f1334a564a8e335bed", "sha256": "355db7695090121e0479ba8e0028c93032de6615b8e57e83d2160cf99f21b44c" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "25862dbb97d552f1334a564a8e335bed", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 78424, "upload_time": "2015-11-06T13:31:14", "url": "https://files.pythonhosted.org/packages/63/33/95be7a924b1e0a8e4d480c6e5aae1351903384fe57e9cc42e37a5c3b15cf/ripe.atlas.cousteau-1.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "63398c1816156b67ca4a834e6a56af7d", "sha256": "bbda0ce1154cfe6deea424c416fa881909b6bf914e739620e9a98f5ebb9f796f" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.0.3.tar.gz", "has_sig": false, "md5_digest": "63398c1816156b67ca4a834e6a56af7d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66443, "upload_time": "2015-11-06T13:31:20", "url": "https://files.pythonhosted.org/packages/df/4f/0884aa33a4b2d01a2c21cb91fbaab60f1025e0433a50cd1bbd132bde82ef/ripe.atlas.cousteau-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "43ec3108aa2289e1c74038f2884636be", "sha256": "58381cc5dd2d8b36d34dfd0a51d3a07cfbf53aefc012f4dcabcdc064957ae832" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "43ec3108aa2289e1c74038f2884636be", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 78417, "upload_time": "2015-11-06T13:33:45", "url": "https://files.pythonhosted.org/packages/ee/19/4b22642b037dfec5a01e7b3ecc17fb57d85f2db593fa8e23ca5f64df16b6/ripe.atlas.cousteau-1.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "02534728feb8455b5de8e553480a0ece", "sha256": "1c13a89c946f4027b5e13c4cd9a5e35dcdfa7939e08c11fc37d382d6c52a238d" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.0.4.tar.gz", "has_sig": false, "md5_digest": "02534728feb8455b5de8e553480a0ece", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66435, "upload_time": "2015-11-06T13:33:51", "url": "https://files.pythonhosted.org/packages/1b/77/ff1afaf6d108a5b28fed42058cbcf2e8c400f866264e9c261d522b22f147/ripe.atlas.cousteau-1.0.4.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "9e4cc2b6eb6881409c79e5bfe9454f89", "sha256": "aa78467d8fd95e02680b1b1fb26eef817db7c384c4d803636c0c34af474f5a07" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.0.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9e4cc2b6eb6881409c79e5bfe9454f89", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 78390, "upload_time": "2015-12-14T13:40:24", "url": "https://files.pythonhosted.org/packages/e5/ad/6b5c1ffe901d6d50623bb91471ecd4c764b41bee991d44103b2c3d772409/ripe.atlas.cousteau-1.0.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ec23961a2ca4b3784ec98ae73c8be08a", "sha256": "0c733454a94a6ba2f2f931cd4e91d5cbd8764245772b460ff1097f767681c1a0" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.0.5.tar.gz", "has_sig": false, "md5_digest": "ec23961a2ca4b3784ec98ae73c8be08a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126926, "upload_time": "2015-12-14T13:40:33", "url": "https://files.pythonhosted.org/packages/d9/6a/fcd16a6a7357c0c0f65625f4557f38298c2ddf5aa7c09a1155b420fe5545/ripe.atlas.cousteau-1.0.5.tar.gz" } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "a79e4c8645f25149a79bec108d1c35a6", "sha256": "cf2be87db20889bd3071c4f79a6d77f06af51afe7e9c052800cd0add0e4be3ad" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.0.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a79e4c8645f25149a79bec108d1c35a6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 25774, "upload_time": "2015-12-15T14:30:57", "url": "https://files.pythonhosted.org/packages/6c/64/b84a795f46983f4765c6947ec68bdb51d46457c8713da692526a23addf8e/ripe.atlas.cousteau-1.0.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "196933a791e4d0c2eb123ca5a79162e0", "sha256": "1407b003a03f359739d35010812af2841bc9df2784cd2078e55ac34d0a858ad6" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.0.6.tar.gz", "has_sig": false, "md5_digest": "196933a791e4d0c2eb123ca5a79162e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45467, "upload_time": "2015-12-15T14:31:12", "url": "https://files.pythonhosted.org/packages/cf/08/3e97497fc85d351ee7664ee0a42bd825c5bb4a396056572edcc52db36fd1/ripe.atlas.cousteau-1.0.6.tar.gz" } ], "1.0.7": [ { "comment_text": "", "digests": { "md5": "16579d7fa77ca9df4d6fc4b2171e565c", "sha256": "9bf46c87edf52bf96974be9d77cce0f7bcee2680a3c641727d3e4e5f3404eb69" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.0.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "16579d7fa77ca9df4d6fc4b2171e565c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 26171, "upload_time": "2016-01-13T09:30:45", "url": "https://files.pythonhosted.org/packages/32/85/e86a30cd49ff3c552df981238365c782f3d787b74e1b3926c2621613c235/ripe.atlas.cousteau-1.0.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a10d16cb42f463b2d949a8516acd3c3d", "sha256": "4f99abf9e985109174bc5dae38e958dfc85dc41a872bbf916763a1f53a9e4b6b" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.0.7.tar.gz", "has_sig": false, "md5_digest": "a10d16cb42f463b2d949a8516acd3c3d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45757, "upload_time": "2016-01-13T09:30:52", "url": "https://files.pythonhosted.org/packages/3e/b2/6aaed0c895c639ba7f573d04a8aaa223b50d48535d3197c8f10ecbe6a543/ripe.atlas.cousteau-1.0.7.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "a505183a81acf82156f9e76f2c4b36a5", "sha256": "a12612627fd60128d3dc0a9b9e69bc255ee06b334e5484cedc993824629d4d3c" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a505183a81acf82156f9e76f2c4b36a5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 28130, "upload_time": "2016-02-09T12:54:31", "url": "https://files.pythonhosted.org/packages/29/30/40462e6c3816644a29d9cb31fb210409f4f164604afa0ab95afb45c21bb2/ripe.atlas.cousteau-1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "086b85f11f0fd7ce3eda61d4c45dfbf5", "sha256": "59915f0a938da4cc5739f92cf5421fe883bdfdced50fc3f4fe13ff1501522ca2" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.1.tar.gz", "has_sig": false, "md5_digest": "086b85f11f0fd7ce3eda61d4c45dfbf5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46404, "upload_time": "2016-02-09T12:54:41", "url": "https://files.pythonhosted.org/packages/03/44/6094d4259e5ceac822f3b71440ec3e460931ca4911fd4cd86803dae0683d/ripe.atlas.cousteau-1.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "45dc8c8c69fb804747c951a4028e4dca", "sha256": "ed4d9ea04b30613420834e0e023aad2c30af7f64c3e45c08ff5531fb7ffd1a1f" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "45dc8c8c69fb804747c951a4028e4dca", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 28335, "upload_time": "2016-03-02T12:11:29", "url": "https://files.pythonhosted.org/packages/67/3c/c46758fc2c4cb7f980f5cb702ce36e90219411bcb1f5c8a5aabcce8934bc/ripe.atlas.cousteau-1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dd85524f92dd213541da18aaeffa048f", "sha256": "0b4ed516478fb6a9e2268dc68eca86722961ec4209f9e54fe37564765c56025e" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.2.tar.gz", "has_sig": false, "md5_digest": "dd85524f92dd213541da18aaeffa048f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47015, "upload_time": "2016-03-02T12:11:50", "url": "https://files.pythonhosted.org/packages/97/d3/ada162c265b48077b0e9c60d9877ddb0d3528079ae98d7b97e521e8cb59c/ripe.atlas.cousteau-1.2.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "67755f21ed2b4222e4fcd93a7744c995", "sha256": "489d16aa6c111180a3092c712d6291bf2dc2843c00e61ebb7ed1571897003932" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "67755f21ed2b4222e4fcd93a7744c995", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 29100, "upload_time": "2016-10-21T12:29:36", "url": "https://files.pythonhosted.org/packages/eb/8b/b0ad999446344ac554bf2c9674de33ea9532e703ec008a56d4135c7d37c1/ripe.atlas.cousteau-1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "802b2f484139b7786946624ac5814912", "sha256": "260c3effc0b11269ecb7fbd5fde790c51ff9e9e12ebfdca3ca1680ae4d9afd7f" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.3.tar.gz", "has_sig": false, "md5_digest": "802b2f484139b7786946624ac5814912", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48301, "upload_time": "2016-10-21T12:29:39", "url": "https://files.pythonhosted.org/packages/b8/23/5dd7adf6e7f6d6b01a6b2ad429213d2cb93cf558593ae6a88b2f5d720b83/ripe.atlas.cousteau-1.3.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "721cc31580d20001063a9d9332f0120b", "sha256": "2ea85bc177326ec430e538a26aa54bccc15bac8a816fba16a279986ab61e2c4c" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "721cc31580d20001063a9d9332f0120b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 29866, "upload_time": "2017-04-21T09:00:07", "url": "https://files.pythonhosted.org/packages/f5/2b/cf18b95b0d6c0ba077bcfe25b8c33667cf3fb6d31f924627bbb86a0719b3/ripe.atlas.cousteau-1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ac4bc28d59988ac577c5246849de63cf", "sha256": "41e0c91ae4459a6c101448f5bafb043ba44b4abfd9a80a5ae0b4c3a1bb550a52" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.4.tar.gz", "has_sig": false, "md5_digest": "ac4bc28d59988ac577c5246849de63cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49303, "upload_time": "2017-04-21T09:00:10", "url": "https://files.pythonhosted.org/packages/af/ac/a6006bd159d794183162d1491b71ba6d94f47bcfb2c0a6a9a1b536e0d37a/ripe.atlas.cousteau-1.4.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "52550aad045fb117d53657072616fec2", "sha256": "91bf6c7bb0b5883ef1f932dbda49f188e798bef407f0110dfcbeca5819e01856" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "52550aad045fb117d53657072616fec2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 29891, "upload_time": "2018-01-08T14:41:16", "url": "https://files.pythonhosted.org/packages/07/66/5846306f10394116e256025f37a2f92037b99f340880f01b5922c59186a7/ripe.atlas.cousteau-1.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "15b2f0ef0d2bda844ade085443effdd1", "sha256": "17d40dbcc1678b096ce3a96eb55322be61a8085ab5ea9bbe0e10e3d628c5c4a4" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.4.1.tar.gz", "has_sig": false, "md5_digest": "15b2f0ef0d2bda844ade085443effdd1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47983, "upload_time": "2018-01-08T14:41:18", "url": "https://files.pythonhosted.org/packages/5a/d5/53bf55f31db1101601999b2424792d071c7594097de79b96387e08e9a1de/ripe.atlas.cousteau-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "87e5de4e1082769dea6f59d5604a80bf", "sha256": "25778c9d7785c0f067ceb2f16a349f5a727c8343994f9b5cf3895ba588944bba" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "87e5de4e1082769dea6f59d5604a80bf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 30982, "upload_time": "2018-03-22T09:21:33", "url": "https://files.pythonhosted.org/packages/08/92/75d41367a2a021a319d0ef7b2de415d9670fe7a72adcae1e7ae3e3c1df74/ripe.atlas.cousteau-1.4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3622b0edc3ebde9a5c9968b9f8319ad1", "sha256": "10b930ff67c9744f6ee275e07a441a8fba1911f251e92c0ca511b8c082a3fcd5" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.4.2.tar.gz", "has_sig": false, "md5_digest": "3622b0edc3ebde9a5c9968b9f8319ad1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48655, "upload_time": "2018-03-22T09:21:35", "url": "https://files.pythonhosted.org/packages/bc/b4/5483fe78be051910c5077d7804bf24406f327ce7020714404dd97fbdb6ce/ripe.atlas.cousteau-1.4.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "87e5de4e1082769dea6f59d5604a80bf", "sha256": "25778c9d7785c0f067ceb2f16a349f5a727c8343994f9b5cf3895ba588944bba" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "87e5de4e1082769dea6f59d5604a80bf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 30982, "upload_time": "2018-03-22T09:21:33", "url": "https://files.pythonhosted.org/packages/08/92/75d41367a2a021a319d0ef7b2de415d9670fe7a72adcae1e7ae3e3c1df74/ripe.atlas.cousteau-1.4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3622b0edc3ebde9a5c9968b9f8319ad1", "sha256": "10b930ff67c9744f6ee275e07a441a8fba1911f251e92c0ca511b8c082a3fcd5" }, "downloads": -1, "filename": "ripe.atlas.cousteau-1.4.2.tar.gz", "has_sig": false, "md5_digest": "3622b0edc3ebde9a5c9968b9f8319ad1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48655, "upload_time": "2018-03-22T09:21:35", "url": "https://files.pythonhosted.org/packages/bc/b4/5483fe78be051910c5077d7804bf24406f327ce7020714404dd97fbdb6ce/ripe.atlas.cousteau-1.4.2.tar.gz" } ] }