dataroom-client 0.0.0.post1.dev0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- dataroom_client-0.0.0.post1.dev0/PKG-INFO +41 -0
- dataroom_client-0.0.0.post1.dev0/README.md +26 -0
- dataroom_client-0.0.0.post1.dev0/dataroom_client/__init__.py +2 -0
- dataroom_client-0.0.0.post1.dev0/dataroom_client/client.py +1443 -0
- dataroom_client-0.0.0.post1.dev0/dataroom_client/counter.py +45 -0
- dataroom_client-0.0.0.post1.dev0/dataroom_client/loader.py +61 -0
- dataroom_client-0.0.0.post1.dev0/dataroom_client/print_utils.py +11 -0
- dataroom_client-0.0.0.post1.dev0/pyproject.toml +30 -0
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: dataroom-client
|
|
3
|
+
Version: 0.0.0.post1.dev0
|
|
4
|
+
Summary: A python client to interface with the Dataroom backend API
|
|
5
|
+
Author: Ales Kocjancic
|
|
6
|
+
Author-email: hi@ales.io
|
|
7
|
+
Requires-Python: >=3.11,<4.0
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
12
|
+
Requires-Dist: httpx (>=0.24.1,<1)
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
# Installation
|
|
17
|
+
|
|
18
|
+
```
|
|
19
|
+
pip install dataroom-client
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
# Usage
|
|
24
|
+
|
|
25
|
+
After getting an account you can find your API key on the settings page.
|
|
26
|
+
|
|
27
|
+
```
|
|
28
|
+
from dataroom_client import DataRoomClient
|
|
29
|
+
|
|
30
|
+
DataRoom = DataRoomClient(api_key='YOUR_SECRET_API_KEY_HERE', api_url='YOUR_API_URL_HERE')
|
|
31
|
+
|
|
32
|
+
images = await DataRoom.get_images()
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
For more examples see [client_example.ipynb](./notebooks/client_example.ipynb).
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
# Developing
|
|
39
|
+
|
|
40
|
+
Check out the `dataroom` repo and follow the instructions in the README.
|
|
41
|
+
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
|
|
2
|
+
# Installation
|
|
3
|
+
|
|
4
|
+
```
|
|
5
|
+
pip install dataroom-client
|
|
6
|
+
```
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
# Usage
|
|
10
|
+
|
|
11
|
+
After getting an account you can find your API key on the settings page.
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
from dataroom_client import DataRoomClient
|
|
15
|
+
|
|
16
|
+
DataRoom = DataRoomClient(api_key='YOUR_SECRET_API_KEY_HERE', api_url='YOUR_API_URL_HERE')
|
|
17
|
+
|
|
18
|
+
images = await DataRoom.get_images()
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
For more examples see [client_example.ipynb](./notebooks/client_example.ipynb).
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
# Developing
|
|
25
|
+
|
|
26
|
+
Check out the `dataroom` repo and follow the instructions in the README.
|