polyapi-python 0.0.31__tar.gz → 0.1.0.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.
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/PKG-INFO +10 -2
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/README.md +9 -1
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/polyapi_python.egg-info/PKG-INFO +10 -2
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/pyproject.toml +1 -1
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/LICENSE +0 -0
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/polyapi/__init__.py +0 -0
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/polyapi/__main__.py +0 -0
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/polyapi/api.py +0 -0
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/polyapi/cli.py +0 -0
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/polyapi/config.py +0 -0
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/polyapi/constants.py +0 -0
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/polyapi/exceptions.py +0 -0
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/polyapi/execute.py +0 -0
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/polyapi/function_cli.py +0 -0
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/polyapi/generate.py +0 -0
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/polyapi/py.typed +0 -0
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/polyapi/schema.py +0 -0
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/polyapi/typedefs.py +0 -0
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/polyapi/utils.py +0 -0
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/polyapi/variables.py +0 -0
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/polyapi_python.egg-info/SOURCES.txt +0 -0
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/polyapi_python.egg-info/dependency_links.txt +0 -0
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/polyapi_python.egg-info/requires.txt +0 -0
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/polyapi_python.egg-info/top_level.txt +0 -0
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/setup.cfg +0 -0
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/tests/test_function_cli.py +0 -0
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/tests/test_generate.py +0 -0
- {polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/tests/test_utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: polyapi-python
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.1.0.dev0
|
|
4
4
|
Summary: The PolyAPI Python Client
|
|
5
5
|
Author-email: Dan Fellin <dan@polyapi.io>
|
|
6
6
|
License: MIT License
|
|
@@ -126,12 +126,20 @@ def bar(n: int) -> Foobar:
|
|
|
126
126
|
|
|
127
127
|
## Upgrade
|
|
128
128
|
|
|
129
|
-
To upgrade your library to the latest version, pass the upgrade flag
|
|
129
|
+
To upgrade your library to the latest version, pass the upgrade flag.
|
|
130
130
|
|
|
131
131
|
```bash
|
|
132
132
|
pip install polyapi-python --upgrade
|
|
133
133
|
```
|
|
134
134
|
|
|
135
|
+
## Pre-Release
|
|
136
|
+
|
|
137
|
+
To upgrade your library to the latest dev version, pass the `--pre` flag.
|
|
138
|
+
|
|
139
|
+
```bash
|
|
140
|
+
pip install polyapi-python --pre --upgrade
|
|
141
|
+
```
|
|
142
|
+
|
|
135
143
|
## Unit Tests
|
|
136
144
|
|
|
137
145
|
To run this library's unit tests, please clone the repo then run:
|
|
@@ -90,12 +90,20 @@ def bar(n: int) -> Foobar:
|
|
|
90
90
|
|
|
91
91
|
## Upgrade
|
|
92
92
|
|
|
93
|
-
To upgrade your library to the latest version, pass the upgrade flag
|
|
93
|
+
To upgrade your library to the latest version, pass the upgrade flag.
|
|
94
94
|
|
|
95
95
|
```bash
|
|
96
96
|
pip install polyapi-python --upgrade
|
|
97
97
|
```
|
|
98
98
|
|
|
99
|
+
## Pre-Release
|
|
100
|
+
|
|
101
|
+
To upgrade your library to the latest dev version, pass the `--pre` flag.
|
|
102
|
+
|
|
103
|
+
```bash
|
|
104
|
+
pip install polyapi-python --pre --upgrade
|
|
105
|
+
```
|
|
106
|
+
|
|
99
107
|
## Unit Tests
|
|
100
108
|
|
|
101
109
|
To run this library's unit tests, please clone the repo then run:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: polyapi-python
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.1.0.dev0
|
|
4
4
|
Summary: The PolyAPI Python Client
|
|
5
5
|
Author-email: Dan Fellin <dan@polyapi.io>
|
|
6
6
|
License: MIT License
|
|
@@ -126,12 +126,20 @@ def bar(n: int) -> Foobar:
|
|
|
126
126
|
|
|
127
127
|
## Upgrade
|
|
128
128
|
|
|
129
|
-
To upgrade your library to the latest version, pass the upgrade flag
|
|
129
|
+
To upgrade your library to the latest version, pass the upgrade flag.
|
|
130
130
|
|
|
131
131
|
```bash
|
|
132
132
|
pip install polyapi-python --upgrade
|
|
133
133
|
```
|
|
134
134
|
|
|
135
|
+
## Pre-Release
|
|
136
|
+
|
|
137
|
+
To upgrade your library to the latest dev version, pass the `--pre` flag.
|
|
138
|
+
|
|
139
|
+
```bash
|
|
140
|
+
pip install polyapi-python --pre --upgrade
|
|
141
|
+
```
|
|
142
|
+
|
|
135
143
|
## Unit Tests
|
|
136
144
|
|
|
137
145
|
To run this library's unit tests, please clone the repo then run:
|
|
@@ -3,7 +3,7 @@ requires = ["setuptools>=61.2", "wheel"]
|
|
|
3
3
|
|
|
4
4
|
[project]
|
|
5
5
|
name = "polyapi-python"
|
|
6
|
-
version = "0.0.
|
|
6
|
+
version = "0.1.0.dev0"
|
|
7
7
|
description = "The PolyAPI Python Client"
|
|
8
8
|
authors = [{ name = "Dan Fellin", email = "dan@polyapi.io" }]
|
|
9
9
|
dependencies = ["requests", "typing_extensions", "jsonschema-gentypes", "pydantic>=2.5.3", "stdlib_list"]
|
|
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
|
|
File without changes
|
{polyapi-python-0.0.31 → polyapi-python-0.1.0.dev0}/polyapi_python.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|