parseapi 0.3.0__tar.gz → 0.3.2__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.
- {parseapi-0.3.0 → parseapi-0.3.2}/LICENSE +1 -1
- {parseapi-0.3.0 → parseapi-0.3.2}/PKG-INFO +4 -4
- {parseapi-0.3.0 → parseapi-0.3.2}/README.md +1 -1
- {parseapi-0.3.0 → parseapi-0.3.2}/pyproject.toml +3 -3
- {parseapi-0.3.0 → parseapi-0.3.2}/src/parseapi/__init__.py +2 -2
- {parseapi-0.3.0 → parseapi-0.3.2}/src/parseapi/_client.py +1 -1
- {parseapi-0.3.0 → parseapi-0.3.2}/.github/workflows/publish.yml +0 -0
- {parseapi-0.3.0 → parseapi-0.3.2}/.github/workflows/test.yml +0 -0
- {parseapi-0.3.0 → parseapi-0.3.2}/.gitignore +0 -0
- {parseapi-0.3.0 → parseapi-0.3.2}/api/public.json +0 -0
- {parseapi-0.3.0 → parseapi-0.3.2}/scripts/public_api.py +0 -0
- {parseapi-0.3.0 → parseapi-0.3.2}/smoke/smoke.py +0 -0
- {parseapi-0.3.0 → parseapi-0.3.2}/src/parseapi/py.typed +0 -0
- {parseapi-0.3.0 → parseapi-0.3.2}/tests/test_client.py +0 -0
- {parseapi-0.3.0 → parseapi-0.3.2}/tests/test_public_api.py +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: parseapi
|
|
3
|
-
Version: 0.3.
|
|
4
|
-
Summary: Official
|
|
3
|
+
Version: 0.3.2
|
|
4
|
+
Summary: Official ParseAPI client for Python. One key, minimal JSON, fast.
|
|
5
5
|
Project-URL: Homepage, https://parseapi.com
|
|
6
6
|
Project-URL: Documentation, https://parseapi.com/docs
|
|
7
7
|
Project-URL: Repository, https://github.com/parseapi/python
|
|
8
|
-
Author-email:
|
|
8
|
+
Author-email: ParseAPI <hello@parseapi.com>
|
|
9
9
|
License-Expression: MIT
|
|
10
10
|
License-File: LICENSE
|
|
11
11
|
Keywords: currency,email validation,geolocation,ip,parseapi,phone validation,postal,timezone,weather
|
|
@@ -19,7 +19,7 @@ Description-Content-Type: text/markdown
|
|
|
19
19
|
|
|
20
20
|
# parseapi
|
|
21
21
|
|
|
22
|
-
Official
|
|
22
|
+
Official ParseAPI client for Python.
|
|
23
23
|
|
|
24
24
|
```bash
|
|
25
25
|
pip install parseapi
|
|
@@ -4,11 +4,11 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "parseapi"
|
|
7
|
-
version = "0.3.
|
|
8
|
-
description = "Official
|
|
7
|
+
version = "0.3.2"
|
|
8
|
+
description = "Official ParseAPI client for Python. One key, minimal JSON, fast."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
11
|
-
authors = [{ name = "
|
|
11
|
+
authors = [{ name = "ParseAPI", email = "hello@parseapi.com" }]
|
|
12
12
|
requires-python = ">=3.9"
|
|
13
13
|
dependencies = ["httpx>=0.24"]
|
|
14
14
|
keywords = [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
"""Official
|
|
1
|
+
"""Official ParseAPI client for Python."""
|
|
2
2
|
|
|
3
3
|
from ._client import AsyncParseAPI, ParseAPI, ParseAPIError
|
|
4
4
|
|
|
5
|
-
__version__ = "0.3.
|
|
5
|
+
__version__ = "0.3.2"
|
|
6
6
|
__all__ = ["ParseAPI", "AsyncParseAPI", "ParseAPIError", "__version__"]
|
|
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
|