You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Welcome to the official Python client library for the [Polygon](https://polygon.io/) REST and WebSocket API. To get started, please see the [Getting Started](https://polygon.io/docs/stocks/getting-started) section in our documentation, view the [examples](./examples/) directory for code snippets, or the [blog post](https://polygon.io/blog/polygon-io-with-python-for-stock-market-data/) with video tutorials to learn more.
3
+
Welcome to the official Python client library for the [Massive](https://massive.io/) REST and WebSocket API. To get started, please see the [Getting Started](https://massive.io/docs/stocks/getting-started) section in our documentation, view the [examples](./examples/) directory for code snippets.
7
4
8
5
## Prerequisites
9
6
10
-
Before installing the Polygon Python client, ensure your environment has Python 3.9 or higher.
7
+
Before installing the Massive Python client, ensure your environment has Python 3.9 or higher.
11
8
12
9
## Install
13
10
14
11
Please use pip to install or update to the latest stable version.
15
12
```
16
-
pip install -U polygon-api-client
13
+
pip install -U massive
17
14
```
18
15
19
16
## Getting started
20
17
21
-
To get started, please see the [Getting Started](https://polygon-api-client.readthedocs.io/en/latest/Getting-Started.html) section in our docs, view the [examples](./examples) directory for code snippets, or view the [blog post with videos](https://polygon.io/blog/polygon-io-with-python-for-stock-market-data/) to learn more.
18
+
To get started, please see the [Getting Started](https://massive.io/docs/stocks/getting-started) section in our docs, view the [examples](./examples) directory for code snippets.
22
19
23
-
The free tier of our API comes with usage limitations, potentially leading to rate limit errors if these are exceeded. For uninterrupted access and to support larger data requirements, we recommend reviewing our [subscription plans](https://polygon.io/pricing), which are tailored for a wide range of needs from development to high-demand applications. Refer to our pricing page for detailed information on limits and features to ensure a seamless experience, especially for real-time data processing.
20
+
The free tier of our API comes with usage limitations, potentially leading to rate limit errors if these are exceeded. For uninterrupted access and to support larger data requirements, we recommend reviewing our [subscription plans](https://massive.io/pricing), which are tailored for a wide range of needs from development to high-demand applications. Refer to our pricing page for detailed information on limits and features to ensure a seamless experience, especially for real-time data processing.
24
21
25
22
## REST API Client
26
23
Import the RESTClient.
27
24
```python
28
-
frompolygonimport RESTClient
25
+
frommassiveimport RESTClient
29
26
```
30
-
Create a new client with your [API key](https://polygon.io/dashboard/api-keys)
27
+
Create a new client with your [API key](https://massive.io/dashboard/api-keys)
31
28
```python
32
29
client = RESTClient(api_key="<API_KEY>")
33
30
```
@@ -147,8 +144,8 @@ When debug mode is enabled, the client will print out useful debugging informati
147
144
For instance, if you made a request for `TSLA` data for the date `2023-08-01`, you would see debug output similar to the following:
0 commit comments