wbapi-async 0.0.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.
@@ -0,0 +1,95 @@
1
+ ### macOS ###
2
+ # General macOS system files
3
+ .DS_Store
4
+ .AppleDouble
5
+ .LSOverride
6
+
7
+ # iCloud generated files
8
+ *.icloud
9
+
10
+ ### Python ###
11
+ # Byte-compiled / optimized / DLL files
12
+ __pycache__/
13
+ *.py[cod]
14
+ *$py.class
15
+
16
+ # C extensions
17
+ *.so
18
+
19
+ # Virtual environments
20
+ .venv/
21
+ env/
22
+ ENV/
23
+ env.bak/
24
+ venv.bak/
25
+ .python-version
26
+ .env
27
+
28
+ # Unit test / coverage reports
29
+ .tox/
30
+ .coverage
31
+ .coverage.*
32
+ .pytest_cache/
33
+ .nox/
34
+ cache/
35
+ htmlcov/
36
+ hypothesis/
37
+ .cover
38
+ *.py,cover
39
+
40
+ # Jupyter Notebook
41
+ .ipynb_checkpoints
42
+
43
+ # Mypy, Pytype, Pyre caches
44
+ .mypy_cache/
45
+ .pytype/
46
+ .pyre/
47
+
48
+ # PyInstaller
49
+ *.spec
50
+ *.manifest
51
+ *.exe
52
+
53
+ # Flask / Django
54
+ instance/
55
+ .webassets-cache
56
+ db.sqlite3
57
+ db.sqlite3-journal
58
+
59
+
60
+ # Documentation
61
+ docs/_build/
62
+
63
+ ### IDEs ###
64
+ # JetBrains / PyCharm
65
+ .idea
66
+ .idea/
67
+ *.iml
68
+ *.xml
69
+ .idea_modules/
70
+ # VSCode
71
+ .vscode/
72
+
73
+ ### macOS Patch ###
74
+ ._*
75
+
76
+ # General files from Python tools (pip, distutils, eggs)
77
+ build/
78
+ dist/
79
+ *.egg-info/
80
+ .eggs/
81
+ wheels/
82
+ downloads/
83
+ lib/
84
+ lib64/
85
+ parts/
86
+ sdist/
87
+ var/
88
+ share/python-wheels/
89
+
90
+
91
+ ### LSP config files ###
92
+ pyrightconfig.json
93
+
94
+ ### Ruff ###
95
+ .ruff_cache/
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) [2026] [ANDREI SERDIUKOV]
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,65 @@
1
+ Metadata-Version: 2.4
2
+ Name: wbapi-async
3
+ Version: 0.0.1
4
+ Summary: Asynchronous client for Wildberries API
5
+ Project-URL: Documentation, https://github.com/serdukow/wbapi-async#readme
6
+ Project-URL: Repository, https://github.com/serdukow/wbapi-async
7
+ Author-email: Andrei Serdiukov <asyncdf@gmail.com>
8
+ Maintainer-email: Andrei Serdiukov <asyncdf@gmail.com>
9
+ License: MIT
10
+ License-File: LICENSE
11
+ Keywords: api,async,client,wb,wildberries
12
+ Classifier: Development Status :: 2 - Pre-Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
18
+ Requires-Python: <3.14,>=3.10
19
+ Requires-Dist: aiolimiter<2.0.0,>=1.2.1
20
+ Requires-Dist: httpx<0.29.0,>=0.28.1
21
+ Requires-Dist: pydantic<2.12.2,>=2.4.1
22
+ Provides-Extra: dev
23
+ Requires-Dist: pre-commit<5.0.0,>=4.3.0; extra == 'dev'
24
+ Requires-Dist: ruff<0.15.0,>=0.14.1; extra == 'dev'
25
+ Provides-Extra: lint
26
+ Requires-Dist: pre-commit<5.0.0,>=4.3.0; extra == 'lint'
27
+ Requires-Dist: ruff<0.15.0,>=0.14.1; extra == 'lint'
28
+ Provides-Extra: test
29
+ Requires-Dist: pytest-asyncio<2.0.0,>=1.2.0; extra == 'test'
30
+ Requires-Dist: pytest-httpx<0.37.0,>=0.35.0; extra == 'test'
31
+ Requires-Dist: pytest<9.0.0,>=8.4.2; extra == 'test'
32
+ Requires-Dist: python-dotenv<2.0.0,>=1.2.1; extra == 'test'
33
+ Description-Content-Type: text/markdown
34
+
35
+ <p align="center">
36
+ <a href="https://api.moysklad.ru"><img src="https://upload.wikimedia.org/wikipedia/commons/4/41/Wildberries_2023_Pink.svg" alt="WbAPI"></a>
37
+ </p>
38
+
39
+ <div align="center">
40
+
41
+ <p align="center">
42
+ Asynchronous client for Wildberries API
43
+ </p>
44
+
45
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
46
+ [![PyPI version](https://img.shields.io/pypi/v/wild-api.svg)](https://pypi.org/project/wild-api/)
47
+ [![Downloads](https://img.shields.io/pypi/dm/wild-api.svg)](https://pypi.python.org/pypi/wild-api)
48
+ [![Status](https://img.shields.io/badge/status-pre--alpha-8B5CF6.svg?logo=git&logoColor=white)]()
49
+
50
+ </div>
51
+
52
+ > [!CAUTION]
53
+ > The library is under active development and **is not recommended for use in production environments**
54
+
55
+ ## Install
56
+
57
+ ```console
58
+ pip install wild-api
59
+ ```
60
+
61
+ ## Simple Example
62
+
63
+ ```Python
64
+ coming soon...
65
+ ```
@@ -0,0 +1,31 @@
1
+ <p align="center">
2
+ <a href="https://api.moysklad.ru"><img src="https://upload.wikimedia.org/wikipedia/commons/4/41/Wildberries_2023_Pink.svg" alt="WbAPI"></a>
3
+ </p>
4
+
5
+ <div align="center">
6
+
7
+ <p align="center">
8
+ Asynchronous client for Wildberries API
9
+ </p>
10
+
11
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
12
+ [![PyPI version](https://img.shields.io/pypi/v/wild-api.svg)](https://pypi.org/project/wild-api/)
13
+ [![Downloads](https://img.shields.io/pypi/dm/wild-api.svg)](https://pypi.python.org/pypi/wild-api)
14
+ [![Status](https://img.shields.io/badge/status-pre--alpha-8B5CF6.svg?logo=git&logoColor=white)]()
15
+
16
+ </div>
17
+
18
+ > [!CAUTION]
19
+ > The library is under active development and **is not recommended for use in production environments**
20
+
21
+ ## Install
22
+
23
+ ```console
24
+ pip install wild-api
25
+ ```
26
+
27
+ ## Simple Example
28
+
29
+ ```Python
30
+ coming soon...
31
+ ```
@@ -0,0 +1,113 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "wbapi-async"
7
+ version = "0.0.1"
8
+ description = "Asynchronous client for Wildberries API"
9
+ authors = [
10
+ { name = "Andrei Serdiukov", email = "asyncdf@gmail.com" },
11
+ ]
12
+ maintainers = [
13
+ { name = "Andrei Serdiukov", email = "asyncdf@gmail.com" },
14
+ ]
15
+ readme = "README.md"
16
+ requires-python = ">=3.10,<3.14"
17
+ license = {text = "MIT"}
18
+ keywords = ["wb", "wildberries", "api", "client", "async"]
19
+ classifiers = [
20
+ "Development Status :: 2 - Pre-Alpha",
21
+ "Intended Audience :: Developers",
22
+ "License :: OSI Approved :: MIT License",
23
+ "Programming Language :: Python :: 3",
24
+ "Programming Language :: Python :: 3.13",
25
+ "Topic :: Software Development :: Libraries :: Python Modules",
26
+ ]
27
+ dependencies = [
28
+ "aiolimiter (>=1.2.1,<2.0.0)",
29
+ "httpx (>=0.28.1,<0.29.0)",
30
+ "pydantic (>=2.4.1,<2.12.2)",
31
+ ]
32
+
33
+ [project.optional-dependencies]
34
+ dev = [
35
+ "ruff (>=0.14.1,<0.15.0)",
36
+ "pre-commit (>=4.3.0,<5.0.0)",
37
+ ]
38
+
39
+ test = [
40
+ "pytest (>=8.4.2,<9.0.0)",
41
+ "pytest-asyncio (>=1.2.0,<2.0.0)",
42
+ "pytest-httpx (>=0.35.0,<0.37.0)",
43
+ "python-dotenv (>=1.2.1,<2.0.0)"
44
+ ]
45
+
46
+ lint = [
47
+ "ruff (>=0.14.1,<0.15.0)",
48
+ "pre-commit (>=4.3.0,<5.0.0)",
49
+ ]
50
+
51
+ [project.urls]
52
+ Documentation = "https://github.com/serdukow/wbapi-async#readme"
53
+ Repository = "https://github.com/serdukow/wbapi-async"
54
+
55
+ [tool.hatch.build.targets.sdist]
56
+ only-include = [
57
+ "src/wbapi",
58
+ "README.md",
59
+ "pyproject.toml"
60
+ ]
61
+
62
+ [tool.hatch.build.targets.wheel]
63
+ packages = ["src/wbapi_async"]
64
+
65
+ [tool.ruff]
66
+ exclude = [
67
+ ".git",
68
+ "build",
69
+ "dist",
70
+ "venv",
71
+ ".venv",
72
+ "docs",
73
+ "tests",
74
+ "dev",
75
+ "scripts",
76
+ "*.egg-info",
77
+ ]
78
+ line-length = 99
79
+ target-version = "py313"
80
+
81
+ [tool.ruff.lint]
82
+ select = ["E", "F", "I", "UP", "C4", "B", "RUF100"]
83
+ fixable = ["ALL"]
84
+
85
+ [tool.ruff.lint.isort]
86
+ known-first-party = ["wbapi_async"]
87
+ force-sort-within-sections = true
88
+ order-by-type = true
89
+ combine-as-imports = true
90
+ section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]
91
+ lines-between-types = 1
92
+ lines-after-imports = 2
93
+
94
+ [tool.ruff.lint.pep8-naming]
95
+ classmethod-decorators = ["classmethod"]
96
+ staticmethod-decorators = ["staticmethod"]
97
+
98
+ [tool.ruff.format]
99
+ quote-style = "double"
100
+ indent-style = "space"
101
+ line-ending = "lf"
102
+ skip-magic-trailing-comma = false
103
+ docstring-code-format = true
104
+ docstring-code-line-length = 60
105
+
106
+
107
+ [tool.pytest.ini_options]
108
+ addopts = "-vv -s --log-cli-level=DEBUG"
109
+ markers = [
110
+ "unit: unit tests",
111
+ "integration: integration tests",
112
+ "slow: slow running tests"
113
+ ]