Spaces:
Runtime error
Runtime error
feat: Added PII anonymizer
Browse files- app.py +3 -2
- examples/anon.py +52 -0
- poetry.lock +210 -128
- pyproject.toml +3 -0
app.py
CHANGED
@@ -1,13 +1,14 @@
|
|
1 |
import gradio as gr
|
2 |
from examples.keyphrases import demo as keyphrases_demo
|
|
|
3 |
|
4 |
demo = gr.Blocks()
|
5 |
|
6 |
with demo:
|
7 |
gr.Markdown("# HuSpaCy Examples")
|
8 |
gr.TabbedInterface(
|
9 |
-
interface_list=[keyphrases_demo],
|
10 |
-
tab_names=["Keyphrase extraction"]
|
11 |
)
|
12 |
|
13 |
if __name__ == '__main__':
|
|
|
1 |
import gradio as gr
|
2 |
from examples.keyphrases import demo as keyphrases_demo
|
3 |
+
from examples.anon import demo as anon_demo
|
4 |
|
5 |
demo = gr.Blocks()
|
6 |
|
7 |
with demo:
|
8 |
gr.Markdown("# HuSpaCy Examples")
|
9 |
gr.TabbedInterface(
|
10 |
+
interface_list=[keyphrases_demo, anon_demo],
|
11 |
+
tab_names=["Keyphrase extraction", "Text anonymization"],
|
12 |
)
|
13 |
|
14 |
if __name__ == '__main__':
|
examples/anon.py
ADDED
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
from presidio_analyzer import AnalyzerEngine
|
4 |
+
from presidio_analyzer.nlp_engine import NlpEngineProvider
|
5 |
+
from presidio_anonymizer import AnonymizerEngine
|
6 |
+
|
7 |
+
from faker import Faker
|
8 |
+
from presidio_anonymizer.entities.engine import OperatorConfig
|
9 |
+
|
10 |
+
|
11 |
+
def process(text: str, fake_data: bool) -> str:
|
12 |
+
configuration = {
|
13 |
+
"nlp_engine_name": "spacy",
|
14 |
+
"models": [{"lang_code": "hu", "model_name": "hu_core_news_lg", }],
|
15 |
+
}
|
16 |
+
|
17 |
+
provider = NlpEngineProvider(nlp_configuration=configuration)
|
18 |
+
nlp_engine = provider.create_engine()
|
19 |
+
|
20 |
+
analyzer = AnalyzerEngine(nlp_engine=nlp_engine,
|
21 |
+
supported_languages=["hu"])
|
22 |
+
|
23 |
+
results = analyzer.analyze(
|
24 |
+
text=text, entities=["PERSON", "LOCATION"], language="hu")
|
25 |
+
|
26 |
+
fake = Faker(locale=["hu_HU"])
|
27 |
+
|
28 |
+
fake_operators = {
|
29 |
+
"PERSON": OperatorConfig("custom", {"lambda": lambda x: fake.name()}),
|
30 |
+
"LOCATION": OperatorConfig("custom", {"lambda": lambda x: fake.address()}),
|
31 |
+
}
|
32 |
+
|
33 |
+
anonymizer = AnonymizerEngine()
|
34 |
+
anonymized_text = anonymizer.anonymize(
|
35 |
+
text=text, analyzer_results=results, operators=fake_operators) if fake_data else anonymizer.anonymize(text=text, analyzer_results=results)
|
36 |
+
return anonymized_text.text, anonymized_text.items
|
37 |
+
|
38 |
+
|
39 |
+
EXAMPLES = [
|
40 |
+
["Vespucci 1450-es években született Firenzében, és 1497 és 1504 között legalább két felfedező úton vett részt – az egyiket spanyol, a másikat portugál támogatással.", False],
|
41 |
+
["Elon Musk 1971-ben született a Dél-afrikai Köztársaságban, anyja Maye Musk (született: Haldeman) modell, apja Errol Musk mérnök, pilóta.", True]
|
42 |
+
]
|
43 |
+
|
44 |
+
demo = gr.Interface(
|
45 |
+
fn=process,
|
46 |
+
inputs=[gr.Textbox(value=EXAMPLES[0][0], lines=10, label="Input text", show_label=True),
|
47 |
+
gr.Checkbox(value=EXAMPLES[0][1], label="Use fake data", show_label=True)],
|
48 |
+
outputs=[gr.Textbox(label="Anonymized text", show_label=True),
|
49 |
+
gr.Textbox(label="Tags", show_label=True)],
|
50 |
+
examples=EXAMPLES,
|
51 |
+
cache_examples=True,
|
52 |
+
)
|
poetry.lock
CHANGED
@@ -45,7 +45,7 @@ requests = ">=2.7,<3.0"
|
|
45 |
six = ">=1.5"
|
46 |
|
47 |
[package.extras]
|
48 |
-
test = ["mock (2.0.0)", "pylint (1.9.3)", "flake8 (3.7.9)"]
|
49 |
|
50 |
[[package]]
|
51 |
name = "anyio"
|
@@ -117,7 +117,7 @@ python-versions = ">=3.6"
|
|
117 |
cffi = ">=1.1"
|
118 |
|
119 |
[package.extras]
|
120 |
-
tests = ["pytest (>=3.2.1
|
121 |
typecheck = ["mypy"]
|
122 |
|
123 |
[[package]]
|
@@ -164,7 +164,7 @@ python-versions = ">=3.6"
|
|
164 |
|
165 |
[[package]]
|
166 |
name = "certifi"
|
167 |
-
version = "2022.
|
168 |
description = "Python package for providing Mozilla's CA Bundle."
|
169 |
category = "main"
|
170 |
optional = false
|
@@ -205,7 +205,7 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""}
|
|
205 |
|
206 |
[[package]]
|
207 |
name = "colorama"
|
208 |
-
version = "0.4.
|
209 |
description = "Cross-platform colored terminal text."
|
210 |
category = "main"
|
211 |
optional = false
|
@@ -223,12 +223,12 @@ python-versions = ">=3.6"
|
|
223 |
cffi = ">=1.12"
|
224 |
|
225 |
[package.extras]
|
226 |
-
docs = ["sphinx (>=1.6.5
|
227 |
docstest = ["pyenchant (>=1.6.11)", "twine (>=1.12.0)", "sphinxcontrib-spelling (>=4.0.1)"]
|
228 |
pep8test = ["black", "flake8", "flake8-import-order", "pep8-naming"]
|
229 |
sdist = ["setuptools_rust (>=0.11.4)"]
|
230 |
ssh = ["bcrypt (>=3.1.5)"]
|
231 |
-
test = ["pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-subtests", "pytest-xdist", "pretend", "iso8601", "pytz", "hypothesis (>=1.11.4
|
232 |
|
233 |
[[package]]
|
234 |
name = "cssselect"
|
@@ -268,6 +268,17 @@ toolz = ">=0.8.0"
|
|
268 |
[package.extras]
|
269 |
cython = ["cython"]
|
270 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
271 |
[[package]]
|
272 |
name = "fastapi"
|
273 |
version = "0.78.0"
|
@@ -281,10 +292,10 @@ pydantic = ">=1.6.2,<1.7 || >1.7,<1.7.1 || >1.7.1,<1.7.2 || >1.7.2,<1.7.3 || >1.
|
|
281 |
starlette = "0.19.1"
|
282 |
|
283 |
[package.extras]
|
284 |
-
all = ["requests (>=2.24.0,<3.0.0)", "jinja2 (>=2.11.2,<4.0.0)", "python-multipart (>=0.0.5,<0.0.6)", "itsdangerous (>=1.1.0,<3.0.0)", "pyyaml (>=5.3.1,<7.0.0)", "ujson (>=4.0.1
|
285 |
dev = ["python-jose[cryptography] (>=3.3.0,<4.0.0)", "passlib[bcrypt] (>=1.7.2,<2.0.0)", "autoflake (>=1.4.0,<2.0.0)", "flake8 (>=3.8.3,<4.0.0)", "uvicorn[standard] (>=0.12.0,<0.18.0)", "pre-commit (>=2.17.0,<3.0.0)"]
|
286 |
doc = ["mkdocs (>=1.1.2,<2.0.0)", "mkdocs-material (>=8.1.4,<9.0.0)", "mdx-include (>=1.4.1,<2.0.0)", "mkdocs-markdownextradata-plugin (>=0.1.7,<0.3.0)", "typer (>=0.4.1,<0.5.0)", "pyyaml (>=5.3.1,<7.0.0)"]
|
287 |
-
test = ["pytest (>=6.2.4,<7.0.0)", "pytest-cov (>=2.12.0,<4.0.0)", "mypy (0.910)", "flake8 (>=3.8.3,<4.0.0)", "black (22.3.0)", "isort (>=5.0.6,<6.0.0)", "requests (>=2.24.0,<3.0.0)", "httpx (>=0.14.0,<0.19.0)", "email_validator (>=1.1.1,<2.0.0)", "sqlalchemy (>=1.3.18,<1.5.0)", "peewee (>=3.13.3,<4.0.0)", "databases[sqlite] (>=0.3.2,<0.6.0)", "orjson (>=3.2.1,<4.0.0)", "ujson (>=4.0.1
|
288 |
|
289 |
[[package]]
|
290 |
name = "feedfinder2"
|
@@ -362,11 +373,11 @@ python-versions = ">=3.7"
|
|
362 |
|
363 |
[[package]]
|
364 |
name = "gradio"
|
365 |
-
version = "3.0.
|
366 |
description = "Python library for easily interacting with trained machine learning models"
|
367 |
category = "main"
|
368 |
optional = false
|
369 |
-
python-versions = "
|
370 |
|
371 |
[package.dependencies]
|
372 |
aiohttp = "*"
|
@@ -409,7 +420,6 @@ spacy = ">=3.3.0,<3.4.0"
|
|
409 |
[package.source]
|
410 |
type = "url"
|
411 |
url = "https://huggingface.co/huspacy/hu_core_news_lg/resolve/v3.3.0/hu_core_news_lg-any-py3-none-any.whl"
|
412 |
-
|
413 |
[[package]]
|
414 |
name = "idna"
|
415 |
version = "3.3"
|
@@ -458,7 +468,7 @@ python-versions = ">=3.6"
|
|
458 |
|
459 |
[[package]]
|
460 |
name = "kiwisolver"
|
461 |
-
version = "1.4.
|
462 |
description = "A fast implementation of the Cassowary constraint solver"
|
463 |
category = "main"
|
464 |
optional = false
|
@@ -521,7 +531,7 @@ mdurl = ">=0.1,<1.0"
|
|
521 |
|
522 |
[package.extras]
|
523 |
benchmarking = ["psutil", "pytest", "pytest-benchmark (>=3.2,<4.0)"]
|
524 |
-
code_style = ["pre-commit (2.6)"]
|
525 |
compare = ["commonmark (>=0.9.1,<0.10.0)", "markdown (>=3.3.6,<3.4.0)", "mistletoe (>=0.8.1,<0.9.0)", "mistune (>=2.0.2,<2.1.0)", "panflute (>=2.1.3,<2.2.0)"]
|
526 |
linkify = ["linkify-it-py (>=1.0,<2.0)"]
|
527 |
plugins = ["mdit-py-plugins"]
|
@@ -568,7 +578,7 @@ python-versions = "~=3.6"
|
|
568 |
markdown-it-py = ">=1.0.0,<3.0.0"
|
569 |
|
570 |
[package.extras]
|
571 |
-
code_style = ["pre-commit (2.6)"]
|
572 |
rtd = ["myst-parser (>=0.14.0,<0.15.0)", "sphinx-book-theme (>=0.1.0,<0.2.0)"]
|
573 |
testing = ["coverage", "pytest (>=3.6,<4)", "pytest-cov", "pytest-regressions"]
|
574 |
|
@@ -606,7 +616,7 @@ python-versions = "*"
|
|
606 |
|
607 |
[[package]]
|
608 |
name = "networkx"
|
609 |
-
version = "2.8.
|
610 |
description = "Python package for creating and manipulating graphs and networks"
|
611 |
category = "main"
|
612 |
optional = false
|
@@ -614,8 +624,8 @@ python-versions = ">=3.8"
|
|
614 |
|
615 |
[package.extras]
|
616 |
default = ["numpy (>=1.19)", "scipy (>=1.8)", "matplotlib (>=3.4)", "pandas (>=1.3)"]
|
617 |
-
developer = ["pre-commit (>=2.
|
618 |
-
doc = ["sphinx (>=
|
619 |
extra = ["lxml (>=4.6)", "pygraphviz (>=1.9)", "pydot (>=1.4.2)", "sympy (>=1.10)"]
|
620 |
test = ["pytest (>=7.1)", "pytest-cov (>=3.0)", "codecov (>=2.1)"]
|
621 |
|
@@ -674,7 +684,7 @@ python-versions = ">=3.8"
|
|
674 |
|
675 |
[[package]]
|
676 |
name = "orjson"
|
677 |
-
version = "3.7.
|
678 |
description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy"
|
679 |
category = "main"
|
680 |
optional = false
|
@@ -749,6 +759,14 @@ gcs = ["google-cloud-storage (>=1.26.0,<2.0.0)"]
|
|
749 |
s3 = ["boto3"]
|
750 |
test = ["pytest", "pytest-coverage", "mock", "typer-cli"]
|
751 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
752 |
[[package]]
|
753 |
name = "pillow"
|
754 |
version = "9.1.1"
|
@@ -773,6 +791,32 @@ python-versions = "*"
|
|
773 |
cymem = ">=2.0.2,<2.1.0"
|
774 |
murmurhash = ">=0.28.0,<1.1.0"
|
775 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
776 |
[[package]]
|
777 |
name = "pycparser"
|
778 |
version = "2.21"
|
@@ -825,7 +869,7 @@ cffi = ">=1.4.1"
|
|
825 |
|
826 |
[package.extras]
|
827 |
docs = ["sphinx (>=1.6.5)", "sphinx-rtd-theme"]
|
828 |
-
tests = ["pytest (>=3.2.1
|
829 |
|
830 |
[[package]]
|
831 |
name = "pyparsing"
|
@@ -898,20 +942,20 @@ python-versions = ">=3.6"
|
|
898 |
|
899 |
[[package]]
|
900 |
name = "requests"
|
901 |
-
version = "2.
|
902 |
description = "Python HTTP for Humans."
|
903 |
category = "main"
|
904 |
optional = false
|
905 |
-
python-versions = ">=
|
906 |
|
907 |
[package.dependencies]
|
908 |
certifi = ">=2017.4.17"
|
909 |
-
charset-normalizer =
|
910 |
-
idna =
|
911 |
urllib3 = ">=1.21.1,<1.27"
|
912 |
|
913 |
[package.extras]
|
914 |
-
socks = ["PySocks (>=1.5.6
|
915 |
use_chardet_on_py3 = ["chardet (>=3.0.2,<5)"]
|
916 |
|
917 |
[[package]]
|
@@ -1003,7 +1047,7 @@ azure = ["azure-storage-blob", "azure-common", "azure-core"]
|
|
1003 |
gcs = ["google-cloud-storage"]
|
1004 |
http = ["requests"]
|
1005 |
s3 = ["boto3"]
|
1006 |
-
test = ["boto3", "google-cloud-storage", "azure-storage-blob", "azure-common", "azure-core", "requests", "moto[server] (1.3.14)", "pathlib2", "responses", "paramiko", "parameterizedtestcase", "pytest", "pytest-rerunfailures"]
|
1007 |
webhdfs = ["requests"]
|
1008 |
|
1009 |
[[package]]
|
@@ -1024,7 +1068,7 @@ python-versions = ">=3.6"
|
|
1024 |
|
1025 |
[[package]]
|
1026 |
name = "spacy"
|
1027 |
-
version = "3.3.
|
1028 |
description = "Industrial-strength Natural Language Processing (NLP) in Python"
|
1029 |
category = "main"
|
1030 |
optional = false
|
@@ -1067,8 +1111,8 @@ cuda80 = ["cupy-cuda80 (>=5.0.0b4,<11.0.0)"]
|
|
1067 |
cuda90 = ["cupy-cuda90 (>=5.0.0b4,<11.0.0)"]
|
1068 |
cuda91 = ["cupy-cuda91 (>=5.0.0b4,<11.0.0)"]
|
1069 |
cuda92 = ["cupy-cuda92 (>=5.0.0b4,<11.0.0)"]
|
1070 |
-
ja = ["sudachipy (>=0.5.2
|
1071 |
-
ko = ["natto-py (0.9.0)"]
|
1072 |
lookups = ["spacy-lookups-data (>=1.0.3,<1.1.0)"]
|
1073 |
ray = ["spacy-ray (>=0.1.0,<1.0.0)"]
|
1074 |
th = ["pythainlp (>=2.0)"]
|
@@ -1266,7 +1310,7 @@ click = ">=7.1.1,<9.0.0"
|
|
1266 |
all = ["colorama (>=0.4.3,<0.5.0)", "shellingham (>=1.3.0,<2.0.0)"]
|
1267 |
dev = ["autoflake (>=1.3.1,<2.0.0)", "flake8 (>=3.8.3,<4.0.0)"]
|
1268 |
doc = ["mkdocs (>=1.1.2,<2.0.0)", "mkdocs-material (>=8.1.4,<9.0.0)", "mdx-include (>=1.4.1,<2.0.0)"]
|
1269 |
-
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)"]
|
1270 |
|
1271 |
[[package]]
|
1272 |
name = "typing-extensions"
|
@@ -1298,7 +1342,7 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4"
|
|
1298 |
[package.extras]
|
1299 |
brotli = ["brotlicffi (>=0.8.0)", "brotli (>=1.0.9)", "brotlipy (>=0.6.0)"]
|
1300 |
secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "ipaddress"]
|
1301 |
-
socks = ["PySocks (>=1.5.6
|
1302 |
|
1303 |
[[package]]
|
1304 |
name = "uvicorn"
|
@@ -1314,7 +1358,7 @@ click = ">=7.0"
|
|
1314 |
h11 = ">=0.8"
|
1315 |
|
1316 |
[package.extras]
|
1317 |
-
standard = ["websockets (>=10.0)", "httptools (>=0.4.0)", "watchgod (>=0.6)", "python-dotenv (>=0.13)", "PyYAML (>=5.1)", "uvloop (>=0.14.0
|
1318 |
|
1319 |
[[package]]
|
1320 |
name = "wasabi"
|
@@ -1339,7 +1383,7 @@ multidict = ">=4.0"
|
|
1339 |
[metadata]
|
1340 |
lock-version = "1.1"
|
1341 |
python-versions = "~3.8"
|
1342 |
-
content-hash = "
|
1343 |
|
1344 |
[metadata.files]
|
1345 |
aiohttp = [
|
@@ -1463,6 +1507,7 @@ beautifulsoup4 = [
|
|
1463 |
]
|
1464 |
blis = [
|
1465 |
{file = "blis-0.7.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f4109cce38e644e81d923836b34024905d59e88c8fb48b89b420f4d7661cd89f"},
|
|
|
1466 |
{file = "blis-0.7.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b5e0acc760daf5c3b45bce44653943e3a04d81c21c5b92213ed51664525dc24e"},
|
1467 |
{file = "blis-0.7.7-cp310-cp310-win_amd64.whl", hash = "sha256:bead485e5d79d3eb62a8df55618743878fb3cba606aaf926153db5803270b185"},
|
1468 |
{file = "blis-0.7.7-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:1667db8439d9ca41c0c1f0ea954d87462be01b125436c4b264f73603c9fb4e82"},
|
@@ -1472,9 +1517,11 @@ blis = [
|
|
1472 |
{file = "blis-0.7.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:148f59a0a47a38ce82e3afc50c709494d5e5a494bef28ce1519c7a17346c645b"},
|
1473 |
{file = "blis-0.7.7-cp37-cp37m-win_amd64.whl", hash = "sha256:a0183760604b14e8eb671a431d06606594def03c36aaaa2a2e7b7f88382dac76"},
|
1474 |
{file = "blis-0.7.7-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:680480dfa16b354f2e4d584edb8d36f0505ed8df12939beee2d161aea7bb3609"},
|
|
|
1475 |
{file = "blis-0.7.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4a48eeaa506f176bcac306378f5e8063697c93e26d2418fcbe053e8912019090"},
|
1476 |
{file = "blis-0.7.7-cp38-cp38-win_amd64.whl", hash = "sha256:7865e39cac4e10506afc49213938fb7e13bf73ca980c9c20ffad2de4ef858f43"},
|
1477 |
{file = "blis-0.7.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:76d13dbcd648ca33dfc83569bb219d0696e4f6e5ad00b9f538332a3bdb28ff30"},
|
|
|
1478 |
{file = "blis-0.7.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e22145110864bcffb1d52cb57050b67b8a8ecd43c7c0a1ac0bcdb2c85c8bf416"},
|
1479 |
{file = "blis-0.7.7-cp39-cp39-win_amd64.whl", hash = "sha256:d6055ced65d6581ab4f1da0d3f6ec14c60512474c5c9b3210c9f30dd7dd1447d"},
|
1480 |
{file = "blis-0.7.7.tar.gz", hash = "sha256:5d4a81f9438db7a19ac8e64ad41331f65a659ea8f3bb1889a9c2088cfd9fe104"},
|
@@ -1488,8 +1535,8 @@ catalogue = [
|
|
1488 |
{file = "catalogue-2.0.7.tar.gz", hash = "sha256:535d33ae79ebd21ca298551d85da186ae8b8e1df36b0fb0246da774163ec2d6b"},
|
1489 |
]
|
1490 |
certifi = [
|
1491 |
-
{file = "certifi-2022.
|
1492 |
-
{file = "certifi-2022.
|
1493 |
]
|
1494 |
cffi = [
|
1495 |
{file = "cffi-1.15.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:c2502a1a03b6312837279c8c1bd3ebedf6c12c4228ddbad40912d671ccc8a962"},
|
@@ -1552,8 +1599,8 @@ click = [
|
|
1552 |
{file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"},
|
1553 |
]
|
1554 |
colorama = [
|
1555 |
-
{file = "colorama-0.4.
|
1556 |
-
{file = "colorama-0.4.
|
1557 |
]
|
1558 |
cryptography = [
|
1559 |
{file = "cryptography-37.0.2-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:ef15c2df7656763b4ff20a9bc4381d8352e6640cfeb95c2972c38ef508e75181"},
|
@@ -1589,6 +1636,7 @@ cycler = [
|
|
1589 |
]
|
1590 |
cymem = [
|
1591 |
{file = "cymem-2.0.6-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:700540b68e96a7056d0691d467df2bbaaf0934a3e6fe2383669998cbee19580a"},
|
|
|
1592 |
{file = "cymem-2.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:971cf0a8437dfb4185c3049c086e463612fe849efadc0f5cc153fc81c501da7d"},
|
1593 |
{file = "cymem-2.0.6-cp310-cp310-win_amd64.whl", hash = "sha256:6b0d1a6b0a1296f31fa9e4b7ae5ea49394084ecc883b1ae6fec4844403c43468"},
|
1594 |
{file = "cymem-2.0.6-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:b8e1c18bb00800425576710468299153caad20c64ddb6819d40a6a34e21ee21c"},
|
@@ -1598,9 +1646,11 @@ cymem = [
|
|
1598 |
{file = "cymem-2.0.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd52d8a81881804625df88453611175ab7e0099b34f52204da1f6940cf2e83c9"},
|
1599 |
{file = "cymem-2.0.6-cp37-cp37m-win_amd64.whl", hash = "sha256:4749f220e4c06ec44eb10de13794ff0508cdc4f8eff656cf49cab2cdb3122c0c"},
|
1600 |
{file = "cymem-2.0.6-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2aa3fa467d906cd2c27fa0a2e2952dd7925f5fcc7973fab6d815ef6acb25aad8"},
|
|
|
1601 |
{file = "cymem-2.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea535f74ab6024e7416f93de564e5c81fb7c0964b96280de66f60aeb05f0cf53"},
|
1602 |
{file = "cymem-2.0.6-cp38-cp38-win_amd64.whl", hash = "sha256:4f87fe087f2ae36c3e20e2b1a29d7f76a28c035372d0a97655f26223d975235a"},
|
1603 |
{file = "cymem-2.0.6-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a93fba62fe79dbf6fc4d5b6d804a6e114b44af3ff3d40a28833ee39f21bd336b"},
|
|
|
1604 |
{file = "cymem-2.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:04676d696596b0db3f3c5a3936bab12fb6f24278921a6622bb185e61765b2b4d"},
|
1605 |
{file = "cymem-2.0.6-cp39-cp39-win_amd64.whl", hash = "sha256:c59293b232b53ebb47427f16cf648e937022f489cff36c11d1d8a1f0075b6609"},
|
1606 |
{file = "cymem-2.0.6.tar.gz", hash = "sha256:169725b5816959d34de2545b33fee6a8021a6e08818794a426c5a4f981f17e5e"},
|
@@ -1608,6 +1658,10 @@ cymem = [
|
|
1608 |
cytoolz = [
|
1609 |
{file = "cytoolz-0.11.2.tar.gz", hash = "sha256:ea23663153806edddce7e4153d1d407d62357c05120a4e8485bddf1bd5ab22b4"},
|
1610 |
]
|
|
|
|
|
|
|
|
|
1611 |
fastapi = [
|
1612 |
{file = "fastapi-0.78.0-py3-none-any.whl", hash = "sha256:15fcabd5c78c266fa7ae7d8de9b384bfc2375ee0503463a6febbe3bab69d6f65"},
|
1613 |
{file = "fastapi-0.78.0.tar.gz", hash = "sha256:3233d4a789ba018578658e2af1a4bb5e38bdd122ff722b313666a9b2c6786a83"},
|
@@ -1692,8 +1746,8 @@ frozenlist = [
|
|
1692 |
{file = "frozenlist-1.3.0.tar.gz", hash = "sha256:ce6f2ba0edb7b0c1d8976565298ad2deba6f8064d2bebb6ffce2ca896eb35b0b"},
|
1693 |
]
|
1694 |
gradio = [
|
1695 |
-
{file = "gradio-3.0.
|
1696 |
-
{file = "gradio-3.0.
|
1697 |
]
|
1698 |
h11 = [
|
1699 |
{file = "h11-0.13.0-py3-none-any.whl", hash = "sha256:8ddd78563b633ca55346c8cd41ec0af27d3c79931828beffb46ce70a379e7442"},
|
@@ -1731,49 +1785,49 @@ joblib = [
|
|
1731 |
{file = "joblib-1.1.0.tar.gz", hash = "sha256:4158fcecd13733f8be669be0683b96ebdbbd38d23559f54dca7205aea1bf1e35"},
|
1732 |
]
|
1733 |
kiwisolver = [
|
1734 |
-
{file = "kiwisolver-1.4.
|
1735 |
-
{file = "kiwisolver-1.4.
|
1736 |
-
{file = "kiwisolver-1.4.
|
1737 |
-
{file = "kiwisolver-1.4.
|
1738 |
-
{file = "kiwisolver-1.4.
|
1739 |
-
{file = "kiwisolver-1.4.
|
1740 |
-
{file = "kiwisolver-1.4.
|
1741 |
-
{file = "kiwisolver-1.4.
|
1742 |
-
{file = "kiwisolver-1.4.
|
1743 |
-
{file = "kiwisolver-1.4.
|
1744 |
-
{file = "kiwisolver-1.4.
|
1745 |
-
{file = "kiwisolver-1.4.
|
1746 |
-
{file = "kiwisolver-1.4.
|
1747 |
-
{file = "kiwisolver-1.4.
|
1748 |
-
{file = "kiwisolver-1.4.
|
1749 |
-
{file = "kiwisolver-1.4.
|
1750 |
-
{file = "kiwisolver-1.4.
|
1751 |
-
{file = "kiwisolver-1.4.
|
1752 |
-
{file = "kiwisolver-1.4.
|
1753 |
-
{file = "kiwisolver-1.4.
|
1754 |
-
{file = "kiwisolver-1.4.
|
1755 |
-
{file = "kiwisolver-1.4.
|
1756 |
-
{file = "kiwisolver-1.4.
|
1757 |
-
{file = "kiwisolver-1.4.
|
1758 |
-
{file = "kiwisolver-1.4.
|
1759 |
-
{file = "kiwisolver-1.4.
|
1760 |
-
{file = "kiwisolver-1.4.
|
1761 |
-
{file = "kiwisolver-1.4.
|
1762 |
-
{file = "kiwisolver-1.4.
|
1763 |
-
{file = "kiwisolver-1.4.
|
1764 |
-
{file = "kiwisolver-1.4.
|
1765 |
-
{file = "kiwisolver-1.4.
|
1766 |
-
{file = "kiwisolver-1.4.
|
1767 |
-
{file = "kiwisolver-1.4.
|
1768 |
-
{file = "kiwisolver-1.4.
|
1769 |
-
{file = "kiwisolver-1.4.
|
1770 |
-
{file = "kiwisolver-1.4.
|
1771 |
-
{file = "kiwisolver-1.4.
|
1772 |
-
{file = "kiwisolver-1.4.
|
1773 |
-
{file = "kiwisolver-1.4.
|
1774 |
-
{file = "kiwisolver-1.4.
|
1775 |
-
{file = "kiwisolver-1.4.
|
1776 |
-
{file = "kiwisolver-1.4.
|
1777 |
]
|
1778 |
langcodes = [
|
1779 |
{file = "langcodes-3.3.0-py3-none-any.whl", hash = "sha256:4d89fc9acb6e9c8fdef70bcdf376113a3db09b67285d9e1d534de6d8818e7e69"},
|
@@ -2006,6 +2060,7 @@ multidict = [
|
|
2006 |
]
|
2007 |
murmurhash = [
|
2008 |
{file = "murmurhash-1.0.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:966d2efec6e01aa32c5774c44906724efca00da3507f06faa11acafb47ea1230"},
|
|
|
2009 |
{file = "murmurhash-1.0.7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13723aeb2b0f5ebc96bbcf133410481b28bfc7341ce65ae86fc32f02b54a68c1"},
|
2010 |
{file = "murmurhash-1.0.7-cp310-cp310-win_amd64.whl", hash = "sha256:f53f16ef143f93127e9aa920a30cda11a799e172b28508c32fb538a82b487a0c"},
|
2011 |
{file = "murmurhash-1.0.7-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:f7da66418c84982eca3494528b54ded4185d10a6b3231d53e1a2c83751e701e6"},
|
@@ -2015,16 +2070,18 @@ murmurhash = [
|
|
2015 |
{file = "murmurhash-1.0.7-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b317021f38505d48a9ab89ce32e3a06d7f3f32b06b16ceda8bb93c82eb6aea8"},
|
2016 |
{file = "murmurhash-1.0.7-cp37-cp37m-win_amd64.whl", hash = "sha256:2f0ef0c80b590b4ad5cd474771f0bed81ecdb1942c549319d6895fa985d96dc3"},
|
2017 |
{file = "murmurhash-1.0.7-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:400c6a0a96f4fee3a3a384091044acb54f509af8b582d339de329d82ac4585f6"},
|
|
|
2018 |
{file = "murmurhash-1.0.7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2165e2d0e8fa806e5aacc7fd9e7e79c633618b23c11aa724192fad5dda6599ef"},
|
2019 |
{file = "murmurhash-1.0.7-cp38-cp38-win_amd64.whl", hash = "sha256:65d9c6c39bb4c71689963109a1a3519acfa074280a94501c64f5e8d2a0cc257a"},
|
2020 |
{file = "murmurhash-1.0.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b151ab593132cae6529575515ed664b618095590c08b41beda9f47689408623"},
|
|
|
2021 |
{file = "murmurhash-1.0.7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dee39a6f4067cdfefb2156374de230f49405850bc3280eb787e8f6c8daefeb8d"},
|
2022 |
{file = "murmurhash-1.0.7-cp39-cp39-win_amd64.whl", hash = "sha256:fe79b40470885c5accfa7e378a0405407ebf0d8b0cd06a726748dcfd2d8dfa50"},
|
2023 |
{file = "murmurhash-1.0.7.tar.gz", hash = "sha256:630a396ebd31ca44d89b4eca36fa74ea8aae724adf0afaa2de7680c350b2936f"},
|
2024 |
]
|
2025 |
networkx = [
|
2026 |
-
{file = "networkx-2.8.
|
2027 |
-
{file = "networkx-2.8.
|
2028 |
]
|
2029 |
newspaper3k = [
|
2030 |
{file = "newspaper3k-0.2.8-py3-none-any.whl", hash = "sha256:44a864222633d3081113d1030615991c3dbba87239f6bbf59d91240f71a22e3e"},
|
@@ -2059,30 +2116,39 @@ numpy = [
|
|
2059 |
{file = "numpy-1.22.4.zip", hash = "sha256:425b390e4619f58d8526b3dcf656dde069133ae5c240229821f01b5f44ea07af"},
|
2060 |
]
|
2061 |
orjson = [
|
2062 |
-
{file = "orjson-3.7.
|
2063 |
-
{file = "orjson-3.7.
|
2064 |
-
{file = "orjson-3.7.
|
2065 |
-
{file = "orjson-3.7.
|
2066 |
-
{file = "orjson-3.7.
|
2067 |
-
{file = "orjson-3.7.
|
2068 |
-
{file = "orjson-3.7.
|
2069 |
-
{file = "orjson-3.7.
|
2070 |
-
{file = "orjson-3.7.
|
2071 |
-
{file = "orjson-3.7.
|
2072 |
-
{file = "orjson-3.7.
|
2073 |
-
{file = "orjson-3.7.
|
2074 |
-
{file = "orjson-3.7.
|
2075 |
-
{file = "orjson-3.7.
|
2076 |
-
{file = "orjson-3.7.
|
2077 |
-
{file = "orjson-3.7.
|
2078 |
-
{file = "orjson-3.7.
|
2079 |
-
{file = "orjson-3.7.
|
2080 |
-
{file = "orjson-3.7.
|
2081 |
-
{file = "orjson-3.7.
|
2082 |
-
{file = "orjson-3.7.
|
2083 |
-
{file = "orjson-3.7.
|
2084 |
-
{file = "orjson-3.7.
|
2085 |
-
{file = "orjson-3.7.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2086 |
]
|
2087 |
packaging = [
|
2088 |
{file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"},
|
@@ -2119,6 +2185,10 @@ pathy = [
|
|
2119 |
{file = "pathy-0.6.1-py3-none-any.whl", hash = "sha256:25fd04cec6393661113086730ce69c789d121bea83ab1aa18452e8fd42faf29a"},
|
2120 |
{file = "pathy-0.6.1.tar.gz", hash = "sha256:838624441f799a06b446a657e4ecc9ebc3fdd05234397e044a7c87e8f6e76b1c"},
|
2121 |
]
|
|
|
|
|
|
|
|
|
2122 |
pillow = [
|
2123 |
{file = "Pillow-9.1.1-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:42dfefbef90eb67c10c45a73a9bc1599d4dac920f7dfcbf4ec6b80cb620757fe"},
|
2124 |
{file = "Pillow-9.1.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ffde4c6fabb52891d81606411cbfaf77756e3b561b566efd270b3ed3791fde4e"},
|
@@ -2161,6 +2231,7 @@ pillow = [
|
|
2161 |
]
|
2162 |
preshed = [
|
2163 |
{file = "preshed-3.0.6-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:66a71ced487516cf81fd0431a3a843514262ae2f33e9a7688b87562258fa75d5"},
|
|
|
2164 |
{file = "preshed-3.0.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c98f725d8478f3ade4ab1ea00f50a92d2d9406d37276bc46fd8bab1d47452c4"},
|
2165 |
{file = "preshed-3.0.6-cp310-cp310-win_amd64.whl", hash = "sha256:ea8aa9610837e907e8442e79300df0a861bfdb4dcaf026a5d9642a688ad04815"},
|
2166 |
{file = "preshed-3.0.6-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:e03ae3eee961106a517fcd827b5a7c51f7317236b3e665c989054ab8dc381d28"},
|
@@ -2170,13 +2241,21 @@ preshed = [
|
|
2170 |
{file = "preshed-3.0.6-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:61b2ea656cb1c38d544cc774f1c2ad1cdab23167b46b35310a7e211d4ba9c6d0"},
|
2171 |
{file = "preshed-3.0.6-cp37-cp37m-win_amd64.whl", hash = "sha256:87e1add41b7f6236a3ccc34788f47ab8682bc28e8a2d369089062e274494c1a0"},
|
2172 |
{file = "preshed-3.0.6-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:a279c138ad1d5be02547b1545254929588414b01571fe637016367f6a1aa11de"},
|
|
|
2173 |
{file = "preshed-3.0.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3af09f4cfcdaca085fd87dac8107617c4e2bb0ad1458f953841b71e9728287f5"},
|
2174 |
{file = "preshed-3.0.6-cp38-cp38-win_amd64.whl", hash = "sha256:f92e752a868ea2690e1b38c4b775251a145e0fce36b9bdd972539e8271b7a23a"},
|
2175 |
{file = "preshed-3.0.6-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:eaffbc71fdb8625f9aac4fe7e19e20bf318d1421ea05903bebe3e6ffef27b587"},
|
|
|
2176 |
{file = "preshed-3.0.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cfe1495fcfc7f479de840ddc4f426dbb55351e218ae5c8712c1269183a4d0060"},
|
2177 |
{file = "preshed-3.0.6-cp39-cp39-win_amd64.whl", hash = "sha256:92a8f49d17a63537a8beed48a049b62ef168ca07e0042a5b2bcdf178a1fb5d48"},
|
2178 |
{file = "preshed-3.0.6.tar.gz", hash = "sha256:fb3b7588a3a0f2f2f1bf3fe403361b2b031212b73a37025aea1df7215af3772a"},
|
2179 |
]
|
|
|
|
|
|
|
|
|
|
|
|
|
2180 |
pycparser = [
|
2181 |
{file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"},
|
2182 |
{file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"},
|
@@ -2384,8 +2463,8 @@ regex = [
|
|
2384 |
{file = "regex-2022.6.2.tar.gz", hash = "sha256:f7b43acb2c46fb2cd506965b2d9cf4c5e64c9c612bac26c1187933c7296bf08c"},
|
2385 |
]
|
2386 |
requests = [
|
2387 |
-
{file = "requests-2.
|
2388 |
-
{file = "requests-2.
|
2389 |
]
|
2390 |
requests-file = [
|
2391 |
{file = "requests-file-1.5.1.tar.gz", hash = "sha256:07d74208d3389d01c38ab89ef403af0cfec63957d53a0081d8eca738d0247d8e"},
|
@@ -2460,25 +2539,25 @@ soupsieve = [
|
|
2460 |
{file = "soupsieve-2.3.2.post1.tar.gz", hash = "sha256:fc53893b3da2c33de295667a0e19f078c14bf86544af307354de5fcf12a3f30d"},
|
2461 |
]
|
2462 |
spacy = [
|
2463 |
-
{file = "spacy-3.3.
|
2464 |
-
{file = "spacy-3.3.
|
2465 |
-
{file = "spacy-3.3.
|
2466 |
-
{file = "spacy-3.3.
|
2467 |
-
{file = "spacy-3.3.
|
2468 |
-
{file = "spacy-3.3.
|
2469 |
-
{file = "spacy-3.3.
|
2470 |
-
{file = "spacy-3.3.
|
2471 |
-
{file = "spacy-3.3.
|
2472 |
-
{file = "spacy-3.3.
|
2473 |
-
{file = "spacy-3.3.
|
2474 |
-
{file = "spacy-3.3.
|
2475 |
-
{file = "spacy-3.3.
|
2476 |
-
{file = "spacy-3.3.
|
2477 |
-
{file = "spacy-3.3.
|
2478 |
-
{file = "spacy-3.3.
|
2479 |
-
{file = "spacy-3.3.
|
2480 |
-
{file = "spacy-3.3.
|
2481 |
-
{file = "spacy-3.3.
|
2482 |
]
|
2483 |
spacy-legacy = [
|
2484 |
{file = "spacy-legacy-3.0.9.tar.gz", hash = "sha256:4f7dcbc4e6c8e8cb4eadbb009f9c0a1a2a67442e0032c8d6776c9470c3759903"},
|
@@ -2490,6 +2569,7 @@ spacy-loggers = [
|
|
2490 |
]
|
2491 |
srsly = [
|
2492 |
{file = "srsly-2.4.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2d0236feafe3805b384532221596e6749a54d0ff10ba022b333dc1de7aa1b2f7"},
|
|
|
2493 |
{file = "srsly-2.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:62630dbf20e240610fa64b6717545fcc28d9f18a6085ee93656be000678592a6"},
|
2494 |
{file = "srsly-2.4.3-cp310-cp310-win_amd64.whl", hash = "sha256:27b3f693296d8a24c306aacd5df38a565ec43214f2aeb51a38170af5dc8b48bc"},
|
2495 |
{file = "srsly-2.4.3-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d3b93531f086c516a26f729beac9b052c2ad0528d72e80f9d193de26aa2202be"},
|
@@ -2499,9 +2579,11 @@ srsly = [
|
|
2499 |
{file = "srsly-2.4.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ab31586fd89e5e5fe6f38664209577b03e85fb834f238c928c15ed3c80ab9c73"},
|
2500 |
{file = "srsly-2.4.3-cp37-cp37m-win_amd64.whl", hash = "sha256:a906c9b1f62c109ddcfaeaf242b19b2ebc5d2f865eb38ef4af35959027c5185b"},
|
2501 |
{file = "srsly-2.4.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0d2b92c40f9aa9ba7cb0d8048bd7bfaa13d79d02e9ad6808ca7a8879ba5ed50b"},
|
|
|
2502 |
{file = "srsly-2.4.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:97a67c8f86ce3207e5e810b998a94ea49d439139adc21d9aadbd0bfab9faa64b"},
|
2503 |
{file = "srsly-2.4.3-cp38-cp38-win_amd64.whl", hash = "sha256:cffec31143c6e1c783ead11245c08938cae859115d4cb0f4cf423e2895707b74"},
|
2504 |
{file = "srsly-2.4.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:61e31a72370238387a8ff2a4cebea402227215a1450648b852cad9e511a8b59e"},
|
|
|
2505 |
{file = "srsly-2.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d1d13dc2133d5a83d30774793adb2c3fd9be905da339e2d54e2c79d55248c1a5"},
|
2506 |
{file = "srsly-2.4.3-cp39-cp39-win_amd64.whl", hash = "sha256:fb08416fd6ef04c51fdeefd6d28592b64563b2853243c571a9b0d67403b5be7f"},
|
2507 |
{file = "srsly-2.4.3.tar.gz", hash = "sha256:dbe91f6dd4aea9e819493628356dc715bd9c606486297bb7ca5748e6e003841c"},
|
|
|
45 |
six = ">=1.5"
|
46 |
|
47 |
[package.extras]
|
48 |
+
test = ["mock (==2.0.0)", "pylint (==1.9.3)", "flake8 (==3.7.9)"]
|
49 |
|
50 |
[[package]]
|
51 |
name = "anyio"
|
|
|
117 |
cffi = ">=1.1"
|
118 |
|
119 |
[package.extras]
|
120 |
+
tests = ["pytest (>=3.2.1,!=3.3.0)"]
|
121 |
typecheck = ["mypy"]
|
122 |
|
123 |
[[package]]
|
|
|
164 |
|
165 |
[[package]]
|
166 |
name = "certifi"
|
167 |
+
version = "2022.6.15"
|
168 |
description = "Python package for providing Mozilla's CA Bundle."
|
169 |
category = "main"
|
170 |
optional = false
|
|
|
205 |
|
206 |
[[package]]
|
207 |
name = "colorama"
|
208 |
+
version = "0.4.5"
|
209 |
description = "Cross-platform colored terminal text."
|
210 |
category = "main"
|
211 |
optional = false
|
|
|
223 |
cffi = ">=1.12"
|
224 |
|
225 |
[package.extras]
|
226 |
+
docs = ["sphinx (>=1.6.5,!=1.8.0,!=3.1.0,!=3.1.1)", "sphinx-rtd-theme"]
|
227 |
docstest = ["pyenchant (>=1.6.11)", "twine (>=1.12.0)", "sphinxcontrib-spelling (>=4.0.1)"]
|
228 |
pep8test = ["black", "flake8", "flake8-import-order", "pep8-naming"]
|
229 |
sdist = ["setuptools_rust (>=0.11.4)"]
|
230 |
ssh = ["bcrypt (>=3.1.5)"]
|
231 |
+
test = ["pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-subtests", "pytest-xdist", "pretend", "iso8601", "pytz", "hypothesis (>=1.11.4,!=3.79.2)"]
|
232 |
|
233 |
[[package]]
|
234 |
name = "cssselect"
|
|
|
268 |
[package.extras]
|
269 |
cython = ["cython"]
|
270 |
|
271 |
+
[[package]]
|
272 |
+
name = "faker"
|
273 |
+
version = "13.13.0"
|
274 |
+
description = "Faker is a Python package that generates fake data for you."
|
275 |
+
category = "main"
|
276 |
+
optional = false
|
277 |
+
python-versions = ">=3.6"
|
278 |
+
|
279 |
+
[package.dependencies]
|
280 |
+
python-dateutil = ">=2.4"
|
281 |
+
|
282 |
[[package]]
|
283 |
name = "fastapi"
|
284 |
version = "0.78.0"
|
|
|
292 |
starlette = "0.19.1"
|
293 |
|
294 |
[package.extras]
|
295 |
+
all = ["requests (>=2.24.0,<3.0.0)", "jinja2 (>=2.11.2,<4.0.0)", "python-multipart (>=0.0.5,<0.0.6)", "itsdangerous (>=1.1.0,<3.0.0)", "pyyaml (>=5.3.1,<7.0.0)", "ujson (>=4.0.1,!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0,<6.0.0)", "orjson (>=3.2.1,<4.0.0)", "email_validator (>=1.1.1,<2.0.0)", "uvicorn[standard] (>=0.12.0,<0.18.0)"]
|
296 |
dev = ["python-jose[cryptography] (>=3.3.0,<4.0.0)", "passlib[bcrypt] (>=1.7.2,<2.0.0)", "autoflake (>=1.4.0,<2.0.0)", "flake8 (>=3.8.3,<4.0.0)", "uvicorn[standard] (>=0.12.0,<0.18.0)", "pre-commit (>=2.17.0,<3.0.0)"]
|
297 |
doc = ["mkdocs (>=1.1.2,<2.0.0)", "mkdocs-material (>=8.1.4,<9.0.0)", "mdx-include (>=1.4.1,<2.0.0)", "mkdocs-markdownextradata-plugin (>=0.1.7,<0.3.0)", "typer (>=0.4.1,<0.5.0)", "pyyaml (>=5.3.1,<7.0.0)"]
|
298 |
+
test = ["pytest (>=6.2.4,<7.0.0)", "pytest-cov (>=2.12.0,<4.0.0)", "mypy (==0.910)", "flake8 (>=3.8.3,<4.0.0)", "black (==22.3.0)", "isort (>=5.0.6,<6.0.0)", "requests (>=2.24.0,<3.0.0)", "httpx (>=0.14.0,<0.19.0)", "email_validator (>=1.1.1,<2.0.0)", "sqlalchemy (>=1.3.18,<1.5.0)", "peewee (>=3.13.3,<4.0.0)", "databases[sqlite] (>=0.3.2,<0.6.0)", "orjson (>=3.2.1,<4.0.0)", "ujson (>=4.0.1,!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0,<6.0.0)", "python-multipart (>=0.0.5,<0.0.6)", "flask (>=1.1.2,<3.0.0)", "anyio[trio] (>=3.2.1,<4.0.0)", "types-ujson (==4.2.1)", "types-orjson (==3.6.2)", "types-dataclasses (==0.6.5)"]
|
299 |
|
300 |
[[package]]
|
301 |
name = "feedfinder2"
|
|
|
373 |
|
374 |
[[package]]
|
375 |
name = "gradio"
|
376 |
+
version = "3.0.17"
|
377 |
description = "Python library for easily interacting with trained machine learning models"
|
378 |
category = "main"
|
379 |
optional = false
|
380 |
+
python-versions = ">=3.7"
|
381 |
|
382 |
[package.dependencies]
|
383 |
aiohttp = "*"
|
|
|
420 |
[package.source]
|
421 |
type = "url"
|
422 |
url = "https://huggingface.co/huspacy/hu_core_news_lg/resolve/v3.3.0/hu_core_news_lg-any-py3-none-any.whl"
|
|
|
423 |
[[package]]
|
424 |
name = "idna"
|
425 |
version = "3.3"
|
|
|
468 |
|
469 |
[[package]]
|
470 |
name = "kiwisolver"
|
471 |
+
version = "1.4.3"
|
472 |
description = "A fast implementation of the Cassowary constraint solver"
|
473 |
category = "main"
|
474 |
optional = false
|
|
|
531 |
|
532 |
[package.extras]
|
533 |
benchmarking = ["psutil", "pytest", "pytest-benchmark (>=3.2,<4.0)"]
|
534 |
+
code_style = ["pre-commit (==2.6)"]
|
535 |
compare = ["commonmark (>=0.9.1,<0.10.0)", "markdown (>=3.3.6,<3.4.0)", "mistletoe (>=0.8.1,<0.9.0)", "mistune (>=2.0.2,<2.1.0)", "panflute (>=2.1.3,<2.2.0)"]
|
536 |
linkify = ["linkify-it-py (>=1.0,<2.0)"]
|
537 |
plugins = ["mdit-py-plugins"]
|
|
|
578 |
markdown-it-py = ">=1.0.0,<3.0.0"
|
579 |
|
580 |
[package.extras]
|
581 |
+
code_style = ["pre-commit (==2.6)"]
|
582 |
rtd = ["myst-parser (>=0.14.0,<0.15.0)", "sphinx-book-theme (>=0.1.0,<0.2.0)"]
|
583 |
testing = ["coverage", "pytest (>=3.6,<4)", "pytest-cov", "pytest-regressions"]
|
584 |
|
|
|
616 |
|
617 |
[[package]]
|
618 |
name = "networkx"
|
619 |
+
version = "2.8.4"
|
620 |
description = "Python package for creating and manipulating graphs and networks"
|
621 |
category = "main"
|
622 |
optional = false
|
|
|
624 |
|
625 |
[package.extras]
|
626 |
default = ["numpy (>=1.19)", "scipy (>=1.8)", "matplotlib (>=3.4)", "pandas (>=1.3)"]
|
627 |
+
developer = ["pre-commit (>=2.19)", "mypy (>=0.960)"]
|
628 |
+
doc = ["sphinx (>=5)", "pydata-sphinx-theme (>=0.9)", "sphinx-gallery (>=0.10)", "numpydoc (>=1.4)", "pillow (>=9.1)", "nb2plots (>=0.6)", "texext (>=0.6.6)"]
|
629 |
extra = ["lxml (>=4.6)", "pygraphviz (>=1.9)", "pydot (>=1.4.2)", "sympy (>=1.10)"]
|
630 |
test = ["pytest (>=7.1)", "pytest-cov (>=3.0)", "codecov (>=2.1)"]
|
631 |
|
|
|
684 |
|
685 |
[[package]]
|
686 |
name = "orjson"
|
687 |
+
version = "3.7.2"
|
688 |
description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy"
|
689 |
category = "main"
|
690 |
optional = false
|
|
|
759 |
s3 = ["boto3"]
|
760 |
test = ["pytest", "pytest-coverage", "mock", "typer-cli"]
|
761 |
|
762 |
+
[[package]]
|
763 |
+
name = "phonenumbers"
|
764 |
+
version = "8.12.50"
|
765 |
+
description = "Python version of Google's common library for parsing, formatting, storing and validating international phone numbers."
|
766 |
+
category = "main"
|
767 |
+
optional = false
|
768 |
+
python-versions = "*"
|
769 |
+
|
770 |
[[package]]
|
771 |
name = "pillow"
|
772 |
version = "9.1.1"
|
|
|
791 |
cymem = ">=2.0.2,<2.1.0"
|
792 |
murmurhash = ">=0.28.0,<1.1.0"
|
793 |
|
794 |
+
[[package]]
|
795 |
+
name = "presidio-analyzer"
|
796 |
+
version = "2.2.28"
|
797 |
+
description = "Presidio analyzer package"
|
798 |
+
category = "main"
|
799 |
+
optional = false
|
800 |
+
python-versions = "*"
|
801 |
+
|
802 |
+
[package.dependencies]
|
803 |
+
phonenumbers = ">=8.12"
|
804 |
+
pyyaml = "*"
|
805 |
+
regex = "*"
|
806 |
+
spacy = ">=3.2.0"
|
807 |
+
tldextract = "*"
|
808 |
+
|
809 |
+
[[package]]
|
810 |
+
name = "presidio-anonymizer"
|
811 |
+
version = "2.2.28"
|
812 |
+
description = "Persidio Anonymizer package - replaces analyzed text with desired values."
|
813 |
+
category = "main"
|
814 |
+
optional = false
|
815 |
+
python-versions = ">=3.5"
|
816 |
+
|
817 |
+
[package.dependencies]
|
818 |
+
pycryptodome = ">=3.10.1"
|
819 |
+
|
820 |
[[package]]
|
821 |
name = "pycparser"
|
822 |
version = "2.21"
|
|
|
869 |
|
870 |
[package.extras]
|
871 |
docs = ["sphinx (>=1.6.5)", "sphinx-rtd-theme"]
|
872 |
+
tests = ["pytest (>=3.2.1,!=3.3.0)", "hypothesis (>=3.27.0)"]
|
873 |
|
874 |
[[package]]
|
875 |
name = "pyparsing"
|
|
|
942 |
|
943 |
[[package]]
|
944 |
name = "requests"
|
945 |
+
version = "2.28.0"
|
946 |
description = "Python HTTP for Humans."
|
947 |
category = "main"
|
948 |
optional = false
|
949 |
+
python-versions = ">=3.7, <4"
|
950 |
|
951 |
[package.dependencies]
|
952 |
certifi = ">=2017.4.17"
|
953 |
+
charset-normalizer = ">=2.0.0,<2.1.0"
|
954 |
+
idna = ">=2.5,<4"
|
955 |
urllib3 = ">=1.21.1,<1.27"
|
956 |
|
957 |
[package.extras]
|
958 |
+
socks = ["PySocks (>=1.5.6,!=1.5.7)"]
|
959 |
use_chardet_on_py3 = ["chardet (>=3.0.2,<5)"]
|
960 |
|
961 |
[[package]]
|
|
|
1047 |
gcs = ["google-cloud-storage"]
|
1048 |
http = ["requests"]
|
1049 |
s3 = ["boto3"]
|
1050 |
+
test = ["boto3", "google-cloud-storage", "azure-storage-blob", "azure-common", "azure-core", "requests", "moto[server] (==1.3.14)", "pathlib2", "responses", "paramiko", "parameterizedtestcase", "pytest", "pytest-rerunfailures"]
|
1051 |
webhdfs = ["requests"]
|
1052 |
|
1053 |
[[package]]
|
|
|
1068 |
|
1069 |
[[package]]
|
1070 |
name = "spacy"
|
1071 |
+
version = "3.3.1"
|
1072 |
description = "Industrial-strength Natural Language Processing (NLP) in Python"
|
1073 |
category = "main"
|
1074 |
optional = false
|
|
|
1111 |
cuda90 = ["cupy-cuda90 (>=5.0.0b4,<11.0.0)"]
|
1112 |
cuda91 = ["cupy-cuda91 (>=5.0.0b4,<11.0.0)"]
|
1113 |
cuda92 = ["cupy-cuda92 (>=5.0.0b4,<11.0.0)"]
|
1114 |
+
ja = ["sudachipy (>=0.5.2,!=0.6.1)", "sudachidict-core (>=20211220)"]
|
1115 |
+
ko = ["natto-py (==0.9.0)"]
|
1116 |
lookups = ["spacy-lookups-data (>=1.0.3,<1.1.0)"]
|
1117 |
ray = ["spacy-ray (>=0.1.0,<1.0.0)"]
|
1118 |
th = ["pythainlp (>=2.0)"]
|
|
|
1310 |
all = ["colorama (>=0.4.3,<0.5.0)", "shellingham (>=1.3.0,<2.0.0)"]
|
1311 |
dev = ["autoflake (>=1.3.1,<2.0.0)", "flake8 (>=3.8.3,<4.0.0)"]
|
1312 |
doc = ["mkdocs (>=1.1.2,<2.0.0)", "mkdocs-material (>=8.1.4,<9.0.0)", "mdx-include (>=1.4.1,<2.0.0)"]
|
1313 |
+
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)"]
|
1314 |
|
1315 |
[[package]]
|
1316 |
name = "typing-extensions"
|
|
|
1342 |
[package.extras]
|
1343 |
brotli = ["brotlicffi (>=0.8.0)", "brotli (>=1.0.9)", "brotlipy (>=0.6.0)"]
|
1344 |
secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "ipaddress"]
|
1345 |
+
socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"]
|
1346 |
|
1347 |
[[package]]
|
1348 |
name = "uvicorn"
|
|
|
1358 |
h11 = ">=0.8"
|
1359 |
|
1360 |
[package.extras]
|
1361 |
+
standard = ["websockets (>=10.0)", "httptools (>=0.4.0)", "watchgod (>=0.6)", "python-dotenv (>=0.13)", "PyYAML (>=5.1)", "uvloop (>=0.14.0,!=0.15.0,!=0.15.1)", "colorama (>=0.4)"]
|
1362 |
|
1363 |
[[package]]
|
1364 |
name = "wasabi"
|
|
|
1383 |
[metadata]
|
1384 |
lock-version = "1.1"
|
1385 |
python-versions = "~3.8"
|
1386 |
+
content-hash = "5cd74ccc6f7bed486bb65b9e0c4245a6bf1eb74c0252b1b1f71fe740b6ce6fdd"
|
1387 |
|
1388 |
[metadata.files]
|
1389 |
aiohttp = [
|
|
|
1507 |
]
|
1508 |
blis = [
|
1509 |
{file = "blis-0.7.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f4109cce38e644e81d923836b34024905d59e88c8fb48b89b420f4d7661cd89f"},
|
1510 |
+
{file = "blis-0.7.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ee19fddb5964570d97c2096a9a1e595fa48abdde187b14f99dcea7bb546989a6"},
|
1511 |
{file = "blis-0.7.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b5e0acc760daf5c3b45bce44653943e3a04d81c21c5b92213ed51664525dc24e"},
|
1512 |
{file = "blis-0.7.7-cp310-cp310-win_amd64.whl", hash = "sha256:bead485e5d79d3eb62a8df55618743878fb3cba606aaf926153db5803270b185"},
|
1513 |
{file = "blis-0.7.7-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:1667db8439d9ca41c0c1f0ea954d87462be01b125436c4b264f73603c9fb4e82"},
|
|
|
1517 |
{file = "blis-0.7.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:148f59a0a47a38ce82e3afc50c709494d5e5a494bef28ce1519c7a17346c645b"},
|
1518 |
{file = "blis-0.7.7-cp37-cp37m-win_amd64.whl", hash = "sha256:a0183760604b14e8eb671a431d06606594def03c36aaaa2a2e7b7f88382dac76"},
|
1519 |
{file = "blis-0.7.7-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:680480dfa16b354f2e4d584edb8d36f0505ed8df12939beee2d161aea7bb3609"},
|
1520 |
+
{file = "blis-0.7.7-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b1e0567cde024e6ef677fe825d934baa7362cd71450c98e5198538026a86e896"},
|
1521 |
{file = "blis-0.7.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4a48eeaa506f176bcac306378f5e8063697c93e26d2418fcbe053e8912019090"},
|
1522 |
{file = "blis-0.7.7-cp38-cp38-win_amd64.whl", hash = "sha256:7865e39cac4e10506afc49213938fb7e13bf73ca980c9c20ffad2de4ef858f43"},
|
1523 |
{file = "blis-0.7.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:76d13dbcd648ca33dfc83569bb219d0696e4f6e5ad00b9f538332a3bdb28ff30"},
|
1524 |
+
{file = "blis-0.7.7-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:929a6e70b800f9df505f08ed3e863bf5fd0a209aed45fb38a0fd2b8342c04981"},
|
1525 |
{file = "blis-0.7.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e22145110864bcffb1d52cb57050b67b8a8ecd43c7c0a1ac0bcdb2c85c8bf416"},
|
1526 |
{file = "blis-0.7.7-cp39-cp39-win_amd64.whl", hash = "sha256:d6055ced65d6581ab4f1da0d3f6ec14c60512474c5c9b3210c9f30dd7dd1447d"},
|
1527 |
{file = "blis-0.7.7.tar.gz", hash = "sha256:5d4a81f9438db7a19ac8e64ad41331f65a659ea8f3bb1889a9c2088cfd9fe104"},
|
|
|
1535 |
{file = "catalogue-2.0.7.tar.gz", hash = "sha256:535d33ae79ebd21ca298551d85da186ae8b8e1df36b0fb0246da774163ec2d6b"},
|
1536 |
]
|
1537 |
certifi = [
|
1538 |
+
{file = "certifi-2022.6.15-py3-none-any.whl", hash = "sha256:fe86415d55e84719d75f8b69414f6438ac3547d2078ab91b67e779ef69378412"},
|
1539 |
+
{file = "certifi-2022.6.15.tar.gz", hash = "sha256:84c85a9078b11105f04f3036a9482ae10e4621616db313fe045dd24743a0820d"},
|
1540 |
]
|
1541 |
cffi = [
|
1542 |
{file = "cffi-1.15.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:c2502a1a03b6312837279c8c1bd3ebedf6c12c4228ddbad40912d671ccc8a962"},
|
|
|
1599 |
{file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"},
|
1600 |
]
|
1601 |
colorama = [
|
1602 |
+
{file = "colorama-0.4.5-py2.py3-none-any.whl", hash = "sha256:854bf444933e37f5824ae7bfc1e98d5bce2ebe4160d46b5edf346a89358e99da"},
|
1603 |
+
{file = "colorama-0.4.5.tar.gz", hash = "sha256:e6c6b4334fc50988a639d9b98aa429a0b57da6e17b9a44f0451f930b6967b7a4"},
|
1604 |
]
|
1605 |
cryptography = [
|
1606 |
{file = "cryptography-37.0.2-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:ef15c2df7656763b4ff20a9bc4381d8352e6640cfeb95c2972c38ef508e75181"},
|
|
|
1636 |
]
|
1637 |
cymem = [
|
1638 |
{file = "cymem-2.0.6-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:700540b68e96a7056d0691d467df2bbaaf0934a3e6fe2383669998cbee19580a"},
|
1639 |
+
{file = "cymem-2.0.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a261f51796a2705f3900ed22b8442519a0f230f50a816fb5bd89cb9b027dc5ac"},
|
1640 |
{file = "cymem-2.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:971cf0a8437dfb4185c3049c086e463612fe849efadc0f5cc153fc81c501da7d"},
|
1641 |
{file = "cymem-2.0.6-cp310-cp310-win_amd64.whl", hash = "sha256:6b0d1a6b0a1296f31fa9e4b7ae5ea49394084ecc883b1ae6fec4844403c43468"},
|
1642 |
{file = "cymem-2.0.6-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:b8e1c18bb00800425576710468299153caad20c64ddb6819d40a6a34e21ee21c"},
|
|
|
1646 |
{file = "cymem-2.0.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd52d8a81881804625df88453611175ab7e0099b34f52204da1f6940cf2e83c9"},
|
1647 |
{file = "cymem-2.0.6-cp37-cp37m-win_amd64.whl", hash = "sha256:4749f220e4c06ec44eb10de13794ff0508cdc4f8eff656cf49cab2cdb3122c0c"},
|
1648 |
{file = "cymem-2.0.6-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2aa3fa467d906cd2c27fa0a2e2952dd7925f5fcc7973fab6d815ef6acb25aad8"},
|
1649 |
+
{file = "cymem-2.0.6-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:228bd261a85d92d870ed358f263ee028ac026302304f2186827377a3895c5819"},
|
1650 |
{file = "cymem-2.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea535f74ab6024e7416f93de564e5c81fb7c0964b96280de66f60aeb05f0cf53"},
|
1651 |
{file = "cymem-2.0.6-cp38-cp38-win_amd64.whl", hash = "sha256:4f87fe087f2ae36c3e20e2b1a29d7f76a28c035372d0a97655f26223d975235a"},
|
1652 |
{file = "cymem-2.0.6-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a93fba62fe79dbf6fc4d5b6d804a6e114b44af3ff3d40a28833ee39f21bd336b"},
|
1653 |
+
{file = "cymem-2.0.6-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5d631239bfb07293ee444b269656308da952b6b003b12332ccb1c624dbfcda4b"},
|
1654 |
{file = "cymem-2.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:04676d696596b0db3f3c5a3936bab12fb6f24278921a6622bb185e61765b2b4d"},
|
1655 |
{file = "cymem-2.0.6-cp39-cp39-win_amd64.whl", hash = "sha256:c59293b232b53ebb47427f16cf648e937022f489cff36c11d1d8a1f0075b6609"},
|
1656 |
{file = "cymem-2.0.6.tar.gz", hash = "sha256:169725b5816959d34de2545b33fee6a8021a6e08818794a426c5a4f981f17e5e"},
|
|
|
1658 |
cytoolz = [
|
1659 |
{file = "cytoolz-0.11.2.tar.gz", hash = "sha256:ea23663153806edddce7e4153d1d407d62357c05120a4e8485bddf1bd5ab22b4"},
|
1660 |
]
|
1661 |
+
faker = [
|
1662 |
+
{file = "Faker-13.13.0-py3-none-any.whl", hash = "sha256:638b9c362e77bcd8212f0d1434c1940f1e8d6c336fe949add563ba0a154b6310"},
|
1663 |
+
{file = "Faker-13.13.0.tar.gz", hash = "sha256:f192d238b3b6acb98ee85bd596258a15a171385613b30a7849e5845f8980d722"},
|
1664 |
+
]
|
1665 |
fastapi = [
|
1666 |
{file = "fastapi-0.78.0-py3-none-any.whl", hash = "sha256:15fcabd5c78c266fa7ae7d8de9b384bfc2375ee0503463a6febbe3bab69d6f65"},
|
1667 |
{file = "fastapi-0.78.0.tar.gz", hash = "sha256:3233d4a789ba018578658e2af1a4bb5e38bdd122ff722b313666a9b2c6786a83"},
|
|
|
1746 |
{file = "frozenlist-1.3.0.tar.gz", hash = "sha256:ce6f2ba0edb7b0c1d8976565298ad2deba6f8064d2bebb6ffce2ca896eb35b0b"},
|
1747 |
]
|
1748 |
gradio = [
|
1749 |
+
{file = "gradio-3.0.17-py3-none-any.whl", hash = "sha256:1d3056a9143af291e0a42307c6e7f1d3b3dc88a68d31bfbad6c4888e460e4f0d"},
|
1750 |
+
{file = "gradio-3.0.17.tar.gz", hash = "sha256:f3a926f2309d76aefb56cb869dbfee44be68dc5f6f76391a3eeb34c2847bb956"},
|
1751 |
]
|
1752 |
h11 = [
|
1753 |
{file = "h11-0.13.0-py3-none-any.whl", hash = "sha256:8ddd78563b633ca55346c8cd41ec0af27d3c79931828beffb46ce70a379e7442"},
|
|
|
1785 |
{file = "joblib-1.1.0.tar.gz", hash = "sha256:4158fcecd13733f8be669be0683b96ebdbbd38d23559f54dca7205aea1bf1e35"},
|
1786 |
]
|
1787 |
kiwisolver = [
|
1788 |
+
{file = "kiwisolver-1.4.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:fd2842a0faed9ab9aba0922c951906132d9384be89690570f0ed18cd4f20e658"},
|
1789 |
+
{file = "kiwisolver-1.4.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:caa59e2cae0e23b1e225447d7a9ddb0f982f42a6a22d497a484dfe62a06f7c0e"},
|
1790 |
+
{file = "kiwisolver-1.4.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1d2c744aeedce22c122bb42d176b4aa6d063202a05a4abdacb3e413c214b3694"},
|
1791 |
+
{file = "kiwisolver-1.4.3-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:afe173ac2646c2636305ab820cc0380b22a00a7bca4290452e7166b4f4fa49d0"},
|
1792 |
+
{file = "kiwisolver-1.4.3-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40240da438c0ebfe2aa76dd04b844effac6679423df61adbe3437d32f23468d9"},
|
1793 |
+
{file = "kiwisolver-1.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21a3a98f0a21fc602663ca9bce2b12a4114891bdeba2dea1e9ad84db59892fca"},
|
1794 |
+
{file = "kiwisolver-1.4.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:51078855a16b7a4984ed2067b54e35803d18bca9861cb60c60f6234b50869a56"},
|
1795 |
+
{file = "kiwisolver-1.4.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c16635f8dddbeb1b827977d0b00d07b644b040aeb9ff8607a9fc0997afa3e567"},
|
1796 |
+
{file = "kiwisolver-1.4.3-cp310-cp310-win32.whl", hash = "sha256:2d76780d9c65c7529cedd49fa4802d713e60798d8dc3b0d5b12a0a8f38cca51c"},
|
1797 |
+
{file = "kiwisolver-1.4.3-cp310-cp310-win_amd64.whl", hash = "sha256:3a297d77b3d6979693f5948df02b89431ae3645ec95865e351fb45578031bdae"},
|
1798 |
+
{file = "kiwisolver-1.4.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:ca3eefb02ef17257fae8b8555c85e7c1efdfd777f671384b0e4ef27409b02720"},
|
1799 |
+
{file = "kiwisolver-1.4.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d248c46c0aa406695bda2abf99632db991f8b3a6d46018721a2892312a99f069"},
|
1800 |
+
{file = "kiwisolver-1.4.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cb55258931448d61e2d50187de4ee66fc9d9f34908b524949b8b2b93d0c57136"},
|
1801 |
+
{file = "kiwisolver-1.4.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86bcf0009f2012847a688f2f4f9b16203ca4c835979a02549aa0595d9f457cc8"},
|
1802 |
+
{file = "kiwisolver-1.4.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e7cf940af5fee00a92e281eb157abe8770227a5255207818ea9a34e54a29f5b2"},
|
1803 |
+
{file = "kiwisolver-1.4.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:dd22085446f3eca990d12a0878eeb5199dc9553b2e71716bfe7bed9915a472ab"},
|
1804 |
+
{file = "kiwisolver-1.4.3-cp37-cp37m-win32.whl", hash = "sha256:d2578e5149ff49878934debfacf5c743fab49eca5ecdb983d0b218e1e554c498"},
|
1805 |
+
{file = "kiwisolver-1.4.3-cp37-cp37m-win_amd64.whl", hash = "sha256:5fb73cc8a34baba1dfa546ae83b9c248ef6150c238b06fc53d2773685b67ec67"},
|
1806 |
+
{file = "kiwisolver-1.4.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:f70f3d028794e31cf9d1a822914efc935aadb2438ec4e8d4871d95eb1ce032d6"},
|
1807 |
+
{file = "kiwisolver-1.4.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:71af5b43e4fa286a35110fc5bb740fdeae2b36ca79fbcf0a54237485baeee8be"},
|
1808 |
+
{file = "kiwisolver-1.4.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:26b5a70bdab09e6a2f40babc4f8f992e3771751e144bda1938084c70d3001c09"},
|
1809 |
+
{file = "kiwisolver-1.4.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1858ad3cb686eccc7c6b7c5eac846a1cfd45aacb5811b2cf575e80b208f5622a"},
|
1810 |
+
{file = "kiwisolver-1.4.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4dc350cb65fe4e3f737d50f0465fa6ea0dcae0e5722b7edf5d5b0a0e3cd2c3c7"},
|
1811 |
+
{file = "kiwisolver-1.4.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:007799c7fa934646318fc128b033bb6e6baabe7fbad521bfb2279aac26225cd7"},
|
1812 |
+
{file = "kiwisolver-1.4.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:46fb56fde006b7ef5f8eaa3698299b0ea47444238b869ff3ced1426aa9fedcb5"},
|
1813 |
+
{file = "kiwisolver-1.4.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:b9eb88593159a53a5ee0b0159daee531ff7dd9c87fa78f5d807ca059c7eb1b2b"},
|
1814 |
+
{file = "kiwisolver-1.4.3-cp38-cp38-win32.whl", hash = "sha256:3b1dcbc49923ac3c973184a82832e1f018dec643b1e054867d04a3a22255ec6a"},
|
1815 |
+
{file = "kiwisolver-1.4.3-cp38-cp38-win_amd64.whl", hash = "sha256:7118ca592d25b2957ff7b662bc0fe4f4c2b5d5b27814b9b1bc9f2fb249a970e7"},
|
1816 |
+
{file = "kiwisolver-1.4.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:747190fcdadc377263223f8f72b038381b3b549a8a3df5baf4d067da4749b046"},
|
1817 |
+
{file = "kiwisolver-1.4.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:fd628e63ffdba0112e3ddf1b1e9f3db29dd8262345138e08f4938acbc6d0805a"},
|
1818 |
+
{file = "kiwisolver-1.4.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:22ccba48abae827a0f952a78a7b1a7ff01866131e5bbe1f826ce9bda406bf051"},
|
1819 |
+
{file = "kiwisolver-1.4.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:af24b21c2283ca69c416a8a42cde9764dc36c63d3389645d28c69b0e93db3cd7"},
|
1820 |
+
{file = "kiwisolver-1.4.3-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:547111ef7cf13d73546c2de97ce434935626c897bdec96a578ca100b5fcd694b"},
|
1821 |
+
{file = "kiwisolver-1.4.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:84f85adfebd7d3c3db649efdf73659e1677a2cf3fa6e2556a3f373578af14bf7"},
|
1822 |
+
{file = "kiwisolver-1.4.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ffd7cf165ff71afb202b3f36daafbf298932bee325aac9f58e1c9cd55838bef0"},
|
1823 |
+
{file = "kiwisolver-1.4.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6b3136eecf7e1b4a4d23e4b19d6c4e7a8e0b42d55f30444e3c529700cdacaa0d"},
|
1824 |
+
{file = "kiwisolver-1.4.3-cp39-cp39-win32.whl", hash = "sha256:46c6e5018ba31d5ee7582f323d8661498a154dea1117486a571db4c244531f24"},
|
1825 |
+
{file = "kiwisolver-1.4.3-cp39-cp39-win_amd64.whl", hash = "sha256:8395064d63b26947fa2c9faeea9c3eee35e52148c5339c37987e1d96fbf009b3"},
|
1826 |
+
{file = "kiwisolver-1.4.3-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:325fa1b15098e44fe4590a6c5c09a212ca10c6ebb5d96f7447d675f6c8340e4e"},
|
1827 |
+
{file = "kiwisolver-1.4.3-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:654280c5f41831ddcc5a331c0e3ce2e480bbc3d7c93c18ecf6236313aae2d61a"},
|
1828 |
+
{file = "kiwisolver-1.4.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ae7aa0784aeadfbd693c27993727792fbe1455b84d49970bad5886b42976b18"},
|
1829 |
+
{file = "kiwisolver-1.4.3-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:130c6c35eded399d3967cf8a542c20b671f5ba85bd6f210f8b939f868360e9eb"},
|
1830 |
+
{file = "kiwisolver-1.4.3.tar.gz", hash = "sha256:ab8a15c2750ae8d53e31f77a94f846d0a00772240f1c12817411fa2344351f86"},
|
1831 |
]
|
1832 |
langcodes = [
|
1833 |
{file = "langcodes-3.3.0-py3-none-any.whl", hash = "sha256:4d89fc9acb6e9c8fdef70bcdf376113a3db09b67285d9e1d534de6d8818e7e69"},
|
|
|
2060 |
]
|
2061 |
murmurhash = [
|
2062 |
{file = "murmurhash-1.0.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:966d2efec6e01aa32c5774c44906724efca00da3507f06faa11acafb47ea1230"},
|
2063 |
+
{file = "murmurhash-1.0.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:92bdc94f5c898f68ae2e334dd7385d801d666d3ea31d5fb64bb2654af8445cfc"},
|
2064 |
{file = "murmurhash-1.0.7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13723aeb2b0f5ebc96bbcf133410481b28bfc7341ce65ae86fc32f02b54a68c1"},
|
2065 |
{file = "murmurhash-1.0.7-cp310-cp310-win_amd64.whl", hash = "sha256:f53f16ef143f93127e9aa920a30cda11a799e172b28508c32fb538a82b487a0c"},
|
2066 |
{file = "murmurhash-1.0.7-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:f7da66418c84982eca3494528b54ded4185d10a6b3231d53e1a2c83751e701e6"},
|
|
|
2070 |
{file = "murmurhash-1.0.7-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b317021f38505d48a9ab89ce32e3a06d7f3f32b06b16ceda8bb93c82eb6aea8"},
|
2071 |
{file = "murmurhash-1.0.7-cp37-cp37m-win_amd64.whl", hash = "sha256:2f0ef0c80b590b4ad5cd474771f0bed81ecdb1942c549319d6895fa985d96dc3"},
|
2072 |
{file = "murmurhash-1.0.7-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:400c6a0a96f4fee3a3a384091044acb54f509af8b582d339de329d82ac4585f6"},
|
2073 |
+
{file = "murmurhash-1.0.7-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:789f19c0c566e87bfb74368a9f74388a6fe608dad10a2568f5da36c390de2eee"},
|
2074 |
{file = "murmurhash-1.0.7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2165e2d0e8fa806e5aacc7fd9e7e79c633618b23c11aa724192fad5dda6599ef"},
|
2075 |
{file = "murmurhash-1.0.7-cp38-cp38-win_amd64.whl", hash = "sha256:65d9c6c39bb4c71689963109a1a3519acfa074280a94501c64f5e8d2a0cc257a"},
|
2076 |
{file = "murmurhash-1.0.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b151ab593132cae6529575515ed664b618095590c08b41beda9f47689408623"},
|
2077 |
+
{file = "murmurhash-1.0.7-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8797bc59cc5c0c6aa5019951d503be5329328ade5bc61d96348bcb8201ac6e52"},
|
2078 |
{file = "murmurhash-1.0.7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dee39a6f4067cdfefb2156374de230f49405850bc3280eb787e8f6c8daefeb8d"},
|
2079 |
{file = "murmurhash-1.0.7-cp39-cp39-win_amd64.whl", hash = "sha256:fe79b40470885c5accfa7e378a0405407ebf0d8b0cd06a726748dcfd2d8dfa50"},
|
2080 |
{file = "murmurhash-1.0.7.tar.gz", hash = "sha256:630a396ebd31ca44d89b4eca36fa74ea8aae724adf0afaa2de7680c350b2936f"},
|
2081 |
]
|
2082 |
networkx = [
|
2083 |
+
{file = "networkx-2.8.4-py3-none-any.whl", hash = "sha256:6933b9b3174a0bdf03c911bb4a1ee43a86ce3edeb813e37e1d4c553b3f4a2c4f"},
|
2084 |
+
{file = "networkx-2.8.4.tar.gz", hash = "sha256:5e53f027c0d567cf1f884dbb283224df525644e43afd1145d64c9d88a3584762"},
|
2085 |
]
|
2086 |
newspaper3k = [
|
2087 |
{file = "newspaper3k-0.2.8-py3-none-any.whl", hash = "sha256:44a864222633d3081113d1030615991c3dbba87239f6bbf59d91240f71a22e3e"},
|
|
|
2116 |
{file = "numpy-1.22.4.zip", hash = "sha256:425b390e4619f58d8526b3dcf656dde069133ae5c240229821f01b5f44ea07af"},
|
2117 |
]
|
2118 |
orjson = [
|
2119 |
+
{file = "orjson-3.7.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:4c6bdb0a7dfe53cca965a40371c7b8e72a0441c8bc4949c9015600f1c7fae408"},
|
2120 |
+
{file = "orjson-3.7.2-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:6e6fc60775bb0a050846710c4a110e8ad17f41e443ff9d0d05145d8f3a74b577"},
|
2121 |
+
{file = "orjson-3.7.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e4b70bb1f746a9c9afb1f861a0496920b5833ff06f9d1b25b6a7d292cb7e8a06"},
|
2122 |
+
{file = "orjson-3.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:99bb2127ee174dd6e68255db26dbef0bd6c4330377a17867ecfa314d47bfac82"},
|
2123 |
+
{file = "orjson-3.7.2-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:26306d988401cc34ac94dd38873b8c0384276a5ad80cdf50e266e06083284975"},
|
2124 |
+
{file = "orjson-3.7.2-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:34a67d810dbcec77d00d764ab730c5bbb0bee1d75a037c8d8e981506e8fba560"},
|
2125 |
+
{file = "orjson-3.7.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:14bc727f41ce0dd93d1a6a9fc06076e2401e71b00d0bf107bf64d88d2d963b77"},
|
2126 |
+
{file = "orjson-3.7.2-cp310-none-win_amd64.whl", hash = "sha256:4c686cbb73ccce02929dd799427897f0a0b2dd597d2f5b6b434917ecc3774146"},
|
2127 |
+
{file = "orjson-3.7.2-cp37-cp37m-macosx_10_7_x86_64.whl", hash = "sha256:12eb683ddbdddd6847ca2b3b074f42574afc0fbf1aff33d8fdf3a4329167762a"},
|
2128 |
+
{file = "orjson-3.7.2-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:993550e6e451a2b71435142d4824a09f8db80d497abae23dc9f3fe62b6ca24c0"},
|
2129 |
+
{file = "orjson-3.7.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:54cfa4d915a98209366dcf500ee5c3f66408cc9e2b4fd777c8508f69a8f519a1"},
|
2130 |
+
{file = "orjson-3.7.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f735999d49e2fff2c9812f1ea330b368349f77726894e2a06d17371e61d771bb"},
|
2131 |
+
{file = "orjson-3.7.2-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:b2b660790b0804624c569ddb8ca9d31bac6f94f880fd54b8cdff4198735a9fec"},
|
2132 |
+
{file = "orjson-3.7.2-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:590bc5f33e54eb2261de65e4026876e57d04437bab8dcade9514557e31d84537"},
|
2133 |
+
{file = "orjson-3.7.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8ac61c5c98cbcdcf7a3d0a4b62c873bbd9a996a69eaa44f8356a9e10aa29ef49"},
|
2134 |
+
{file = "orjson-3.7.2-cp37-none-win_amd64.whl", hash = "sha256:662bda15edf4d25d520945660873e730e3a6d9975041ba9c32f0ce93b632ee0d"},
|
2135 |
+
{file = "orjson-3.7.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:19eb800811a53efc7111ff7536079fb2f62da7098df0a42756ba91e7bdd01aff"},
|
2136 |
+
{file = "orjson-3.7.2-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:54a1e4e39c89d37d3dbc74dde36d09eebcde365ec6803431af9c86604bbbaf3a"},
|
2137 |
+
{file = "orjson-3.7.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fbd3b46ac514cbe29ecebcee3882383022acf84aa4d3338f26d068c6fbdf56a0"},
|
2138 |
+
{file = "orjson-3.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:891640d332c8c7a1478ea6d13b676d239dc86451afa46000c4e8d0990a0d72dd"},
|
2139 |
+
{file = "orjson-3.7.2-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:9778a7ec4c72d6814f1e116591f351404a4df2e1dc52d282ff678781f45b509b"},
|
2140 |
+
{file = "orjson-3.7.2-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:b0b2483f8ad1f93ae4aa43bcf6a985e6ec278e931d0118bae605ffd811b614a1"},
|
2141 |
+
{file = "orjson-3.7.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2d90ca4e74750c7adfb7708deb096f835f7e6c4b892bdf703fe871565bb04ad7"},
|
2142 |
+
{file = "orjson-3.7.2-cp38-none-win_amd64.whl", hash = "sha256:b0f4e92bdfe86a0da57028e669bc1f50f48d810ef6f661e63dc6593c450314bf"},
|
2143 |
+
{file = "orjson-3.7.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:b705132b2827d33291684067cca6baa451a499b459e46761d30fcf4d6ce21a9a"},
|
2144 |
+
{file = "orjson-3.7.2-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:c589d00b4fb0777f222b35925e4fa030c4777f16d1623669f44bdc191570be66"},
|
2145 |
+
{file = "orjson-3.7.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7e197e6779b230e74333e06db804ff876b27306470f68692ec70c27310e7366f"},
|
2146 |
+
{file = "orjson-3.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a82089ec9e1f7e9b992ff5ab98b4c3c2f98e7bbfdc6fadbef046c5aaafec2b54"},
|
2147 |
+
{file = "orjson-3.7.2-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:3ff49c219b30d715c8baae17c7c5839fe3f2c2db10a66c61d6b91bda80bf8789"},
|
2148 |
+
{file = "orjson-3.7.2-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:299a743576aaa04f5c7994010608f96df5d4a924d584a686c6e263cee732cb00"},
|
2149 |
+
{file = "orjson-3.7.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d3ae3ed52c875ce1a6c607f852ca177057445289895483b0247f0dc57b481241"},
|
2150 |
+
{file = "orjson-3.7.2-cp39-none-win_amd64.whl", hash = "sha256:796914f7463277d371402775536fb461948c0d34a67d20a57dc4ec49a48a8613"},
|
2151 |
+
{file = "orjson-3.7.2.tar.gz", hash = "sha256:1cf9690a0b7c51a988221376741a31087bc1dc2ac327bb2dde919806dfa59444"},
|
2152 |
]
|
2153 |
packaging = [
|
2154 |
{file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"},
|
|
|
2185 |
{file = "pathy-0.6.1-py3-none-any.whl", hash = "sha256:25fd04cec6393661113086730ce69c789d121bea83ab1aa18452e8fd42faf29a"},
|
2186 |
{file = "pathy-0.6.1.tar.gz", hash = "sha256:838624441f799a06b446a657e4ecc9ebc3fdd05234397e044a7c87e8f6e76b1c"},
|
2187 |
]
|
2188 |
+
phonenumbers = [
|
2189 |
+
{file = "phonenumbers-8.12.50-py2.py3-none-any.whl", hash = "sha256:56713403b4160b59ea1fef4e842ddeb70931055146d794d371b60cd4b5f05fb8"},
|
2190 |
+
{file = "phonenumbers-8.12.50.tar.gz", hash = "sha256:f00d67f20875804f4fade4803a9438294029982ac929c6ba303e1f0290cf5d45"},
|
2191 |
+
]
|
2192 |
pillow = [
|
2193 |
{file = "Pillow-9.1.1-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:42dfefbef90eb67c10c45a73a9bc1599d4dac920f7dfcbf4ec6b80cb620757fe"},
|
2194 |
{file = "Pillow-9.1.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ffde4c6fabb52891d81606411cbfaf77756e3b561b566efd270b3ed3791fde4e"},
|
|
|
2231 |
]
|
2232 |
preshed = [
|
2233 |
{file = "preshed-3.0.6-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:66a71ced487516cf81fd0431a3a843514262ae2f33e9a7688b87562258fa75d5"},
|
2234 |
+
{file = "preshed-3.0.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9fb3d1da40abe3d99a9ee28c0df7090c1bab7c09042421d3cade7dc12e868c70"},
|
2235 |
{file = "preshed-3.0.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c98f725d8478f3ade4ab1ea00f50a92d2d9406d37276bc46fd8bab1d47452c4"},
|
2236 |
{file = "preshed-3.0.6-cp310-cp310-win_amd64.whl", hash = "sha256:ea8aa9610837e907e8442e79300df0a861bfdb4dcaf026a5d9642a688ad04815"},
|
2237 |
{file = "preshed-3.0.6-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:e03ae3eee961106a517fcd827b5a7c51f7317236b3e665c989054ab8dc381d28"},
|
|
|
2241 |
{file = "preshed-3.0.6-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:61b2ea656cb1c38d544cc774f1c2ad1cdab23167b46b35310a7e211d4ba9c6d0"},
|
2242 |
{file = "preshed-3.0.6-cp37-cp37m-win_amd64.whl", hash = "sha256:87e1add41b7f6236a3ccc34788f47ab8682bc28e8a2d369089062e274494c1a0"},
|
2243 |
{file = "preshed-3.0.6-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:a279c138ad1d5be02547b1545254929588414b01571fe637016367f6a1aa11de"},
|
2244 |
+
{file = "preshed-3.0.6-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ab8b5232255ebf7ee96e3cb4f1bedaace6ae0925d1113d4ede9d44c78f088ef2"},
|
2245 |
{file = "preshed-3.0.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3af09f4cfcdaca085fd87dac8107617c4e2bb0ad1458f953841b71e9728287f5"},
|
2246 |
{file = "preshed-3.0.6-cp38-cp38-win_amd64.whl", hash = "sha256:f92e752a868ea2690e1b38c4b775251a145e0fce36b9bdd972539e8271b7a23a"},
|
2247 |
{file = "preshed-3.0.6-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:eaffbc71fdb8625f9aac4fe7e19e20bf318d1421ea05903bebe3e6ffef27b587"},
|
2248 |
+
{file = "preshed-3.0.6-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9c7809491e26a41bd6e4e2e93ddf3e8989cff256c3829a7953b57c97a8268a6c"},
|
2249 |
{file = "preshed-3.0.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cfe1495fcfc7f479de840ddc4f426dbb55351e218ae5c8712c1269183a4d0060"},
|
2250 |
{file = "preshed-3.0.6-cp39-cp39-win_amd64.whl", hash = "sha256:92a8f49d17a63537a8beed48a049b62ef168ca07e0042a5b2bcdf178a1fb5d48"},
|
2251 |
{file = "preshed-3.0.6.tar.gz", hash = "sha256:fb3b7588a3a0f2f2f1bf3fe403361b2b031212b73a37025aea1df7215af3772a"},
|
2252 |
]
|
2253 |
+
presidio-analyzer = [
|
2254 |
+
{file = "presidio_analyzer-2.2.28-py3-none-any.whl", hash = "sha256:26440b8dc50bf4b31b0651e6faa79b4039e8ea59ca8890a8aa666cf926d8f36b"},
|
2255 |
+
]
|
2256 |
+
presidio-anonymizer = [
|
2257 |
+
{file = "presidio_anonymizer-2.2.28-py3-none-any.whl", hash = "sha256:996942dbc9e174019cd27b4cc8af0668540cb2cf23eea676432003a291859f33"},
|
2258 |
+
]
|
2259 |
pycparser = [
|
2260 |
{file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"},
|
2261 |
{file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"},
|
|
|
2463 |
{file = "regex-2022.6.2.tar.gz", hash = "sha256:f7b43acb2c46fb2cd506965b2d9cf4c5e64c9c612bac26c1187933c7296bf08c"},
|
2464 |
]
|
2465 |
requests = [
|
2466 |
+
{file = "requests-2.28.0-py3-none-any.whl", hash = "sha256:bc7861137fbce630f17b03d3ad02ad0bf978c844f3536d0edda6499dafce2b6f"},
|
2467 |
+
{file = "requests-2.28.0.tar.gz", hash = "sha256:d568723a7ebd25875d8d1eaf5dfa068cd2fc8194b2e483d7b1f7c81918dbec6b"},
|
2468 |
]
|
2469 |
requests-file = [
|
2470 |
{file = "requests-file-1.5.1.tar.gz", hash = "sha256:07d74208d3389d01c38ab89ef403af0cfec63957d53a0081d8eca738d0247d8e"},
|
|
|
2539 |
{file = "soupsieve-2.3.2.post1.tar.gz", hash = "sha256:fc53893b3da2c33de295667a0e19f078c14bf86544af307354de5fcf12a3f30d"},
|
2540 |
]
|
2541 |
spacy = [
|
2542 |
+
{file = "spacy-3.3.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d2e9510ad67fef328bbec01673d6e65f5670ccbb9434dfe0deaa7edffcc900a6"},
|
2543 |
+
{file = "spacy-3.3.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:192baa97dfb90b9c59c8c5e90448284ea3810d4a9422f514f2d3eae78f97aa14"},
|
2544 |
+
{file = "spacy-3.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5916b1e43b848680e01619963c2dd6ec0c1d99b5a5665c9b9b761f65c5adf18e"},
|
2545 |
+
{file = "spacy-3.3.1-cp310-cp310-win_amd64.whl", hash = "sha256:ad3c6726b92723d16c15dc7ecc48abbb6495ef7b4c30d7cf4948c1195162a272"},
|
2546 |
+
{file = "spacy-3.3.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:ee876b2036e8500b6dd315347eb2fc0345be097806bfe6857c7347beb759169a"},
|
2547 |
+
{file = "spacy-3.3.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b18ed499fc8d848bb9026b294dc78128028c58a73ba0ae547d42fc6d471628a8"},
|
2548 |
+
{file = "spacy-3.3.1-cp36-cp36m-win_amd64.whl", hash = "sha256:7b58cd4e27d6ae29e23b47e9ba6b8ca4e02fc69d65b57b2a9c7072c3a187b4ba"},
|
2549 |
+
{file = "spacy-3.3.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:ae06825f2e349e035fae602e2a48ba1453b8eed9238144e36e1b09a741744c6e"},
|
2550 |
+
{file = "spacy-3.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5fd1e3abab9df2e113d29d1bcf16700b68b125504a2b477b49eb7b6c7b5225ea"},
|
2551 |
+
{file = "spacy-3.3.1-cp37-cp37m-win_amd64.whl", hash = "sha256:eea5d066f472261a37e43aa6b5002af5a9232da66a83ea5b7b590b905f00a5bb"},
|
2552 |
+
{file = "spacy-3.3.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:dfbd15084f7b49fed1160999ef2986f2769cbcc50ab240bf026fa82337500ace"},
|
2553 |
+
{file = "spacy-3.3.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:618f3cd983aa37bb448bdd554e1abf1d82106fc3163959786a2ca1fe01dc4f1b"},
|
2554 |
+
{file = "spacy-3.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1581ba49a6f687a5e0ad8291129793af8e3c4bb02ffbc8857b34acfa7ed3049f"},
|
2555 |
+
{file = "spacy-3.3.1-cp38-cp38-win_amd64.whl", hash = "sha256:b652cc9fcd1e07f733a5de9c89fef300852d0129240f0eb11513d03bba470609"},
|
2556 |
+
{file = "spacy-3.3.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9af33d170d8a697f50556b612be5468fdd4134759846c54415f8fc9f87ca1c25"},
|
2557 |
+
{file = "spacy-3.3.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6971e37234395c6157a514ef1c1f15d27f91042df4e7fc8aefcc6e0d79a3cb8b"},
|
2558 |
+
{file = "spacy-3.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:747a99fd2712e60325ff00b6b3131e4aef4c67b2f4433b9ffbd44833889a313d"},
|
2559 |
+
{file = "spacy-3.3.1-cp39-cp39-win_amd64.whl", hash = "sha256:787bd8546ae4feed088fb712f3baf5239197cedfe9e1ce9d8906b3e3ef2f10bc"},
|
2560 |
+
{file = "spacy-3.3.1.tar.gz", hash = "sha256:7f87dbdb104d851ae6ba5fd3a76a2e14e22e048135903e98baf08571a3aa81c0"},
|
2561 |
]
|
2562 |
spacy-legacy = [
|
2563 |
{file = "spacy-legacy-3.0.9.tar.gz", hash = "sha256:4f7dcbc4e6c8e8cb4eadbb009f9c0a1a2a67442e0032c8d6776c9470c3759903"},
|
|
|
2569 |
]
|
2570 |
srsly = [
|
2571 |
{file = "srsly-2.4.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2d0236feafe3805b384532221596e6749a54d0ff10ba022b333dc1de7aa1b2f7"},
|
2572 |
+
{file = "srsly-2.4.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f96af9fde9f58d5923091fa723fa0fed58a83781b98e143a5d1fac5e738b9f0d"},
|
2573 |
{file = "srsly-2.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:62630dbf20e240610fa64b6717545fcc28d9f18a6085ee93656be000678592a6"},
|
2574 |
{file = "srsly-2.4.3-cp310-cp310-win_amd64.whl", hash = "sha256:27b3f693296d8a24c306aacd5df38a565ec43214f2aeb51a38170af5dc8b48bc"},
|
2575 |
{file = "srsly-2.4.3-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d3b93531f086c516a26f729beac9b052c2ad0528d72e80f9d193de26aa2202be"},
|
|
|
2579 |
{file = "srsly-2.4.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ab31586fd89e5e5fe6f38664209577b03e85fb834f238c928c15ed3c80ab9c73"},
|
2580 |
{file = "srsly-2.4.3-cp37-cp37m-win_amd64.whl", hash = "sha256:a906c9b1f62c109ddcfaeaf242b19b2ebc5d2f865eb38ef4af35959027c5185b"},
|
2581 |
{file = "srsly-2.4.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0d2b92c40f9aa9ba7cb0d8048bd7bfaa13d79d02e9ad6808ca7a8879ba5ed50b"},
|
2582 |
+
{file = "srsly-2.4.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2c986766d83cf8f508ef2296da5263d47f68766122bbb0306d8bfbd83f596a6e"},
|
2583 |
{file = "srsly-2.4.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:97a67c8f86ce3207e5e810b998a94ea49d439139adc21d9aadbd0bfab9faa64b"},
|
2584 |
{file = "srsly-2.4.3-cp38-cp38-win_amd64.whl", hash = "sha256:cffec31143c6e1c783ead11245c08938cae859115d4cb0f4cf423e2895707b74"},
|
2585 |
{file = "srsly-2.4.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:61e31a72370238387a8ff2a4cebea402227215a1450648b852cad9e511a8b59e"},
|
2586 |
+
{file = "srsly-2.4.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:11f1b0fc837aae9ad2853dc52eb1c59e563f553196813ec7ef0bee8b2ca0bc48"},
|
2587 |
{file = "srsly-2.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d1d13dc2133d5a83d30774793adb2c3fd9be905da339e2d54e2c79d55248c1a5"},
|
2588 |
{file = "srsly-2.4.3-cp39-cp39-win_amd64.whl", hash = "sha256:fb08416fd6ef04c51fdeefd6d28592b64563b2853243c571a9b0d67403b5be7f"},
|
2589 |
{file = "srsly-2.4.3.tar.gz", hash = "sha256:dbe91f6dd4aea9e819493628356dc715bd9c606486297bb7ca5748e6e003841c"},
|
pyproject.toml
CHANGED
@@ -12,6 +12,9 @@ hu-core-news-lg = {url = "https://huggingface.co/huspacy/hu_core_news_lg/resolve
|
|
12 |
scipy = "~1.8.0"
|
13 |
newspaper3k = "^0.2.8"
|
14 |
gradio = "^3.0.11"
|
|
|
|
|
|
|
15 |
|
16 |
[tool.poetry.dev-dependencies]
|
17 |
|
|
|
12 |
scipy = "~1.8.0"
|
13 |
newspaper3k = "^0.2.8"
|
14 |
gradio = "^3.0.11"
|
15 |
+
Faker = "^13.13.0"
|
16 |
+
presidio-analyzer = "^2.2.28"
|
17 |
+
presidio-anonymizer = "^2.2.28"
|
18 |
|
19 |
[tool.poetry.dev-dependencies]
|
20 |
|