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.
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 parseAPI
3
+ Copyright (c) 2026 ParseAPI
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.5
2
2
  Name: parseapi
3
- Version: 0.3.0
4
- Summary: Official parseAPI client for Python. One key, minimal JSON, fast.
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: parseAPI <hello@parseapi.com>
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 parseAPI client for Python.
22
+ Official ParseAPI client for Python.
23
23
 
24
24
  ```bash
25
25
  pip install parseapi
@@ -1,6 +1,6 @@
1
1
  # parseapi
2
2
 
3
- Official parseAPI client for Python.
3
+ Official ParseAPI client for Python.
4
4
 
5
5
  ```bash
6
6
  pip install parseapi
@@ -4,11 +4,11 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "parseapi"
7
- version = "0.3.0"
8
- description = "Official parseAPI client for Python. One key, minimal JSON, fast."
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 = "parseAPI", email = "hello@parseapi.com" }]
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 parseAPI client for Python."""
1
+ """Official ParseAPI client for Python."""
2
2
 
3
3
  from ._client import AsyncParseAPI, ParseAPI, ParseAPIError
4
4
 
5
- __version__ = "0.3.0"
5
+ __version__ = "0.3.2"
6
6
  __all__ = ["ParseAPI", "AsyncParseAPI", "ParseAPIError", "__version__"]
@@ -10,7 +10,7 @@ from urllib.parse import quote
10
10
 
11
11
  import httpx
12
12
 
13
- VERSION = "0.3.0"
13
+ VERSION = "0.3.2"
14
14
  DEFAULT_BASE_URL = "https://api.parseapi.com"
15
15
  DEFAULT_TIMEOUT = 10.0
16
16
  DEFAULT_RETRIES = 2
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes