asyncly 0.4.0__tar.gz → 0.4.1__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.
- {asyncly-0.4.0 → asyncly-0.4.1}/PKG-INFO +2 -1
- {asyncly-0.4.0 → asyncly-0.4.1}/pyproject.toml +2 -1
- {asyncly-0.4.0 → asyncly-0.4.1}/.gitignore +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/README.rst +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/__init__.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/client/__init__.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/client/base.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/client/handlers/__init__.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/client/handlers/base.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/client/handlers/exceptions.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/client/handlers/json.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/client/handlers/msgspec.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/client/handlers/pydantic.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/client/timeout.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/py.typed +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/srvmocker/__init__.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/srvmocker/constants.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/srvmocker/handlers.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/srvmocker/models.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/srvmocker/responses/__init__.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/srvmocker/responses/base.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/srvmocker/responses/content.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/srvmocker/responses/json.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/srvmocker/responses/msgpack.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/srvmocker/responses/sequence.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/srvmocker/responses/timeout.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/srvmocker/responses/toml.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/srvmocker/responses/yaml.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/srvmocker/serialization/__init__.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/srvmocker/serialization/base.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/srvmocker/serialization/json.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/srvmocker/serialization/msgpack.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/srvmocker/serialization/toml.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/srvmocker/serialization/yaml.py +0 -0
- {asyncly-0.4.0 → asyncly-0.4.1}/asyncly/srvmocker/service.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: asyncly
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.1
|
|
4
4
|
Summary: Simple HTTP client and server for your integrations based on aiohttp
|
|
5
5
|
Project-URL: Homepage, https://github.com/andy-takker/asyncly
|
|
6
6
|
Project-URL: Source, https://github.com/andy-takker/asyncly
|
|
@@ -22,6 +22,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
22
22
|
Classifier: Programming Language :: Python :: 3.10
|
|
23
23
|
Classifier: Programming Language :: Python :: 3.11
|
|
24
24
|
Classifier: Programming Language :: Python :: 3.12
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
25
26
|
Classifier: Topic :: Internet
|
|
26
27
|
Classifier: Topic :: Internet :: WWW/HTTP
|
|
27
28
|
Classifier: Topic :: Software Development
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "asyncly"
|
|
3
|
-
version = "0.4.
|
|
3
|
+
version = "0.4.1"
|
|
4
4
|
description = "Simple HTTP client and server for your integrations based on aiohttp"
|
|
5
5
|
authors = [{ name = "Sergey Natalenko", email = "sergey.natalenko@mail.ru" }]
|
|
6
6
|
requires-python = ">=3.10, <4"
|
|
@@ -26,6 +26,7 @@ classifiers = [
|
|
|
26
26
|
"Programming Language :: Python :: 3.10",
|
|
27
27
|
"Programming Language :: Python :: 3.11",
|
|
28
28
|
"Programming Language :: Python :: 3.12",
|
|
29
|
+
"Programming Language :: Python :: 3.13",
|
|
29
30
|
"Topic :: Internet",
|
|
30
31
|
"Topic :: Internet :: WWW/HTTP",
|
|
31
32
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
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
|
|
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
|