- The AtlasStream class has been updated to use the new WebSocket interface
- AtlasStream objects can now be iterated as an alternative to using callbacks
- There used to be both start_stream() and subscribe() methods which did the same thing, except that start_stream() had extra validation. This extra validation has been added to subscribe(), and start_stream() is now an alias to it.
- bind_channel() was renamed to bind(), although it is maintained as an alias, and there is a corresponding unbind() to remove a callback
- Deprecated event aliases were dropped, you have to use full event names like "atlas_result" and "atlas_metadata" when binding
- Make it possible to instantiate AtlasMeasurement directly by passing in a "type" value in the spec
- Drop support for old Python versions (>= 3.6 supported)
- Documentation fixes
- Use python-socketio instead of socketIO-client for streaming
- Include an 'unsubscribe' method on AtlasStream, as well as constants for currently available event names
- Update testing framework to use pytest
- Add support for tagging and untagging measurements
- Minor fixes
- Expose bill_to option for measurement creation
- Enable User-Agent for stream connections
- Update stream channel names to new naming scene in the background
- Fix bug where stream was not reconnected after a disconnect
- Fix unicode cases on the stream spotted by @JonasGroeger
- Improved streaming support:
- Introduce error handling
- Channels errors binded by default
- Introduced debug mode
- Update features set. See all here https://atlas.ripe.net/docs/result-streaming/
- Deprecated short events name and local event name checking. See the event names here https://atlas.ripe.net/docs/result-streaming/
- Introduced support for proxies and additional headers
- Timezone aware objects for measurement meta data
- Backwards incompatible field changes on the Measurement object:
- destination_address -> target_ip
- destination_asn -> target_asn
- destination_name -> target
- Start supporting Anchors listing API.
- Brand new documentation hosted on readthedocs.
- Various refactorings to clean up codebase.
- Backwards compatible change of the format we expect for measurement type to handle upcoming change in the API.
- Fix bug when creating stream for probes connection channel. Updating also wrong documentation.
- Add copyright text everywhere for debian packaging.
- Add tests to the package itself.
- Make user-agent changeable by the user.
- Various refactorings.
- Handle both string/dictionary as input for probe_ids filter for Result and LatestResult requests.
- Fix bug where key parameter was added to the url even if it was empty.
- Fix bug where we didn't try to unjson 4xx responses even if they could contain json structure.
- Now we conform to new API feature that allows for specifying tags when adding probes to existing measurements
- Fix bug we didn't allow user to specify single tag include/exclude.
- Add support for include/exclude tags in changing sources requests.
- Add support for latest results API call.
- Implement HTTP measurement creation.
- Support for python 3 (<=3.4).
- Support for pypy/pypy3.
- Support for wheels format.
- Migrate all Atlas requests to use requests library and refactor a lot of code to have a cleaner version.
- Create an API v2 translator to address several option name changing. A deprecation warning will be given.
- Fix bug where python representation of measurements without a stop time was exploding.
- Make sure start/stop timestamps in measurement create request are always in UTC.
- Implement support for object return in the request generators for probe/measurement.
- Probe/Measurement python representation takes meta data from v2 API as well. Now everything should point to v2 API.
- add object representation of meta data for a probe or a measurement.
- Abandon v1 RIPE ATLAS API and use only v2.
- Fix bug that prevented users from specifying all possible source types when they tried to add more probes to existing measurements.
- 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.
- Small refactor of Stream class and manually enforce websockets in SocketIO client
- Fix bug related to binding result atlas stream.
- add support for fetching real time results using RIPE Atlas stream server.
- this version and on will be available on PYPI.
- add support for NTP measurements.
- add support for fetching probes/measurements meta data using python generators.
- add support for querying results based on start/end time, msm_id and probe id.
- add http agent according to package version to all requests.
- change package structure to comply with the new structure of atlas packages
- add continuous integration support
- add tests
- enable travis
- enable code health checks
- add required files for uploading to github
- add support for stopping a measurement.
- add simple support for HTTP GET queries.
- add support for adding/removing probes API request.
- use AtlasCreateRequest instead of AtlasRequest for creating a new measurement.
- Initial release.