Spaces:
Runtime error
Runtime error
freemt
commited on
Commit
·
feac790
1
Parent(s):
1139a18
Update hit ready
Browse files- app.py +18 -3
- poetry.lock +779 -0
app.py
CHANGED
@@ -1,7 +1,22 @@
|
|
|
|
|
|
1 |
import gradio as gr
|
|
|
2 |
|
3 |
-
def greet(name):
|
4 |
-
return "Hello " + name + "!!"
|
5 |
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
iface.launch()
|
|
|
1 |
+
"""Run api."""
|
2 |
+
from typing import Dict
|
3 |
import gradio as gr
|
4 |
+
from gradio_ttw_api.hit import hit
|
5 |
|
|
|
|
|
6 |
|
7 |
+
def ttw_api(query: str) -> Dict:
|
8 |
+
"Prep api."""
|
9 |
+
try:
|
10 |
+
hit_ = hit(query)
|
11 |
+
except Exception as exc:
|
12 |
+
hit_ = str(exc)
|
13 |
+
|
14 |
+
return {
|
15 |
+
"xyz": f"Hello {query} !!",
|
16 |
+
"abc": "dummy",
|
17 |
+
"hit": hit_,
|
18 |
+
}
|
19 |
+
|
20 |
+
|
21 |
+
iface = gr.Interface(fn=ttw_api, inputs="text", outputs="json")
|
22 |
iface.launch()
|
poetry.lock
ADDED
@@ -0,0 +1,779 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[[package]]
|
2 |
+
name = "astroid"
|
3 |
+
version = "2.11.7"
|
4 |
+
description = "An abstract syntax tree for Python with inference support."
|
5 |
+
category = "dev"
|
6 |
+
optional = false
|
7 |
+
python-versions = ">=3.6.2"
|
8 |
+
|
9 |
+
[package.dependencies]
|
10 |
+
lazy-object-proxy = ">=1.4.0"
|
11 |
+
typing-extensions = {version = ">=3.10", markers = "python_version < \"3.10\""}
|
12 |
+
wrapt = ">=1.11,<2"
|
13 |
+
|
14 |
+
[[package]]
|
15 |
+
name = "asttokens"
|
16 |
+
version = "2.0.5"
|
17 |
+
description = "Annotate AST trees with source code positions"
|
18 |
+
category = "main"
|
19 |
+
optional = false
|
20 |
+
python-versions = "*"
|
21 |
+
|
22 |
+
[package.dependencies]
|
23 |
+
six = "*"
|
24 |
+
|
25 |
+
[package.extras]
|
26 |
+
test = ["astroid", "pytest"]
|
27 |
+
|
28 |
+
[[package]]
|
29 |
+
name = "atomicwrites"
|
30 |
+
version = "1.4.1"
|
31 |
+
description = "Atomic file writes."
|
32 |
+
category = "dev"
|
33 |
+
optional = false
|
34 |
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
35 |
+
|
36 |
+
[[package]]
|
37 |
+
name = "attrs"
|
38 |
+
version = "21.4.0"
|
39 |
+
description = "Classes Without Boilerplate"
|
40 |
+
category = "dev"
|
41 |
+
optional = false
|
42 |
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
43 |
+
|
44 |
+
[package.extras]
|
45 |
+
dev = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "zope.interface", "furo", "sphinx", "sphinx-notfound-page", "pre-commit", "cloudpickle"]
|
46 |
+
docs = ["furo", "sphinx", "zope.interface", "sphinx-notfound-page"]
|
47 |
+
tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "zope.interface", "cloudpickle"]
|
48 |
+
tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "cloudpickle"]
|
49 |
+
|
50 |
+
[[package]]
|
51 |
+
name = "black"
|
52 |
+
version = "22.6.0"
|
53 |
+
description = "The uncompromising code formatter."
|
54 |
+
category = "dev"
|
55 |
+
optional = false
|
56 |
+
python-versions = ">=3.6.2"
|
57 |
+
|
58 |
+
[package.dependencies]
|
59 |
+
click = ">=8.0.0"
|
60 |
+
mypy-extensions = ">=0.4.3"
|
61 |
+
pathspec = ">=0.9.0"
|
62 |
+
platformdirs = ">=2"
|
63 |
+
tomli = {version = ">=1.1.0", markers = "python_full_version < \"3.11.0a7\""}
|
64 |
+
typing-extensions = {version = ">=3.10.0.0", markers = "python_version < \"3.10\""}
|
65 |
+
|
66 |
+
[package.extras]
|
67 |
+
colorama = ["colorama (>=0.4.3)"]
|
68 |
+
d = ["aiohttp (>=3.7.4)"]
|
69 |
+
jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"]
|
70 |
+
uvloop = ["uvloop (>=0.15.2)"]
|
71 |
+
|
72 |
+
[[package]]
|
73 |
+
name = "click"
|
74 |
+
version = "8.1.3"
|
75 |
+
description = "Composable command line interface toolkit"
|
76 |
+
category = "main"
|
77 |
+
optional = false
|
78 |
+
python-versions = ">=3.7"
|
79 |
+
|
80 |
+
[package.dependencies]
|
81 |
+
colorama = {version = "*", markers = "platform_system == \"Windows\""}
|
82 |
+
|
83 |
+
[[package]]
|
84 |
+
name = "colorama"
|
85 |
+
version = "0.4.5"
|
86 |
+
description = "Cross-platform colored terminal text."
|
87 |
+
category = "main"
|
88 |
+
optional = false
|
89 |
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
90 |
+
|
91 |
+
[[package]]
|
92 |
+
name = "dill"
|
93 |
+
version = "0.3.5.1"
|
94 |
+
description = "serialize all of python"
|
95 |
+
category = "dev"
|
96 |
+
optional = false
|
97 |
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*"
|
98 |
+
|
99 |
+
[package.extras]
|
100 |
+
graph = ["objgraph (>=1.7.2)"]
|
101 |
+
|
102 |
+
[[package]]
|
103 |
+
name = "environs"
|
104 |
+
version = "9.5.0"
|
105 |
+
description = "simplified environment variable parsing"
|
106 |
+
category = "main"
|
107 |
+
optional = false
|
108 |
+
python-versions = ">=3.6"
|
109 |
+
|
110 |
+
[package.dependencies]
|
111 |
+
marshmallow = ">=3.0.0"
|
112 |
+
python-dotenv = "*"
|
113 |
+
|
114 |
+
[package.extras]
|
115 |
+
dev = ["pytest", "dj-database-url", "dj-email-url", "django-cache-url", "flake8 (==4.0.1)", "flake8-bugbear (==21.9.2)", "mypy (==0.910)", "pre-commit (>=2.4,<3.0)", "tox"]
|
116 |
+
django = ["dj-database-url", "dj-email-url", "django-cache-url"]
|
117 |
+
lint = ["flake8 (==4.0.1)", "flake8-bugbear (==21.9.2)", "mypy (==0.910)", "pre-commit (>=2.4,<3.0)"]
|
118 |
+
tests = ["pytest", "dj-database-url", "dj-email-url", "django-cache-url"]
|
119 |
+
|
120 |
+
[[package]]
|
121 |
+
name = "executing"
|
122 |
+
version = "0.8.3"
|
123 |
+
description = "Get the currently executing AST node of a frame, and other information"
|
124 |
+
category = "main"
|
125 |
+
optional = false
|
126 |
+
python-versions = "*"
|
127 |
+
|
128 |
+
[[package]]
|
129 |
+
name = "flake8"
|
130 |
+
version = "3.9.2"
|
131 |
+
description = "the modular source code checker: pep8 pyflakes and co"
|
132 |
+
category = "dev"
|
133 |
+
optional = false
|
134 |
+
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
|
135 |
+
|
136 |
+
[package.dependencies]
|
137 |
+
mccabe = ">=0.6.0,<0.7.0"
|
138 |
+
pycodestyle = ">=2.7.0,<2.8.0"
|
139 |
+
pyflakes = ">=2.3.0,<2.4.0"
|
140 |
+
|
141 |
+
[[package]]
|
142 |
+
name = "icecream"
|
143 |
+
version = "2.1.2"
|
144 |
+
description = "Never use print() to debug again; inspect variables, expressions, and program execution with a single, simple function call."
|
145 |
+
category = "main"
|
146 |
+
optional = false
|
147 |
+
python-versions = "*"
|
148 |
+
|
149 |
+
[package.dependencies]
|
150 |
+
asttokens = ">=2.0.1"
|
151 |
+
colorama = ">=0.3.9"
|
152 |
+
executing = ">=0.3.1"
|
153 |
+
pygments = ">=2.2.0"
|
154 |
+
|
155 |
+
[[package]]
|
156 |
+
name = "iniconfig"
|
157 |
+
version = "1.1.1"
|
158 |
+
description = "iniconfig: brain-dead simple config-ini parsing"
|
159 |
+
category = "dev"
|
160 |
+
optional = false
|
161 |
+
python-versions = "*"
|
162 |
+
|
163 |
+
[[package]]
|
164 |
+
name = "install"
|
165 |
+
version = "1.3.5"
|
166 |
+
description = "Install packages from within code"
|
167 |
+
category = "main"
|
168 |
+
optional = false
|
169 |
+
python-versions = ">=2.7, >=3.5"
|
170 |
+
|
171 |
+
[[package]]
|
172 |
+
name = "isort"
|
173 |
+
version = "5.10.1"
|
174 |
+
description = "A Python utility / library to sort Python imports."
|
175 |
+
category = "dev"
|
176 |
+
optional = false
|
177 |
+
python-versions = ">=3.6.1,<4.0"
|
178 |
+
|
179 |
+
[package.extras]
|
180 |
+
pipfile_deprecated_finder = ["pipreqs", "requirementslib"]
|
181 |
+
requirements_deprecated_finder = ["pipreqs", "pip-api"]
|
182 |
+
colors = ["colorama (>=0.4.3,<0.5.0)"]
|
183 |
+
plugins = ["setuptools"]
|
184 |
+
|
185 |
+
[[package]]
|
186 |
+
name = "lazy-object-proxy"
|
187 |
+
version = "1.7.1"
|
188 |
+
description = "A fast and thorough lazy object proxy."
|
189 |
+
category = "dev"
|
190 |
+
optional = false
|
191 |
+
python-versions = ">=3.6"
|
192 |
+
|
193 |
+
[[package]]
|
194 |
+
name = "logzero"
|
195 |
+
version = "1.7.0"
|
196 |
+
description = "Robust and effective logging for Python 2 and 3"
|
197 |
+
category = "main"
|
198 |
+
optional = false
|
199 |
+
python-versions = "*"
|
200 |
+
|
201 |
+
[package.dependencies]
|
202 |
+
colorama = {version = "*", markers = "sys_platform == \"win32\""}
|
203 |
+
|
204 |
+
[[package]]
|
205 |
+
name = "marshmallow"
|
206 |
+
version = "3.17.0"
|
207 |
+
description = "A lightweight library for converting complex datatypes to and from native Python datatypes."
|
208 |
+
category = "main"
|
209 |
+
optional = false
|
210 |
+
python-versions = ">=3.7"
|
211 |
+
|
212 |
+
[package.dependencies]
|
213 |
+
packaging = ">=17.0"
|
214 |
+
|
215 |
+
[package.extras]
|
216 |
+
dev = ["pytest", "pytz", "simplejson", "mypy (==0.961)", "flake8 (==4.0.1)", "flake8-bugbear (==22.6.22)", "pre-commit (>=2.4,<3.0)", "tox"]
|
217 |
+
docs = ["sphinx (==4.5.0)", "sphinx-issues (==3.0.1)", "alabaster (==0.7.12)", "sphinx-version-warning (==1.1.2)", "autodocsumm (==0.2.8)"]
|
218 |
+
lint = ["mypy (==0.961)", "flake8 (==4.0.1)", "flake8-bugbear (==22.6.22)", "pre-commit (>=2.4,<3.0)"]
|
219 |
+
tests = ["pytest", "pytz", "simplejson"]
|
220 |
+
|
221 |
+
[[package]]
|
222 |
+
name = "mccabe"
|
223 |
+
version = "0.6.1"
|
224 |
+
description = "McCabe checker, plugin for flake8"
|
225 |
+
category = "dev"
|
226 |
+
optional = false
|
227 |
+
python-versions = "*"
|
228 |
+
|
229 |
+
[[package]]
|
230 |
+
name = "mypy-extensions"
|
231 |
+
version = "0.4.3"
|
232 |
+
description = "Experimental type system extensions for programs checked with the mypy typechecker."
|
233 |
+
category = "dev"
|
234 |
+
optional = false
|
235 |
+
python-versions = "*"
|
236 |
+
|
237 |
+
[[package]]
|
238 |
+
name = "nodeenv"
|
239 |
+
version = "1.7.0"
|
240 |
+
description = "Node.js virtual environment builder"
|
241 |
+
category = "dev"
|
242 |
+
optional = false
|
243 |
+
python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*"
|
244 |
+
|
245 |
+
[[package]]
|
246 |
+
name = "packaging"
|
247 |
+
version = "21.3"
|
248 |
+
description = "Core utilities for Python packages"
|
249 |
+
category = "main"
|
250 |
+
optional = false
|
251 |
+
python-versions = ">=3.6"
|
252 |
+
|
253 |
+
[package.dependencies]
|
254 |
+
pyparsing = ">=2.0.2,<3.0.5 || >3.0.5"
|
255 |
+
|
256 |
+
[[package]]
|
257 |
+
name = "pastel"
|
258 |
+
version = "0.2.1"
|
259 |
+
description = "Bring colors to your terminal."
|
260 |
+
category = "dev"
|
261 |
+
optional = false
|
262 |
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
263 |
+
|
264 |
+
[[package]]
|
265 |
+
name = "pathspec"
|
266 |
+
version = "0.9.0"
|
267 |
+
description = "Utility library for gitignore style pattern matching of file paths."
|
268 |
+
category = "dev"
|
269 |
+
optional = false
|
270 |
+
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
|
271 |
+
|
272 |
+
[[package]]
|
273 |
+
name = "platformdirs"
|
274 |
+
version = "2.5.2"
|
275 |
+
description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
|
276 |
+
category = "dev"
|
277 |
+
optional = false
|
278 |
+
python-versions = ">=3.7"
|
279 |
+
|
280 |
+
[package.extras]
|
281 |
+
docs = ["furo (>=2021.7.5b38)", "proselint (>=0.10.2)", "sphinx-autodoc-typehints (>=1.12)", "sphinx (>=4)"]
|
282 |
+
test = ["appdirs (==1.4.4)", "pytest-cov (>=2.7)", "pytest-mock (>=3.6)", "pytest (>=6)"]
|
283 |
+
|
284 |
+
[[package]]
|
285 |
+
name = "pluggy"
|
286 |
+
version = "1.0.0"
|
287 |
+
description = "plugin and hook calling mechanisms for python"
|
288 |
+
category = "dev"
|
289 |
+
optional = false
|
290 |
+
python-versions = ">=3.6"
|
291 |
+
|
292 |
+
[package.extras]
|
293 |
+
dev = ["pre-commit", "tox"]
|
294 |
+
testing = ["pytest", "pytest-benchmark"]
|
295 |
+
|
296 |
+
[[package]]
|
297 |
+
name = "poethepoet"
|
298 |
+
version = "0.10.0"
|
299 |
+
description = "A task runner that works well with poetry."
|
300 |
+
category = "dev"
|
301 |
+
optional = false
|
302 |
+
python-versions = ">=3.6,<4.0"
|
303 |
+
|
304 |
+
[package.dependencies]
|
305 |
+
pastel = ">=0.2.0,<0.3.0"
|
306 |
+
tomlkit = ">=0.6.0,<1.0.0"
|
307 |
+
|
308 |
+
[[package]]
|
309 |
+
name = "py"
|
310 |
+
version = "1.11.0"
|
311 |
+
description = "library with cross-python path, ini-parsing, io, code, log facilities"
|
312 |
+
category = "dev"
|
313 |
+
optional = false
|
314 |
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
315 |
+
|
316 |
+
[[package]]
|
317 |
+
name = "pycodestyle"
|
318 |
+
version = "2.7.0"
|
319 |
+
description = "Python style guide checker"
|
320 |
+
category = "dev"
|
321 |
+
optional = false
|
322 |
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
323 |
+
|
324 |
+
[[package]]
|
325 |
+
name = "pydocstyle"
|
326 |
+
version = "6.1.1"
|
327 |
+
description = "Python docstring style checker"
|
328 |
+
category = "dev"
|
329 |
+
optional = false
|
330 |
+
python-versions = ">=3.6"
|
331 |
+
|
332 |
+
[package.dependencies]
|
333 |
+
snowballstemmer = "*"
|
334 |
+
|
335 |
+
[package.extras]
|
336 |
+
toml = ["toml"]
|
337 |
+
|
338 |
+
[[package]]
|
339 |
+
name = "pyflakes"
|
340 |
+
version = "2.3.1"
|
341 |
+
description = "passive checker of Python programs"
|
342 |
+
category = "dev"
|
343 |
+
optional = false
|
344 |
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
345 |
+
|
346 |
+
[[package]]
|
347 |
+
name = "pygments"
|
348 |
+
version = "2.12.0"
|
349 |
+
description = "Pygments is a syntax highlighting package written in Python."
|
350 |
+
category = "main"
|
351 |
+
optional = false
|
352 |
+
python-versions = ">=3.6"
|
353 |
+
|
354 |
+
[[package]]
|
355 |
+
name = "pylint"
|
356 |
+
version = "2.14.4"
|
357 |
+
description = "python code static checker"
|
358 |
+
category = "dev"
|
359 |
+
optional = false
|
360 |
+
python-versions = ">=3.7.2"
|
361 |
+
|
362 |
+
[package.dependencies]
|
363 |
+
astroid = ">=2.11.6,<=2.12.0-dev0"
|
364 |
+
colorama = {version = ">=0.4.5", markers = "sys_platform == \"win32\""}
|
365 |
+
dill = ">=0.2"
|
366 |
+
isort = ">=4.2.5,<6"
|
367 |
+
mccabe = ">=0.6,<0.8"
|
368 |
+
platformdirs = ">=2.2.0"
|
369 |
+
tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""}
|
370 |
+
tomlkit = ">=0.10.1"
|
371 |
+
typing-extensions = {version = ">=3.10.0", markers = "python_version < \"3.10\""}
|
372 |
+
|
373 |
+
[package.extras]
|
374 |
+
spelling = ["pyenchant (>=3.2,<4.0)"]
|
375 |
+
testutils = ["gitpython (>3)"]
|
376 |
+
|
377 |
+
[[package]]
|
378 |
+
name = "pyparsing"
|
379 |
+
version = "3.0.9"
|
380 |
+
description = "pyparsing module - Classes and methods to define and execute parsing grammars"
|
381 |
+
category = "main"
|
382 |
+
optional = false
|
383 |
+
python-versions = ">=3.6.8"
|
384 |
+
|
385 |
+
[package.extras]
|
386 |
+
diagrams = ["railroad-diagrams", "jinja2"]
|
387 |
+
|
388 |
+
[[package]]
|
389 |
+
name = "pyright"
|
390 |
+
version = "1.1.261"
|
391 |
+
description = "Command line wrapper for pyright"
|
392 |
+
category = "dev"
|
393 |
+
optional = false
|
394 |
+
python-versions = ">=3.7"
|
395 |
+
|
396 |
+
[package.dependencies]
|
397 |
+
nodeenv = ">=1.6.0"
|
398 |
+
|
399 |
+
[package.extras]
|
400 |
+
all = ["twine (>=3.4.1)"]
|
401 |
+
dev = ["twine (>=3.4.1)"]
|
402 |
+
|
403 |
+
[[package]]
|
404 |
+
name = "pytest"
|
405 |
+
version = "7.1.2"
|
406 |
+
description = "pytest: simple powerful testing with Python"
|
407 |
+
category = "dev"
|
408 |
+
optional = false
|
409 |
+
python-versions = ">=3.7"
|
410 |
+
|
411 |
+
[package.dependencies]
|
412 |
+
atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""}
|
413 |
+
attrs = ">=19.2.0"
|
414 |
+
colorama = {version = "*", markers = "sys_platform == \"win32\""}
|
415 |
+
iniconfig = "*"
|
416 |
+
packaging = "*"
|
417 |
+
pluggy = ">=0.12,<2.0"
|
418 |
+
py = ">=1.8.2"
|
419 |
+
tomli = ">=1.0.0"
|
420 |
+
|
421 |
+
[package.extras]
|
422 |
+
testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "xmlschema"]
|
423 |
+
|
424 |
+
[[package]]
|
425 |
+
name = "python-dotenv"
|
426 |
+
version = "0.20.0"
|
427 |
+
description = "Read key-value pairs from a .env file and set them as environment variables"
|
428 |
+
category = "main"
|
429 |
+
optional = false
|
430 |
+
python-versions = ">=3.5"
|
431 |
+
|
432 |
+
[package.extras]
|
433 |
+
cli = ["click (>=5.0)"]
|
434 |
+
|
435 |
+
[[package]]
|
436 |
+
name = "set-loglevel"
|
437 |
+
version = "0.1.2"
|
438 |
+
description = "Return a loglevel (10, 20, etc.) taking ENV LOGLEVEL into account"
|
439 |
+
category = "main"
|
440 |
+
optional = false
|
441 |
+
python-versions = ">=3.8.3,<4.0.0"
|
442 |
+
|
443 |
+
[package.dependencies]
|
444 |
+
environs = ">=9.5.0,<10.0.0"
|
445 |
+
logzero = ">=1.7.0,<2.0.0"
|
446 |
+
|
447 |
+
[[package]]
|
448 |
+
name = "six"
|
449 |
+
version = "1.16.0"
|
450 |
+
description = "Python 2 and 3 compatibility utilities"
|
451 |
+
category = "main"
|
452 |
+
optional = false
|
453 |
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
|
454 |
+
|
455 |
+
[[package]]
|
456 |
+
name = "snowballstemmer"
|
457 |
+
version = "2.2.0"
|
458 |
+
description = "This package provides 29 stemmers for 28 languages generated from Snowball algorithms."
|
459 |
+
category = "dev"
|
460 |
+
optional = false
|
461 |
+
python-versions = "*"
|
462 |
+
|
463 |
+
[[package]]
|
464 |
+
name = "toml"
|
465 |
+
version = "0.10.2"
|
466 |
+
description = "Python Library for Tom's Obvious, Minimal Language"
|
467 |
+
category = "dev"
|
468 |
+
optional = false
|
469 |
+
python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
|
470 |
+
|
471 |
+
[[package]]
|
472 |
+
name = "tomli"
|
473 |
+
version = "2.0.1"
|
474 |
+
description = "A lil' TOML parser"
|
475 |
+
category = "dev"
|
476 |
+
optional = false
|
477 |
+
python-versions = ">=3.7"
|
478 |
+
|
479 |
+
[[package]]
|
480 |
+
name = "tomlkit"
|
481 |
+
version = "0.11.1"
|
482 |
+
description = "Style preserving TOML library"
|
483 |
+
category = "dev"
|
484 |
+
optional = false
|
485 |
+
python-versions = ">=3.6,<4.0"
|
486 |
+
|
487 |
+
[[package]]
|
488 |
+
name = "typer"
|
489 |
+
version = "0.4.2"
|
490 |
+
description = "Typer, build great CLIs. Easy to code. Based on Python type hints."
|
491 |
+
category = "main"
|
492 |
+
optional = false
|
493 |
+
python-versions = ">=3.6"
|
494 |
+
|
495 |
+
[package.dependencies]
|
496 |
+
click = ">=7.1.1,<9.0.0"
|
497 |
+
|
498 |
+
[package.extras]
|
499 |
+
all = ["colorama (>=0.4.3,<0.5.0)", "shellingham (>=1.3.0,<2.0.0)"]
|
500 |
+
dev = ["autoflake (>=1.3.1,<2.0.0)", "flake8 (>=3.8.3,<4.0.0)", "pre-commit (>=2.17.0,<3.0.0)"]
|
501 |
+
doc = ["mkdocs (>=1.1.2,<2.0.0)", "mkdocs-material (>=8.1.4,<9.0.0)", "mdx-include (>=1.4.1,<2.0.0)"]
|
502 |
+
test = ["shellingham (>=1.3.0,<2.0.0)", "pytest (>=4.4.0,<5.4.0)", "pytest-cov (>=2.10.0,<3.0.0)", "coverage (>=5.2,<6.0)", "pytest-xdist (>=1.32.0,<2.0.0)", "pytest-sugar (>=0.9.4,<0.10.0)", "mypy (==0.910)", "black (>=22.3.0,<23.0.0)", "isort (>=5.0.6,<6.0.0)"]
|
503 |
+
|
504 |
+
[[package]]
|
505 |
+
name = "typing-extensions"
|
506 |
+
version = "4.3.0"
|
507 |
+
description = "Backported and Experimental Type Hints for Python 3.7+"
|
508 |
+
category = "dev"
|
509 |
+
optional = false
|
510 |
+
python-versions = ">=3.7"
|
511 |
+
|
512 |
+
[[package]]
|
513 |
+
name = "wrapt"
|
514 |
+
version = "1.14.1"
|
515 |
+
description = "Module for decorators, wrappers and monkey patching."
|
516 |
+
category = "dev"
|
517 |
+
optional = false
|
518 |
+
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
|
519 |
+
|
520 |
+
[metadata]
|
521 |
+
lock-version = "1.1"
|
522 |
+
python-versions = "^3.8.3"
|
523 |
+
content-hash = "37e56f9a6b9339713f15fffce0cedf6a92c14f5f10ffed0096eef44cc04723ae"
|
524 |
+
|
525 |
+
[metadata.files]
|
526 |
+
astroid = []
|
527 |
+
asttokens = [
|
528 |
+
{file = "asttokens-2.0.5-py2.py3-none-any.whl", hash = "sha256:0844691e88552595a6f4a4281a9f7f79b8dd45ca4ccea82e5e05b4bbdb76705c"},
|
529 |
+
{file = "asttokens-2.0.5.tar.gz", hash = "sha256:9a54c114f02c7a9480d56550932546a3f1fe71d8a02f1bc7ccd0ee3ee35cf4d5"},
|
530 |
+
]
|
531 |
+
atomicwrites = []
|
532 |
+
attrs = [
|
533 |
+
{file = "attrs-21.4.0-py2.py3-none-any.whl", hash = "sha256:2d27e3784d7a565d36ab851fe94887c5eccd6a463168875832a1be79c82828b4"},
|
534 |
+
{file = "attrs-21.4.0.tar.gz", hash = "sha256:626ba8234211db98e869df76230a137c4c40a12d72445c45d5f5b716f076e2fd"},
|
535 |
+
]
|
536 |
+
black = []
|
537 |
+
click = [
|
538 |
+
{file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"},
|
539 |
+
{file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"},
|
540 |
+
]
|
541 |
+
colorama = [
|
542 |
+
{file = "colorama-0.4.5-py2.py3-none-any.whl", hash = "sha256:854bf444933e37f5824ae7bfc1e98d5bce2ebe4160d46b5edf346a89358e99da"},
|
543 |
+
{file = "colorama-0.4.5.tar.gz", hash = "sha256:e6c6b4334fc50988a639d9b98aa429a0b57da6e17b9a44f0451f930b6967b7a4"},
|
544 |
+
]
|
545 |
+
dill = [
|
546 |
+
{file = "dill-0.3.5.1-py2.py3-none-any.whl", hash = "sha256:33501d03270bbe410c72639b350e941882a8b0fd55357580fbc873fba0c59302"},
|
547 |
+
{file = "dill-0.3.5.1.tar.gz", hash = "sha256:d75e41f3eff1eee599d738e76ba8f4ad98ea229db8b085318aa2b3333a208c86"},
|
548 |
+
]
|
549 |
+
environs = [
|
550 |
+
{file = "environs-9.5.0-py2.py3-none-any.whl", hash = "sha256:1e549569a3de49c05f856f40bce86979e7d5ffbbc4398e7f338574c220189124"},
|
551 |
+
{file = "environs-9.5.0.tar.gz", hash = "sha256:a76307b36fbe856bdca7ee9161e6c466fd7fcffc297109a118c59b54e27e30c9"},
|
552 |
+
]
|
553 |
+
executing = [
|
554 |
+
{file = "executing-0.8.3-py2.py3-none-any.whl", hash = "sha256:d1eef132db1b83649a3905ca6dd8897f71ac6f8cac79a7e58a1a09cf137546c9"},
|
555 |
+
{file = "executing-0.8.3.tar.gz", hash = "sha256:c6554e21c6b060590a6d3be4b82fb78f8f0194d809de5ea7df1c093763311501"},
|
556 |
+
]
|
557 |
+
flake8 = [
|
558 |
+
{file = "flake8-3.9.2-py2.py3-none-any.whl", hash = "sha256:bf8fd333346d844f616e8d47905ef3a3384edae6b4e9beb0c5101e25e3110907"},
|
559 |
+
{file = "flake8-3.9.2.tar.gz", hash = "sha256:07528381786f2a6237b061f6e96610a4167b226cb926e2aa2b6b1d78057c576b"},
|
560 |
+
]
|
561 |
+
icecream = [
|
562 |
+
{file = "icecream-2.1.2-py2.py3-none-any.whl", hash = "sha256:04b9cea4d9931cf6960db0430ebf11fa34464ce7152e384ddf50f96d25b201b4"},
|
563 |
+
{file = "icecream-2.1.2.tar.gz", hash = "sha256:09300b2d1c678712410cbd47c95198eb1b580f66f311a554ccd6b9e758ece0ee"},
|
564 |
+
]
|
565 |
+
iniconfig = [
|
566 |
+
{file = "iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3"},
|
567 |
+
{file = "iniconfig-1.1.1.tar.gz", hash = "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32"},
|
568 |
+
]
|
569 |
+
install = [
|
570 |
+
{file = "install-1.3.5-py3-none-any.whl", hash = "sha256:0d3fadf4aa62c95efe8d34757c8507eb46177f86c016c21c6551eafc6a53d5a9"},
|
571 |
+
{file = "install-1.3.5.tar.gz", hash = "sha256:e67c8a0be5ccf8cb4ffa17d090f3a61b6e820e6a7e21cd1d2c0f7bc59b18e647"},
|
572 |
+
]
|
573 |
+
isort = [
|
574 |
+
{file = "isort-5.10.1-py3-none-any.whl", hash = "sha256:6f62d78e2f89b4500b080fe3a81690850cd254227f27f75c3a0c491a1f351ba7"},
|
575 |
+
{file = "isort-5.10.1.tar.gz", hash = "sha256:e8443a5e7a020e9d7f97f1d7d9cd17c88bcb3bc7e218bf9cf5095fe550be2951"},
|
576 |
+
]
|
577 |
+
lazy-object-proxy = [
|
578 |
+
{file = "lazy-object-proxy-1.7.1.tar.gz", hash = "sha256:d609c75b986def706743cdebe5e47553f4a5a1da9c5ff66d76013ef396b5a8a4"},
|
579 |
+
{file = "lazy_object_proxy-1.7.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bb8c5fd1684d60a9902c60ebe276da1f2281a318ca16c1d0a96db28f62e9166b"},
|
580 |
+
{file = "lazy_object_proxy-1.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a57d51ed2997e97f3b8e3500c984db50a554bb5db56c50b5dab1b41339b37e36"},
|
581 |
+
{file = "lazy_object_proxy-1.7.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd45683c3caddf83abbb1249b653a266e7069a09f486daa8863fb0e7496a9fdb"},
|
582 |
+
{file = "lazy_object_proxy-1.7.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:8561da8b3dd22d696244d6d0d5330618c993a215070f473b699e00cf1f3f6443"},
|
583 |
+
{file = "lazy_object_proxy-1.7.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fccdf7c2c5821a8cbd0a9440a456f5050492f2270bd54e94360cac663398739b"},
|
584 |
+
{file = "lazy_object_proxy-1.7.1-cp310-cp310-win32.whl", hash = "sha256:898322f8d078f2654d275124a8dd19b079080ae977033b713f677afcfc88e2b9"},
|
585 |
+
{file = "lazy_object_proxy-1.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:85b232e791f2229a4f55840ed54706110c80c0a210d076eee093f2b2e33e1bfd"},
|
586 |
+
{file = "lazy_object_proxy-1.7.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:46ff647e76f106bb444b4533bb4153c7370cdf52efc62ccfc1a28bdb3cc95442"},
|
587 |
+
{file = "lazy_object_proxy-1.7.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:12f3bb77efe1367b2515f8cb4790a11cffae889148ad33adad07b9b55e0ab22c"},
|
588 |
+
{file = "lazy_object_proxy-1.7.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c19814163728941bb871240d45c4c30d33b8a2e85972c44d4e63dd7107faba44"},
|
589 |
+
{file = "lazy_object_proxy-1.7.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:e40f2013d96d30217a51eeb1db28c9ac41e9d0ee915ef9d00da639c5b63f01a1"},
|
590 |
+
{file = "lazy_object_proxy-1.7.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:2052837718516a94940867e16b1bb10edb069ab475c3ad84fd1e1a6dd2c0fcfc"},
|
591 |
+
{file = "lazy_object_proxy-1.7.1-cp36-cp36m-win32.whl", hash = "sha256:6a24357267aa976abab660b1d47a34aaf07259a0c3859a34e536f1ee6e76b5bb"},
|
592 |
+
{file = "lazy_object_proxy-1.7.1-cp36-cp36m-win_amd64.whl", hash = "sha256:6aff3fe5de0831867092e017cf67e2750c6a1c7d88d84d2481bd84a2e019ec35"},
|
593 |
+
{file = "lazy_object_proxy-1.7.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:6a6e94c7b02641d1311228a102607ecd576f70734dc3d5e22610111aeacba8a0"},
|
594 |
+
{file = "lazy_object_proxy-1.7.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4ce15276a1a14549d7e81c243b887293904ad2d94ad767f42df91e75fd7b5b6"},
|
595 |
+
{file = "lazy_object_proxy-1.7.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e368b7f7eac182a59ff1f81d5f3802161932a41dc1b1cc45c1f757dc876b5d2c"},
|
596 |
+
{file = "lazy_object_proxy-1.7.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:6ecbb350991d6434e1388bee761ece3260e5228952b1f0c46ffc800eb313ff42"},
|
597 |
+
{file = "lazy_object_proxy-1.7.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:553b0f0d8dbf21890dd66edd771f9b1b5f51bd912fa5f26de4449bfc5af5e029"},
|
598 |
+
{file = "lazy_object_proxy-1.7.1-cp37-cp37m-win32.whl", hash = "sha256:c7a683c37a8a24f6428c28c561c80d5f4fd316ddcf0c7cab999b15ab3f5c5c69"},
|
599 |
+
{file = "lazy_object_proxy-1.7.1-cp37-cp37m-win_amd64.whl", hash = "sha256:df2631f9d67259dc9620d831384ed7732a198eb434eadf69aea95ad18c587a28"},
|
600 |
+
{file = "lazy_object_proxy-1.7.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:07fa44286cda977bd4803b656ffc1c9b7e3bc7dff7d34263446aec8f8c96f88a"},
|
601 |
+
{file = "lazy_object_proxy-1.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4dca6244e4121c74cc20542c2ca39e5c4a5027c81d112bfb893cf0790f96f57e"},
|
602 |
+
{file = "lazy_object_proxy-1.7.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:91ba172fc5b03978764d1df5144b4ba4ab13290d7bab7a50f12d8117f8630c38"},
|
603 |
+
{file = "lazy_object_proxy-1.7.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:043651b6cb706eee4f91854da4a089816a6606c1428fd391573ef8cb642ae4f7"},
|
604 |
+
{file = "lazy_object_proxy-1.7.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b9e89b87c707dd769c4ea91f7a31538888aad05c116a59820f28d59b3ebfe25a"},
|
605 |
+
{file = "lazy_object_proxy-1.7.1-cp38-cp38-win32.whl", hash = "sha256:9d166602b525bf54ac994cf833c385bfcc341b364e3ee71e3bf5a1336e677b55"},
|
606 |
+
{file = "lazy_object_proxy-1.7.1-cp38-cp38-win_amd64.whl", hash = "sha256:8f3953eb575b45480db6568306893f0bd9d8dfeeebd46812aa09ca9579595148"},
|
607 |
+
{file = "lazy_object_proxy-1.7.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:dd7ed7429dbb6c494aa9bc4e09d94b778a3579be699f9d67da7e6804c422d3de"},
|
608 |
+
{file = "lazy_object_proxy-1.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:70ed0c2b380eb6248abdef3cd425fc52f0abd92d2b07ce26359fcbc399f636ad"},
|
609 |
+
{file = "lazy_object_proxy-1.7.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7096a5e0c1115ec82641afbdd70451a144558ea5cf564a896294e346eb611be1"},
|
610 |
+
{file = "lazy_object_proxy-1.7.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f769457a639403073968d118bc70110e7dce294688009f5c24ab78800ae56dc8"},
|
611 |
+
{file = "lazy_object_proxy-1.7.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:39b0e26725c5023757fc1ab2a89ef9d7ab23b84f9251e28f9cc114d5b59c1b09"},
|
612 |
+
{file = "lazy_object_proxy-1.7.1-cp39-cp39-win32.whl", hash = "sha256:2130db8ed69a48a3440103d4a520b89d8a9405f1b06e2cc81640509e8bf6548f"},
|
613 |
+
{file = "lazy_object_proxy-1.7.1-cp39-cp39-win_amd64.whl", hash = "sha256:677ea950bef409b47e51e733283544ac3d660b709cfce7b187f5ace137960d61"},
|
614 |
+
{file = "lazy_object_proxy-1.7.1-pp37.pp38-none-any.whl", hash = "sha256:d66906d5785da8e0be7360912e99c9188b70f52c422f9fc18223347235691a84"},
|
615 |
+
]
|
616 |
+
logzero = [
|
617 |
+
{file = "logzero-1.7.0-py2.py3-none-any.whl", hash = "sha256:23eb1f717a2736f9ab91ca0d43160fd2c996ad49ae6bad34652d47aba908769d"},
|
618 |
+
{file = "logzero-1.7.0.tar.gz", hash = "sha256:7f73ddd3ae393457236f081ffebd044a3aa2e423a47ae6ddb5179ab90d0ad082"},
|
619 |
+
]
|
620 |
+
marshmallow = []
|
621 |
+
mccabe = [
|
622 |
+
{file = "mccabe-0.6.1-py2.py3-none-any.whl", hash = "sha256:ab8a6258860da4b6677da4bd2fe5dc2c659cff31b3ee4f7f5d64e79735b80d42"},
|
623 |
+
{file = "mccabe-0.6.1.tar.gz", hash = "sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f"},
|
624 |
+
]
|
625 |
+
mypy-extensions = [
|
626 |
+
{file = "mypy_extensions-0.4.3-py2.py3-none-any.whl", hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"},
|
627 |
+
{file = "mypy_extensions-0.4.3.tar.gz", hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"},
|
628 |
+
]
|
629 |
+
nodeenv = []
|
630 |
+
packaging = [
|
631 |
+
{file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"},
|
632 |
+
{file = "packaging-21.3.tar.gz", hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"},
|
633 |
+
]
|
634 |
+
pastel = [
|
635 |
+
{file = "pastel-0.2.1-py2.py3-none-any.whl", hash = "sha256:4349225fcdf6c2bb34d483e523475de5bb04a5c10ef711263452cb37d7dd4364"},
|
636 |
+
{file = "pastel-0.2.1.tar.gz", hash = "sha256:e6581ac04e973cac858828c6202c1e1e81fee1dc7de7683f3e1ffe0bfd8a573d"},
|
637 |
+
]
|
638 |
+
pathspec = [
|
639 |
+
{file = "pathspec-0.9.0-py2.py3-none-any.whl", hash = "sha256:7d15c4ddb0b5c802d161efc417ec1a2558ea2653c2e8ad9c19098201dc1c993a"},
|
640 |
+
{file = "pathspec-0.9.0.tar.gz", hash = "sha256:e564499435a2673d586f6b2130bb5b95f04a3ba06f81b8f895b651a3c76aabb1"},
|
641 |
+
]
|
642 |
+
platformdirs = [
|
643 |
+
{file = "platformdirs-2.5.2-py3-none-any.whl", hash = "sha256:027d8e83a2d7de06bbac4e5ef7e023c02b863d7ea5d079477e722bb41ab25788"},
|
644 |
+
{file = "platformdirs-2.5.2.tar.gz", hash = "sha256:58c8abb07dcb441e6ee4b11d8df0ac856038f944ab98b7be6b27b2a3c7feef19"},
|
645 |
+
]
|
646 |
+
pluggy = [
|
647 |
+
{file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"},
|
648 |
+
{file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"},
|
649 |
+
]
|
650 |
+
poethepoet = [
|
651 |
+
{file = "poethepoet-0.10.0-py3-none-any.whl", hash = "sha256:6fb3021603d4421c6fcc40072bbcf150a6c52ef70ff4d3be089b8b04e015ef5a"},
|
652 |
+
{file = "poethepoet-0.10.0.tar.gz", hash = "sha256:70b97cb194b978dc464c70793e85e6f746cddf82b84a38bfb135946ad71ae19c"},
|
653 |
+
]
|
654 |
+
py = [
|
655 |
+
{file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"},
|
656 |
+
{file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"},
|
657 |
+
]
|
658 |
+
pycodestyle = [
|
659 |
+
{file = "pycodestyle-2.7.0-py2.py3-none-any.whl", hash = "sha256:514f76d918fcc0b55c6680472f0a37970994e07bbb80725808c17089be302068"},
|
660 |
+
{file = "pycodestyle-2.7.0.tar.gz", hash = "sha256:c389c1d06bf7904078ca03399a4816f974a1d590090fecea0c63ec26ebaf1cef"},
|
661 |
+
]
|
662 |
+
pydocstyle = [
|
663 |
+
{file = "pydocstyle-6.1.1-py3-none-any.whl", hash = "sha256:6987826d6775056839940041beef5c08cc7e3d71d63149b48e36727f70144dc4"},
|
664 |
+
{file = "pydocstyle-6.1.1.tar.gz", hash = "sha256:1d41b7c459ba0ee6c345f2eb9ae827cab14a7533a88c5c6f7e94923f72df92dc"},
|
665 |
+
]
|
666 |
+
pyflakes = [
|
667 |
+
{file = "pyflakes-2.3.1-py2.py3-none-any.whl", hash = "sha256:7893783d01b8a89811dd72d7dfd4d84ff098e5eed95cfa8905b22bbffe52efc3"},
|
668 |
+
{file = "pyflakes-2.3.1.tar.gz", hash = "sha256:f5bc8ecabc05bb9d291eb5203d6810b49040f6ff446a756326104746cc00c1db"},
|
669 |
+
]
|
670 |
+
pygments = [
|
671 |
+
{file = "Pygments-2.12.0-py3-none-any.whl", hash = "sha256:dc9c10fb40944260f6ed4c688ece0cd2048414940f1cea51b8b226318411c519"},
|
672 |
+
{file = "Pygments-2.12.0.tar.gz", hash = "sha256:5eb116118f9612ff1ee89ac96437bb6b49e8f04d8a13b514ba26f620208e26eb"},
|
673 |
+
]
|
674 |
+
pylint = []
|
675 |
+
pyparsing = [
|
676 |
+
{file = "pyparsing-3.0.9-py3-none-any.whl", hash = "sha256:5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc"},
|
677 |
+
{file = "pyparsing-3.0.9.tar.gz", hash = "sha256:2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb"},
|
678 |
+
]
|
679 |
+
pyright = []
|
680 |
+
pytest = [
|
681 |
+
{file = "pytest-7.1.2-py3-none-any.whl", hash = "sha256:13d0e3ccfc2b6e26be000cb6568c832ba67ba32e719443bfe725814d3c42433c"},
|
682 |
+
{file = "pytest-7.1.2.tar.gz", hash = "sha256:a06a0425453864a270bc45e71f783330a7428defb4230fb5e6a731fde06ecd45"},
|
683 |
+
]
|
684 |
+
python-dotenv = [
|
685 |
+
{file = "python-dotenv-0.20.0.tar.gz", hash = "sha256:b7e3b04a59693c42c36f9ab1cc2acc46fa5df8c78e178fc33a8d4cd05c8d498f"},
|
686 |
+
{file = "python_dotenv-0.20.0-py3-none-any.whl", hash = "sha256:d92a187be61fe482e4fd675b6d52200e7be63a12b724abbf931a40ce4fa92938"},
|
687 |
+
]
|
688 |
+
set-loglevel = [
|
689 |
+
{file = "set_loglevel-0.1.2-py3-none-any.whl", hash = "sha256:fcfe76ccd3791511e2cb51ec11ded6cc2186a727e441a934c547a211d0fdf773"},
|
690 |
+
{file = "set_loglevel-0.1.2.tar.gz", hash = "sha256:4da23414a798cea918801b113e17af092f13ccda96345203b14042b6d6d3a896"},
|
691 |
+
]
|
692 |
+
six = [
|
693 |
+
{file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"},
|
694 |
+
{file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"},
|
695 |
+
]
|
696 |
+
snowballstemmer = [
|
697 |
+
{file = "snowballstemmer-2.2.0-py2.py3-none-any.whl", hash = "sha256:c8e1716e83cc398ae16824e5572ae04e0d9fc2c6b985fb0f900f5f0c96ecba1a"},
|
698 |
+
{file = "snowballstemmer-2.2.0.tar.gz", hash = "sha256:09b16deb8547d3412ad7b590689584cd0fe25ec8db3be37788be3810cbf19cb1"},
|
699 |
+
]
|
700 |
+
toml = [
|
701 |
+
{file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"},
|
702 |
+
{file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"},
|
703 |
+
]
|
704 |
+
tomli = [
|
705 |
+
{file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"},
|
706 |
+
{file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"},
|
707 |
+
]
|
708 |
+
tomlkit = []
|
709 |
+
typer = []
|
710 |
+
typing-extensions = [
|
711 |
+
{file = "typing_extensions-4.3.0-py3-none-any.whl", hash = "sha256:25642c956049920a5aa49edcdd6ab1e06d7e5d467fc00e0506c44ac86fbfca02"},
|
712 |
+
{file = "typing_extensions-4.3.0.tar.gz", hash = "sha256:e6d2677a32f47fc7eb2795db1dd15c1f34eff616bcaf2cfb5e997f854fa1c4a6"},
|
713 |
+
]
|
714 |
+
wrapt = [
|
715 |
+
{file = "wrapt-1.14.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:1b376b3f4896e7930f1f772ac4b064ac12598d1c38d04907e696cc4d794b43d3"},
|
716 |
+
{file = "wrapt-1.14.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:903500616422a40a98a5a3c4ff4ed9d0066f3b4c951fa286018ecdf0750194ef"},
|
717 |
+
{file = "wrapt-1.14.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:5a9a0d155deafd9448baff28c08e150d9b24ff010e899311ddd63c45c2445e28"},
|
718 |
+
{file = "wrapt-1.14.1-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:ddaea91abf8b0d13443f6dac52e89051a5063c7d014710dcb4d4abb2ff811a59"},
|
719 |
+
{file = "wrapt-1.14.1-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:36f582d0c6bc99d5f39cd3ac2a9062e57f3cf606ade29a0a0d6b323462f4dd87"},
|
720 |
+
{file = "wrapt-1.14.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:7ef58fb89674095bfc57c4069e95d7a31cfdc0939e2a579882ac7d55aadfd2a1"},
|
721 |
+
{file = "wrapt-1.14.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:e2f83e18fe2f4c9e7db597e988f72712c0c3676d337d8b101f6758107c42425b"},
|
722 |
+
{file = "wrapt-1.14.1-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:ee2b1b1769f6707a8a445162ea16dddf74285c3964f605877a20e38545c3c462"},
|
723 |
+
{file = "wrapt-1.14.1-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:833b58d5d0b7e5b9832869f039203389ac7cbf01765639c7309fd50ef619e0b1"},
|
724 |
+
{file = "wrapt-1.14.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:80bb5c256f1415f747011dc3604b59bc1f91c6e7150bd7db03b19170ee06b320"},
|
725 |
+
{file = "wrapt-1.14.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:07f7a7d0f388028b2df1d916e94bbb40624c59b48ecc6cbc232546706fac74c2"},
|
726 |
+
{file = "wrapt-1.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:02b41b633c6261feff8ddd8d11c711df6842aba629fdd3da10249a53211a72c4"},
|
727 |
+
{file = "wrapt-1.14.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2fe803deacd09a233e4762a1adcea5db5d31e6be577a43352936179d14d90069"},
|
728 |
+
{file = "wrapt-1.14.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:257fd78c513e0fb5cdbe058c27a0624c9884e735bbd131935fd49e9fe719d310"},
|
729 |
+
{file = "wrapt-1.14.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:4fcc4649dc762cddacd193e6b55bc02edca674067f5f98166d7713b193932b7f"},
|
730 |
+
{file = "wrapt-1.14.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:11871514607b15cfeb87c547a49bca19fde402f32e2b1c24a632506c0a756656"},
|
731 |
+
{file = "wrapt-1.14.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8ad85f7f4e20964db4daadcab70b47ab05c7c1cf2a7c1e51087bfaa83831854c"},
|
732 |
+
{file = "wrapt-1.14.1-cp310-cp310-win32.whl", hash = "sha256:a9a52172be0b5aae932bef82a79ec0a0ce87288c7d132946d645eba03f0ad8a8"},
|
733 |
+
{file = "wrapt-1.14.1-cp310-cp310-win_amd64.whl", hash = "sha256:6d323e1554b3d22cfc03cd3243b5bb815a51f5249fdcbb86fda4bf62bab9e164"},
|
734 |
+
{file = "wrapt-1.14.1-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:43ca3bbbe97af00f49efb06e352eae40434ca9d915906f77def219b88e85d907"},
|
735 |
+
{file = "wrapt-1.14.1-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:6b1a564e6cb69922c7fe3a678b9f9a3c54e72b469875aa8018f18b4d1dd1adf3"},
|
736 |
+
{file = "wrapt-1.14.1-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:00b6d4ea20a906c0ca56d84f93065b398ab74b927a7a3dbd470f6fc503f95dc3"},
|
737 |
+
{file = "wrapt-1.14.1-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:a85d2b46be66a71bedde836d9e41859879cc54a2a04fad1191eb50c2066f6e9d"},
|
738 |
+
{file = "wrapt-1.14.1-cp35-cp35m-win32.whl", hash = "sha256:dbcda74c67263139358f4d188ae5faae95c30929281bc6866d00573783c422b7"},
|
739 |
+
{file = "wrapt-1.14.1-cp35-cp35m-win_amd64.whl", hash = "sha256:b21bb4c09ffabfa0e85e3a6b623e19b80e7acd709b9f91452b8297ace2a8ab00"},
|
740 |
+
{file = "wrapt-1.14.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:9e0fd32e0148dd5dea6af5fee42beb949098564cc23211a88d799e434255a1f4"},
|
741 |
+
{file = "wrapt-1.14.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9736af4641846491aedb3c3f56b9bc5568d92b0692303b5a305301a95dfd38b1"},
|
742 |
+
{file = "wrapt-1.14.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5b02d65b9ccf0ef6c34cba6cf5bf2aab1bb2f49c6090bafeecc9cd81ad4ea1c1"},
|
743 |
+
{file = "wrapt-1.14.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21ac0156c4b089b330b7666db40feee30a5d52634cc4560e1905d6529a3897ff"},
|
744 |
+
{file = "wrapt-1.14.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:9f3e6f9e05148ff90002b884fbc2a86bd303ae847e472f44ecc06c2cd2fcdb2d"},
|
745 |
+
{file = "wrapt-1.14.1-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:6e743de5e9c3d1b7185870f480587b75b1cb604832e380d64f9504a0535912d1"},
|
746 |
+
{file = "wrapt-1.14.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:d79d7d5dc8a32b7093e81e97dad755127ff77bcc899e845f41bf71747af0c569"},
|
747 |
+
{file = "wrapt-1.14.1-cp36-cp36m-win32.whl", hash = "sha256:81b19725065dcb43df02b37e03278c011a09e49757287dca60c5aecdd5a0b8ed"},
|
748 |
+
{file = "wrapt-1.14.1-cp36-cp36m-win_amd64.whl", hash = "sha256:b014c23646a467558be7da3d6b9fa409b2c567d2110599b7cf9a0c5992b3b471"},
|
749 |
+
{file = "wrapt-1.14.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:88bd7b6bd70a5b6803c1abf6bca012f7ed963e58c68d76ee20b9d751c74a3248"},
|
750 |
+
{file = "wrapt-1.14.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5901a312f4d14c59918c221323068fad0540e34324925c8475263841dbdfe68"},
|
751 |
+
{file = "wrapt-1.14.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d77c85fedff92cf788face9bfa3ebaa364448ebb1d765302e9af11bf449ca36d"},
|
752 |
+
{file = "wrapt-1.14.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d649d616e5c6a678b26d15ece345354f7c2286acd6db868e65fcc5ff7c24a77"},
|
753 |
+
{file = "wrapt-1.14.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7d2872609603cb35ca513d7404a94d6d608fc13211563571117046c9d2bcc3d7"},
|
754 |
+
{file = "wrapt-1.14.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:ee6acae74a2b91865910eef5e7de37dc6895ad96fa23603d1d27ea69df545015"},
|
755 |
+
{file = "wrapt-1.14.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:2b39d38039a1fdad98c87279b48bc5dce2c0ca0d73483b12cb72aa9609278e8a"},
|
756 |
+
{file = "wrapt-1.14.1-cp37-cp37m-win32.whl", hash = "sha256:60db23fa423575eeb65ea430cee741acb7c26a1365d103f7b0f6ec412b893853"},
|
757 |
+
{file = "wrapt-1.14.1-cp37-cp37m-win_amd64.whl", hash = "sha256:709fe01086a55cf79d20f741f39325018f4df051ef39fe921b1ebe780a66184c"},
|
758 |
+
{file = "wrapt-1.14.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8c0ce1e99116d5ab21355d8ebe53d9460366704ea38ae4d9f6933188f327b456"},
|
759 |
+
{file = "wrapt-1.14.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e3fb1677c720409d5f671e39bac6c9e0e422584e5f518bfd50aa4cbbea02433f"},
|
760 |
+
{file = "wrapt-1.14.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:642c2e7a804fcf18c222e1060df25fc210b9c58db7c91416fb055897fc27e8cc"},
|
761 |
+
{file = "wrapt-1.14.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7b7c050ae976e286906dd3f26009e117eb000fb2cf3533398c5ad9ccc86867b1"},
|
762 |
+
{file = "wrapt-1.14.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ef3f72c9666bba2bab70d2a8b79f2c6d2c1a42a7f7e2b0ec83bb2f9e383950af"},
|
763 |
+
{file = "wrapt-1.14.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:01c205616a89d09827986bc4e859bcabd64f5a0662a7fe95e0d359424e0e071b"},
|
764 |
+
{file = "wrapt-1.14.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5a0f54ce2c092aaf439813735584b9537cad479575a09892b8352fea5e988dc0"},
|
765 |
+
{file = "wrapt-1.14.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2cf71233a0ed05ccdabe209c606fe0bac7379fdcf687f39b944420d2a09fdb57"},
|
766 |
+
{file = "wrapt-1.14.1-cp38-cp38-win32.whl", hash = "sha256:aa31fdcc33fef9eb2552cbcbfee7773d5a6792c137b359e82879c101e98584c5"},
|
767 |
+
{file = "wrapt-1.14.1-cp38-cp38-win_amd64.whl", hash = "sha256:d1967f46ea8f2db647c786e78d8cc7e4313dbd1b0aca360592d8027b8508e24d"},
|
768 |
+
{file = "wrapt-1.14.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3232822c7d98d23895ccc443bbdf57c7412c5a65996c30442ebe6ed3df335383"},
|
769 |
+
{file = "wrapt-1.14.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:988635d122aaf2bdcef9e795435662bcd65b02f4f4c1ae37fbee7401c440b3a7"},
|
770 |
+
{file = "wrapt-1.14.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cca3c2cdadb362116235fdbd411735de4328c61425b0aa9f872fd76d02c4e86"},
|
771 |
+
{file = "wrapt-1.14.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d52a25136894c63de15a35bc0bdc5adb4b0e173b9c0d07a2be9d3ca64a332735"},
|
772 |
+
{file = "wrapt-1.14.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40e7bc81c9e2b2734ea4bc1aceb8a8f0ceaac7c5299bc5d69e37c44d9081d43b"},
|
773 |
+
{file = "wrapt-1.14.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b9b7a708dd92306328117d8c4b62e2194d00c365f18eff11a9b53c6f923b01e3"},
|
774 |
+
{file = "wrapt-1.14.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6a9a25751acb379b466ff6be78a315e2b439d4c94c1e99cb7266d40a537995d3"},
|
775 |
+
{file = "wrapt-1.14.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:34aa51c45f28ba7f12accd624225e2b1e5a3a45206aa191f6f9aac931d9d56fe"},
|
776 |
+
{file = "wrapt-1.14.1-cp39-cp39-win32.whl", hash = "sha256:dee0ce50c6a2dd9056c20db781e9c1cfd33e77d2d569f5d1d9321c641bb903d5"},
|
777 |
+
{file = "wrapt-1.14.1-cp39-cp39-win_amd64.whl", hash = "sha256:dee60e1de1898bde3b238f18340eec6148986da0455d8ba7848d50470a7a32fb"},
|
778 |
+
{file = "wrapt-1.14.1.tar.gz", hash = "sha256:380a85cf89e0e69b7cfbe2ea9f765f004ff419f34194018a6827ac0e3edfed4d"},
|
779 |
+
]
|