client-python
client-python copied to clipboard
The official Python client library for the Polygon REST and WebSocket API.
For example: [https://polygon.io/docs/rest/options/contracts/all-contracts](https://polygon.io/docs/rest/options/contracts/all-contracts) says: ``` underlying_ticker.gte string Search underlying_ticker for values that are greater than or equal to the given value. ``` when it should really be: ``` underlying_ticker_gte string...
**Describe the bug** The documentation of the Python lib. states that if the "search" argument is given, list_tickers' results would be sorted by relevance: https://polygon-api-client.readthedocs.io/en/latest/Reference.html#polygon.RESTClient.list_tickers but it doesn't seem to...