Releases: massive-com/client-python
Releases · massive-com/client-python
Add websockets
What's Changed
- Stocks financials by @Darcy-Linde in #150
- Websockets by @clickingbuttons in #153
- Add Enums to docs by @Darcy-Linde in #154
- add certifi by @clickingbuttons in #155
Full Changelog: v1.0.0.beta8...v1.0.0.beta9
Add certifi to websockets
What's Changed
- add certifi for wss by @clickingbuttons in #156
Full Changelog: v1.0.0.beta9...v1.0.0.beta10
v1.0.0.beta8
Version bump only
v1.0.0.beta7
Fix dataclasses
What's Changed
- Merge v1 into master by @clickingbuttons in #145
- move mocks to json files by @clickingbuttons in #147
- fix non-list return types by @clickingbuttons in #148
- setup releasing on pushing a v* tag by @clickingbuttons in #149
- Add Models to Docs by @Darcy-Linde in #146
Full Changelog: v0.2.11...v1.0.0.beta7
Add next_url param to Tickers v3 for pagination
You can now pass a next_url attribute as a parameter when using the Tickers v3 endpoint, like so:
resp = client.reference_tickers_v3(next_url = 'https://api.polygon.io/v3/reference/tickers?cursor=[...]')Fixed stocks daily open close bug
See #69. This release fixes a bug where users were unable to get the daily open/close from our stocks API.
Added missing endpoints
This release adds several new endpoints to our python client:
- Reference Tickers v3
- Reference Ticker Details vX
- Reference Ticker News v2
As well as some old endpoints that this client was missing: - Aggregates, Grouped Daily & Previous Close (both for FX and Crypto)
- Forex Market Snapshot (single ticker)
Add documentation and allow users to pass http timeouts to rest client
pass RESTClient a timeout in seconds (#41) This will throw a `requests.ConnectTimeout` if the timeout is passed before the server responds. I believe the default amount of retries is 3, but I haven't checked.