fere-sdk 0.5.0.dev44__tar.gz → 0.5.0.dev45__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.
- {fere_sdk-0.5.0.dev44 → fere_sdk-0.5.0.dev45}/PKG-INFO +4 -4
- {fere_sdk-0.5.0.dev44 → fere_sdk-0.5.0.dev45}/README.md +2 -2
- {fere_sdk-0.5.0.dev44 → fere_sdk-0.5.0.dev45}/pyproject.toml +2 -2
- {fere_sdk-0.5.0.dev44 → fere_sdk-0.5.0.dev45}/.gitignore +0 -0
- {fere_sdk-0.5.0.dev44 → fere_sdk-0.5.0.dev45}/src/fere_sdk/__init__.py +0 -0
- {fere_sdk-0.5.0.dev44 → fere_sdk-0.5.0.dev45}/src/fere_sdk/auth.py +0 -0
- {fere_sdk-0.5.0.dev44 → fere_sdk-0.5.0.dev45}/src/fere_sdk/client.py +0 -0
- {fere_sdk-0.5.0.dev44 → fere_sdk-0.5.0.dev45}/src/fere_sdk/low_level.py +0 -0
- {fere_sdk-0.5.0.dev44 → fere_sdk-0.5.0.dev45}/src/fere_sdk/models.py +0 -0
- {fere_sdk-0.5.0.dev44 → fere_sdk-0.5.0.dev45}/src/fere_sdk/perp_models.py +0 -0
- {fere_sdk-0.5.0.dev44 → fere_sdk-0.5.0.dev45}/src/fere_sdk/spot_models.py +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fere-sdk
|
|
3
|
-
Version: 0.5.0.
|
|
3
|
+
Version: 0.5.0.dev45
|
|
4
4
|
Summary: Python SDK for the FereAI Gateway API
|
|
5
|
-
Author-email: Fere AI <
|
|
5
|
+
Author-email: Fere AI <hello@fereai.xyz>
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Requires-Python: >=3.10
|
|
8
8
|
Requires-Dist: httpx>=0.27
|
|
@@ -28,7 +28,7 @@ pip install fere-sdk
|
|
|
28
28
|
```python
|
|
29
29
|
from fere_sdk import FereClient
|
|
30
30
|
|
|
31
|
-
client = FereClient(api_key="your-api-key", base_url="https://api.
|
|
31
|
+
client = FereClient(api_key="your-api-key", base_url="https://api.fereai.xyz")
|
|
32
32
|
```
|
|
33
33
|
|
|
34
|
-
See the [FereAI docs](https://api.
|
|
34
|
+
See the [FereAI docs](https://api.fereai.xyz) for full API reference.
|
|
@@ -13,7 +13,7 @@ pip install fere-sdk
|
|
|
13
13
|
```python
|
|
14
14
|
from fere_sdk import FereClient
|
|
15
15
|
|
|
16
|
-
client = FereClient(api_key="your-api-key", base_url="https://api.
|
|
16
|
+
client = FereClient(api_key="your-api-key", base_url="https://api.fereai.xyz")
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
See the [FereAI docs](https://api.
|
|
19
|
+
See the [FereAI docs](https://api.fereai.xyz) for full API reference.
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "fere-sdk"
|
|
3
|
-
version = "0.5.0.
|
|
3
|
+
version = "0.5.0.dev45"
|
|
4
4
|
description = "Python SDK for the FereAI Gateway API"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.10"
|
|
7
7
|
license = "MIT"
|
|
8
|
-
authors = [{ name = "Fere AI", email = "
|
|
8
|
+
authors = [{ name = "Fere AI", email = "hello@fereai.xyz" }]
|
|
9
9
|
dependencies = [
|
|
10
10
|
"httpx>=0.27",
|
|
11
11
|
"pynacl>=1.5",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|