vincentclaes vincentclaes commited on
Commit
ffcc541
·
0 Parent(s):

Duplicate from vincentclaes/art-search-engine

Browse files

Co-authored-by: claes <[email protected]>

Files changed (7) hide show
  1. .gitattributes +34 -0
  2. Makefile +4 -0
  3. README.md +19 -0
  4. app.py +213 -0
  5. poetry.lock +885 -0
  6. pyproject.toml +19 -0
  7. requirements.txt +64 -0
.gitattributes ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.7z filter=lfs diff=lfs merge=lfs -text
2
+ *.arrow filter=lfs diff=lfs merge=lfs -text
3
+ *.bin filter=lfs diff=lfs merge=lfs -text
4
+ *.bz2 filter=lfs diff=lfs merge=lfs -text
5
+ *.ckpt filter=lfs diff=lfs merge=lfs -text
6
+ *.ftz filter=lfs diff=lfs merge=lfs -text
7
+ *.gz filter=lfs diff=lfs merge=lfs -text
8
+ *.h5 filter=lfs diff=lfs merge=lfs -text
9
+ *.joblib filter=lfs diff=lfs merge=lfs -text
10
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
+ *.mlmodel filter=lfs diff=lfs merge=lfs -text
12
+ *.model filter=lfs diff=lfs merge=lfs -text
13
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
14
+ *.npy filter=lfs diff=lfs merge=lfs -text
15
+ *.npz filter=lfs diff=lfs merge=lfs -text
16
+ *.onnx filter=lfs diff=lfs merge=lfs -text
17
+ *.ot filter=lfs diff=lfs merge=lfs -text
18
+ *.parquet filter=lfs diff=lfs merge=lfs -text
19
+ *.pb filter=lfs diff=lfs merge=lfs -text
20
+ *.pickle filter=lfs diff=lfs merge=lfs -text
21
+ *.pkl filter=lfs diff=lfs merge=lfs -text
22
+ *.pt filter=lfs diff=lfs merge=lfs -text
23
+ *.pth filter=lfs diff=lfs merge=lfs -text
24
+ *.rar filter=lfs diff=lfs merge=lfs -text
25
+ *.safetensors filter=lfs diff=lfs merge=lfs -text
26
+ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
27
+ *.tar.* filter=lfs diff=lfs merge=lfs -text
28
+ *.tflite filter=lfs diff=lfs merge=lfs -text
29
+ *.tgz filter=lfs diff=lfs merge=lfs -text
30
+ *.wasm filter=lfs diff=lfs merge=lfs -text
31
+ *.xz filter=lfs diff=lfs merge=lfs -text
32
+ *.zip filter=lfs diff=lfs merge=lfs -text
33
+ *.zst filter=lfs diff=lfs merge=lfs -text
34
+ *tfevents* filter=lfs diff=lfs merge=lfs -text
Makefile ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ install:
2
+ poetry install
3
+ poetry run pip list --format=freeze > requirements.txt
4
+
README.md ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: Art Search Engine
3
+ emoji: 🖼🖼🖼
4
+ colorFrom: black
5
+ colorTo: black
6
+ sdk: gradio
7
+ sdk_version: 3.12.0
8
+ app_file: app.py
9
+ pinned: false
10
+ duplicated_from: vincentclaes/art-search-engine
11
+ ---
12
+
13
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
14
+
15
+
16
+ ```bash
17
+ make setup
18
+ poetry shell
19
+ ```
app.py ADDED
@@ -0,0 +1,213 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import requests
3
+
4
+ import gradio as gr
5
+
6
+ def get_images(text):
7
+ headers = {
8
+ "Content-Type": "application/json",
9
+ "x-api-key": os.environ["API_KEY"],
10
+ }
11
+ params = {
12
+ "return-images": "true",
13
+ "number-results": "4",
14
+ }
15
+ response = requests.post(
16
+ "https://wjdr33c1id.execute-api.eu-west-1.amazonaws.com/dev/prediction",
17
+ params=params,
18
+ headers=headers,
19
+ json={"data": text},
20
+ )
21
+ images = []
22
+ image_data = response.json()["image"]
23
+ for image in image_data:
24
+ # got this from https://huggingface.co/spaces/stabilityai/stable-diffusion/blob/main/app.py
25
+ image_b64 = (f"data:image/jpeg;base64,{image}")
26
+ images.append(image_b64)
27
+ return images
28
+
29
+ css = """
30
+ .gradio-container {
31
+ font-family: 'IBM Plex Sans', sans-serif;
32
+ }
33
+ .gr-button {
34
+ color: white;
35
+ border-color: black;
36
+ background: black;
37
+ }
38
+ input[type='range'] {
39
+ accent-color: black;
40
+ }
41
+ .dark input[type='range'] {
42
+ accent-color: #dfdfdf;
43
+ }
44
+ .container {
45
+ max-width: 730px;
46
+ margin: auto;
47
+ padding-top: 1.5rem;
48
+ }
49
+ #gallery {
50
+ min-height: 22rem;
51
+ margin-bottom: 15px;
52
+ margin-left: auto;
53
+ margin-right: auto;
54
+ border-bottom-right-radius: .5rem !important;
55
+ border-bottom-left-radius: .5rem !important;
56
+ }
57
+ #gallery>div>.h-full {
58
+ min-height: 20rem;
59
+ }
60
+ .details:hover {
61
+ text-decoration: underline;
62
+ }
63
+ .gr-button {
64
+ white-space: nowrap;
65
+ }
66
+ .gr-button:focus {
67
+ border-color: rgb(147 197 253 / var(--tw-border-opacity));
68
+ outline: none;
69
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
70
+ --tw-border-opacity: 1;
71
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
72
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px var(--tw-ring-offset-width)) var(--tw-ring-color);
73
+ --tw-ring-color: rgb(191 219 254 / var(--tw-ring-opacity));
74
+ --tw-ring-opacity: .5;
75
+ }
76
+ #advanced-btn {
77
+ font-size: .7rem !important;
78
+ line-height: 19px;
79
+ margin-top: 12px;
80
+ margin-bottom: 12px;
81
+ padding: 2px 8px;
82
+ border-radius: 14px !important;
83
+ }
84
+ #advanced-options {
85
+ display: none;
86
+ margin-bottom: 20px;
87
+ }
88
+ .footer {
89
+ margin-bottom: 45px;
90
+ margin-top: 35px;
91
+ text-align: center;
92
+ border-bottom: 1px solid #e5e5e5;
93
+ }
94
+ .footer>p {
95
+ font-size: .8rem;
96
+ display: inline-block;
97
+ padding: 0 10px;
98
+ transform: translateY(10px);
99
+ background: white;
100
+ }
101
+ .dark .footer {
102
+ border-color: #303030;
103
+ }
104
+ .dark .footer>p {
105
+ background: #0b0f19;
106
+ }
107
+ .acknowledgments h4{
108
+ margin: 1.25em 0 .25em 0;
109
+ font-weight: bold;
110
+ font-size: 115%;
111
+ }
112
+ .animate-spin {
113
+ animation: spin 1s linear infinite;
114
+ }
115
+ @keyframes spin {
116
+ from {
117
+ transform: rotate(0deg);
118
+ }
119
+ to {
120
+ transform: rotate(360deg);
121
+ }
122
+ }
123
+ #share-btn-container {
124
+ display: flex; padding-left: 0.5rem !important; padding-right: 0.5rem !important; background-color: #000000; justify-content: center; align-items: center; border-radius: 9999px !important; width: 13rem;
125
+ margin-top: 10px;
126
+ margin-left: auto;
127
+ }
128
+ #share-btn {
129
+ all: initial; color: #ffffff;font-weight: 600; cursor:pointer; font-family: 'IBM Plex Sans', sans-serif; margin-left: 0.5rem !important; padding-top: 0.25rem !important; padding-bottom: 0.25rem !important;right:0;
130
+ }
131
+ #share-btn * {
132
+ all: unset;
133
+ }
134
+ #share-btn-container div:nth-child(-n+2){
135
+ width: auto !important;
136
+ min-height: 0px !important;
137
+ }
138
+ #share-btn-container .wrap {
139
+ display: none !important;
140
+ }
141
+
142
+ .gr-form{
143
+ flex: 1 1 50%; border-top-right-radius: 0; border-bottom-right-radius: 0;
144
+ }
145
+ #prompt-container{
146
+ gap: 0;
147
+ }
148
+ #prompt-text-input, #negative-prompt-text-input{padding: .45rem 0.625rem}
149
+ #component-16{border-top-width: 1px!important;margin-top: 1em}
150
+ .image_duplication{position: absolute; width: 100px; left: 50px}
151
+ """
152
+
153
+ block = gr.Blocks(css=css)
154
+
155
+ with block:
156
+ gr.HTML(
157
+ """
158
+ <div style="text-align: center; margin: 0 auto;">
159
+ <div
160
+ style="
161
+ display: inline-flex;
162
+ align-items: center;
163
+ gap: 0.8rem;
164
+ font-size: 1.75rem;
165
+ "
166
+ >
167
+
168
+ <h1 style="font-weight: 900; margin-bottom: 7px;margin-top:5px">
169
+ Art Search Engine
170
+ </h1>
171
+ </div>
172
+ <p style="margin-bottom: 10px; font-size: 94%; line-height: 23px;">
173
+ Read the article <a style="text-decoration: underline;" href="https://huggingface.co/spaces/stabilityai/stable-diffusion-1">Searching Art through Deep Learning</a>
174
+ </p>
175
+ </div>
176
+ """
177
+ )
178
+ with gr.Group():
179
+ with gr.Box():
180
+ with gr.Row(elem_id="prompt-container").style(mobile_collapse=False, equal_height=True):
181
+ with gr.Column():
182
+ text = gr.Textbox(
183
+ label="Describe A Scene.",
184
+ show_label=False,
185
+ max_lines=1,
186
+ placeholder="Describe A Scene.",
187
+ elem_id="prompt-text-input",
188
+ ).style(
189
+ border=(True, False, True, True),
190
+ rounded=(True, False, False, True),
191
+ container=False,
192
+ )
193
+ btn = gr.Button("Search Art").style(
194
+ margin=False,
195
+ rounded=(False, True, True, False),
196
+ full_width=False,
197
+ )
198
+
199
+ gallery = gr.Gallery(
200
+ label="Art Pieces", show_label=False, elem_id="gallery"
201
+ ).style(grid=[2], height="auto")
202
+ btn.click(get_images, inputs=text, outputs=gallery, postprocess=False)
203
+
204
+ gr.HTML(
205
+ """
206
+ <div class="footer">
207
+ <p>Model by <a href="https://www.meet-drift.ai/" style="text-decoration: underline;" target="_blank">Drift</a>
208
+ </p>
209
+ </div>
210
+ """
211
+ )
212
+
213
+ block.launch()
poetry.lock ADDED
@@ -0,0 +1,885 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [[package]]
2
+ name = "aiohttp"
3
+ version = "3.8.3"
4
+ description = "Async http client/server framework (asyncio)"
5
+ category = "main"
6
+ optional = false
7
+ python-versions = ">=3.6"
8
+
9
+ [package.dependencies]
10
+ aiosignal = ">=1.1.2"
11
+ async-timeout = ">=4.0.0a3,<5.0"
12
+ attrs = ">=17.3.0"
13
+ charset-normalizer = ">=2.0,<3.0"
14
+ frozenlist = ">=1.1.1"
15
+ multidict = ">=4.5,<7.0"
16
+ yarl = ">=1.0,<2.0"
17
+
18
+ [package.extras]
19
+ speedups = ["aiodns", "brotli", "cchardet"]
20
+
21
+ [[package]]
22
+ name = "aiosignal"
23
+ version = "1.3.1"
24
+ description = "aiosignal: a list of registered asynchronous callbacks"
25
+ category = "main"
26
+ optional = false
27
+ python-versions = ">=3.7"
28
+
29
+ [package.dependencies]
30
+ frozenlist = ">=1.1.0"
31
+
32
+ [[package]]
33
+ name = "anyio"
34
+ version = "3.6.2"
35
+ description = "High level compatibility layer for multiple asynchronous event loop implementations"
36
+ category = "main"
37
+ optional = false
38
+ python-versions = ">=3.6.2"
39
+
40
+ [package.dependencies]
41
+ idna = ">=2.8"
42
+ sniffio = ">=1.1"
43
+
44
+ [package.extras]
45
+ doc = ["packaging", "sphinx-rtd-theme", "sphinx-autodoc-typehints (>=1.2.0)"]
46
+ test = ["coverage[toml] (>=4.5)", "hypothesis (>=4.0)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "contextlib2", "uvloop (<0.15)", "mock (>=4)", "uvloop (>=0.15)"]
47
+ trio = ["trio (>=0.16,<0.22)"]
48
+
49
+ [[package]]
50
+ name = "async-timeout"
51
+ version = "4.0.2"
52
+ description = "Timeout context manager for asyncio programs"
53
+ category = "main"
54
+ optional = false
55
+ python-versions = ">=3.6"
56
+
57
+ [[package]]
58
+ name = "attrs"
59
+ version = "22.1.0"
60
+ description = "Classes Without Boilerplate"
61
+ category = "main"
62
+ optional = false
63
+ python-versions = ">=3.5"
64
+
65
+ [package.extras]
66
+ dev = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "mypy (>=0.900,!=0.940)", "pytest-mypy-plugins", "zope.interface", "furo", "sphinx", "sphinx-notfound-page", "pre-commit", "cloudpickle"]
67
+ docs = ["furo", "sphinx", "zope.interface", "sphinx-notfound-page"]
68
+ tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "mypy (>=0.900,!=0.940)", "pytest-mypy-plugins", "zope.interface", "cloudpickle"]
69
+ tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "mypy (>=0.900,!=0.940)", "pytest-mypy-plugins", "cloudpickle"]
70
+
71
+ [[package]]
72
+ name = "bcrypt"
73
+ version = "4.0.1"
74
+ description = "Modern password hashing for your software and your servers"
75
+ category = "main"
76
+ optional = false
77
+ python-versions = ">=3.6"
78
+
79
+ [package.extras]
80
+ tests = ["pytest (>=3.2.1,!=3.3.0)"]
81
+ typecheck = ["mypy"]
82
+
83
+ [[package]]
84
+ name = "certifi"
85
+ version = "2022.12.7"
86
+ description = "Python package for providing Mozilla's CA Bundle."
87
+ category = "main"
88
+ optional = false
89
+ python-versions = ">=3.6"
90
+
91
+ [[package]]
92
+ name = "cffi"
93
+ version = "1.15.1"
94
+ description = "Foreign Function Interface for Python calling C code."
95
+ category = "main"
96
+ optional = false
97
+ python-versions = "*"
98
+
99
+ [package.dependencies]
100
+ pycparser = "*"
101
+
102
+ [[package]]
103
+ name = "charset-normalizer"
104
+ version = "2.1.1"
105
+ description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet."
106
+ category = "main"
107
+ optional = false
108
+ python-versions = ">=3.6.0"
109
+
110
+ [package.extras]
111
+ unicode_backport = ["unicodedata2"]
112
+
113
+ [[package]]
114
+ name = "click"
115
+ version = "8.1.3"
116
+ description = "Composable command line interface toolkit"
117
+ category = "main"
118
+ optional = false
119
+ python-versions = ">=3.7"
120
+
121
+ [package.dependencies]
122
+ colorama = {version = "*", markers = "platform_system == \"Windows\""}
123
+
124
+ [[package]]
125
+ name = "colorama"
126
+ version = "0.4.6"
127
+ description = "Cross-platform colored terminal text."
128
+ category = "main"
129
+ optional = false
130
+ python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7"
131
+
132
+ [[package]]
133
+ name = "contourpy"
134
+ version = "1.0.6"
135
+ description = "Python library for calculating contours of 2D quadrilateral grids"
136
+ category = "main"
137
+ optional = false
138
+ python-versions = ">=3.7"
139
+
140
+ [package.dependencies]
141
+ numpy = ">=1.16"
142
+
143
+ [package.extras]
144
+ bokeh = ["bokeh", "selenium"]
145
+ docs = ["docutils (<0.18)", "sphinx (<=5.2.0)", "sphinx-rtd-theme"]
146
+ test = ["pytest", "matplotlib", "pillow", "flake8", "isort"]
147
+ test-minimal = ["pytest"]
148
+ test-no-codebase = ["pytest", "matplotlib", "pillow"]
149
+
150
+ [[package]]
151
+ name = "cryptography"
152
+ version = "38.0.4"
153
+ description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers."
154
+ category = "main"
155
+ optional = false
156
+ python-versions = ">=3.6"
157
+
158
+ [package.dependencies]
159
+ cffi = ">=1.12"
160
+
161
+ [package.extras]
162
+ docs = ["sphinx (>=1.6.5,!=1.8.0,!=3.1.0,!=3.1.1)", "sphinx-rtd-theme"]
163
+ docstest = ["pyenchant (>=1.6.11)", "twine (>=1.12.0)", "sphinxcontrib-spelling (>=4.0.1)"]
164
+ pep8test = ["black", "flake8", "flake8-import-order", "pep8-naming"]
165
+ sdist = ["setuptools-rust (>=0.11.4)"]
166
+ ssh = ["bcrypt (>=3.1.5)"]
167
+ test = ["pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-subtests", "pytest-xdist", "pretend", "iso8601", "pytz", "hypothesis (>=1.11.4,!=3.79.2)"]
168
+
169
+ [[package]]
170
+ name = "cycler"
171
+ version = "0.11.0"
172
+ description = "Composable style cycles"
173
+ category = "main"
174
+ optional = false
175
+ python-versions = ">=3.6"
176
+
177
+ [[package]]
178
+ name = "fastapi"
179
+ version = "0.88.0"
180
+ description = "FastAPI framework, high performance, easy to learn, fast to code, ready for production"
181
+ category = "main"
182
+ optional = false
183
+ python-versions = ">=3.7"
184
+
185
+ [package.dependencies]
186
+ pydantic = ">=1.6.2,<1.7 || >1.7,<1.7.1 || >1.7.1,<1.7.2 || >1.7.2,<1.7.3 || >1.7.3,<1.8 || >1.8,<1.8.1 || >1.8.1,<2.0.0"
187
+ starlette = "0.22.0"
188
+
189
+ [package.extras]
190
+ all = ["email-validator (>=1.1.1)", "httpx (>=0.23.0)", "itsdangerous (>=1.1.0)", "jinja2 (>=2.11.2)", "orjson (>=3.2.1)", "python-multipart (>=0.0.5)", "pyyaml (>=5.3.1)", "ujson (>=4.0.1,!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0)", "uvicorn[standard] (>=0.12.0)"]
191
+ dev = ["pre-commit (>=2.17.0,<3.0.0)", "ruff (==0.0.138)", "uvicorn[standard] (>=0.12.0,<0.19.0)"]
192
+ doc = ["mdx-include (>=1.4.1,<2.0.0)", "mkdocs-markdownextradata-plugin (>=0.1.7,<0.3.0)", "mkdocs-material (>=8.1.4,<9.0.0)", "mkdocs (>=1.1.2,<2.0.0)", "pyyaml (>=5.3.1,<7.0.0)", "typer[all] (>=0.6.1,<0.7.0)"]
193
+ test = ["anyio[trio] (>=3.2.1,<4.0.0)", "black (==22.10.0)", "coverage[toml] (>=6.5.0,<7.0)", "databases[sqlite] (>=0.3.2,<0.7.0)", "email-validator (>=1.1.1,<2.0.0)", "flask (>=1.1.2,<3.0.0)", "httpx (>=0.23.0,<0.24.0)", "isort (>=5.0.6,<6.0.0)", "mypy (==0.982)", "orjson (>=3.2.1,<4.0.0)", "passlib[bcrypt] (>=1.7.2,<2.0.0)", "peewee (>=3.13.3,<4.0.0)", "pytest (>=7.1.3,<8.0.0)", "python-jose[cryptography] (>=3.3.0,<4.0.0)", "python-multipart (>=0.0.5,<0.0.6)", "pyyaml (>=5.3.1,<7.0.0)", "ruff (==0.0.138)", "sqlalchemy (>=1.3.18,<=1.4.41)", "types-orjson (==3.6.2)", "types-ujson (==5.5.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)"]
194
+
195
+ [[package]]
196
+ name = "ffmpy"
197
+ version = "0.3.0"
198
+ description = "A simple Python wrapper for ffmpeg"
199
+ category = "main"
200
+ optional = false
201
+ python-versions = "*"
202
+
203
+ [[package]]
204
+ name = "fonttools"
205
+ version = "4.38.0"
206
+ description = "Tools to manipulate font files"
207
+ category = "main"
208
+ optional = false
209
+ python-versions = ">=3.7"
210
+
211
+ [package.extras]
212
+ all = ["fs (>=2.2.0,<3)", "lxml (>=4.0,<5)", "zopfli (>=0.1.4)", "lz4 (>=1.7.4.2)", "matplotlib", "sympy", "skia-pathops (>=0.5.0)", "uharfbuzz (>=0.23.0)", "brotlicffi (>=0.8.0)", "scipy", "brotli (>=1.0.1)", "munkres", "unicodedata2 (>=14.0.0)", "xattr"]
213
+ graphite = ["lz4 (>=1.7.4.2)"]
214
+ interpolatable = ["scipy", "munkres"]
215
+ lxml = ["lxml (>=4.0,<5)"]
216
+ pathops = ["skia-pathops (>=0.5.0)"]
217
+ plot = ["matplotlib"]
218
+ repacker = ["uharfbuzz (>=0.23.0)"]
219
+ symfont = ["sympy"]
220
+ type1 = ["xattr"]
221
+ ufo = ["fs (>=2.2.0,<3)"]
222
+ unicode = ["unicodedata2 (>=14.0.0)"]
223
+ woff = ["zopfli (>=0.1.4)", "brotlicffi (>=0.8.0)", "brotli (>=1.0.1)"]
224
+
225
+ [[package]]
226
+ name = "frozenlist"
227
+ version = "1.3.3"
228
+ description = "A list-like structure which implements collections.abc.MutableSequence"
229
+ category = "main"
230
+ optional = false
231
+ python-versions = ">=3.7"
232
+
233
+ [[package]]
234
+ name = "fsspec"
235
+ version = "2022.11.0"
236
+ description = "File-system specification"
237
+ category = "main"
238
+ optional = false
239
+ python-versions = ">=3.7"
240
+
241
+ [package.extras]
242
+ abfs = ["adlfs"]
243
+ adl = ["adlfs"]
244
+ arrow = ["pyarrow (>=1)"]
245
+ dask = ["dask", "distributed"]
246
+ dropbox = ["dropboxdrivefs", "requests", "dropbox"]
247
+ entrypoints = ["importlib-metadata"]
248
+ fuse = ["fusepy"]
249
+ gcs = ["gcsfs"]
250
+ git = ["pygit2"]
251
+ github = ["requests"]
252
+ gs = ["gcsfs"]
253
+ gui = ["panel"]
254
+ hdfs = ["pyarrow (>=1)"]
255
+ http = ["requests", "aiohttp (!=4.0.0a0,!=4.0.0a1)"]
256
+ libarchive = ["libarchive-c"]
257
+ oci = ["ocifs"]
258
+ s3 = ["s3fs"]
259
+ sftp = ["paramiko"]
260
+ smb = ["smbprotocol"]
261
+ ssh = ["paramiko"]
262
+ tqdm = ["tqdm"]
263
+
264
+ [[package]]
265
+ name = "gradio"
266
+ version = "3.12.0"
267
+ description = "Python library for easily interacting with trained machine learning models"
268
+ category = "main"
269
+ optional = false
270
+ python-versions = ">=3.7"
271
+
272
+ [package.dependencies]
273
+ aiohttp = "*"
274
+ fastapi = "*"
275
+ ffmpy = "*"
276
+ fsspec = "*"
277
+ h11 = ">=0.11,<0.13"
278
+ httpx = "*"
279
+ jinja2 = "*"
280
+ markdown-it-py = {version = "*", extras = ["linkify", "plugins"]}
281
+ matplotlib = "*"
282
+ numpy = "*"
283
+ orjson = "*"
284
+ pandas = "*"
285
+ paramiko = "*"
286
+ pillow = "*"
287
+ pycryptodome = "*"
288
+ pydantic = "*"
289
+ pydub = "*"
290
+ python-multipart = "*"
291
+ pyyaml = "*"
292
+ requests = "*"
293
+ uvicorn = "*"
294
+ websockets = ">=10.0"
295
+
296
+ [[package]]
297
+ name = "h11"
298
+ version = "0.12.0"
299
+ description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1"
300
+ category = "main"
301
+ optional = false
302
+ python-versions = ">=3.6"
303
+
304
+ [[package]]
305
+ name = "httpcore"
306
+ version = "0.15.0"
307
+ description = "A minimal low-level HTTP client."
308
+ category = "main"
309
+ optional = false
310
+ python-versions = ">=3.7"
311
+
312
+ [package.dependencies]
313
+ anyio = ">=3.0.0,<4.0.0"
314
+ certifi = "*"
315
+ h11 = ">=0.11,<0.13"
316
+ sniffio = ">=1.0.0,<2.0.0"
317
+
318
+ [package.extras]
319
+ http2 = ["h2 (>=3,<5)"]
320
+ socks = ["socksio (>=1.0.0,<2.0.0)"]
321
+
322
+ [[package]]
323
+ name = "httpx"
324
+ version = "0.23.1"
325
+ description = "The next generation HTTP client."
326
+ category = "main"
327
+ optional = false
328
+ python-versions = ">=3.7"
329
+
330
+ [package.dependencies]
331
+ certifi = "*"
332
+ httpcore = ">=0.15.0,<0.17.0"
333
+ rfc3986 = {version = ">=1.3,<2", extras = ["idna2008"]}
334
+ sniffio = "*"
335
+
336
+ [package.extras]
337
+ brotli = ["brotli", "brotlicffi"]
338
+ cli = ["click (>=8.0.0,<9.0.0)", "pygments (>=2.0.0,<3.0.0)", "rich (>=10,<13)"]
339
+ http2 = ["h2 (>=3,<5)"]
340
+ socks = ["socksio (>=1.0.0,<2.0.0)"]
341
+
342
+ [[package]]
343
+ name = "idna"
344
+ version = "3.4"
345
+ description = "Internationalized Domain Names in Applications (IDNA)"
346
+ category = "main"
347
+ optional = false
348
+ python-versions = ">=3.5"
349
+
350
+ [[package]]
351
+ name = "jinja2"
352
+ version = "3.1.2"
353
+ description = "A very fast and expressive template engine."
354
+ category = "main"
355
+ optional = false
356
+ python-versions = ">=3.7"
357
+
358
+ [package.dependencies]
359
+ MarkupSafe = ">=2.0"
360
+
361
+ [package.extras]
362
+ i18n = ["Babel (>=2.7)"]
363
+
364
+ [[package]]
365
+ name = "kiwisolver"
366
+ version = "1.4.4"
367
+ description = "A fast implementation of the Cassowary constraint solver"
368
+ category = "main"
369
+ optional = false
370
+ python-versions = ">=3.7"
371
+
372
+ [[package]]
373
+ name = "linkify-it-py"
374
+ version = "1.0.3"
375
+ description = "Links recognition library with FULL unicode support."
376
+ category = "main"
377
+ optional = false
378
+ python-versions = ">=3.6"
379
+
380
+ [package.dependencies]
381
+ uc-micro-py = "*"
382
+
383
+ [package.extras]
384
+ benchmark = ["pytest", "pytest-benchmark"]
385
+ dev = ["pre-commit", "isort", "flake8", "black"]
386
+ doc = ["sphinx", "sphinx-book-theme", "myst-parser"]
387
+ test = ["coverage", "pytest", "pytest-cov"]
388
+
389
+ [[package]]
390
+ name = "markdown-it-py"
391
+ version = "2.1.0"
392
+ description = "Python port of markdown-it. Markdown parsing, done right!"
393
+ category = "main"
394
+ optional = false
395
+ python-versions = ">=3.7"
396
+
397
+ [package.dependencies]
398
+ linkify-it-py = {version = ">=1.0,<2.0", optional = true, markers = "extra == \"linkify\""}
399
+ mdit-py-plugins = {version = "*", optional = true, markers = "extra == \"plugins\""}
400
+ mdurl = ">=0.1,<1.0"
401
+
402
+ [package.extras]
403
+ benchmarking = ["psutil", "pytest", "pytest-benchmark (>=3.2,<4.0)"]
404
+ code_style = ["pre-commit (==2.6)"]
405
+ 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)"]
406
+ linkify = ["linkify-it-py (>=1.0,<2.0)"]
407
+ plugins = ["mdit-py-plugins"]
408
+ profiling = ["gprof2dot"]
409
+ rtd = ["attrs", "myst-parser", "pyyaml", "sphinx", "sphinx-copybutton", "sphinx-design", "sphinx-book-theme"]
410
+ testing = ["coverage", "pytest", "pytest-cov", "pytest-regressions"]
411
+
412
+ [[package]]
413
+ name = "markupsafe"
414
+ version = "2.1.1"
415
+ description = "Safely add untrusted strings to HTML/XML markup."
416
+ category = "main"
417
+ optional = false
418
+ python-versions = ">=3.7"
419
+
420
+ [[package]]
421
+ name = "matplotlib"
422
+ version = "3.6.2"
423
+ description = "Python plotting package"
424
+ category = "main"
425
+ optional = false
426
+ python-versions = ">=3.8"
427
+
428
+ [package.dependencies]
429
+ contourpy = ">=1.0.1"
430
+ cycler = ">=0.10"
431
+ fonttools = ">=4.22.0"
432
+ kiwisolver = ">=1.0.1"
433
+ numpy = ">=1.19"
434
+ packaging = ">=20.0"
435
+ pillow = ">=6.2.0"
436
+ pyparsing = ">=2.2.1"
437
+ python-dateutil = ">=2.7"
438
+ setuptools_scm = ">=7"
439
+
440
+ [[package]]
441
+ name = "mdit-py-plugins"
442
+ version = "0.3.3"
443
+ description = "Collection of plugins for markdown-it-py"
444
+ category = "main"
445
+ optional = false
446
+ python-versions = ">=3.7"
447
+
448
+ [package.dependencies]
449
+ markdown-it-py = ">=1.0.0,<3.0.0"
450
+
451
+ [package.extras]
452
+ code_style = ["pre-commit"]
453
+ rtd = ["attrs", "myst-parser (>=0.16.1,<0.17.0)", "sphinx-book-theme (>=0.1.0,<0.2.0)"]
454
+ testing = ["coverage", "pytest", "pytest-cov", "pytest-regressions"]
455
+
456
+ [[package]]
457
+ name = "mdurl"
458
+ version = "0.1.2"
459
+ description = "Markdown URL utilities"
460
+ category = "main"
461
+ optional = false
462
+ python-versions = ">=3.7"
463
+
464
+ [[package]]
465
+ name = "multidict"
466
+ version = "6.0.3"
467
+ description = "multidict implementation"
468
+ category = "main"
469
+ optional = false
470
+ python-versions = ">=3.7"
471
+
472
+ [[package]]
473
+ name = "numpy"
474
+ version = "1.23.5"
475
+ description = "NumPy is the fundamental package for array computing with Python."
476
+ category = "main"
477
+ optional = false
478
+ python-versions = ">=3.8"
479
+
480
+ [[package]]
481
+ name = "orjson"
482
+ version = "3.8.3"
483
+ description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy"
484
+ category = "main"
485
+ optional = false
486
+ python-versions = ">=3.7"
487
+
488
+ [[package]]
489
+ name = "packaging"
490
+ version = "22.0"
491
+ description = "Core utilities for Python packages"
492
+ category = "main"
493
+ optional = false
494
+ python-versions = ">=3.7"
495
+
496
+ [[package]]
497
+ name = "pandas"
498
+ version = "1.5.2"
499
+ description = "Powerful data structures for data analysis, time series, and statistics"
500
+ category = "main"
501
+ optional = false
502
+ python-versions = ">=3.8"
503
+
504
+ [package.dependencies]
505
+ numpy = [
506
+ {version = ">=1.20.3", markers = "python_version < \"3.10\""},
507
+ {version = ">=1.21.0", markers = "python_version >= \"3.10\""},
508
+ {version = ">=1.23.2", markers = "python_version >= \"3.11\""},
509
+ ]
510
+ python-dateutil = ">=2.8.1"
511
+ pytz = ">=2020.1"
512
+
513
+ [package.extras]
514
+ test = ["hypothesis (>=5.5.3)", "pytest (>=6.0)", "pytest-xdist (>=1.31)"]
515
+
516
+ [[package]]
517
+ name = "paramiko"
518
+ version = "2.12.0"
519
+ description = "SSH2 protocol library"
520
+ category = "main"
521
+ optional = false
522
+ python-versions = "*"
523
+
524
+ [package.dependencies]
525
+ bcrypt = ">=3.1.3"
526
+ cryptography = ">=2.5"
527
+ pynacl = ">=1.0.1"
528
+ six = "*"
529
+
530
+ [package.extras]
531
+ all = ["pyasn1 (>=0.1.7)", "pynacl (>=1.0.1)", "bcrypt (>=3.1.3)", "invoke (>=1.3)", "gssapi (>=1.4.1)", "pywin32 (>=2.1.8)"]
532
+ ed25519 = ["pynacl (>=1.0.1)", "bcrypt (>=3.1.3)"]
533
+ gssapi = ["pyasn1 (>=0.1.7)", "gssapi (>=1.4.1)", "pywin32 (>=2.1.8)"]
534
+ invoke = ["invoke (>=1.3)"]
535
+
536
+ [[package]]
537
+ name = "pillow"
538
+ version = "9.3.0"
539
+ description = "Python Imaging Library (Fork)"
540
+ category = "main"
541
+ optional = false
542
+ python-versions = ">=3.7"
543
+
544
+ [package.extras]
545
+ docs = ["furo", "olefile", "sphinx (>=2.4)", "sphinx-copybutton", "sphinx-issues (>=3.0.1)", "sphinx-removed-in", "sphinxext-opengraph"]
546
+ tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"]
547
+
548
+ [[package]]
549
+ name = "pycparser"
550
+ version = "2.21"
551
+ description = "C parser in Python"
552
+ category = "main"
553
+ optional = false
554
+ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
555
+
556
+ [[package]]
557
+ name = "pycryptodome"
558
+ version = "3.16.0"
559
+ description = "Cryptographic library for Python"
560
+ category = "main"
561
+ optional = false
562
+ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
563
+
564
+ [[package]]
565
+ name = "pydantic"
566
+ version = "1.10.2"
567
+ description = "Data validation and settings management using python type hints"
568
+ category = "main"
569
+ optional = false
570
+ python-versions = ">=3.7"
571
+
572
+ [package.dependencies]
573
+ typing-extensions = ">=4.1.0"
574
+
575
+ [package.extras]
576
+ dotenv = ["python-dotenv (>=0.10.4)"]
577
+ email = ["email-validator (>=1.0.3)"]
578
+
579
+ [[package]]
580
+ name = "pydub"
581
+ version = "0.25.1"
582
+ description = "Manipulate audio with an simple and easy high level interface"
583
+ category = "main"
584
+ optional = false
585
+ python-versions = "*"
586
+
587
+ [[package]]
588
+ name = "pynacl"
589
+ version = "1.5.0"
590
+ description = "Python binding to the Networking and Cryptography (NaCl) library"
591
+ category = "main"
592
+ optional = false
593
+ python-versions = ">=3.6"
594
+
595
+ [package.dependencies]
596
+ cffi = ">=1.4.1"
597
+
598
+ [package.extras]
599
+ docs = ["sphinx (>=1.6.5)", "sphinx-rtd-theme"]
600
+ tests = ["pytest (>=3.2.1,!=3.3.0)", "hypothesis (>=3.27.0)"]
601
+
602
+ [[package]]
603
+ name = "pyparsing"
604
+ version = "3.0.9"
605
+ description = "pyparsing module - Classes and methods to define and execute parsing grammars"
606
+ category = "main"
607
+ optional = false
608
+ python-versions = ">=3.6.8"
609
+
610
+ [package.extras]
611
+ diagrams = ["railroad-diagrams", "jinja2"]
612
+
613
+ [[package]]
614
+ name = "python-dateutil"
615
+ version = "2.8.2"
616
+ description = "Extensions to the standard Python datetime module"
617
+ category = "main"
618
+ optional = false
619
+ python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7"
620
+
621
+ [package.dependencies]
622
+ six = ">=1.5"
623
+
624
+ [[package]]
625
+ name = "python-dotenv"
626
+ version = "0.21.0"
627
+ description = "Read key-value pairs from a .env file and set them as environment variables"
628
+ category = "main"
629
+ optional = false
630
+ python-versions = ">=3.7"
631
+
632
+ [package.extras]
633
+ cli = ["click (>=5.0)"]
634
+
635
+ [[package]]
636
+ name = "python-multipart"
637
+ version = "0.0.5"
638
+ description = "A streaming multipart parser for Python"
639
+ category = "main"
640
+ optional = false
641
+ python-versions = "*"
642
+
643
+ [package.dependencies]
644
+ six = ">=1.4.0"
645
+
646
+ [[package]]
647
+ name = "pytz"
648
+ version = "2022.6"
649
+ description = "World timezone definitions, modern and historical"
650
+ category = "main"
651
+ optional = false
652
+ python-versions = "*"
653
+
654
+ [[package]]
655
+ name = "pyyaml"
656
+ version = "6.0"
657
+ description = "YAML parser and emitter for Python"
658
+ category = "main"
659
+ optional = false
660
+ python-versions = ">=3.6"
661
+
662
+ [[package]]
663
+ name = "requests"
664
+ version = "2.28.1"
665
+ description = "Python HTTP for Humans."
666
+ category = "main"
667
+ optional = false
668
+ python-versions = ">=3.7, <4"
669
+
670
+ [package.dependencies]
671
+ certifi = ">=2017.4.17"
672
+ charset-normalizer = ">=2,<3"
673
+ idna = ">=2.5,<4"
674
+ urllib3 = ">=1.21.1,<1.27"
675
+
676
+ [package.extras]
677
+ socks = ["PySocks (>=1.5.6,!=1.5.7)"]
678
+ use_chardet_on_py3 = ["chardet (>=3.0.2,<6)"]
679
+
680
+ [[package]]
681
+ name = "rfc3986"
682
+ version = "1.5.0"
683
+ description = "Validating URI References per RFC 3986"
684
+ category = "main"
685
+ optional = false
686
+ python-versions = "*"
687
+
688
+ [package.dependencies]
689
+ idna = {version = "*", optional = true, markers = "extra == \"idna2008\""}
690
+
691
+ [package.extras]
692
+ idna2008 = ["idna"]
693
+
694
+ [[package]]
695
+ name = "setuptools-scm"
696
+ version = "7.0.5"
697
+ description = "the blessed package to manage your versions by scm tags"
698
+ category = "main"
699
+ optional = false
700
+ python-versions = ">=3.7"
701
+
702
+ [package.dependencies]
703
+ packaging = ">=20.0"
704
+ tomli = ">=1.0.0"
705
+ typing-extensions = "*"
706
+
707
+ [package.extras]
708
+ test = ["pytest (>=6.2)", "virtualenv (>20)"]
709
+ toml = ["setuptools (>=42)"]
710
+
711
+ [[package]]
712
+ name = "six"
713
+ version = "1.16.0"
714
+ description = "Python 2 and 3 compatibility utilities"
715
+ category = "main"
716
+ optional = false
717
+ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
718
+
719
+ [[package]]
720
+ name = "sniffio"
721
+ version = "1.3.0"
722
+ description = "Sniff out which async library your code is running under"
723
+ category = "main"
724
+ optional = false
725
+ python-versions = ">=3.7"
726
+
727
+ [[package]]
728
+ name = "starlette"
729
+ version = "0.22.0"
730
+ description = "The little ASGI library that shines."
731
+ category = "main"
732
+ optional = false
733
+ python-versions = ">=3.7"
734
+
735
+ [package.dependencies]
736
+ anyio = ">=3.4.0,<5"
737
+ typing-extensions = {version = ">=3.10.0", markers = "python_version < \"3.10\""}
738
+
739
+ [package.extras]
740
+ full = ["httpx (>=0.22.0)", "itsdangerous", "jinja2", "python-multipart", "pyyaml"]
741
+
742
+ [[package]]
743
+ name = "tomli"
744
+ version = "2.0.1"
745
+ description = "A lil' TOML parser"
746
+ category = "main"
747
+ optional = false
748
+ python-versions = ">=3.7"
749
+
750
+ [[package]]
751
+ name = "typing-extensions"
752
+ version = "4.4.0"
753
+ description = "Backported and Experimental Type Hints for Python 3.7+"
754
+ category = "main"
755
+ optional = false
756
+ python-versions = ">=3.7"
757
+
758
+ [[package]]
759
+ name = "uc-micro-py"
760
+ version = "1.0.1"
761
+ description = "Micro subset of unicode data files for linkify-it-py projects."
762
+ category = "main"
763
+ optional = false
764
+ python-versions = ">=3.6"
765
+
766
+ [package.extras]
767
+ test = ["coverage", "pytest", "pytest-cov"]
768
+
769
+ [[package]]
770
+ name = "urllib3"
771
+ version = "1.26.13"
772
+ description = "HTTP library with thread-safe connection pooling, file post, and more."
773
+ category = "main"
774
+ optional = false
775
+ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*"
776
+
777
+ [package.extras]
778
+ brotli = ["brotlicffi (>=0.8.0)", "brotli (>=1.0.9)", "brotlipy (>=0.6.0)"]
779
+ secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "urllib3-secure-extra", "ipaddress"]
780
+ socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"]
781
+
782
+ [[package]]
783
+ name = "uvicorn"
784
+ version = "0.20.0"
785
+ description = "The lightning-fast ASGI server."
786
+ category = "main"
787
+ optional = false
788
+ python-versions = ">=3.7"
789
+
790
+ [package.dependencies]
791
+ click = ">=7.0"
792
+ h11 = ">=0.8"
793
+
794
+ [package.extras]
795
+ standard = ["colorama (>=0.4)", "httptools (>=0.5.0)", "python-dotenv (>=0.13)", "pyyaml (>=5.1)", "uvloop (>=0.14.0,!=0.15.0,!=0.15.1)", "watchfiles (>=0.13)", "websockets (>=10.4)"]
796
+
797
+ [[package]]
798
+ name = "websockets"
799
+ version = "10.4"
800
+ description = "An implementation of the WebSocket Protocol (RFC 6455 & 7692)"
801
+ category = "main"
802
+ optional = false
803
+ python-versions = ">=3.7"
804
+
805
+ [[package]]
806
+ name = "yarl"
807
+ version = "1.8.2"
808
+ description = "Yet another URL library"
809
+ category = "main"
810
+ optional = false
811
+ python-versions = ">=3.7"
812
+
813
+ [package.dependencies]
814
+ idna = ">=2.0"
815
+ multidict = ">=4.0"
816
+
817
+ [metadata]
818
+ lock-version = "1.1"
819
+ python-versions = "^3.8"
820
+ content-hash = "7403e31ef129dda9edf1b7ed240ed7ac089f0ac4da5e4a9a2408f284600906d4"
821
+
822
+ [metadata.files]
823
+ aiohttp = []
824
+ aiosignal = []
825
+ anyio = []
826
+ async-timeout = []
827
+ attrs = []
828
+ bcrypt = []
829
+ certifi = []
830
+ cffi = []
831
+ charset-normalizer = []
832
+ click = []
833
+ colorama = []
834
+ contourpy = []
835
+ cryptography = []
836
+ cycler = []
837
+ fastapi = []
838
+ ffmpy = []
839
+ fonttools = []
840
+ frozenlist = []
841
+ fsspec = []
842
+ gradio = []
843
+ h11 = []
844
+ httpcore = []
845
+ httpx = []
846
+ idna = []
847
+ jinja2 = []
848
+ kiwisolver = []
849
+ linkify-it-py = []
850
+ markdown-it-py = []
851
+ markupsafe = []
852
+ matplotlib = []
853
+ mdit-py-plugins = []
854
+ mdurl = []
855
+ multidict = []
856
+ numpy = []
857
+ orjson = []
858
+ packaging = []
859
+ pandas = []
860
+ paramiko = []
861
+ pillow = []
862
+ pycparser = []
863
+ pycryptodome = []
864
+ pydantic = []
865
+ pydub = []
866
+ pynacl = []
867
+ pyparsing = []
868
+ python-dateutil = []
869
+ python-dotenv = []
870
+ python-multipart = []
871
+ pytz = []
872
+ pyyaml = []
873
+ requests = []
874
+ rfc3986 = []
875
+ setuptools-scm = []
876
+ six = []
877
+ sniffio = []
878
+ starlette = []
879
+ tomli = []
880
+ typing-extensions = []
881
+ uc-micro-py = []
882
+ urllib3 = []
883
+ uvicorn = []
884
+ websockets = []
885
+ yarl = []
pyproject.toml ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [tool.poetry]
2
+ name = "art-search-engine"
3
+ version = "0.1.0"
4
+ description = ""
5
+ authors = ["Vincent Claes <[email protected]>"]
6
+ readme = "README.md"
7
+
8
+ [tool.poetry.dependencies]
9
+ python = "^3.8"
10
+ gradio = "^3.12.0"
11
+ Pillow = "^9.3.0"
12
+ python-dotenv = "^0.21.0"
13
+ setuptools = "^65.6.3"
14
+ distribute = "^0.7.3"
15
+
16
+
17
+ [build-system]
18
+ requires = ["poetry-core"]
19
+ build-backend = "poetry.core.masonry.api"
requirements.txt ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ aiohttp==3.8.3
2
+ aiosignal==1.3.1
3
+ anyio==3.6.2
4
+ async-timeout==4.0.2
5
+ attrs==22.1.0
6
+ bcrypt==4.0.1
7
+ certifi==2022.12.7
8
+ cffi==1.15.1
9
+ charset-normalizer==2.1.1
10
+ click==8.1.3
11
+ contourpy==1.0.6
12
+ cryptography==38.0.4
13
+ cycler==0.11.0
14
+ fastapi==0.88.0
15
+ ffmpy==0.3.0
16
+ fonttools==4.38.0
17
+ frozenlist==1.3.3
18
+ fsspec==2022.11.0
19
+ gradio==3.12.0
20
+ h11==0.12.0
21
+ httpcore==0.15.0
22
+ httpx==0.23.1
23
+ idna==3.4
24
+ Jinja2==3.1.2
25
+ kiwisolver==1.4.4
26
+ linkify-it-py==1.0.3
27
+ markdown-it-py==2.1.0
28
+ MarkupSafe==2.1.1
29
+ matplotlib==3.6.2
30
+ mdit-py-plugins==0.3.3
31
+ mdurl==0.1.2
32
+ multidict==6.0.3
33
+ numpy==1.23.5
34
+ orjson==3.8.3
35
+ packaging==22.0
36
+ pandas==1.5.2
37
+ paramiko==2.12.0
38
+ Pillow==9.3.0
39
+ pip==22.3.1
40
+ pycparser==2.21
41
+ pycryptodome==3.16.0
42
+ pydantic==1.10.2
43
+ pydub==0.25.1
44
+ PyNaCl==1.5.0
45
+ pyparsing==3.0.9
46
+ python-dateutil==2.8.2
47
+ python-dotenv==0.21.0
48
+ python-multipart==0.0.5
49
+ pytz==2022.6
50
+ PyYAML==6.0
51
+ requests==2.28.1
52
+ rfc3986==1.5.0
53
+ setuptools-scm==7.0.5
54
+ six==1.16.0
55
+ sniffio==1.3.0
56
+ starlette==0.22.0
57
+ tomli==2.0.1
58
+ typing_extensions==4.4.0
59
+ uc-micro-py==1.0.1
60
+ urllib3==1.26.13
61
+ uvicorn==0.20.0
62
+ websockets==10.4
63
+ wheel==0.38.4
64
+ yarl==1.8.2