evo-files 0.1.0__py3-none-any.whl → 0.2.0__py3-none-any.whl
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.
- evo/files/io.py +1 -1
- evo/files/py.typed +0 -0
- {evo_files-0.1.0.dist-info → evo_files-0.2.0.dist-info}/METADATA +28 -8
- {evo_files-0.1.0.dist-info → evo_files-0.2.0.dist-info}/RECORD +6 -6
- {evo_files-0.1.0.dist-info → evo_files-0.2.0.dist-info}/WHEEL +1 -2
- evo_files-0.1.0.dist-info/top_level.txt +0 -1
- {evo_files-0.1.0.dist-info → evo_files-0.2.0.dist-info}/licenses/LICENSE.md +0 -0
evo/files/io.py
CHANGED
|
@@ -144,7 +144,7 @@ class FileAPIDownload(Download[FileMetadata], _FileIOMixin):
|
|
|
144
144
|
def __init__(self, connector: APIConnector, metadata: FileMetadata, initial_url: str) -> None:
|
|
145
145
|
"""
|
|
146
146
|
:param connector: The connector to use for the API calls.
|
|
147
|
-
:param metadata: The metadata of the file that
|
|
147
|
+
:param metadata: The metadata of the file that will be downloaded.
|
|
148
148
|
:param initial_url: The initial URL to use for the download.
|
|
149
149
|
"""
|
|
150
150
|
super().__init__(connector, initial_url)
|
evo/files/py.typed
ADDED
|
File without changes
|
|
@@ -1,26 +1,30 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: evo-files
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: Python SDK for using the Seequent Evo File API
|
|
5
|
+
Project-URL: Source, https://github.com/SeequentEvo/evo-python-sdk
|
|
6
|
+
Project-URL: Tracker, https://github.com/SeequentEvo/evo-python-sdk/issues
|
|
7
|
+
Project-URL: Homepage, https://www.seequent.com/
|
|
8
|
+
Project-URL: Documentation, https://developer.seequent.com/
|
|
5
9
|
Author-email: Seequent <support@seequent.com>
|
|
6
|
-
Requires-Python: >=3.10
|
|
7
|
-
Description-Content-Type: text/markdown
|
|
8
10
|
License-File: LICENSE.md
|
|
11
|
+
Requires-Python: >=3.10
|
|
9
12
|
Requires-Dist: evo-sdk-common>=0.1.0
|
|
10
13
|
Requires-Dist: pydantic<3,>=2
|
|
11
14
|
Provides-Extra: aiohttp
|
|
12
|
-
Requires-Dist: evo-sdk-common[aiohttp]>=0.1.0; extra ==
|
|
15
|
+
Requires-Dist: evo-sdk-common[aiohttp]>=0.1.0; extra == 'aiohttp'
|
|
13
16
|
Provides-Extra: notebooks
|
|
14
|
-
Requires-Dist: evo-sdk-common[notebooks]>=0.1.0; extra ==
|
|
15
|
-
|
|
17
|
+
Requires-Dist: evo-sdk-common[notebooks]>=0.1.0; extra == 'notebooks'
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
16
19
|
|
|
17
20
|
<p align="center"><a href="https://seequent.com" target="_blank"><picture><source media="(prefers-color-scheme: dark)" srcset="https://developer.seequent.com/img/seequent-logo-dark.svg" alt="Seequent logo" width="400" /><img src="https://developer.seequent.com/img/seequent-logo.svg" alt="Seequent logo" width="400" /></picture></a></p>
|
|
18
21
|
<p align="center">
|
|
22
|
+
<a href="https://pypi.org/project/evo-files/"><img alt="PyPI - Version" src="https://img.shields.io/pypi/v/evo-files" /></a>
|
|
19
23
|
<a href="https://github.com/SeequentEvo/evo-python-sdk/actions/workflows/on-push.yaml"><img src="https://github.com/SeequentEvo/evo-python-sdk/actions/workflows/on-push.yaml/badge.svg" alt="" /></a>
|
|
20
24
|
</p>
|
|
21
25
|
<p align="center">
|
|
22
26
|
<a href="https://developer.seequent.com/" target="_blank">Seequent Developer Portal</a>
|
|
23
|
-
• <a href="https://community.seequent.com/" target="_blank">Seequent Community</a>
|
|
27
|
+
• <a href="https://community.seequent.com/group/19-evo" target="_blank">Seequent Community</a>
|
|
24
28
|
• <a href="https://seequent.com" target="_blank">Seequent website</a>
|
|
25
29
|
</p>
|
|
26
30
|
|
|
@@ -36,12 +40,28 @@ formats and sizes are accepted.
|
|
|
36
40
|
pip install evo-files
|
|
37
41
|
```
|
|
38
42
|
|
|
43
|
+
## Usage
|
|
44
|
+
|
|
45
|
+
To get up and running quickly with the Evo File SDK, start by configuring your
|
|
46
|
+
[environment and API connector](https://github.com/SeequentEvo/evo-python-sdk/blob/main/packages/evo-sdk-common/docs/quickstart.md).
|
|
47
|
+
|
|
48
|
+
You can then use the `FileAPIClient` to perform operations, for example:
|
|
49
|
+
|
|
50
|
+
```python
|
|
51
|
+
from evo.files import FileAPIClient
|
|
52
|
+
|
|
53
|
+
file_client = FileAPIClient(environment, connector)
|
|
54
|
+
files = await file_client.list_files()
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
For some interactive Jupyter notebook examples, see the [examples folder](https://github.com/SeequentEvo/evo-python-sdk/tree/main/packages/evo-files/docs/examples).
|
|
58
|
+
|
|
39
59
|
## Developing the library
|
|
40
60
|
|
|
41
61
|
For instructions on contributing to the development of this library, please refer to the [evo-python-sdk documentation](https://github.com/seequentevo/evo-python-sdk).
|
|
42
62
|
|
|
43
63
|
## License
|
|
44
|
-
The Python SDK for Evo is open source and licensed under the [Apache 2.0 license.](
|
|
64
|
+
The Python SDK for Evo is open source and licensed under the [Apache 2.0 license.](https://github.com/SeequentEvo/evo-python-sdk/tree/main/packages/evo-files/./LICENSE.md).
|
|
45
65
|
|
|
46
66
|
Copyright © 2025 Bentley Systems, Incorporated.
|
|
47
67
|
|
|
@@ -2,13 +2,13 @@ evo/files/__init__.py,sha256=jX2_a4BNg92QZFNEXaBpvpcSgbqRyOXrWx1JIkLUZqk,887
|
|
|
2
2
|
evo/files/_model_config.py,sha256=612yrPQyY-vquEboZdmSWkt8nT2ttbfBy476FyruV30,827
|
|
3
3
|
evo/files/client.py,sha256=-zfbeym3l9_3t-OjenWj-1k5ZVpLtpsNdmTiMi3PUVU,12847
|
|
4
4
|
evo/files/data.py,sha256=J9hieUY6LAeYhmIpRorMNcgjsYuSsO5R7_s1qnDAIlM,2380
|
|
5
|
-
evo/files/io.py,sha256=
|
|
5
|
+
evo/files/io.py,sha256=F7qByHP9qTk81XKDWdUjDKVqr72zsRY70cmMbprVKjI,6398
|
|
6
|
+
evo/files/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
7
|
evo/files/endpoints/__init__.py,sha256=UE77QavwbhokEtz8XmDl2p-z5fpsghraTgboDscq76A,1441
|
|
7
8
|
evo/files/endpoints/models.py,sha256=rz7wqkhfen9_wqQqj0mEUbKKnkA0AYniEe9QnoigdPY,4640
|
|
8
9
|
evo/files/endpoints/api/__init__.py,sha256=dHngHmRPwy-Kixoz7BP4ur4qzV4z9T2e8ccTqBtpuio,650
|
|
9
10
|
evo/files/endpoints/api/file_v2_api.py,sha256=mP3EiKbgmpw_Z5bzWmu-Fi3JuP9CsUpgN-9isywry3I,34127
|
|
10
|
-
evo_files-0.
|
|
11
|
-
evo_files-0.
|
|
12
|
-
evo_files-0.
|
|
13
|
-
evo_files-0.
|
|
14
|
-
evo_files-0.1.0.dist-info/RECORD,,
|
|
11
|
+
evo_files-0.2.0.dist-info/METADATA,sha256=nIPm3mVFgLvCSvZb97Qah8CfrTuDLm8aADEFzdMzm0M,3557
|
|
12
|
+
evo_files-0.2.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
13
|
+
evo_files-0.2.0.dist-info/licenses/LICENSE.md,sha256=HcFeRdOI-VP5WPEymQerlwLvEj2z_1Yh66RkN-wN7Oc,10778
|
|
14
|
+
evo_files-0.2.0.dist-info/RECORD,,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
evo
|
|
File without changes
|