Releases: polygon-io/client-python
Releases · polygon-io/client-python
v1.0.0.beta13
What's Changed
- add contributing docs by @clickingbuttons in #182
- add limit param to financials by @clickingbuttons in #181
- Options contracts by @Darcy-Linde in #183
Full Changelog: v1.0.0.beta12...v1.0.0.beta13
v1.0.0.beta12
What's Changed
- address most of caleb feedback by @clickingbuttons in #169
- Add docs backlinks and missing endpoints by @Darcy-Linde in #170
- use kw arg names in examples by @clickingbuttons in #171
- fix financials and add example by @clickingbuttons in #173
- make examples simpler by @clickingbuttons in #172
- bump minimum python version to 3.8 by @morningvera in #175
- Audited models for missing fields, removed unneeded arrays and enum imports, add Exceptions docs by @Darcy-Linde in #176
- test on windows/osx by @clickingbuttons in #174
- Custom class decorator to handle excess parameters by @Darcy-Linde in #177
New Contributors
- @morningvera made their first contribution in #175
Full Changelog: v1.0.0.beta11...v1.0.0.beta12
1.0.0 beta 11
What's Changed
- add auth failed msg by @clickingbuttons in #157
- Rename forex to crypto by @Darcy-Linde in #158
- Iterator note by @Darcy-Linde in #159
- vX Usage Note by @Darcy-Linde in #160
- User agent version by @clickingbuttons in #161
- Raise AuthenticationError by @Darcy-Linde in #162
- make websockets have 2 apis by @clickingbuttons in #163
- fix get_ticker_details by @clickingbuttons in #166
- move examples to example dir by @clickingbuttons in #167
- cryptotrade: rename sym to pair by @clickingbuttons in #168
Full Changelog: v1.0.0.beta10...v1.0.0.beta11
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)