client-python icon indicating copy to clipboard operation
client-python copied to clipboard

The official Python client library for the Polygon REST and WebSocket API.

Results 62 client-python issues
Sort by recently updated
recently updated
newest added

Bumps [orjson](https://github.com/ijl/orjson) from 3.10.7 to 3.10.9. Release notes Sourced from orjson's releases. 3.10.9 Fixed Fix int serialization on 32-bit Python 3.8, 3.9, 3.10. This was introduced in 3.10.8. 3.10.8 Changed...

dependencies

A diff between this client library's spec and our hosted spec was found. The client may need an update to match any changes in our API. See the diff below:...

spec

A diff between this client library's spec and our hosted spec was found. The client may need an update to match any changes in our API. See the diff below:...

spec

Bumps [pook](https://github.com/h2non/pook) from 2.0.0 to 2.0.1. Release notes Sourced from pook's releases. v2.0.1 https://pypi.org/project/pook/2.0.1/ Improve aiohttp JSONMatcher support by @​KyleJamesWalker in h2non/pook#139 Full Changelog: https://github.com/h2non/pook/compare/v2.0.0...v2.0.1 Changelog Sourced from pook's changelog....

dependencies

A diff between this client library's spec and our hosted spec was found. The client may need an update to match any changes in our API. See the diff below:...

spec

A diff between this client library's spec and our hosted spec was found. The client may need an update to match any changes in our API. See the diff below:...

spec

Update client with Short Interest and IPOs support. This PR adds `list_short_interest` and `list_ipos` functions and working examples. Short Interest ```python from polygon import RESTClient client = RESTClient() # POLYGON_API_KEY...

I am using version: 1.14.6 When calling `client.list_aggs`, now it's throw error: polygon.exceptions.BadResponse: {"status":"ERROR","request_id":"708a85cecad66756c956da798714ac63","error":"The parameter 'to' cannot be a time that occurs before 'from'"} I didn't change my calling code....

bug

Inside pyproject.toml, `websockets = ">=10.3,

bug

**Describe the bug** ``` from polygon import RESTClient from dataclasses import asdict client = RESTClient() date = "2025-06-12" quotes = [asdict(q) for q in client.list_quotes("AAPL", limit=1)] print(f"Number of quotes: {len(quotes)}")...

bug