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
The Python client helps managing the API calls to the RavenPack dataset server
14
-
in a Pythonic way, here are some examples of usage, you can find more in the tests.
13
+
The Python client helps managing the API calls to the RavenPack dataset server in a Pythonic way, here are some examples
14
+
of usage, you can find more in the tests.
15
15
16
16
## Usage
17
17
18
-
In order to be able to use the RavenPack API you will need an API KEY.
19
-
If you don't already have one please contact your [customer support](mailto:sales@ravenpack.com) representative.
18
+
In order to be able to use the RavenPack API you will need an API KEY. If you don't already have one please contact
19
+
your [customer support](mailto:sales@ravenpack.com) representative.
20
20
21
21
To begin using the API you will need to instantiate an API object that will deal with the API calls.
22
22
@@ -60,9 +60,11 @@ Here is how you may get a dataset definition for a pre-existing dataset
60
60
61
61
ds = api.get_dataset(dataset_id='us30')
62
62
```
63
+
63
64
#### Downloads: json
64
65
65
-
The json endpoint is useful for asking data synchronously, optimized for small requests, if you need to download big data chunks you may want to use the asynchronous datafile endpoint instead.
66
+
The json endpoint is useful for asking data synchronously, optimized for small requests, if you need to download big
67
+
data chunks you may want to use the asynchronous datafile endpoint instead.
0 commit comments