avito-py 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.
- avito_py-0.0.1/LICENSE +21 -0
- avito_py-0.0.1/PKG-INFO +62 -0
- avito_py-0.0.1/README.md +35 -0
- avito_py-0.0.1/avito/__init__.py +0 -0
- avito_py-0.0.1/pyproject.toml +33 -0
avito_py-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2020 Baryshnikov Nikolay
|
|
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.
|
avito_py-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: avito-py
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: SDK для разработки инструментов на базе Avito API
|
|
5
|
+
Home-page: https://github.com/p141592/avito
|
|
6
|
+
License: MIT
|
|
7
|
+
Keywords: avito,sdk,python,api
|
|
8
|
+
Author: Nikolay Baryshnikov
|
|
9
|
+
Author-email: root@k0d.ru
|
|
10
|
+
Requires-Python: >=3.8,<4.0
|
|
11
|
+
Classifier: Development Status :: 3 - Alpha
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Intended Audience :: Information Technology
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Natural Language :: English
|
|
16
|
+
Classifier: Natural Language :: Russian
|
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
24
|
+
Project-URL: Repository, https://github.com/p141592/avito
|
|
25
|
+
Description-Content-Type: text/markdown
|
|
26
|
+
|
|
27
|
+
# Шаблон проекта pypi
|
|
28
|
+
|
|
29
|
+
## Как применить шаблон к себе:
|
|
30
|
+
- в pyproject.toml поменяйте данные на свой
|
|
31
|
+
|
|
32
|
+
```
|
|
33
|
+
[tool.poetry]
|
|
34
|
+
name = "basic_pypi"
|
|
35
|
+
version = "0.0.2"
|
|
36
|
+
description = ""
|
|
37
|
+
authors = ["Nikolay Baryshnikov <root@k0d.ru>"]
|
|
38
|
+
packages=[
|
|
39
|
+
{ include = "package" },
|
|
40
|
+
]
|
|
41
|
+
license="MIT"
|
|
42
|
+
readme="README.md"
|
|
43
|
+
homepage="https://github.com/p141592"
|
|
44
|
+
repository="https://github.com/p141592/basic_pypi"
|
|
45
|
+
keywords=["poetry", "pypi"]
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
- Установите классифайды которые подходят для вашего проекта https://pypi.org/classifiers/
|
|
49
|
+
|
|
50
|
+
- Поменяйте автора лицензии
|
|
51
|
+
|
|
52
|
+
```
|
|
53
|
+
Copyright (c) 2020 Baryshnikov Nikolay
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## Запушить проект в pypi
|
|
57
|
+
|
|
58
|
+
- Зарегистрируйтесь там https://pypi.org/account/register/
|
|
59
|
+
- Если poetry еще не установлен, установите `pip install poetry`
|
|
60
|
+
- Выполните `make push` в корне проекта. В консоли попросят ввести логин/пароль от учетки в pypi
|
|
61
|
+
- Наслаждайтесь проектом в pypi `pip install <имя проекта, которое [tool.poetry].name>`
|
|
62
|
+
|
avito_py-0.0.1/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Шаблон проекта pypi
|
|
2
|
+
|
|
3
|
+
## Как применить шаблон к себе:
|
|
4
|
+
- в pyproject.toml поменяйте данные на свой
|
|
5
|
+
|
|
6
|
+
```
|
|
7
|
+
[tool.poetry]
|
|
8
|
+
name = "basic_pypi"
|
|
9
|
+
version = "0.0.2"
|
|
10
|
+
description = ""
|
|
11
|
+
authors = ["Nikolay Baryshnikov <root@k0d.ru>"]
|
|
12
|
+
packages=[
|
|
13
|
+
{ include = "package" },
|
|
14
|
+
]
|
|
15
|
+
license="MIT"
|
|
16
|
+
readme="README.md"
|
|
17
|
+
homepage="https://github.com/p141592"
|
|
18
|
+
repository="https://github.com/p141592/basic_pypi"
|
|
19
|
+
keywords=["poetry", "pypi"]
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
- Установите классифайды которые подходят для вашего проекта https://pypi.org/classifiers/
|
|
23
|
+
|
|
24
|
+
- Поменяйте автора лицензии
|
|
25
|
+
|
|
26
|
+
```
|
|
27
|
+
Copyright (c) 2020 Baryshnikov Nikolay
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Запушить проект в pypi
|
|
31
|
+
|
|
32
|
+
- Зарегистрируйтесь там https://pypi.org/account/register/
|
|
33
|
+
- Если poetry еще не установлен, установите `pip install poetry`
|
|
34
|
+
- Выполните `make push` в корне проекта. В консоли попросят ввести логин/пароль от учетки в pypi
|
|
35
|
+
- Наслаждайтесь проектом в pypi `pip install <имя проекта, которое [tool.poetry].name>`
|
|
File without changes
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
[tool.poetry]
|
|
2
|
+
name = "avito-py"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "SDK для разработки инструментов на базе Avito API"
|
|
5
|
+
authors = ["Nikolay Baryshnikov <root@k0d.ru>"]
|
|
6
|
+
packages=[
|
|
7
|
+
{ include = "avito" },
|
|
8
|
+
]
|
|
9
|
+
license="MIT"
|
|
10
|
+
readme="README.md"
|
|
11
|
+
homepage="https://github.com/p141592/avito"
|
|
12
|
+
repository="https://github.com/p141592/avito"
|
|
13
|
+
keywords=["avito", "sdk", "python", "api"]
|
|
14
|
+
classifiers=[
|
|
15
|
+
"License :: OSI Approved :: MIT License",
|
|
16
|
+
"Development Status :: 3 - Alpha",
|
|
17
|
+
"Intended Audience :: Developers",
|
|
18
|
+
"Intended Audience :: Information Technology",
|
|
19
|
+
"Natural Language :: Russian",
|
|
20
|
+
"Natural Language :: English",
|
|
21
|
+
"Programming Language :: Python :: 3.7",
|
|
22
|
+
"Programming Language :: Python :: 3.8",
|
|
23
|
+
"Programming Language :: Python :: 3.9",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[tool.poetry.dependencies]
|
|
27
|
+
python = "^3.8"
|
|
28
|
+
|
|
29
|
+
[tool.poetry.dev-dependencies]
|
|
30
|
+
|
|
31
|
+
[build-system]
|
|
32
|
+
requires = ["poetry>=0.12"]
|
|
33
|
+
build-backend = "poetry.masonry.api"
|