polyapi-python 0.1.0.dev9__tar.gz → 0.1.0.dev10__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.1.0.dev9/polyapi_python.egg-info → polyapi-python-0.1.0.dev10}/PKG-INFO +9 -1
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/README.md +8 -0
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/polyapi/function_cli.py +1 -1
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10/polyapi_python.egg-info}/PKG-INFO +9 -1
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/pyproject.toml +1 -1
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/LICENSE +0 -0
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/polyapi/__init__.py +0 -0
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/polyapi/__main__.py +0 -0
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/polyapi/api.py +0 -0
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/polyapi/cli.py +0 -0
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/polyapi/config.py +0 -0
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/polyapi/constants.py +0 -0
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/polyapi/exceptions.py +0 -0
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/polyapi/execute.py +0 -0
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/polyapi/generate.py +0 -0
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/polyapi/py.typed +0 -0
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/polyapi/schema.py +0 -0
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/polyapi/typedefs.py +0 -0
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/polyapi/utils.py +0 -0
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/polyapi/variables.py +0 -0
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/polyapi_python.egg-info/SOURCES.txt +0 -0
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/polyapi_python.egg-info/dependency_links.txt +0 -0
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/polyapi_python.egg-info/requires.txt +0 -0
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/polyapi_python.egg-info/top_level.txt +0 -0
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/setup.cfg +0 -0
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/tests/test_api.py +0 -0
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/tests/test_function_cli.py +0 -0
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/tests/test_utils.py +0 -0
- {polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/tests/test_variables.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: polyapi-python
|
|
3
|
-
Version: 0.1.0.
|
|
3
|
+
Version: 0.1.0.dev10
|
|
4
4
|
Summary: The PolyAPI Python Client
|
|
5
5
|
Author-email: Dan Fellin <dan@polyapi.io>
|
|
6
6
|
License: MIT License
|
|
@@ -146,6 +146,14 @@ To upgrade your library to the latest dev version, pass the `--pre` flag.
|
|
|
146
146
|
pip install polyapi-python --pre --upgrade
|
|
147
147
|
```
|
|
148
148
|
|
|
149
|
+
## Change Your API Key
|
|
150
|
+
|
|
151
|
+
If you need to change your API key or what server you are pointing to, you can run:
|
|
152
|
+
|
|
153
|
+
```bash
|
|
154
|
+
python -m polyapi setup
|
|
155
|
+
```
|
|
156
|
+
|
|
149
157
|
## Unit Tests
|
|
150
158
|
|
|
151
159
|
To run this library's unit tests, please clone the repo then run:
|
|
@@ -109,6 +109,14 @@ To upgrade your library to the latest dev version, pass the `--pre` flag.
|
|
|
109
109
|
pip install polyapi-python --pre --upgrade
|
|
110
110
|
```
|
|
111
111
|
|
|
112
|
+
## Change Your API Key
|
|
113
|
+
|
|
114
|
+
If you need to change your API key or what server you are pointing to, you can run:
|
|
115
|
+
|
|
116
|
+
```bash
|
|
117
|
+
python -m polyapi setup
|
|
118
|
+
```
|
|
119
|
+
|
|
112
120
|
## Unit Tests
|
|
113
121
|
|
|
114
122
|
To run this library's unit tests, please clone the repo then run:
|
|
@@ -17,7 +17,7 @@ import importlib
|
|
|
17
17
|
|
|
18
18
|
# these libraries are already installed in the base docker image
|
|
19
19
|
# and shouldnt be included in additional requirements
|
|
20
|
-
BASE_REQUIREMENTS = {"requests", "typing_extensions", "jsonschema-gentypes", "pydantic"}
|
|
20
|
+
BASE_REQUIREMENTS = {"polyapi", "requests", "typing_extensions", "jsonschema-gentypes", "pydantic"}
|
|
21
21
|
all_stdlib_symbols = stdlib_list('.'.join([str(v) for v in sys.version_info[0:2]]))
|
|
22
22
|
BASE_REQUIREMENTS.update(all_stdlib_symbols) # dont need to pip install stuff in the python standard library
|
|
23
23
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: polyapi-python
|
|
3
|
-
Version: 0.1.0.
|
|
3
|
+
Version: 0.1.0.dev10
|
|
4
4
|
Summary: The PolyAPI Python Client
|
|
5
5
|
Author-email: Dan Fellin <dan@polyapi.io>
|
|
6
6
|
License: MIT License
|
|
@@ -146,6 +146,14 @@ To upgrade your library to the latest dev version, pass the `--pre` flag.
|
|
|
146
146
|
pip install polyapi-python --pre --upgrade
|
|
147
147
|
```
|
|
148
148
|
|
|
149
|
+
## Change Your API Key
|
|
150
|
+
|
|
151
|
+
If you need to change your API key or what server you are pointing to, you can run:
|
|
152
|
+
|
|
153
|
+
```bash
|
|
154
|
+
python -m polyapi setup
|
|
155
|
+
```
|
|
156
|
+
|
|
149
157
|
## Unit Tests
|
|
150
158
|
|
|
151
159
|
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.1.0.
|
|
6
|
+
version = "0.1.0.dev10"
|
|
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", "colorama"]
|
|
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.1.0.dev9 → polyapi-python-0.1.0.dev10}/polyapi_python.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/polyapi_python.egg-info/requires.txt
RENAMED
|
File without changes
|
{polyapi-python-0.1.0.dev9 → polyapi-python-0.1.0.dev10}/polyapi_python.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|