simplex 1.0.6__tar.gz → 1.0.8__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.
Potentially problematic release.
This version of simplex might be problematic. Click here for more details.
- {simplex-1.0.6/simplex.egg-info → simplex-1.0.8}/PKG-INFO +4 -19
- {simplex-1.0.6 → simplex-1.0.8}/README.md +3 -18
- {simplex-1.0.6 → simplex-1.0.8}/pyproject.toml +1 -1
- {simplex-1.0.6 → simplex-1.0.8}/setup.py +1 -1
- {simplex-1.0.6 → simplex-1.0.8/simplex.egg-info}/PKG-INFO +4 -19
- {simplex-1.0.6 → simplex-1.0.8}/LICENSE +0 -0
- {simplex-1.0.6 → simplex-1.0.8}/MANIFEST.in +0 -0
- {simplex-1.0.6 → simplex-1.0.8}/requirements.txt +0 -0
- {simplex-1.0.6 → simplex-1.0.8}/setup.cfg +0 -0
- {simplex-1.0.6 → simplex-1.0.8}/simplex/__init__.py +0 -0
- {simplex-1.0.6 → simplex-1.0.8}/simplex/client.py +0 -0
- {simplex-1.0.6 → simplex-1.0.8}/simplex/errors.py +0 -0
- {simplex-1.0.6 → simplex-1.0.8}/simplex/http_client.py +0 -0
- {simplex-1.0.6 → simplex-1.0.8}/simplex/resources/__init__.py +0 -0
- {simplex-1.0.6 → simplex-1.0.8}/simplex/resources/workflow.py +0 -0
- {simplex-1.0.6 → simplex-1.0.8}/simplex/resources/workflow_session.py +0 -0
- {simplex-1.0.6 → simplex-1.0.8}/simplex/types.py +0 -0
- {simplex-1.0.6 → simplex-1.0.8}/simplex.egg-info/SOURCES.txt +0 -0
- {simplex-1.0.6 → simplex-1.0.8}/simplex.egg-info/dependency_links.txt +0 -0
- {simplex-1.0.6 → simplex-1.0.8}/simplex.egg-info/requires.txt +0 -0
- {simplex-1.0.6 → simplex-1.0.8}/simplex.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: simplex
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.8
|
|
4
4
|
Summary: Official Python SDK for the Simplex API
|
|
5
5
|
Home-page: https://github.com/yourusername/simplex-python-sdk
|
|
6
6
|
Author: Simplex
|
|
@@ -62,15 +62,7 @@ Official Python SDK for the [Simplex API](https://simplex.sh) - A powerful workf
|
|
|
62
62
|
Install the Simplex SDK using pip:
|
|
63
63
|
|
|
64
64
|
```bash
|
|
65
|
-
pip install simplex
|
|
66
|
-
```
|
|
67
|
-
|
|
68
|
-
Or install from source:
|
|
69
|
-
|
|
70
|
-
```bash
|
|
71
|
-
git clone https://github.com/yourusername/simplex-python-sdk.git
|
|
72
|
-
cd simplex-python-sdk/python
|
|
73
|
-
pip install -e .
|
|
65
|
+
pip install simplex
|
|
74
66
|
```
|
|
75
67
|
|
|
76
68
|
## Quick Start
|
|
@@ -338,19 +330,12 @@ Created via `client.create_workflow_session()`. Supports context manager protoco
|
|
|
338
330
|
### Setup Development Environment
|
|
339
331
|
|
|
340
332
|
```bash
|
|
341
|
-
# Clone the repository
|
|
342
|
-
git clone https://github.com/yourusername/simplex-python-sdk.git
|
|
343
|
-
cd simplex-python-sdk/python
|
|
344
|
-
|
|
345
333
|
# Create a virtual environment
|
|
346
334
|
python -m venv venv
|
|
347
335
|
source venv/bin/activate # On Windows: venv\Scripts\activate
|
|
348
336
|
|
|
349
|
-
# Install
|
|
350
|
-
pip install
|
|
351
|
-
|
|
352
|
-
# Install the package in editable mode
|
|
353
|
-
pip install -e .
|
|
337
|
+
# Install the package
|
|
338
|
+
pip install simplex
|
|
354
339
|
```
|
|
355
340
|
|
|
356
341
|
### Running Tests
|
|
@@ -21,15 +21,7 @@ Official Python SDK for the [Simplex API](https://simplex.sh) - A powerful workf
|
|
|
21
21
|
Install the Simplex SDK using pip:
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
|
-
pip install simplex
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
Or install from source:
|
|
28
|
-
|
|
29
|
-
```bash
|
|
30
|
-
git clone https://github.com/yourusername/simplex-python-sdk.git
|
|
31
|
-
cd simplex-python-sdk/python
|
|
32
|
-
pip install -e .
|
|
24
|
+
pip install simplex
|
|
33
25
|
```
|
|
34
26
|
|
|
35
27
|
## Quick Start
|
|
@@ -297,19 +289,12 @@ Created via `client.create_workflow_session()`. Supports context manager protoco
|
|
|
297
289
|
### Setup Development Environment
|
|
298
290
|
|
|
299
291
|
```bash
|
|
300
|
-
# Clone the repository
|
|
301
|
-
git clone https://github.com/yourusername/simplex-python-sdk.git
|
|
302
|
-
cd simplex-python-sdk/python
|
|
303
|
-
|
|
304
292
|
# Create a virtual environment
|
|
305
293
|
python -m venv venv
|
|
306
294
|
source venv/bin/activate # On Windows: venv\Scripts\activate
|
|
307
295
|
|
|
308
|
-
# Install
|
|
309
|
-
pip install
|
|
310
|
-
|
|
311
|
-
# Install the package in editable mode
|
|
312
|
-
pip install -e .
|
|
296
|
+
# Install the package
|
|
297
|
+
pip install simplex
|
|
313
298
|
```
|
|
314
299
|
|
|
315
300
|
### Running Tests
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: simplex
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.8
|
|
4
4
|
Summary: Official Python SDK for the Simplex API
|
|
5
5
|
Home-page: https://github.com/yourusername/simplex-python-sdk
|
|
6
6
|
Author: Simplex
|
|
@@ -62,15 +62,7 @@ Official Python SDK for the [Simplex API](https://simplex.sh) - A powerful workf
|
|
|
62
62
|
Install the Simplex SDK using pip:
|
|
63
63
|
|
|
64
64
|
```bash
|
|
65
|
-
pip install simplex
|
|
66
|
-
```
|
|
67
|
-
|
|
68
|
-
Or install from source:
|
|
69
|
-
|
|
70
|
-
```bash
|
|
71
|
-
git clone https://github.com/yourusername/simplex-python-sdk.git
|
|
72
|
-
cd simplex-python-sdk/python
|
|
73
|
-
pip install -e .
|
|
65
|
+
pip install simplex
|
|
74
66
|
```
|
|
75
67
|
|
|
76
68
|
## Quick Start
|
|
@@ -338,19 +330,12 @@ Created via `client.create_workflow_session()`. Supports context manager protoco
|
|
|
338
330
|
### Setup Development Environment
|
|
339
331
|
|
|
340
332
|
```bash
|
|
341
|
-
# Clone the repository
|
|
342
|
-
git clone https://github.com/yourusername/simplex-python-sdk.git
|
|
343
|
-
cd simplex-python-sdk/python
|
|
344
|
-
|
|
345
333
|
# Create a virtual environment
|
|
346
334
|
python -m venv venv
|
|
347
335
|
source venv/bin/activate # On Windows: venv\Scripts\activate
|
|
348
336
|
|
|
349
|
-
# Install
|
|
350
|
-
pip install
|
|
351
|
-
|
|
352
|
-
# Install the package in editable mode
|
|
353
|
-
pip install -e .
|
|
337
|
+
# Install the package
|
|
338
|
+
pip install simplex
|
|
354
339
|
```
|
|
355
340
|
|
|
356
341
|
### Running Tests
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|