Spaces:
Runtime error
Runtime error
Commit
·
351bc1f
0
Parent(s):
Duplicate from vincentclaes/emoji-predictor
Browse filesCo-authored-by: claes <[email protected]>
- .gitattributes +31 -0
- Makefile +3 -0
- README.md +14 -0
- app.py +122 -0
- emojis/0.png +0 -0
- emojis/1.png +0 -0
- emojis/10.png +0 -0
- emojis/11.png +0 -0
- emojis/12.png +0 -0
- emojis/13.png +0 -0
- emojis/14.png +0 -0
- emojis/15.png +0 -0
- emojis/16.png +0 -0
- emojis/17.png +0 -0
- emojis/18.png +0 -0
- emojis/19.png +0 -0
- emojis/2.png +0 -0
- emojis/20.png +0 -0
- emojis/21.png +0 -0
- emojis/22.png +0 -0
- emojis/23.png +0 -0
- emojis/24.png +0 -0
- emojis/25.png +0 -0
- emojis/26.png +0 -0
- emojis/27.png +0 -0
- emojis/28.png +0 -0
- emojis/29.png +0 -0
- emojis/3.png +0 -0
- emojis/30.png +0 -0
- emojis/31.png +0 -0
- emojis/4.png +0 -0
- emojis/5.png +0 -0
- emojis/6.png +0 -0
- emojis/7.png +0 -0
- emojis/8.png +0 -0
- emojis/9.png +0 -0
- poetry.lock +1403 -0
- pyproject.toml +18 -0
- requirements.txt +75 -0
.gitattributes
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
Makefile
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
install:
|
| 2 |
+
poetry install
|
| 3 |
+
poetry run pip list --format=freeze > requirements.txt
|
README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Emoji Predictor
|
| 3 |
+
emoji: 😎
|
| 4 |
+
colorFrom: pink
|
| 5 |
+
colorTo: indigo
|
| 6 |
+
sdk: gradio
|
| 7 |
+
sdk_version: 3.3.1
|
| 8 |
+
app_file: app.py
|
| 9 |
+
pinned: false
|
| 10 |
+
license: apache-2.0
|
| 11 |
+
duplicated_from: vincentclaes/emoji-predictor
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
app.py
ADDED
|
@@ -0,0 +1,122 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
import torch
|
| 3 |
+
import os
|
| 4 |
+
|
| 5 |
+
from PIL import Image
|
| 6 |
+
from pathlib import Path
|
| 7 |
+
from more_itertools import chunked
|
| 8 |
+
|
| 9 |
+
from transformers import CLIPProcessor, CLIPModel
|
| 10 |
+
|
| 11 |
+
checkpoint = "vincentclaes/emoji-predictor"
|
| 12 |
+
x_, _, files = next(os.walk("./emojis"))
|
| 13 |
+
no_of_emojis = range(len(files))
|
| 14 |
+
emojis_as_images = [Image.open(f"emojis/{i}.png") for i in no_of_emojis]
|
| 15 |
+
K = 4
|
| 16 |
+
|
| 17 |
+
processor = CLIPProcessor.from_pretrained(checkpoint)
|
| 18 |
+
model = CLIPModel.from_pretrained(checkpoint)
|
| 19 |
+
|
| 20 |
+
|
| 21 |
+
def concat_images(*images):
|
| 22 |
+
"""Generate composite of all supplied images.
|
| 23 |
+
https://stackoverflow.com/a/71315656/1771155
|
| 24 |
+
"""
|
| 25 |
+
# Get the widest width.
|
| 26 |
+
width = max(image.width for image in images)
|
| 27 |
+
# Add up all the heights.
|
| 28 |
+
height = max(image.height for image in images)
|
| 29 |
+
# set the correct size of width and heigtht of composite.
|
| 30 |
+
composite = Image.new('RGB', (2*width, 2*height))
|
| 31 |
+
assert K == 4, "We expect 4 suggestions, other numbers won't work."
|
| 32 |
+
for i, image in enumerate(images):
|
| 33 |
+
if i == 0:
|
| 34 |
+
composite.paste(image, (0, 0))
|
| 35 |
+
elif i == 1:
|
| 36 |
+
composite.paste(image, (width, 0))
|
| 37 |
+
elif i == 2:
|
| 38 |
+
composite.paste(image, (0, height))
|
| 39 |
+
elif i == 3:
|
| 40 |
+
composite.paste(image, (width, height))
|
| 41 |
+
return composite
|
| 42 |
+
|
| 43 |
+
|
| 44 |
+
def get_emoji(text, model=model, processor=processor, emojis=emojis_as_images, K=4):
|
| 45 |
+
inputs = processor(text=text, images=emojis, return_tensors="pt", padding=True, truncation=True)
|
| 46 |
+
outputs = model(**inputs)
|
| 47 |
+
|
| 48 |
+
logits_per_text = outputs.logits_per_text
|
| 49 |
+
# we take the softmax to get the label probabilities
|
| 50 |
+
probs = logits_per_text.softmax(dim=1)
|
| 51 |
+
# top K number of options
|
| 52 |
+
predictions_suggestions_for_chunk = [torch.topk(prob, K).indices.tolist() for prob in probs][0]
|
| 53 |
+
predictions_suggestions_for_chunk
|
| 54 |
+
|
| 55 |
+
images = [Image.open(f"emojis/{i}.png") for i in predictions_suggestions_for_chunk]
|
| 56 |
+
images_concat = concat_images(*images)
|
| 57 |
+
return images_concat
|
| 58 |
+
|
| 59 |
+
|
| 60 |
+
text = gr.inputs.Textbox(placeholder="Enter a text and we will try to predict an emoji...")
|
| 61 |
+
title = "Predicting an Emoji"
|
| 62 |
+
description = """You provide a sentence and our few-shot fine tuned CLIP model will suggest 4 from the following emoji's:
|
| 63 |
+
\n❤️ 😍 😂 💕 🔥 😊 😎 ✨ 💙 😘 📷 🇺🇸 ☀ 💜 😉 💯 😁 🎄 📸 😜 ☹️ 😭 😔 😡 💢 😤 😳 🙃 😩 😠 🙈 🙄\n
|
| 64 |
+
"""
|
| 65 |
+
article = """
|
| 66 |
+
\n
|
| 67 |
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
| 68 |
+
\n
|
| 69 |
+
#### Let's connect on Linkedin: https://www.linkedin.com/in/vincent-claes-0b346337/
|
| 70 |
+
\n
|
| 71 |
+
# Context
|
| 72 |
+
I fine tuned Open Ai's CLIP model on both text (tweets) and images of emoji's!\n
|
| 73 |
+
The current model you can play with is fine-tuned on 15 samples per emoji.
|
| 74 |
+
|
| 75 |
+
- model: https://huggingface.co/vincentclaes/emoji-predictor \n
|
| 76 |
+
- dataset: https://huggingface.co/datasets/vincentclaes/emoji-predictor \n
|
| 77 |
+
- profile: https://huggingface.co/vincentclaes \n
|
| 78 |
+
|
| 79 |
+
# Precision
|
| 80 |
+
|
| 81 |
+
Below you can find a table with the precision for predictions and suggestions
|
| 82 |
+
for a range of samples per emoji we fine-tuned CLIP on.
|
| 83 |
+
|
| 84 |
+
### Prediction vs. Suggestion
|
| 85 |
+
- The column "Prediction" indicates the precision for predicting the right emoji.
|
| 86 |
+
|
| 87 |
+
- Since there can be some confusion about the right emoji for a tweet,
|
| 88 |
+
I also tried to present 4 suggestions. If 1 of the 4 suggestions is the same as the label,
|
| 89 |
+
I consider it a valid prediction. See the column "Suggestion".
|
| 90 |
+
|
| 91 |
+
- Randomly predicting an emoji would have a precision of 1/32 or 0.0325.
|
| 92 |
+
- Randomly suggesting an emoji would have a precision of 4/32 or 0.12.
|
| 93 |
+
|
| 94 |
+
|
| 95 |
+
| Samples | Prediction | Suggestion |
|
| 96 |
+
|--------- |------------ |------------ |
|
| 97 |
+
| 0 | 0.13 | 0.33 |
|
| 98 |
+
| 1 | 0.11 | 0.30 |
|
| 99 |
+
| 5 | 0.14 | 0.38 |
|
| 100 |
+
| 10 | 0.20 | 0.45 |
|
| 101 |
+
| 15 | 0.22 | 0.51 |
|
| 102 |
+
| 20 | 0.19 | 0.49 |
|
| 103 |
+
| 25 | 0.24 | 0.54 |
|
| 104 |
+
| 50 | 0.23 | 0.53 |
|
| 105 |
+
| 100 | 0.25 | 0.57 |
|
| 106 |
+
| 250 | 0.29 | 0.62 |
|
| 107 |
+
| 500 | 0.29 | 0.63 |
|
| 108 |
+
|
| 109 |
+
|
| 110 |
+
|
| 111 |
+
|
| 112 |
+
"""
|
| 113 |
+
examples = [
|
| 114 |
+
"I'm so happy for you!",
|
| 115 |
+
"I'm not feeling great today.",
|
| 116 |
+
"This makes me angry!",
|
| 117 |
+
"Can I follow you?",
|
| 118 |
+
"I'm so bored right now ...",
|
| 119 |
+
]
|
| 120 |
+
gr.Interface(fn=get_emoji, inputs=text, outputs=gr.Image(shape=(72,72)),
|
| 121 |
+
examples=examples, title=title, description=description,
|
| 122 |
+
article=article).launch()
|
emojis/0.png
ADDED
|
emojis/1.png
ADDED
|
emojis/10.png
ADDED
|
emojis/11.png
ADDED
|
emojis/12.png
ADDED
|
emojis/13.png
ADDED
|
emojis/14.png
ADDED
|
emojis/15.png
ADDED
|
emojis/16.png
ADDED
|
emojis/17.png
ADDED
|
emojis/18.png
ADDED
|
emojis/19.png
ADDED
|
emojis/2.png
ADDED
|
emojis/20.png
ADDED
|
emojis/21.png
ADDED
|
emojis/22.png
ADDED
|
emojis/23.png
ADDED
|
emojis/24.png
ADDED
|
emojis/25.png
ADDED
|
emojis/26.png
ADDED
|
emojis/27.png
ADDED
|
emojis/28.png
ADDED
|
emojis/29.png
ADDED
|
emojis/3.png
ADDED
|
emojis/30.png
ADDED
|
emojis/31.png
ADDED
|
emojis/4.png
ADDED
|
emojis/5.png
ADDED
|
emojis/6.png
ADDED
|
emojis/7.png
ADDED
|
emojis/8.png
ADDED
|
emojis/9.png
ADDED
|
poetry.lock
ADDED
|
@@ -0,0 +1,1403 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[[package]]
|
| 2 |
+
name = "aiohttp"
|
| 3 |
+
version = "3.8.1"
|
| 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.2.0"
|
| 24 |
+
description = "aiosignal: a list of registered asynchronous callbacks"
|
| 25 |
+
category = "main"
|
| 26 |
+
optional = false
|
| 27 |
+
python-versions = ">=3.6"
|
| 28 |
+
|
| 29 |
+
[package.dependencies]
|
| 30 |
+
frozenlist = ">=1.1.0"
|
| 31 |
+
|
| 32 |
+
[[package]]
|
| 33 |
+
name = "analytics-python"
|
| 34 |
+
version = "1.4.0"
|
| 35 |
+
description = "The hassle-free way to integrate analytics into any python application."
|
| 36 |
+
category = "main"
|
| 37 |
+
optional = false
|
| 38 |
+
python-versions = "*"
|
| 39 |
+
|
| 40 |
+
[package.dependencies]
|
| 41 |
+
backoff = "1.10.0"
|
| 42 |
+
monotonic = ">=1.5"
|
| 43 |
+
python-dateutil = ">2.1"
|
| 44 |
+
requests = ">=2.7,<3.0"
|
| 45 |
+
six = ">=1.5"
|
| 46 |
+
|
| 47 |
+
[package.extras]
|
| 48 |
+
test = ["flake8 (==3.7.9)", "pylint (==1.9.3)", "mock (==2.0.0)"]
|
| 49 |
+
|
| 50 |
+
[[package]]
|
| 51 |
+
name = "anyio"
|
| 52 |
+
version = "3.6.1"
|
| 53 |
+
description = "High level compatibility layer for multiple asynchronous event loop implementations"
|
| 54 |
+
category = "main"
|
| 55 |
+
optional = false
|
| 56 |
+
python-versions = ">=3.6.2"
|
| 57 |
+
|
| 58 |
+
[package.dependencies]
|
| 59 |
+
idna = ">=2.8"
|
| 60 |
+
sniffio = ">=1.1"
|
| 61 |
+
|
| 62 |
+
[package.extras]
|
| 63 |
+
doc = ["packaging", "sphinx-rtd-theme", "sphinx-autodoc-typehints (>=1.2.0)"]
|
| 64 |
+
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)"]
|
| 65 |
+
trio = ["trio (>=0.16)"]
|
| 66 |
+
|
| 67 |
+
[[package]]
|
| 68 |
+
name = "async-timeout"
|
| 69 |
+
version = "4.0.2"
|
| 70 |
+
description = "Timeout context manager for asyncio programs"
|
| 71 |
+
category = "main"
|
| 72 |
+
optional = false
|
| 73 |
+
python-versions = ">=3.6"
|
| 74 |
+
|
| 75 |
+
[[package]]
|
| 76 |
+
name = "attrs"
|
| 77 |
+
version = "22.1.0"
|
| 78 |
+
description = "Classes Without Boilerplate"
|
| 79 |
+
category = "main"
|
| 80 |
+
optional = false
|
| 81 |
+
python-versions = ">=3.5"
|
| 82 |
+
|
| 83 |
+
[package.extras]
|
| 84 |
+
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"]
|
| 85 |
+
docs = ["furo", "sphinx", "zope.interface", "sphinx-notfound-page"]
|
| 86 |
+
tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "mypy (>=0.900,!=0.940)", "pytest-mypy-plugins", "zope.interface", "cloudpickle"]
|
| 87 |
+
tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "mypy (>=0.900,!=0.940)", "pytest-mypy-plugins", "cloudpickle"]
|
| 88 |
+
|
| 89 |
+
[[package]]
|
| 90 |
+
name = "backoff"
|
| 91 |
+
version = "1.10.0"
|
| 92 |
+
description = "Function decoration for backoff and retry"
|
| 93 |
+
category = "main"
|
| 94 |
+
optional = false
|
| 95 |
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
| 96 |
+
|
| 97 |
+
[[package]]
|
| 98 |
+
name = "bcrypt"
|
| 99 |
+
version = "4.0.0"
|
| 100 |
+
description = "Modern password hashing for your software and your servers"
|
| 101 |
+
category = "main"
|
| 102 |
+
optional = false
|
| 103 |
+
python-versions = ">=3.6"
|
| 104 |
+
|
| 105 |
+
[package.extras]
|
| 106 |
+
tests = ["pytest (>=3.2.1,!=3.3.0)"]
|
| 107 |
+
typecheck = ["mypy"]
|
| 108 |
+
|
| 109 |
+
[[package]]
|
| 110 |
+
name = "certifi"
|
| 111 |
+
version = "2022.9.14"
|
| 112 |
+
description = "Python package for providing Mozilla's CA Bundle."
|
| 113 |
+
category = "main"
|
| 114 |
+
optional = false
|
| 115 |
+
python-versions = ">=3.6"
|
| 116 |
+
|
| 117 |
+
[[package]]
|
| 118 |
+
name = "cffi"
|
| 119 |
+
version = "1.15.1"
|
| 120 |
+
description = "Foreign Function Interface for Python calling C code."
|
| 121 |
+
category = "main"
|
| 122 |
+
optional = false
|
| 123 |
+
python-versions = "*"
|
| 124 |
+
|
| 125 |
+
[package.dependencies]
|
| 126 |
+
pycparser = "*"
|
| 127 |
+
|
| 128 |
+
[[package]]
|
| 129 |
+
name = "charset-normalizer"
|
| 130 |
+
version = "2.1.1"
|
| 131 |
+
description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet."
|
| 132 |
+
category = "main"
|
| 133 |
+
optional = false
|
| 134 |
+
python-versions = ">=3.6.0"
|
| 135 |
+
|
| 136 |
+
[package.extras]
|
| 137 |
+
unicode_backport = ["unicodedata2"]
|
| 138 |
+
|
| 139 |
+
[[package]]
|
| 140 |
+
name = "click"
|
| 141 |
+
version = "8.1.3"
|
| 142 |
+
description = "Composable command line interface toolkit"
|
| 143 |
+
category = "main"
|
| 144 |
+
optional = false
|
| 145 |
+
python-versions = ">=3.7"
|
| 146 |
+
|
| 147 |
+
[package.dependencies]
|
| 148 |
+
colorama = {version = "*", markers = "platform_system == \"Windows\""}
|
| 149 |
+
|
| 150 |
+
[[package]]
|
| 151 |
+
name = "colorama"
|
| 152 |
+
version = "0.4.5"
|
| 153 |
+
description = "Cross-platform colored terminal text."
|
| 154 |
+
category = "main"
|
| 155 |
+
optional = false
|
| 156 |
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
| 157 |
+
|
| 158 |
+
[[package]]
|
| 159 |
+
name = "contourpy"
|
| 160 |
+
version = "1.0.5"
|
| 161 |
+
description = "Python library for calculating contours of 2D quadrilateral grids"
|
| 162 |
+
category = "main"
|
| 163 |
+
optional = false
|
| 164 |
+
python-versions = ">=3.7"
|
| 165 |
+
|
| 166 |
+
[package.dependencies]
|
| 167 |
+
numpy = ">=1.16"
|
| 168 |
+
|
| 169 |
+
[package.extras]
|
| 170 |
+
test-no-codebase = ["pillow", "matplotlib", "pytest"]
|
| 171 |
+
test-minimal = ["pytest"]
|
| 172 |
+
test = ["isort", "flake8", "pillow", "matplotlib", "pytest"]
|
| 173 |
+
docs = ["sphinx-rtd-theme", "sphinx", "docutils (<0.18)"]
|
| 174 |
+
bokeh = ["selenium", "bokeh"]
|
| 175 |
+
|
| 176 |
+
[[package]]
|
| 177 |
+
name = "cryptography"
|
| 178 |
+
version = "38.0.1"
|
| 179 |
+
description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers."
|
| 180 |
+
category = "main"
|
| 181 |
+
optional = false
|
| 182 |
+
python-versions = ">=3.6"
|
| 183 |
+
|
| 184 |
+
[package.dependencies]
|
| 185 |
+
cffi = ">=1.12"
|
| 186 |
+
|
| 187 |
+
[package.extras]
|
| 188 |
+
docs = ["sphinx (>=1.6.5,!=1.8.0,!=3.1.0,!=3.1.1)", "sphinx-rtd-theme"]
|
| 189 |
+
docstest = ["pyenchant (>=1.6.11)", "twine (>=1.12.0)", "sphinxcontrib-spelling (>=4.0.1)"]
|
| 190 |
+
pep8test = ["black", "flake8", "flake8-import-order", "pep8-naming"]
|
| 191 |
+
sdist = ["setuptools-rust (>=0.11.4)"]
|
| 192 |
+
ssh = ["bcrypt (>=3.1.5)"]
|
| 193 |
+
test = ["pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-subtests", "pytest-xdist", "pretend", "iso8601", "pytz", "hypothesis (>=1.11.4,!=3.79.2)"]
|
| 194 |
+
|
| 195 |
+
[[package]]
|
| 196 |
+
name = "cycler"
|
| 197 |
+
version = "0.11.0"
|
| 198 |
+
description = "Composable style cycles"
|
| 199 |
+
category = "main"
|
| 200 |
+
optional = false
|
| 201 |
+
python-versions = ">=3.6"
|
| 202 |
+
|
| 203 |
+
[[package]]
|
| 204 |
+
name = "fastapi"
|
| 205 |
+
version = "0.85.0"
|
| 206 |
+
description = "FastAPI framework, high performance, easy to learn, fast to code, ready for production"
|
| 207 |
+
category = "main"
|
| 208 |
+
optional = false
|
| 209 |
+
python-versions = ">=3.7"
|
| 210 |
+
|
| 211 |
+
[package.dependencies]
|
| 212 |
+
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"
|
| 213 |
+
starlette = "0.20.4"
|
| 214 |
+
|
| 215 |
+
[package.extras]
|
| 216 |
+
all = ["email-validator (>=1.1.1,<2.0.0)", "itsdangerous (>=1.1.0,<3.0.0)", "jinja2 (>=2.11.2,<4.0.0)", "orjson (>=3.2.1,<4.0.0)", "python-multipart (>=0.0.5,<0.0.6)", "pyyaml (>=5.3.1,<7.0.0)", "requests (>=2.24.0,<3.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)", "uvicorn[standard] (>=0.12.0,<0.19.0)"]
|
| 217 |
+
dev = ["autoflake (>=1.4.0,<2.0.0)", "flake8 (>=3.8.3,<6.0.0)", "pre-commit (>=2.17.0,<3.0.0)", "uvicorn[standard] (>=0.12.0,<0.19.0)"]
|
| 218 |
+
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 (>=0.4.1,<0.7.0)"]
|
| 219 |
+
test = ["anyio[trio] (>=3.2.1,<4.0.0)", "black (==22.8.0)", "databases[sqlite] (>=0.3.2,<0.7.0)", "email-validator (>=1.1.1,<2.0.0)", "flake8 (>=3.8.3,<6.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.971)", "orjson (>=3.2.1,<4.0.0)", "passlib[bcrypt] (>=1.7.2,<2.0.0)", "peewee (>=3.13.3,<4.0.0)", "pytest-cov (>=2.12.0,<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)", "requests (>=2.24.0,<3.0.0)", "sqlalchemy (>=1.3.18,<1.5.0)", "types-orjson (==3.6.2)", "types-ujson (==5.4.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)"]
|
| 220 |
+
|
| 221 |
+
[[package]]
|
| 222 |
+
name = "ffmpy"
|
| 223 |
+
version = "0.3.0"
|
| 224 |
+
description = "A simple Python wrapper for ffmpeg"
|
| 225 |
+
category = "main"
|
| 226 |
+
optional = false
|
| 227 |
+
python-versions = "*"
|
| 228 |
+
|
| 229 |
+
[[package]]
|
| 230 |
+
name = "filelock"
|
| 231 |
+
version = "3.8.0"
|
| 232 |
+
description = "A platform independent file lock."
|
| 233 |
+
category = "main"
|
| 234 |
+
optional = false
|
| 235 |
+
python-versions = ">=3.7"
|
| 236 |
+
|
| 237 |
+
[package.extras]
|
| 238 |
+
docs = ["furo (>=2022.6.21)", "sphinx (>=5.1.1)", "sphinx-autodoc-typehints (>=1.19.1)"]
|
| 239 |
+
testing = ["covdefaults (>=2.2)", "coverage (>=6.4.2)", "pytest (>=7.1.2)", "pytest-cov (>=3)", "pytest-timeout (>=2.1)"]
|
| 240 |
+
|
| 241 |
+
[[package]]
|
| 242 |
+
name = "fonttools"
|
| 243 |
+
version = "4.37.2"
|
| 244 |
+
description = "Tools to manipulate font files"
|
| 245 |
+
category = "main"
|
| 246 |
+
optional = false
|
| 247 |
+
python-versions = ">=3.7"
|
| 248 |
+
|
| 249 |
+
[package.extras]
|
| 250 |
+
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"]
|
| 251 |
+
graphite = ["lz4 (>=1.7.4.2)"]
|
| 252 |
+
interpolatable = ["scipy", "munkres"]
|
| 253 |
+
lxml = ["lxml (>=4.0,<5)"]
|
| 254 |
+
pathops = ["skia-pathops (>=0.5.0)"]
|
| 255 |
+
plot = ["matplotlib"]
|
| 256 |
+
repacker = ["uharfbuzz (>=0.23.0)"]
|
| 257 |
+
symfont = ["sympy"]
|
| 258 |
+
type1 = ["xattr"]
|
| 259 |
+
ufo = ["fs (>=2.2.0,<3)"]
|
| 260 |
+
unicode = ["unicodedata2 (>=14.0.0)"]
|
| 261 |
+
woff = ["zopfli (>=0.1.4)", "brotlicffi (>=0.8.0)", "brotli (>=1.0.1)"]
|
| 262 |
+
|
| 263 |
+
[[package]]
|
| 264 |
+
name = "frozenlist"
|
| 265 |
+
version = "1.3.1"
|
| 266 |
+
description = "A list-like structure which implements collections.abc.MutableSequence"
|
| 267 |
+
category = "main"
|
| 268 |
+
optional = false
|
| 269 |
+
python-versions = ">=3.7"
|
| 270 |
+
|
| 271 |
+
[[package]]
|
| 272 |
+
name = "fsspec"
|
| 273 |
+
version = "2022.8.2"
|
| 274 |
+
description = "File-system specification"
|
| 275 |
+
category = "main"
|
| 276 |
+
optional = false
|
| 277 |
+
python-versions = ">=3.7"
|
| 278 |
+
|
| 279 |
+
[package.extras]
|
| 280 |
+
abfs = ["adlfs"]
|
| 281 |
+
adl = ["adlfs"]
|
| 282 |
+
arrow = ["pyarrow (>=1)"]
|
| 283 |
+
dask = ["dask", "distributed"]
|
| 284 |
+
dropbox = ["dropboxdrivefs", "requests", "dropbox"]
|
| 285 |
+
entrypoints = ["importlib-metadata"]
|
| 286 |
+
fuse = ["fusepy"]
|
| 287 |
+
gcs = ["gcsfs"]
|
| 288 |
+
git = ["pygit2"]
|
| 289 |
+
github = ["requests"]
|
| 290 |
+
gs = ["gcsfs"]
|
| 291 |
+
gui = ["panel"]
|
| 292 |
+
hdfs = ["pyarrow (>=1)"]
|
| 293 |
+
http = ["requests", "aiohttp (!=4.0.0a0,!=4.0.0a1)"]
|
| 294 |
+
libarchive = ["libarchive-c"]
|
| 295 |
+
oci = ["ocifs"]
|
| 296 |
+
s3 = ["s3fs"]
|
| 297 |
+
sftp = ["paramiko"]
|
| 298 |
+
smb = ["smbprotocol"]
|
| 299 |
+
ssh = ["paramiko"]
|
| 300 |
+
tqdm = ["tqdm"]
|
| 301 |
+
|
| 302 |
+
[[package]]
|
| 303 |
+
name = "gradio"
|
| 304 |
+
version = "3.3.1"
|
| 305 |
+
description = "Python library for easily interacting with trained machine learning models"
|
| 306 |
+
category = "main"
|
| 307 |
+
optional = false
|
| 308 |
+
python-versions = ">=3.7"
|
| 309 |
+
|
| 310 |
+
[package.dependencies]
|
| 311 |
+
aiohttp = "*"
|
| 312 |
+
analytics-python = "*"
|
| 313 |
+
fastapi = "*"
|
| 314 |
+
ffmpy = "*"
|
| 315 |
+
fsspec = "*"
|
| 316 |
+
h11 = ">=0.11,<0.13"
|
| 317 |
+
httpx = "*"
|
| 318 |
+
jinja2 = "*"
|
| 319 |
+
markdown-it-py = {version = "*", extras = ["linkify", "plugins"]}
|
| 320 |
+
matplotlib = "*"
|
| 321 |
+
numpy = "*"
|
| 322 |
+
orjson = "*"
|
| 323 |
+
pandas = "*"
|
| 324 |
+
paramiko = "*"
|
| 325 |
+
pillow = "*"
|
| 326 |
+
pycryptodome = "*"
|
| 327 |
+
pydantic = "*"
|
| 328 |
+
pydub = "*"
|
| 329 |
+
python-multipart = "*"
|
| 330 |
+
pyyaml = "*"
|
| 331 |
+
requests = "*"
|
| 332 |
+
uvicorn = "*"
|
| 333 |
+
websockets = "*"
|
| 334 |
+
|
| 335 |
+
[[package]]
|
| 336 |
+
name = "h11"
|
| 337 |
+
version = "0.12.0"
|
| 338 |
+
description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1"
|
| 339 |
+
category = "main"
|
| 340 |
+
optional = false
|
| 341 |
+
python-versions = ">=3.6"
|
| 342 |
+
|
| 343 |
+
[[package]]
|
| 344 |
+
name = "httpcore"
|
| 345 |
+
version = "0.15.0"
|
| 346 |
+
description = "A minimal low-level HTTP client."
|
| 347 |
+
category = "main"
|
| 348 |
+
optional = false
|
| 349 |
+
python-versions = ">=3.7"
|
| 350 |
+
|
| 351 |
+
[package.dependencies]
|
| 352 |
+
anyio = ">=3.0.0,<4.0.0"
|
| 353 |
+
certifi = "*"
|
| 354 |
+
h11 = ">=0.11,<0.13"
|
| 355 |
+
sniffio = ">=1.0.0,<2.0.0"
|
| 356 |
+
|
| 357 |
+
[package.extras]
|
| 358 |
+
http2 = ["h2 (>=3,<5)"]
|
| 359 |
+
socks = ["socksio (>=1.0.0,<2.0.0)"]
|
| 360 |
+
|
| 361 |
+
[[package]]
|
| 362 |
+
name = "httpx"
|
| 363 |
+
version = "0.23.0"
|
| 364 |
+
description = "The next generation HTTP client."
|
| 365 |
+
category = "main"
|
| 366 |
+
optional = false
|
| 367 |
+
python-versions = ">=3.7"
|
| 368 |
+
|
| 369 |
+
[package.dependencies]
|
| 370 |
+
certifi = "*"
|
| 371 |
+
httpcore = ">=0.15.0,<0.16.0"
|
| 372 |
+
rfc3986 = {version = ">=1.3,<2", extras = ["idna2008"]}
|
| 373 |
+
sniffio = "*"
|
| 374 |
+
|
| 375 |
+
[package.extras]
|
| 376 |
+
brotli = ["brotlicffi", "brotli"]
|
| 377 |
+
cli = ["click (>=8.0.0,<9.0.0)", "rich (>=10,<13)", "pygments (>=2.0.0,<3.0.0)"]
|
| 378 |
+
http2 = ["h2 (>=3,<5)"]
|
| 379 |
+
socks = ["socksio (>=1.0.0,<2.0.0)"]
|
| 380 |
+
|
| 381 |
+
[[package]]
|
| 382 |
+
name = "huggingface-hub"
|
| 383 |
+
version = "0.9.1"
|
| 384 |
+
description = "Client library to download and publish models, datasets and other repos on the huggingface.co hub"
|
| 385 |
+
category = "main"
|
| 386 |
+
optional = false
|
| 387 |
+
python-versions = ">=3.7.0"
|
| 388 |
+
|
| 389 |
+
[package.dependencies]
|
| 390 |
+
filelock = "*"
|
| 391 |
+
packaging = ">=20.9"
|
| 392 |
+
pyyaml = ">=5.1"
|
| 393 |
+
requests = "*"
|
| 394 |
+
tqdm = "*"
|
| 395 |
+
typing-extensions = ">=3.7.4.3"
|
| 396 |
+
|
| 397 |
+
[package.extras]
|
| 398 |
+
torch = ["torch"]
|
| 399 |
+
testing = ["soundfile", "datasets", "pytest-cov", "pytest"]
|
| 400 |
+
tensorflow = ["graphviz", "pydot", "tensorflow"]
|
| 401 |
+
quality = ["flake8-bugbear", "flake8 (>=3.8.3)", "isort (>=5.5.4)", "black (==22.3)"]
|
| 402 |
+
fastai = ["fastcore (>=1.3.27)", "fastai (>=2.4)", "toml"]
|
| 403 |
+
dev = ["flake8-bugbear", "flake8 (>=3.8.3)", "isort (>=5.5.4)", "black (==22.3)", "soundfile", "datasets", "pytest-cov", "pytest"]
|
| 404 |
+
all = ["flake8-bugbear", "flake8 (>=3.8.3)", "isort (>=5.5.4)", "black (==22.3)", "soundfile", "datasets", "pytest-cov", "pytest"]
|
| 405 |
+
|
| 406 |
+
[[package]]
|
| 407 |
+
name = "idna"
|
| 408 |
+
version = "3.4"
|
| 409 |
+
description = "Internationalized Domain Names in Applications (IDNA)"
|
| 410 |
+
category = "main"
|
| 411 |
+
optional = false
|
| 412 |
+
python-versions = ">=3.5"
|
| 413 |
+
|
| 414 |
+
[[package]]
|
| 415 |
+
name = "jinja2"
|
| 416 |
+
version = "3.1.2"
|
| 417 |
+
description = "A very fast and expressive template engine."
|
| 418 |
+
category = "main"
|
| 419 |
+
optional = false
|
| 420 |
+
python-versions = ">=3.7"
|
| 421 |
+
|
| 422 |
+
[package.dependencies]
|
| 423 |
+
MarkupSafe = ">=2.0"
|
| 424 |
+
|
| 425 |
+
[package.extras]
|
| 426 |
+
i18n = ["Babel (>=2.7)"]
|
| 427 |
+
|
| 428 |
+
[[package]]
|
| 429 |
+
name = "kiwisolver"
|
| 430 |
+
version = "1.4.4"
|
| 431 |
+
description = "A fast implementation of the Cassowary constraint solver"
|
| 432 |
+
category = "main"
|
| 433 |
+
optional = false
|
| 434 |
+
python-versions = ">=3.7"
|
| 435 |
+
|
| 436 |
+
[[package]]
|
| 437 |
+
name = "linkify-it-py"
|
| 438 |
+
version = "1.0.3"
|
| 439 |
+
description = "Links recognition library with FULL unicode support."
|
| 440 |
+
category = "main"
|
| 441 |
+
optional = false
|
| 442 |
+
python-versions = ">=3.6"
|
| 443 |
+
|
| 444 |
+
[package.dependencies]
|
| 445 |
+
uc-micro-py = "*"
|
| 446 |
+
|
| 447 |
+
[package.extras]
|
| 448 |
+
test = ["pytest-cov", "pytest", "coverage"]
|
| 449 |
+
doc = ["myst-parser", "sphinx-book-theme", "sphinx"]
|
| 450 |
+
dev = ["black", "flake8", "isort", "pre-commit"]
|
| 451 |
+
benchmark = ["pytest-benchmark", "pytest"]
|
| 452 |
+
|
| 453 |
+
[[package]]
|
| 454 |
+
name = "markdown-it-py"
|
| 455 |
+
version = "2.1.0"
|
| 456 |
+
description = "Python port of markdown-it. Markdown parsing, done right!"
|
| 457 |
+
category = "main"
|
| 458 |
+
optional = false
|
| 459 |
+
python-versions = ">=3.7"
|
| 460 |
+
|
| 461 |
+
[package.dependencies]
|
| 462 |
+
linkify-it-py = {version = ">=1.0,<2.0", optional = true, markers = "extra == \"linkify\""}
|
| 463 |
+
mdit-py-plugins = {version = "*", optional = true, markers = "extra == \"plugins\""}
|
| 464 |
+
mdurl = ">=0.1,<1.0"
|
| 465 |
+
|
| 466 |
+
[package.extras]
|
| 467 |
+
testing = ["pytest-regressions", "pytest-cov", "pytest", "coverage"]
|
| 468 |
+
rtd = ["sphinx-book-theme", "sphinx-design", "sphinx-copybutton", "sphinx", "pyyaml", "myst-parser", "attrs"]
|
| 469 |
+
profiling = ["gprof2dot"]
|
| 470 |
+
plugins = ["mdit-py-plugins"]
|
| 471 |
+
linkify = ["linkify-it-py (>=1.0,<2.0)"]
|
| 472 |
+
compare = ["panflute (>=2.1.3,<2.2.0)", "mistune (>=2.0.2,<2.1.0)", "mistletoe (>=0.8.1,<0.9.0)", "markdown (>=3.3.6,<3.4.0)", "commonmark (>=0.9.1,<0.10.0)"]
|
| 473 |
+
code_style = ["pre-commit (==2.6)"]
|
| 474 |
+
benchmarking = ["pytest-benchmark (>=3.2,<4.0)", "pytest", "psutil"]
|
| 475 |
+
|
| 476 |
+
[[package]]
|
| 477 |
+
name = "markupsafe"
|
| 478 |
+
version = "2.1.1"
|
| 479 |
+
description = "Safely add untrusted strings to HTML/XML markup."
|
| 480 |
+
category = "main"
|
| 481 |
+
optional = false
|
| 482 |
+
python-versions = ">=3.7"
|
| 483 |
+
|
| 484 |
+
[[package]]
|
| 485 |
+
name = "matplotlib"
|
| 486 |
+
version = "3.6.0"
|
| 487 |
+
description = "Python plotting package"
|
| 488 |
+
category = "main"
|
| 489 |
+
optional = false
|
| 490 |
+
python-versions = ">=3.8"
|
| 491 |
+
|
| 492 |
+
[package.dependencies]
|
| 493 |
+
contourpy = ">=1.0.1"
|
| 494 |
+
cycler = ">=0.10"
|
| 495 |
+
fonttools = ">=4.22.0"
|
| 496 |
+
kiwisolver = ">=1.0.1"
|
| 497 |
+
numpy = ">=1.19"
|
| 498 |
+
packaging = ">=20.0"
|
| 499 |
+
pillow = ">=6.2.0"
|
| 500 |
+
pyparsing = ">=2.2.1"
|
| 501 |
+
python-dateutil = ">=2.7"
|
| 502 |
+
setuptools_scm = ">=7"
|
| 503 |
+
|
| 504 |
+
[[package]]
|
| 505 |
+
name = "mdit-py-plugins"
|
| 506 |
+
version = "0.3.0"
|
| 507 |
+
description = "Collection of plugins for markdown-it-py"
|
| 508 |
+
category = "main"
|
| 509 |
+
optional = false
|
| 510 |
+
python-versions = "~=3.6"
|
| 511 |
+
|
| 512 |
+
[package.dependencies]
|
| 513 |
+
markdown-it-py = ">=1.0.0,<3.0.0"
|
| 514 |
+
|
| 515 |
+
[package.extras]
|
| 516 |
+
testing = ["pytest-regressions", "pytest-cov", "pytest (>=3.6,<4)", "coverage"]
|
| 517 |
+
rtd = ["sphinx-book-theme (>=0.1.0,<0.2.0)", "myst-parser (>=0.14.0,<0.15.0)"]
|
| 518 |
+
code_style = ["pre-commit (==2.6)"]
|
| 519 |
+
|
| 520 |
+
[[package]]
|
| 521 |
+
name = "mdurl"
|
| 522 |
+
version = "0.1.2"
|
| 523 |
+
description = "Markdown URL utilities"
|
| 524 |
+
category = "main"
|
| 525 |
+
optional = false
|
| 526 |
+
python-versions = ">=3.7"
|
| 527 |
+
|
| 528 |
+
[[package]]
|
| 529 |
+
name = "monotonic"
|
| 530 |
+
version = "1.6"
|
| 531 |
+
description = "An implementation of time.monotonic() for Python 2 & < 3.3"
|
| 532 |
+
category = "main"
|
| 533 |
+
optional = false
|
| 534 |
+
python-versions = "*"
|
| 535 |
+
|
| 536 |
+
[[package]]
|
| 537 |
+
name = "more-itertools"
|
| 538 |
+
version = "8.14.0"
|
| 539 |
+
description = "More routines for operating on iterables, beyond itertools"
|
| 540 |
+
category = "main"
|
| 541 |
+
optional = false
|
| 542 |
+
python-versions = ">=3.5"
|
| 543 |
+
|
| 544 |
+
[[package]]
|
| 545 |
+
name = "multidict"
|
| 546 |
+
version = "6.0.2"
|
| 547 |
+
description = "multidict implementation"
|
| 548 |
+
category = "main"
|
| 549 |
+
optional = false
|
| 550 |
+
python-versions = ">=3.7"
|
| 551 |
+
|
| 552 |
+
[[package]]
|
| 553 |
+
name = "numpy"
|
| 554 |
+
version = "1.23.3"
|
| 555 |
+
description = "NumPy is the fundamental package for array computing with Python."
|
| 556 |
+
category = "main"
|
| 557 |
+
optional = false
|
| 558 |
+
python-versions = ">=3.8"
|
| 559 |
+
|
| 560 |
+
[[package]]
|
| 561 |
+
name = "orjson"
|
| 562 |
+
version = "3.8.0"
|
| 563 |
+
description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy"
|
| 564 |
+
category = "main"
|
| 565 |
+
optional = false
|
| 566 |
+
python-versions = ">=3.7"
|
| 567 |
+
|
| 568 |
+
[[package]]
|
| 569 |
+
name = "packaging"
|
| 570 |
+
version = "21.3"
|
| 571 |
+
description = "Core utilities for Python packages"
|
| 572 |
+
category = "main"
|
| 573 |
+
optional = false
|
| 574 |
+
python-versions = ">=3.6"
|
| 575 |
+
|
| 576 |
+
[package.dependencies]
|
| 577 |
+
pyparsing = ">=2.0.2,<3.0.5 || >3.0.5"
|
| 578 |
+
|
| 579 |
+
[[package]]
|
| 580 |
+
name = "pandas"
|
| 581 |
+
version = "1.4.4"
|
| 582 |
+
description = "Powerful data structures for data analysis, time series, and statistics"
|
| 583 |
+
category = "main"
|
| 584 |
+
optional = false
|
| 585 |
+
python-versions = ">=3.8"
|
| 586 |
+
|
| 587 |
+
[package.dependencies]
|
| 588 |
+
numpy = [
|
| 589 |
+
{version = ">=1.18.5", markers = "platform_machine != \"aarch64\" and platform_machine != \"arm64\" and python_version < \"3.10\""},
|
| 590 |
+
{version = ">=1.19.2", markers = "platform_machine == \"aarch64\" and python_version < \"3.10\""},
|
| 591 |
+
{version = ">=1.20.0", markers = "platform_machine == \"arm64\" and python_version < \"3.10\""},
|
| 592 |
+
{version = ">=1.21.0", markers = "python_version >= \"3.10\""},
|
| 593 |
+
]
|
| 594 |
+
python-dateutil = ">=2.8.1"
|
| 595 |
+
pytz = ">=2020.1"
|
| 596 |
+
|
| 597 |
+
[package.extras]
|
| 598 |
+
test = ["hypothesis (>=5.5.3)", "pytest (>=6.0)", "pytest-xdist (>=1.31)"]
|
| 599 |
+
|
| 600 |
+
[[package]]
|
| 601 |
+
name = "paramiko"
|
| 602 |
+
version = "2.11.0"
|
| 603 |
+
description = "SSH2 protocol library"
|
| 604 |
+
category = "main"
|
| 605 |
+
optional = false
|
| 606 |
+
python-versions = "*"
|
| 607 |
+
|
| 608 |
+
[package.dependencies]
|
| 609 |
+
bcrypt = ">=3.1.3"
|
| 610 |
+
cryptography = ">=2.5"
|
| 611 |
+
pynacl = ">=1.0.1"
|
| 612 |
+
six = "*"
|
| 613 |
+
|
| 614 |
+
[package.extras]
|
| 615 |
+
all = ["pyasn1 (>=0.1.7)", "pynacl (>=1.0.1)", "bcrypt (>=3.1.3)", "invoke (>=1.3)", "gssapi (>=1.4.1)", "pywin32 (>=2.1.8)"]
|
| 616 |
+
ed25519 = ["pynacl (>=1.0.1)", "bcrypt (>=3.1.3)"]
|
| 617 |
+
gssapi = ["pyasn1 (>=0.1.7)", "gssapi (>=1.4.1)", "pywin32 (>=2.1.8)"]
|
| 618 |
+
invoke = ["invoke (>=1.3)"]
|
| 619 |
+
|
| 620 |
+
[[package]]
|
| 621 |
+
name = "pillow"
|
| 622 |
+
version = "9.2.0"
|
| 623 |
+
description = "Python Imaging Library (Fork)"
|
| 624 |
+
category = "main"
|
| 625 |
+
optional = false
|
| 626 |
+
python-versions = ">=3.7"
|
| 627 |
+
|
| 628 |
+
[package.extras]
|
| 629 |
+
docs = ["furo", "olefile", "sphinx (>=2.4)", "sphinx-copybutton", "sphinx-issues (>=3.0.1)", "sphinx-removed-in", "sphinxext-opengraph"]
|
| 630 |
+
tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"]
|
| 631 |
+
|
| 632 |
+
[[package]]
|
| 633 |
+
name = "pycparser"
|
| 634 |
+
version = "2.21"
|
| 635 |
+
description = "C parser in Python"
|
| 636 |
+
category = "main"
|
| 637 |
+
optional = false
|
| 638 |
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
| 639 |
+
|
| 640 |
+
[[package]]
|
| 641 |
+
name = "pycryptodome"
|
| 642 |
+
version = "3.15.0"
|
| 643 |
+
description = "Cryptographic library for Python"
|
| 644 |
+
category = "main"
|
| 645 |
+
optional = false
|
| 646 |
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
| 647 |
+
|
| 648 |
+
[[package]]
|
| 649 |
+
name = "pydantic"
|
| 650 |
+
version = "1.10.2"
|
| 651 |
+
description = "Data validation and settings management using python type hints"
|
| 652 |
+
category = "main"
|
| 653 |
+
optional = false
|
| 654 |
+
python-versions = ">=3.7"
|
| 655 |
+
|
| 656 |
+
[package.dependencies]
|
| 657 |
+
typing-extensions = ">=4.1.0"
|
| 658 |
+
|
| 659 |
+
[package.extras]
|
| 660 |
+
dotenv = ["python-dotenv (>=0.10.4)"]
|
| 661 |
+
email = ["email-validator (>=1.0.3)"]
|
| 662 |
+
|
| 663 |
+
[[package]]
|
| 664 |
+
name = "pydub"
|
| 665 |
+
version = "0.25.1"
|
| 666 |
+
description = "Manipulate audio with an simple and easy high level interface"
|
| 667 |
+
category = "main"
|
| 668 |
+
optional = false
|
| 669 |
+
python-versions = "*"
|
| 670 |
+
|
| 671 |
+
[[package]]
|
| 672 |
+
name = "pynacl"
|
| 673 |
+
version = "1.5.0"
|
| 674 |
+
description = "Python binding to the Networking and Cryptography (NaCl) library"
|
| 675 |
+
category = "main"
|
| 676 |
+
optional = false
|
| 677 |
+
python-versions = ">=3.6"
|
| 678 |
+
|
| 679 |
+
[package.dependencies]
|
| 680 |
+
cffi = ">=1.4.1"
|
| 681 |
+
|
| 682 |
+
[package.extras]
|
| 683 |
+
docs = ["sphinx (>=1.6.5)", "sphinx-rtd-theme"]
|
| 684 |
+
tests = ["pytest (>=3.2.1,!=3.3.0)", "hypothesis (>=3.27.0)"]
|
| 685 |
+
|
| 686 |
+
[[package]]
|
| 687 |
+
name = "pyparsing"
|
| 688 |
+
version = "3.0.9"
|
| 689 |
+
description = "pyparsing module - Classes and methods to define and execute parsing grammars"
|
| 690 |
+
category = "main"
|
| 691 |
+
optional = false
|
| 692 |
+
python-versions = ">=3.6.8"
|
| 693 |
+
|
| 694 |
+
[package.extras]
|
| 695 |
+
diagrams = ["railroad-diagrams", "jinja2"]
|
| 696 |
+
|
| 697 |
+
[[package]]
|
| 698 |
+
name = "python-dateutil"
|
| 699 |
+
version = "2.8.2"
|
| 700 |
+
description = "Extensions to the standard Python datetime module"
|
| 701 |
+
category = "main"
|
| 702 |
+
optional = false
|
| 703 |
+
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7"
|
| 704 |
+
|
| 705 |
+
[package.dependencies]
|
| 706 |
+
six = ">=1.5"
|
| 707 |
+
|
| 708 |
+
[[package]]
|
| 709 |
+
name = "python-multipart"
|
| 710 |
+
version = "0.0.5"
|
| 711 |
+
description = "A streaming multipart parser for Python"
|
| 712 |
+
category = "main"
|
| 713 |
+
optional = false
|
| 714 |
+
python-versions = "*"
|
| 715 |
+
|
| 716 |
+
[package.dependencies]
|
| 717 |
+
six = ">=1.4.0"
|
| 718 |
+
|
| 719 |
+
[[package]]
|
| 720 |
+
name = "pytz"
|
| 721 |
+
version = "2022.2.1"
|
| 722 |
+
description = "World timezone definitions, modern and historical"
|
| 723 |
+
category = "main"
|
| 724 |
+
optional = false
|
| 725 |
+
python-versions = "*"
|
| 726 |
+
|
| 727 |
+
[[package]]
|
| 728 |
+
name = "pyyaml"
|
| 729 |
+
version = "6.0"
|
| 730 |
+
description = "YAML parser and emitter for Python"
|
| 731 |
+
category = "main"
|
| 732 |
+
optional = false
|
| 733 |
+
python-versions = ">=3.6"
|
| 734 |
+
|
| 735 |
+
[[package]]
|
| 736 |
+
name = "regex"
|
| 737 |
+
version = "2022.9.13"
|
| 738 |
+
description = "Alternative regular expression module, to replace re."
|
| 739 |
+
category = "main"
|
| 740 |
+
optional = false
|
| 741 |
+
python-versions = ">=3.6"
|
| 742 |
+
|
| 743 |
+
[[package]]
|
| 744 |
+
name = "requests"
|
| 745 |
+
version = "2.28.1"
|
| 746 |
+
description = "Python HTTP for Humans."
|
| 747 |
+
category = "main"
|
| 748 |
+
optional = false
|
| 749 |
+
python-versions = ">=3.7, <4"
|
| 750 |
+
|
| 751 |
+
[package.dependencies]
|
| 752 |
+
certifi = ">=2017.4.17"
|
| 753 |
+
charset-normalizer = ">=2,<3"
|
| 754 |
+
idna = ">=2.5,<4"
|
| 755 |
+
urllib3 = ">=1.21.1,<1.27"
|
| 756 |
+
|
| 757 |
+
[package.extras]
|
| 758 |
+
socks = ["PySocks (>=1.5.6,!=1.5.7)"]
|
| 759 |
+
use_chardet_on_py3 = ["chardet (>=3.0.2,<6)"]
|
| 760 |
+
|
| 761 |
+
[[package]]
|
| 762 |
+
name = "rfc3986"
|
| 763 |
+
version = "1.5.0"
|
| 764 |
+
description = "Validating URI References per RFC 3986"
|
| 765 |
+
category = "main"
|
| 766 |
+
optional = false
|
| 767 |
+
python-versions = "*"
|
| 768 |
+
|
| 769 |
+
[package.dependencies]
|
| 770 |
+
idna = {version = "*", optional = true, markers = "extra == \"idna2008\""}
|
| 771 |
+
|
| 772 |
+
[package.extras]
|
| 773 |
+
idna2008 = ["idna"]
|
| 774 |
+
|
| 775 |
+
[[package]]
|
| 776 |
+
name = "setuptools-scm"
|
| 777 |
+
version = "7.0.5"
|
| 778 |
+
description = "the blessed package to manage your versions by scm tags"
|
| 779 |
+
category = "main"
|
| 780 |
+
optional = false
|
| 781 |
+
python-versions = ">=3.7"
|
| 782 |
+
|
| 783 |
+
[package.dependencies]
|
| 784 |
+
packaging = ">=20.0"
|
| 785 |
+
tomli = ">=1.0.0"
|
| 786 |
+
typing-extensions = "*"
|
| 787 |
+
|
| 788 |
+
[package.extras]
|
| 789 |
+
test = ["pytest (>=6.2)", "virtualenv (>20)"]
|
| 790 |
+
toml = ["setuptools (>=42)"]
|
| 791 |
+
|
| 792 |
+
[[package]]
|
| 793 |
+
name = "six"
|
| 794 |
+
version = "1.16.0"
|
| 795 |
+
description = "Python 2 and 3 compatibility utilities"
|
| 796 |
+
category = "main"
|
| 797 |
+
optional = false
|
| 798 |
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
|
| 799 |
+
|
| 800 |
+
[[package]]
|
| 801 |
+
name = "sniffio"
|
| 802 |
+
version = "1.3.0"
|
| 803 |
+
description = "Sniff out which async library your code is running under"
|
| 804 |
+
category = "main"
|
| 805 |
+
optional = false
|
| 806 |
+
python-versions = ">=3.7"
|
| 807 |
+
|
| 808 |
+
[[package]]
|
| 809 |
+
name = "starlette"
|
| 810 |
+
version = "0.20.4"
|
| 811 |
+
description = "The little ASGI library that shines."
|
| 812 |
+
category = "main"
|
| 813 |
+
optional = false
|
| 814 |
+
python-versions = ">=3.7"
|
| 815 |
+
|
| 816 |
+
[package.dependencies]
|
| 817 |
+
anyio = ">=3.4.0,<5"
|
| 818 |
+
typing-extensions = {version = ">=3.10.0", markers = "python_version < \"3.10\""}
|
| 819 |
+
|
| 820 |
+
[package.extras]
|
| 821 |
+
full = ["itsdangerous", "jinja2", "python-multipart", "pyyaml", "requests"]
|
| 822 |
+
|
| 823 |
+
[[package]]
|
| 824 |
+
name = "tokenizers"
|
| 825 |
+
version = "0.12.1"
|
| 826 |
+
description = "Fast and Customizable Tokenizers"
|
| 827 |
+
category = "main"
|
| 828 |
+
optional = false
|
| 829 |
+
python-versions = "*"
|
| 830 |
+
|
| 831 |
+
[package.extras]
|
| 832 |
+
docs = ["sphinx", "sphinx-rtd-theme", "setuptools-rust"]
|
| 833 |
+
testing = ["pytest", "requests", "numpy", "datasets"]
|
| 834 |
+
|
| 835 |
+
[[package]]
|
| 836 |
+
name = "tomli"
|
| 837 |
+
version = "2.0.1"
|
| 838 |
+
description = "A lil' TOML parser"
|
| 839 |
+
category = "main"
|
| 840 |
+
optional = false
|
| 841 |
+
python-versions = ">=3.7"
|
| 842 |
+
|
| 843 |
+
[[package]]
|
| 844 |
+
name = "torch"
|
| 845 |
+
version = "1.12.1"
|
| 846 |
+
description = "Tensors and Dynamic neural networks in Python with strong GPU acceleration"
|
| 847 |
+
category = "main"
|
| 848 |
+
optional = false
|
| 849 |
+
python-versions = ">=3.7.0"
|
| 850 |
+
|
| 851 |
+
[package.dependencies]
|
| 852 |
+
typing-extensions = "*"
|
| 853 |
+
|
| 854 |
+
[[package]]
|
| 855 |
+
name = "tqdm"
|
| 856 |
+
version = "4.64.1"
|
| 857 |
+
description = "Fast, Extensible Progress Meter"
|
| 858 |
+
category = "main"
|
| 859 |
+
optional = false
|
| 860 |
+
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7"
|
| 861 |
+
|
| 862 |
+
[package.dependencies]
|
| 863 |
+
colorama = {version = "*", markers = "platform_system == \"Windows\""}
|
| 864 |
+
|
| 865 |
+
[package.extras]
|
| 866 |
+
dev = ["py-make (>=0.1.0)", "twine", "wheel"]
|
| 867 |
+
notebook = ["ipywidgets (>=6)"]
|
| 868 |
+
slack = ["slack-sdk"]
|
| 869 |
+
telegram = ["requests"]
|
| 870 |
+
|
| 871 |
+
[[package]]
|
| 872 |
+
name = "transformers"
|
| 873 |
+
version = "4.22.1"
|
| 874 |
+
description = "State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow"
|
| 875 |
+
category = "main"
|
| 876 |
+
optional = false
|
| 877 |
+
python-versions = ">=3.7.0"
|
| 878 |
+
|
| 879 |
+
[package.dependencies]
|
| 880 |
+
filelock = "*"
|
| 881 |
+
huggingface-hub = ">=0.9.0,<1.0"
|
| 882 |
+
numpy = ">=1.17"
|
| 883 |
+
packaging = ">=20.0"
|
| 884 |
+
pyyaml = ">=5.1"
|
| 885 |
+
regex = "!=2019.12.17"
|
| 886 |
+
requests = "*"
|
| 887 |
+
tokenizers = ">=0.11.1,<0.11.3 || >0.11.3,<0.13"
|
| 888 |
+
tqdm = ">=4.27"
|
| 889 |
+
|
| 890 |
+
[package.extras]
|
| 891 |
+
accelerate = ["accelerate (>=0.10.0)"]
|
| 892 |
+
all = ["tensorflow (>=2.3)", "onnxconverter-common", "tf2onnx", "tensorflow-text", "torch (>=1.0)", "jax (>=0.2.8,!=0.3.2,<=0.3.6)", "jaxlib (>=0.1.65,<=0.3.6)", "flax (>=0.4.1)", "optax (>=0.0.8)", "sentencepiece (>=0.1.91,!=0.1.92)", "protobuf (<=3.20.1)", "tokenizers (>=0.11.1,!=0.11.3,<0.13)", "torchaudio", "librosa", "pyctcdecode (>=0.3.0)", "phonemizer", "pillow", "optuna", "ray", "sigopt", "timm", "codecarbon (==1.2.0)", "accelerate (>=0.10.0)"]
|
| 893 |
+
audio = ["librosa", "pyctcdecode (>=0.3.0)", "phonemizer"]
|
| 894 |
+
codecarbon = ["codecarbon (==1.2.0)"]
|
| 895 |
+
deepspeed = ["deepspeed (>=0.6.5)", "accelerate (>=0.10.0)"]
|
| 896 |
+
deepspeed-testing = ["deepspeed (>=0.6.5)", "accelerate (>=0.10.0)", "pytest", "pytest-xdist", "timeout-decorator", "parameterized", "psutil", "datasets", "dill (<0.3.5)", "evaluate (>=0.2.0)", "pytest-timeout", "black (==22.3)", "sacrebleu (>=1.4.12,<2.0.0)", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "nltk", "GitPython (<3.1.19)", "hf-doc-builder (>=0.3.0)", "protobuf (<=3.20.1)", "sacremoses", "rjieba", "faiss-cpu", "cookiecutter (==1.7.3)", "optuna"]
|
| 897 |
+
dev = ["tensorflow (>=2.3)", "onnxconverter-common", "tf2onnx", "tensorflow-text", "torch (>=1.0)", "jax (>=0.2.8,!=0.3.2,<=0.3.6)", "jaxlib (>=0.1.65,<=0.3.6)", "flax (>=0.4.1)", "optax (>=0.0.8)", "sentencepiece (>=0.1.91,!=0.1.92)", "protobuf (<=3.20.1)", "tokenizers (>=0.11.1,!=0.11.3,<0.13)", "torchaudio", "librosa", "pyctcdecode (>=0.3.0)", "phonemizer", "pillow", "optuna", "ray", "sigopt", "timm", "codecarbon (==1.2.0)", "accelerate (>=0.10.0)", "pytest", "pytest-xdist", "timeout-decorator", "parameterized", "psutil", "datasets", "dill (<0.3.5)", "evaluate (>=0.2.0)", "pytest-timeout", "black (==22.3)", "sacrebleu (>=1.4.12,<2.0.0)", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "nltk", "GitPython (<3.1.19)", "hf-doc-builder (>=0.3.0)", "sacremoses", "rjieba", "faiss-cpu", "cookiecutter (==1.7.3)", "isort (>=5.5.4)", "flake8 (>=3.8.3)", "fugashi (>=1.0)", "ipadic (>=1.0.0,<2.0)", "unidic-lite (>=1.0.7)", "unidic (>=1.0.2)", "hf-doc-builder", "scikit-learn"]
|
| 898 |
+
dev-tensorflow = ["pytest", "pytest-xdist", "timeout-decorator", "parameterized", "psutil", "datasets", "dill (<0.3.5)", "evaluate (>=0.2.0)", "pytest-timeout", "black (==22.3)", "sacrebleu (>=1.4.12,<2.0.0)", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "nltk", "GitPython (<3.1.19)", "hf-doc-builder (>=0.3.0)", "protobuf (<=3.20.1)", "sacremoses", "rjieba", "faiss-cpu", "cookiecutter (==1.7.3)", "tensorflow (>=2.3)", "onnxconverter-common", "tf2onnx", "tensorflow-text", "sentencepiece (>=0.1.91,!=0.1.92)", "tokenizers (>=0.11.1,!=0.11.3,<0.13)", "pillow", "isort (>=5.5.4)", "flake8 (>=3.8.3)", "hf-doc-builder", "scikit-learn", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)", "librosa", "pyctcdecode (>=0.3.0)", "phonemizer"]
|
| 899 |
+
dev-torch = ["pytest", "pytest-xdist", "timeout-decorator", "parameterized", "psutil", "datasets", "dill (<0.3.5)", "evaluate (>=0.2.0)", "pytest-timeout", "black (==22.3)", "sacrebleu (>=1.4.12,<2.0.0)", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "nltk", "GitPython (<3.1.19)", "hf-doc-builder (>=0.3.0)", "protobuf (<=3.20.1)", "sacremoses", "rjieba", "faiss-cpu", "cookiecutter (==1.7.3)", "torch (>=1.0)", "sentencepiece (>=0.1.91,!=0.1.92)", "tokenizers (>=0.11.1,!=0.11.3,<0.13)", "torchaudio", "librosa", "pyctcdecode (>=0.3.0)", "phonemizer", "pillow", "optuna", "ray", "sigopt", "timm", "codecarbon (==1.2.0)", "isort (>=5.5.4)", "flake8 (>=3.8.3)", "fugashi (>=1.0)", "ipadic (>=1.0.0,<2.0)", "unidic-lite (>=1.0.7)", "unidic (>=1.0.2)", "hf-doc-builder", "scikit-learn", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)"]
|
| 900 |
+
docs = ["tensorflow (>=2.3)", "onnxconverter-common", "tf2onnx", "tensorflow-text", "torch (>=1.0)", "jax (>=0.2.8,!=0.3.2,<=0.3.6)", "jaxlib (>=0.1.65,<=0.3.6)", "flax (>=0.4.1)", "optax (>=0.0.8)", "sentencepiece (>=0.1.91,!=0.1.92)", "protobuf (<=3.20.1)", "tokenizers (>=0.11.1,!=0.11.3,<0.13)", "torchaudio", "librosa", "pyctcdecode (>=0.3.0)", "phonemizer", "pillow", "optuna", "ray", "sigopt", "timm", "codecarbon (==1.2.0)", "accelerate (>=0.10.0)", "hf-doc-builder"]
|
| 901 |
+
docs_specific = ["hf-doc-builder"]
|
| 902 |
+
fairscale = ["fairscale (>0.3)"]
|
| 903 |
+
flax = ["jax (>=0.2.8,!=0.3.2,<=0.3.6)", "jaxlib (>=0.1.65,<=0.3.6)", "flax (>=0.4.1)", "optax (>=0.0.8)"]
|
| 904 |
+
flax-speech = ["librosa", "pyctcdecode (>=0.3.0)", "phonemizer"]
|
| 905 |
+
ftfy = ["ftfy"]
|
| 906 |
+
integrations = ["optuna", "ray", "sigopt"]
|
| 907 |
+
ja = ["fugashi (>=1.0)", "ipadic (>=1.0.0,<2.0)", "unidic-lite (>=1.0.7)", "unidic (>=1.0.2)"]
|
| 908 |
+
modelcreation = ["cookiecutter (==1.7.3)"]
|
| 909 |
+
onnx = ["onnxconverter-common", "tf2onnx", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)"]
|
| 910 |
+
onnxruntime = ["onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)"]
|
| 911 |
+
optuna = ["optuna"]
|
| 912 |
+
quality = ["black (==22.3)", "isort (>=5.5.4)", "flake8 (>=3.8.3)", "GitPython (<3.1.19)", "hf-doc-builder (>=0.3.0)"]
|
| 913 |
+
ray = ["ray"]
|
| 914 |
+
retrieval = ["faiss-cpu", "datasets"]
|
| 915 |
+
sagemaker = ["sagemaker (>=2.31.0)"]
|
| 916 |
+
sentencepiece = ["sentencepiece (>=0.1.91,!=0.1.92)", "protobuf (<=3.20.1)"]
|
| 917 |
+
serving = ["pydantic", "uvicorn", "fastapi", "starlette"]
|
| 918 |
+
sigopt = ["sigopt"]
|
| 919 |
+
sklearn = ["scikit-learn"]
|
| 920 |
+
speech = ["torchaudio", "librosa", "pyctcdecode (>=0.3.0)", "phonemizer"]
|
| 921 |
+
testing = ["pytest", "pytest-xdist", "timeout-decorator", "parameterized", "psutil", "datasets", "dill (<0.3.5)", "evaluate (>=0.2.0)", "pytest-timeout", "black (==22.3)", "sacrebleu (>=1.4.12,<2.0.0)", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "nltk", "GitPython (<3.1.19)", "hf-doc-builder (>=0.3.0)", "protobuf (<=3.20.1)", "sacremoses", "rjieba", "faiss-cpu", "cookiecutter (==1.7.3)"]
|
| 922 |
+
tf = ["tensorflow (>=2.3)", "onnxconverter-common", "tf2onnx", "tensorflow-text"]
|
| 923 |
+
tf-cpu = ["tensorflow-cpu (>=2.3)", "onnxconverter-common", "tf2onnx", "tensorflow-text"]
|
| 924 |
+
tf-speech = ["librosa", "pyctcdecode (>=0.3.0)", "phonemizer"]
|
| 925 |
+
timm = ["timm"]
|
| 926 |
+
tokenizers = ["tokenizers (>=0.11.1,!=0.11.3,<0.13)"]
|
| 927 |
+
torch = ["torch (>=1.0)"]
|
| 928 |
+
torch-speech = ["torchaudio", "librosa", "pyctcdecode (>=0.3.0)", "phonemizer"]
|
| 929 |
+
torchhub = ["filelock", "huggingface-hub (>=0.9.0,<1.0)", "importlib-metadata", "numpy (>=1.17)", "packaging (>=20.0)", "protobuf (<=3.20.1)", "regex (!=2019.12.17)", "requests", "sentencepiece (>=0.1.91,!=0.1.92)", "torch (>=1.0)", "tokenizers (>=0.11.1,!=0.11.3,<0.13)", "tqdm (>=4.27)"]
|
| 930 |
+
vision = ["pillow"]
|
| 931 |
+
|
| 932 |
+
[[package]]
|
| 933 |
+
name = "typing-extensions"
|
| 934 |
+
version = "4.3.0"
|
| 935 |
+
description = "Backported and Experimental Type Hints for Python 3.7+"
|
| 936 |
+
category = "main"
|
| 937 |
+
optional = false
|
| 938 |
+
python-versions = ">=3.7"
|
| 939 |
+
|
| 940 |
+
[[package]]
|
| 941 |
+
name = "uc-micro-py"
|
| 942 |
+
version = "1.0.1"
|
| 943 |
+
description = "Micro subset of unicode data files for linkify-it-py projects."
|
| 944 |
+
category = "main"
|
| 945 |
+
optional = false
|
| 946 |
+
python-versions = ">=3.6"
|
| 947 |
+
|
| 948 |
+
[package.extras]
|
| 949 |
+
test = ["pytest-cov", "pytest", "coverage"]
|
| 950 |
+
|
| 951 |
+
[[package]]
|
| 952 |
+
name = "urllib3"
|
| 953 |
+
version = "1.26.12"
|
| 954 |
+
description = "HTTP library with thread-safe connection pooling, file post, and more."
|
| 955 |
+
category = "main"
|
| 956 |
+
optional = false
|
| 957 |
+
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4"
|
| 958 |
+
|
| 959 |
+
[package.extras]
|
| 960 |
+
brotli = ["brotlicffi (>=0.8.0)", "brotli (>=1.0.9)", "brotlipy (>=0.6.0)"]
|
| 961 |
+
secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "urllib3-secure-extra", "ipaddress"]
|
| 962 |
+
socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"]
|
| 963 |
+
|
| 964 |
+
[[package]]
|
| 965 |
+
name = "uvicorn"
|
| 966 |
+
version = "0.18.3"
|
| 967 |
+
description = "The lightning-fast ASGI server."
|
| 968 |
+
category = "main"
|
| 969 |
+
optional = false
|
| 970 |
+
python-versions = ">=3.7"
|
| 971 |
+
|
| 972 |
+
[package.dependencies]
|
| 973 |
+
click = ">=7.0"
|
| 974 |
+
h11 = ">=0.8"
|
| 975 |
+
|
| 976 |
+
[package.extras]
|
| 977 |
+
standard = ["colorama (>=0.4)", "httptools (>=0.4.0)", "python-dotenv (>=0.13)", "pyyaml (>=5.1)", "uvloop (>=0.14.0,!=0.15.0,!=0.15.1)", "watchfiles (>=0.13)", "websockets (>=10.0)"]
|
| 978 |
+
|
| 979 |
+
[[package]]
|
| 980 |
+
name = "websockets"
|
| 981 |
+
version = "10.3"
|
| 982 |
+
description = "An implementation of the WebSocket Protocol (RFC 6455 & 7692)"
|
| 983 |
+
category = "main"
|
| 984 |
+
optional = false
|
| 985 |
+
python-versions = ">=3.7"
|
| 986 |
+
|
| 987 |
+
[[package]]
|
| 988 |
+
name = "yarl"
|
| 989 |
+
version = "1.8.1"
|
| 990 |
+
description = "Yet another URL library"
|
| 991 |
+
category = "main"
|
| 992 |
+
optional = false
|
| 993 |
+
python-versions = ">=3.7"
|
| 994 |
+
|
| 995 |
+
[package.dependencies]
|
| 996 |
+
idna = ">=2.0"
|
| 997 |
+
multidict = ">=4.0"
|
| 998 |
+
|
| 999 |
+
[metadata]
|
| 1000 |
+
lock-version = "1.1"
|
| 1001 |
+
python-versions = "^3.9"
|
| 1002 |
+
content-hash = "5bc12d64b69b9c1f0f68ae6858e97ba26663256bae5a9172c0f5bb69402f6c62"
|
| 1003 |
+
|
| 1004 |
+
[metadata.files]
|
| 1005 |
+
aiohttp = [
|
| 1006 |
+
{file = "aiohttp-3.8.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:1ed0b6477896559f17b9eaeb6d38e07f7f9ffe40b9f0f9627ae8b9926ae260a8"},
|
| 1007 |
+
{file = "aiohttp-3.8.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7dadf3c307b31e0e61689cbf9e06be7a867c563d5a63ce9dca578f956609abf8"},
|
| 1008 |
+
{file = "aiohttp-3.8.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a79004bb58748f31ae1cbe9fa891054baaa46fb106c2dc7af9f8e3304dc30316"},
|
| 1009 |
+
{file = "aiohttp-3.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:12de6add4038df8f72fac606dff775791a60f113a725c960f2bab01d8b8e6b15"},
|
| 1010 |
+
{file = "aiohttp-3.8.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6f0d5f33feb5f69ddd57a4a4bd3d56c719a141080b445cbf18f238973c5c9923"},
|
| 1011 |
+
{file = "aiohttp-3.8.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:eaba923151d9deea315be1f3e2b31cc39a6d1d2f682f942905951f4e40200922"},
|
| 1012 |
+
{file = "aiohttp-3.8.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:099ebd2c37ac74cce10a3527d2b49af80243e2a4fa39e7bce41617fbc35fa3c1"},
|
| 1013 |
+
{file = "aiohttp-3.8.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:2e5d962cf7e1d426aa0e528a7e198658cdc8aa4fe87f781d039ad75dcd52c516"},
|
| 1014 |
+
{file = "aiohttp-3.8.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:fa0ffcace9b3aa34d205d8130f7873fcfefcb6a4dd3dd705b0dab69af6712642"},
|
| 1015 |
+
{file = "aiohttp-3.8.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:61bfc23df345d8c9716d03717c2ed5e27374e0fe6f659ea64edcd27b4b044cf7"},
|
| 1016 |
+
{file = "aiohttp-3.8.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:31560d268ff62143e92423ef183680b9829b1b482c011713ae941997921eebc8"},
|
| 1017 |
+
{file = "aiohttp-3.8.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:01d7bdb774a9acc838e6b8f1d114f45303841b89b95984cbb7d80ea41172a9e3"},
|
| 1018 |
+
{file = "aiohttp-3.8.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:97ef77eb6b044134c0b3a96e16abcb05ecce892965a2124c566af0fd60f717e2"},
|
| 1019 |
+
{file = "aiohttp-3.8.1-cp310-cp310-win32.whl", hash = "sha256:c2aef4703f1f2ddc6df17519885dbfa3514929149d3ff900b73f45998f2532fa"},
|
| 1020 |
+
{file = "aiohttp-3.8.1-cp310-cp310-win_amd64.whl", hash = "sha256:713ac174a629d39b7c6a3aa757b337599798da4c1157114a314e4e391cd28e32"},
|
| 1021 |
+
{file = "aiohttp-3.8.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:473d93d4450880fe278696549f2e7aed8cd23708c3c1997981464475f32137db"},
|
| 1022 |
+
{file = "aiohttp-3.8.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99b5eeae8e019e7aad8af8bb314fb908dd2e028b3cdaad87ec05095394cce632"},
|
| 1023 |
+
{file = "aiohttp-3.8.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3af642b43ce56c24d063325dd2cf20ee012d2b9ba4c3c008755a301aaea720ad"},
|
| 1024 |
+
{file = "aiohttp-3.8.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3630c3ef435c0a7c549ba170a0633a56e92629aeed0e707fec832dee313fb7a"},
|
| 1025 |
+
{file = "aiohttp-3.8.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:4a4a4e30bf1edcad13fb0804300557aedd07a92cabc74382fdd0ba6ca2661091"},
|
| 1026 |
+
{file = "aiohttp-3.8.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6f8b01295e26c68b3a1b90efb7a89029110d3a4139270b24fda961893216c440"},
|
| 1027 |
+
{file = "aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:a25fa703a527158aaf10dafd956f7d42ac6d30ec80e9a70846253dd13e2f067b"},
|
| 1028 |
+
{file = "aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:5bfde62d1d2641a1f5173b8c8c2d96ceb4854f54a44c23102e2ccc7e02f003ec"},
|
| 1029 |
+
{file = "aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:51467000f3647d519272392f484126aa716f747859794ac9924a7aafa86cd411"},
|
| 1030 |
+
{file = "aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:03a6d5349c9ee8f79ab3ff3694d6ce1cfc3ced1c9d36200cb8f08ba06bd3b782"},
|
| 1031 |
+
{file = "aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:102e487eeb82afac440581e5d7f8f44560b36cf0bdd11abc51a46c1cd88914d4"},
|
| 1032 |
+
{file = "aiohttp-3.8.1-cp36-cp36m-win32.whl", hash = "sha256:4aed991a28ea3ce320dc8ce655875e1e00a11bdd29fe9444dd4f88c30d558602"},
|
| 1033 |
+
{file = "aiohttp-3.8.1-cp36-cp36m-win_amd64.whl", hash = "sha256:b0e20cddbd676ab8a64c774fefa0ad787cc506afd844de95da56060348021e96"},
|
| 1034 |
+
{file = "aiohttp-3.8.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:37951ad2f4a6df6506750a23f7cbabad24c73c65f23f72e95897bb2cecbae676"},
|
| 1035 |
+
{file = "aiohttp-3.8.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c23b1ad869653bc818e972b7a3a79852d0e494e9ab7e1a701a3decc49c20d51"},
|
| 1036 |
+
{file = "aiohttp-3.8.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:15b09b06dae900777833fe7fc4b4aa426556ce95847a3e8d7548e2d19e34edb8"},
|
| 1037 |
+
{file = "aiohttp-3.8.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:477c3ea0ba410b2b56b7efb072c36fa91b1e6fc331761798fa3f28bb224830dd"},
|
| 1038 |
+
{file = "aiohttp-3.8.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:2f2f69dca064926e79997f45b2f34e202b320fd3782f17a91941f7eb85502ee2"},
|
| 1039 |
+
{file = "aiohttp-3.8.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ef9612483cb35171d51d9173647eed5d0069eaa2ee812793a75373447d487aa4"},
|
| 1040 |
+
{file = "aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:6d69f36d445c45cda7b3b26afef2fc34ef5ac0cdc75584a87ef307ee3c8c6d00"},
|
| 1041 |
+
{file = "aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:55c3d1072704d27401c92339144d199d9de7b52627f724a949fc7d5fc56d8b93"},
|
| 1042 |
+
{file = "aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:b9d00268fcb9f66fbcc7cd9fe423741d90c75ee029a1d15c09b22d23253c0a44"},
|
| 1043 |
+
{file = "aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:07b05cd3305e8a73112103c834e91cd27ce5b4bd07850c4b4dbd1877d3f45be7"},
|
| 1044 |
+
{file = "aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:c34dc4958b232ef6188c4318cb7b2c2d80521c9a56c52449f8f93ab7bc2a8a1c"},
|
| 1045 |
+
{file = "aiohttp-3.8.1-cp37-cp37m-win32.whl", hash = "sha256:d2f9b69293c33aaa53d923032fe227feac867f81682f002ce33ffae978f0a9a9"},
|
| 1046 |
+
{file = "aiohttp-3.8.1-cp37-cp37m-win_amd64.whl", hash = "sha256:6ae828d3a003f03ae31915c31fa684b9890ea44c9c989056fea96e3d12a9fa17"},
|
| 1047 |
+
{file = "aiohttp-3.8.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:0c7ebbbde809ff4e970824b2b6cb7e4222be6b95a296e46c03cf050878fc1785"},
|
| 1048 |
+
{file = "aiohttp-3.8.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8b7ef7cbd4fec9a1e811a5de813311ed4f7ac7d93e0fda233c9b3e1428f7dd7b"},
|
| 1049 |
+
{file = "aiohttp-3.8.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c3d6a4d0619e09dcd61021debf7059955c2004fa29f48788a3dfaf9c9901a7cd"},
|
| 1050 |
+
{file = "aiohttp-3.8.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:718626a174e7e467f0558954f94af117b7d4695d48eb980146016afa4b580b2e"},
|
| 1051 |
+
{file = "aiohttp-3.8.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:589c72667a5febd36f1315aa6e5f56dd4aa4862df295cb51c769d16142ddd7cd"},
|
| 1052 |
+
{file = "aiohttp-3.8.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2ed076098b171573161eb146afcb9129b5ff63308960aeca4b676d9d3c35e700"},
|
| 1053 |
+
{file = "aiohttp-3.8.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:086f92daf51a032d062ec5f58af5ca6a44d082c35299c96376a41cbb33034675"},
|
| 1054 |
+
{file = "aiohttp-3.8.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:11691cf4dc5b94236ccc609b70fec991234e7ef8d4c02dd0c9668d1e486f5abf"},
|
| 1055 |
+
{file = "aiohttp-3.8.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:31d1e1c0dbf19ebccbfd62eff461518dcb1e307b195e93bba60c965a4dcf1ba0"},
|
| 1056 |
+
{file = "aiohttp-3.8.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:11a67c0d562e07067c4e86bffc1553f2cf5b664d6111c894671b2b8712f3aba5"},
|
| 1057 |
+
{file = "aiohttp-3.8.1-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:bb01ba6b0d3f6c68b89fce7305080145d4877ad3acaed424bae4d4ee75faa950"},
|
| 1058 |
+
{file = "aiohttp-3.8.1-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:44db35a9e15d6fe5c40d74952e803b1d96e964f683b5a78c3cc64eb177878155"},
|
| 1059 |
+
{file = "aiohttp-3.8.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:844a9b460871ee0a0b0b68a64890dae9c415e513db0f4a7e3cab41a0f2fedf33"},
|
| 1060 |
+
{file = "aiohttp-3.8.1-cp38-cp38-win32.whl", hash = "sha256:7d08744e9bae2ca9c382581f7dce1273fe3c9bae94ff572c3626e8da5b193c6a"},
|
| 1061 |
+
{file = "aiohttp-3.8.1-cp38-cp38-win_amd64.whl", hash = "sha256:04d48b8ce6ab3cf2097b1855e1505181bdd05586ca275f2505514a6e274e8e75"},
|
| 1062 |
+
{file = "aiohttp-3.8.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:f5315a2eb0239185af1bddb1abf472d877fede3cc8d143c6cddad37678293237"},
|
| 1063 |
+
{file = "aiohttp-3.8.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a996d01ca39b8dfe77440f3cd600825d05841088fd6bc0144cc6c2ec14cc5f74"},
|
| 1064 |
+
{file = "aiohttp-3.8.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:13487abd2f761d4be7c8ff9080de2671e53fff69711d46de703c310c4c9317ca"},
|
| 1065 |
+
{file = "aiohttp-3.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea302f34477fda3f85560a06d9ebdc7fa41e82420e892fc50b577e35fc6a50b2"},
|
| 1066 |
+
{file = "aiohttp-3.8.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a2f635ce61a89c5732537a7896b6319a8fcfa23ba09bec36e1b1ac0ab31270d2"},
|
| 1067 |
+
{file = "aiohttp-3.8.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e999f2d0e12eea01caeecb17b653f3713d758f6dcc770417cf29ef08d3931421"},
|
| 1068 |
+
{file = "aiohttp-3.8.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:0770e2806a30e744b4e21c9d73b7bee18a1cfa3c47991ee2e5a65b887c49d5cf"},
|
| 1069 |
+
{file = "aiohttp-3.8.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:d15367ce87c8e9e09b0f989bfd72dc641bcd04ba091c68cd305312d00962addd"},
|
| 1070 |
+
{file = "aiohttp-3.8.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:6c7cefb4b0640703eb1069835c02486669312bf2f12b48a748e0a7756d0de33d"},
|
| 1071 |
+
{file = "aiohttp-3.8.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:71927042ed6365a09a98a6377501af5c9f0a4d38083652bcd2281a06a5976724"},
|
| 1072 |
+
{file = "aiohttp-3.8.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:28d490af82bc6b7ce53ff31337a18a10498303fe66f701ab65ef27e143c3b0ef"},
|
| 1073 |
+
{file = "aiohttp-3.8.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:b6613280ccedf24354406caf785db748bebbddcf31408b20c0b48cb86af76866"},
|
| 1074 |
+
{file = "aiohttp-3.8.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:81e3d8c34c623ca4e36c46524a3530e99c0bc95ed068fd6e9b55cb721d408fb2"},
|
| 1075 |
+
{file = "aiohttp-3.8.1-cp39-cp39-win32.whl", hash = "sha256:7187a76598bdb895af0adbd2fb7474d7f6025d170bc0a1130242da817ce9e7d1"},
|
| 1076 |
+
{file = "aiohttp-3.8.1-cp39-cp39-win_amd64.whl", hash = "sha256:1c182cb873bc91b411e184dab7a2b664d4fea2743df0e4d57402f7f3fa644bac"},
|
| 1077 |
+
{file = "aiohttp-3.8.1.tar.gz", hash = "sha256:fc5471e1a54de15ef71c1bc6ebe80d4dc681ea600e68bfd1cbce40427f0b7578"},
|
| 1078 |
+
]
|
| 1079 |
+
aiosignal = [
|
| 1080 |
+
{file = "aiosignal-1.2.0-py3-none-any.whl", hash = "sha256:26e62109036cd181df6e6ad646f91f0dcfd05fe16d0cb924138ff2ab75d64e3a"},
|
| 1081 |
+
{file = "aiosignal-1.2.0.tar.gz", hash = "sha256:78ed67db6c7b7ced4f98e495e572106d5c432a93e1ddd1bf475e1dc05f5b7df2"},
|
| 1082 |
+
]
|
| 1083 |
+
analytics-python = []
|
| 1084 |
+
anyio = [
|
| 1085 |
+
{file = "anyio-3.6.1-py3-none-any.whl", hash = "sha256:cb29b9c70620506a9a8f87a309591713446953302d7d995344d0d7c6c0c9a7be"},
|
| 1086 |
+
{file = "anyio-3.6.1.tar.gz", hash = "sha256:413adf95f93886e442aea925f3ee43baa5a765a64a0f52c6081894f9992fdd0b"},
|
| 1087 |
+
]
|
| 1088 |
+
async-timeout = [
|
| 1089 |
+
{file = "async-timeout-4.0.2.tar.gz", hash = "sha256:2163e1640ddb52b7a8c80d0a67a08587e5d245cc9c553a74a847056bc2976b15"},
|
| 1090 |
+
{file = "async_timeout-4.0.2-py3-none-any.whl", hash = "sha256:8ca1e4fcf50d07413d66d1a5e416e42cfdf5851c981d679a09851a6853383b3c"},
|
| 1091 |
+
]
|
| 1092 |
+
attrs = []
|
| 1093 |
+
backoff = []
|
| 1094 |
+
bcrypt = []
|
| 1095 |
+
certifi = []
|
| 1096 |
+
cffi = []
|
| 1097 |
+
charset-normalizer = []
|
| 1098 |
+
click = [
|
| 1099 |
+
{file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"},
|
| 1100 |
+
{file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"},
|
| 1101 |
+
]
|
| 1102 |
+
colorama = []
|
| 1103 |
+
contourpy = []
|
| 1104 |
+
cryptography = []
|
| 1105 |
+
cycler = [
|
| 1106 |
+
{file = "cycler-0.11.0-py3-none-any.whl", hash = "sha256:3a27e95f763a428a739d2add979fa7494c912a32c17c4c38c4d5f082cad165a3"},
|
| 1107 |
+
{file = "cycler-0.11.0.tar.gz", hash = "sha256:9c87405839a19696e837b3b818fed3f5f69f16f1eec1a1ad77e043dcea9c772f"},
|
| 1108 |
+
]
|
| 1109 |
+
fastapi = []
|
| 1110 |
+
ffmpy = []
|
| 1111 |
+
filelock = []
|
| 1112 |
+
fonttools = []
|
| 1113 |
+
frozenlist = []
|
| 1114 |
+
fsspec = []
|
| 1115 |
+
gradio = []
|
| 1116 |
+
h11 = []
|
| 1117 |
+
httpcore = []
|
| 1118 |
+
httpx = []
|
| 1119 |
+
huggingface-hub = []
|
| 1120 |
+
idna = []
|
| 1121 |
+
jinja2 = []
|
| 1122 |
+
kiwisolver = []
|
| 1123 |
+
linkify-it-py = []
|
| 1124 |
+
markdown-it-py = []
|
| 1125 |
+
markupsafe = [
|
| 1126 |
+
{file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:86b1f75c4e7c2ac2ccdaec2b9022845dbb81880ca318bb7a0a01fbf7813e3812"},
|
| 1127 |
+
{file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f121a1420d4e173a5d96e47e9a0c0dcff965afdf1626d28de1460815f7c4ee7a"},
|
| 1128 |
+
{file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a49907dd8420c5685cfa064a1335b6754b74541bbb3706c259c02ed65b644b3e"},
|
| 1129 |
+
{file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10c1bfff05d95783da83491be968e8fe789263689c02724e0c691933c52994f5"},
|
| 1130 |
+
{file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b7bd98b796e2b6553da7225aeb61f447f80a1ca64f41d83612e6139ca5213aa4"},
|
| 1131 |
+
{file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b09bf97215625a311f669476f44b8b318b075847b49316d3e28c08e41a7a573f"},
|
| 1132 |
+
{file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:694deca8d702d5db21ec83983ce0bb4b26a578e71fbdbd4fdcd387daa90e4d5e"},
|
| 1133 |
+
{file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:efc1913fd2ca4f334418481c7e595c00aad186563bbc1ec76067848c7ca0a933"},
|
| 1134 |
+
{file = "MarkupSafe-2.1.1-cp310-cp310-win32.whl", hash = "sha256:4a33dea2b688b3190ee12bd7cfa29d39c9ed176bda40bfa11099a3ce5d3a7ac6"},
|
| 1135 |
+
{file = "MarkupSafe-2.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:dda30ba7e87fbbb7eab1ec9f58678558fd9a6b8b853530e176eabd064da81417"},
|
| 1136 |
+
{file = "MarkupSafe-2.1.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:671cd1187ed5e62818414afe79ed29da836dde67166a9fac6d435873c44fdd02"},
|
| 1137 |
+
{file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3799351e2336dc91ea70b034983ee71cf2f9533cdff7c14c90ea126bfd95d65a"},
|
| 1138 |
+
{file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591e9ecd94d7feb70c1cbd7be7b3ebea3f548870aa91e2732960fa4d57a37"},
|
| 1139 |
+
{file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6fbf47b5d3728c6aea2abb0589b5d30459e369baa772e0f37a0320185e87c980"},
|
| 1140 |
+
{file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d5ee4f386140395a2c818d149221149c54849dfcfcb9f1debfe07a8b8bd63f9a"},
|
| 1141 |
+
{file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:bcb3ed405ed3222f9904899563d6fc492ff75cce56cba05e32eff40e6acbeaa3"},
|
| 1142 |
+
{file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e1c0b87e09fa55a220f058d1d49d3fb8df88fbfab58558f1198e08c1e1de842a"},
|
| 1143 |
+
{file = "MarkupSafe-2.1.1-cp37-cp37m-win32.whl", hash = "sha256:8dc1c72a69aa7e082593c4a203dcf94ddb74bb5c8a731e4e1eb68d031e8498ff"},
|
| 1144 |
+
{file = "MarkupSafe-2.1.1-cp37-cp37m-win_amd64.whl", hash = "sha256:97a68e6ada378df82bc9f16b800ab77cbf4b2fada0081794318520138c088e4a"},
|
| 1145 |
+
{file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e8c843bbcda3a2f1e3c2ab25913c80a3c5376cd00c6e8c4a86a89a28c8dc5452"},
|
| 1146 |
+
{file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0212a68688482dc52b2d45013df70d169f542b7394fc744c02a57374a4207003"},
|
| 1147 |
+
{file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e576a51ad59e4bfaac456023a78f6b5e6e7651dcd383bcc3e18d06f9b55d6d1"},
|
| 1148 |
+
{file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b9fe39a2ccc108a4accc2676e77da025ce383c108593d65cc909add5c3bd601"},
|
| 1149 |
+
{file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:96e37a3dc86e80bf81758c152fe66dbf60ed5eca3d26305edf01892257049925"},
|
| 1150 |
+
{file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6d0072fea50feec76a4c418096652f2c3238eaa014b2f94aeb1d56a66b41403f"},
|
| 1151 |
+
{file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:089cf3dbf0cd6c100f02945abeb18484bd1ee57a079aefd52cffd17fba910b88"},
|
| 1152 |
+
{file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6a074d34ee7a5ce3effbc526b7083ec9731bb3cbf921bbe1d3005d4d2bdb3a63"},
|
| 1153 |
+
{file = "MarkupSafe-2.1.1-cp38-cp38-win32.whl", hash = "sha256:421be9fbf0ffe9ffd7a378aafebbf6f4602d564d34be190fc19a193232fd12b1"},
|
| 1154 |
+
{file = "MarkupSafe-2.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:fc7b548b17d238737688817ab67deebb30e8073c95749d55538ed473130ec0c7"},
|
| 1155 |
+
{file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e04e26803c9c3851c931eac40c695602c6295b8d432cbe78609649ad9bd2da8a"},
|
| 1156 |
+
{file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b87db4360013327109564f0e591bd2a3b318547bcef31b468a92ee504d07ae4f"},
|
| 1157 |
+
{file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99a2a507ed3ac881b975a2976d59f38c19386d128e7a9a18b7df6fff1fd4c1d6"},
|
| 1158 |
+
{file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:56442863ed2b06d19c37f94d999035e15ee982988920e12a5b4ba29b62ad1f77"},
|
| 1159 |
+
{file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ce11ee3f23f79dbd06fb3d63e2f6af7b12db1d46932fe7bd8afa259a5996603"},
|
| 1160 |
+
{file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:33b74d289bd2f5e527beadcaa3f401e0df0a89927c1559c8566c066fa4248ab7"},
|
| 1161 |
+
{file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:43093fb83d8343aac0b1baa75516da6092f58f41200907ef92448ecab8825135"},
|
| 1162 |
+
{file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8e3dcf21f367459434c18e71b2a9532d96547aef8a871872a5bd69a715c15f96"},
|
| 1163 |
+
{file = "MarkupSafe-2.1.1-cp39-cp39-win32.whl", hash = "sha256:d4306c36ca495956b6d568d276ac11fdd9c30a36f1b6eb928070dc5360b22e1c"},
|
| 1164 |
+
{file = "MarkupSafe-2.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:46d00d6cfecdde84d40e572d63735ef81423ad31184100411e6e3388d405e247"},
|
| 1165 |
+
{file = "MarkupSafe-2.1.1.tar.gz", hash = "sha256:7f91197cc9e48f989d12e4e6fbc46495c446636dfc81b9ccf50bb0ec74b91d4b"},
|
| 1166 |
+
]
|
| 1167 |
+
matplotlib = []
|
| 1168 |
+
mdit-py-plugins = []
|
| 1169 |
+
mdurl = []
|
| 1170 |
+
monotonic = []
|
| 1171 |
+
more-itertools = []
|
| 1172 |
+
multidict = [
|
| 1173 |
+
{file = "multidict-6.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b9e95a740109c6047602f4db4da9949e6c5945cefbad34a1299775ddc9a62e2"},
|
| 1174 |
+
{file = "multidict-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ac0e27844758d7177989ce406acc6a83c16ed4524ebc363c1f748cba184d89d3"},
|
| 1175 |
+
{file = "multidict-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:041b81a5f6b38244b34dc18c7b6aba91f9cdaf854d9a39e5ff0b58e2b5773b9c"},
|
| 1176 |
+
{file = "multidict-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5fdda29a3c7e76a064f2477c9aab1ba96fd94e02e386f1e665bca1807fc5386f"},
|
| 1177 |
+
{file = "multidict-6.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3368bf2398b0e0fcbf46d85795adc4c259299fec50c1416d0f77c0a843a3eed9"},
|
| 1178 |
+
{file = "multidict-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4f052ee022928d34fe1f4d2bc743f32609fb79ed9c49a1710a5ad6b2198db20"},
|
| 1179 |
+
{file = "multidict-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:225383a6603c086e6cef0f2f05564acb4f4d5f019a4e3e983f572b8530f70c88"},
|
| 1180 |
+
{file = "multidict-6.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:50bd442726e288e884f7be9071016c15a8742eb689a593a0cac49ea093eef0a7"},
|
| 1181 |
+
{file = "multidict-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:47e6a7e923e9cada7c139531feac59448f1f47727a79076c0b1ee80274cd8eee"},
|
| 1182 |
+
{file = "multidict-6.0.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:0556a1d4ea2d949efe5fd76a09b4a82e3a4a30700553a6725535098d8d9fb672"},
|
| 1183 |
+
{file = "multidict-6.0.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:626fe10ac87851f4cffecee161fc6f8f9853f0f6f1035b59337a51d29ff3b4f9"},
|
| 1184 |
+
{file = "multidict-6.0.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:8064b7c6f0af936a741ea1efd18690bacfbae4078c0c385d7c3f611d11f0cf87"},
|
| 1185 |
+
{file = "multidict-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:2d36e929d7f6a16d4eb11b250719c39560dd70545356365b494249e2186bc389"},
|
| 1186 |
+
{file = "multidict-6.0.2-cp310-cp310-win32.whl", hash = "sha256:fcb91630817aa8b9bc4a74023e4198480587269c272c58b3279875ed7235c293"},
|
| 1187 |
+
{file = "multidict-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:8cbf0132f3de7cc6c6ce00147cc78e6439ea736cee6bca4f068bcf892b0fd658"},
|
| 1188 |
+
{file = "multidict-6.0.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:05f6949d6169878a03e607a21e3b862eaf8e356590e8bdae4227eedadacf6e51"},
|
| 1189 |
+
{file = "multidict-6.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2c2e459f7050aeb7c1b1276763364884595d47000c1cddb51764c0d8976e608"},
|
| 1190 |
+
{file = "multidict-6.0.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d0509e469d48940147e1235d994cd849a8f8195e0bca65f8f5439c56e17872a3"},
|
| 1191 |
+
{file = "multidict-6.0.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:514fe2b8d750d6cdb4712346a2c5084a80220821a3e91f3f71eec11cf8d28fd4"},
|
| 1192 |
+
{file = "multidict-6.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:19adcfc2a7197cdc3987044e3f415168fc5dc1f720c932eb1ef4f71a2067e08b"},
|
| 1193 |
+
{file = "multidict-6.0.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b9d153e7f1f9ba0b23ad1568b3b9e17301e23b042c23870f9ee0522dc5cc79e8"},
|
| 1194 |
+
{file = "multidict-6.0.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:aef9cc3d9c7d63d924adac329c33835e0243b5052a6dfcbf7732a921c6e918ba"},
|
| 1195 |
+
{file = "multidict-6.0.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:4571f1beddff25f3e925eea34268422622963cd8dc395bb8778eb28418248e43"},
|
| 1196 |
+
{file = "multidict-6.0.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:d48b8ee1d4068561ce8033d2c344cf5232cb29ee1a0206a7b828c79cbc5982b8"},
|
| 1197 |
+
{file = "multidict-6.0.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:45183c96ddf61bf96d2684d9fbaf6f3564d86b34cb125761f9a0ef9e36c1d55b"},
|
| 1198 |
+
{file = "multidict-6.0.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:75bdf08716edde767b09e76829db8c1e5ca9d8bb0a8d4bd94ae1eafe3dac5e15"},
|
| 1199 |
+
{file = "multidict-6.0.2-cp37-cp37m-win32.whl", hash = "sha256:a45e1135cb07086833ce969555df39149680e5471c04dfd6a915abd2fc3f6dbc"},
|
| 1200 |
+
{file = "multidict-6.0.2-cp37-cp37m-win_amd64.whl", hash = "sha256:6f3cdef8a247d1eafa649085812f8a310e728bdf3900ff6c434eafb2d443b23a"},
|
| 1201 |
+
{file = "multidict-6.0.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:0327292e745a880459ef71be14e709aaea2f783f3537588fb4ed09b6c01bca60"},
|
| 1202 |
+
{file = "multidict-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:e875b6086e325bab7e680e4316d667fc0e5e174bb5611eb16b3ea121c8951b86"},
|
| 1203 |
+
{file = "multidict-6.0.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:feea820722e69451743a3d56ad74948b68bf456984d63c1a92e8347b7b88452d"},
|
| 1204 |
+
{file = "multidict-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cc57c68cb9139c7cd6fc39f211b02198e69fb90ce4bc4a094cf5fe0d20fd8b0"},
|
| 1205 |
+
{file = "multidict-6.0.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:497988d6b6ec6ed6f87030ec03280b696ca47dbf0648045e4e1d28b80346560d"},
|
| 1206 |
+
{file = "multidict-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:89171b2c769e03a953d5969b2f272efa931426355b6c0cb508022976a17fd376"},
|
| 1207 |
+
{file = "multidict-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:684133b1e1fe91eda8fa7447f137c9490a064c6b7f392aa857bba83a28cfb693"},
|
| 1208 |
+
{file = "multidict-6.0.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fd9fc9c4849a07f3635ccffa895d57abce554b467d611a5009ba4f39b78a8849"},
|
| 1209 |
+
{file = "multidict-6.0.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:e07c8e79d6e6fd37b42f3250dba122053fddb319e84b55dd3a8d6446e1a7ee49"},
|
| 1210 |
+
{file = "multidict-6.0.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:4070613ea2227da2bfb2c35a6041e4371b0af6b0be57f424fe2318b42a748516"},
|
| 1211 |
+
{file = "multidict-6.0.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:47fbeedbf94bed6547d3aa632075d804867a352d86688c04e606971595460227"},
|
| 1212 |
+
{file = "multidict-6.0.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:5774d9218d77befa7b70d836004a768fb9aa4fdb53c97498f4d8d3f67bb9cfa9"},
|
| 1213 |
+
{file = "multidict-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2957489cba47c2539a8eb7ab32ff49101439ccf78eab724c828c1a54ff3ff98d"},
|
| 1214 |
+
{file = "multidict-6.0.2-cp38-cp38-win32.whl", hash = "sha256:e5b20e9599ba74391ca0cfbd7b328fcc20976823ba19bc573983a25b32e92b57"},
|
| 1215 |
+
{file = "multidict-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:8004dca28e15b86d1b1372515f32eb6f814bdf6f00952699bdeb541691091f96"},
|
| 1216 |
+
{file = "multidict-6.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:2e4a0785b84fb59e43c18a015ffc575ba93f7d1dbd272b4cdad9f5134b8a006c"},
|
| 1217 |
+
{file = "multidict-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6701bf8a5d03a43375909ac91b6980aea74b0f5402fbe9428fc3f6edf5d9677e"},
|
| 1218 |
+
{file = "multidict-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a007b1638e148c3cfb6bf0bdc4f82776cef0ac487191d093cdc316905e504071"},
|
| 1219 |
+
{file = "multidict-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:07a017cfa00c9890011628eab2503bee5872f27144936a52eaab449be5eaf032"},
|
| 1220 |
+
{file = "multidict-6.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c207fff63adcdf5a485969131dc70e4b194327666b7e8a87a97fbc4fd80a53b2"},
|
| 1221 |
+
{file = "multidict-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:373ba9d1d061c76462d74e7de1c0c8e267e9791ee8cfefcf6b0b2495762c370c"},
|
| 1222 |
+
{file = "multidict-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfba7c6d5d7c9099ba21f84662b037a0ffd4a5e6b26ac07d19e423e6fdf965a9"},
|
| 1223 |
+
{file = "multidict-6.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:19d9bad105dfb34eb539c97b132057a4e709919ec4dd883ece5838bcbf262b80"},
|
| 1224 |
+
{file = "multidict-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:de989b195c3d636ba000ee4281cd03bb1234635b124bf4cd89eeee9ca8fcb09d"},
|
| 1225 |
+
{file = "multidict-6.0.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7c40b7bbece294ae3a87c1bc2abff0ff9beef41d14188cda94ada7bcea99b0fb"},
|
| 1226 |
+
{file = "multidict-6.0.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:d16cce709ebfadc91278a1c005e3c17dd5f71f5098bfae1035149785ea6e9c68"},
|
| 1227 |
+
{file = "multidict-6.0.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:a2c34a93e1d2aa35fbf1485e5010337c72c6791407d03aa5f4eed920343dd360"},
|
| 1228 |
+
{file = "multidict-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:feba80698173761cddd814fa22e88b0661e98cb810f9f986c54aa34d281e4937"},
|
| 1229 |
+
{file = "multidict-6.0.2-cp39-cp39-win32.whl", hash = "sha256:23b616fdc3c74c9fe01d76ce0d1ce872d2d396d8fa8e4899398ad64fb5aa214a"},
|
| 1230 |
+
{file = "multidict-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:4bae31803d708f6f15fd98be6a6ac0b6958fcf68fda3c77a048a4f9073704aae"},
|
| 1231 |
+
{file = "multidict-6.0.2.tar.gz", hash = "sha256:5ff3bd75f38e4c43f1f470f2df7a4d430b821c4ce22be384e1459cb57d6bb013"},
|
| 1232 |
+
]
|
| 1233 |
+
numpy = []
|
| 1234 |
+
orjson = []
|
| 1235 |
+
packaging = [
|
| 1236 |
+
{file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"},
|
| 1237 |
+
{file = "packaging-21.3.tar.gz", hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"},
|
| 1238 |
+
]
|
| 1239 |
+
pandas = []
|
| 1240 |
+
paramiko = []
|
| 1241 |
+
pillow = []
|
| 1242 |
+
pycparser = [
|
| 1243 |
+
{file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"},
|
| 1244 |
+
{file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"},
|
| 1245 |
+
]
|
| 1246 |
+
pycryptodome = []
|
| 1247 |
+
pydantic = []
|
| 1248 |
+
pydub = []
|
| 1249 |
+
pynacl = []
|
| 1250 |
+
pyparsing = [
|
| 1251 |
+
{file = "pyparsing-3.0.9-py3-none-any.whl", hash = "sha256:5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc"},
|
| 1252 |
+
{file = "pyparsing-3.0.9.tar.gz", hash = "sha256:2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb"},
|
| 1253 |
+
]
|
| 1254 |
+
python-dateutil = [
|
| 1255 |
+
{file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"},
|
| 1256 |
+
{file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"},
|
| 1257 |
+
]
|
| 1258 |
+
python-multipart = [
|
| 1259 |
+
{file = "python-multipart-0.0.5.tar.gz", hash = "sha256:f7bb5f611fc600d15fa47b3974c8aa16e93724513b49b5f95c81e6624c83fa43"},
|
| 1260 |
+
]
|
| 1261 |
+
pytz = []
|
| 1262 |
+
pyyaml = [
|
| 1263 |
+
{file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"},
|
| 1264 |
+
{file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"},
|
| 1265 |
+
{file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"},
|
| 1266 |
+
{file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"},
|
| 1267 |
+
{file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"},
|
| 1268 |
+
{file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"},
|
| 1269 |
+
{file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"},
|
| 1270 |
+
{file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"},
|
| 1271 |
+
{file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"},
|
| 1272 |
+
{file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"},
|
| 1273 |
+
{file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"},
|
| 1274 |
+
{file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"},
|
| 1275 |
+
{file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"},
|
| 1276 |
+
{file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"},
|
| 1277 |
+
{file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"},
|
| 1278 |
+
{file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"},
|
| 1279 |
+
{file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"},
|
| 1280 |
+
{file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"},
|
| 1281 |
+
{file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"},
|
| 1282 |
+
{file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"},
|
| 1283 |
+
{file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"},
|
| 1284 |
+
{file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"},
|
| 1285 |
+
{file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"},
|
| 1286 |
+
{file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"},
|
| 1287 |
+
{file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"},
|
| 1288 |
+
{file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"},
|
| 1289 |
+
{file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"},
|
| 1290 |
+
{file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"},
|
| 1291 |
+
{file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"},
|
| 1292 |
+
{file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"},
|
| 1293 |
+
{file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"},
|
| 1294 |
+
{file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"},
|
| 1295 |
+
{file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"},
|
| 1296 |
+
]
|
| 1297 |
+
regex = []
|
| 1298 |
+
requests = []
|
| 1299 |
+
rfc3986 = []
|
| 1300 |
+
setuptools-scm = []
|
| 1301 |
+
six = [
|
| 1302 |
+
{file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"},
|
| 1303 |
+
{file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"},
|
| 1304 |
+
]
|
| 1305 |
+
sniffio = []
|
| 1306 |
+
starlette = []
|
| 1307 |
+
tokenizers = [
|
| 1308 |
+
{file = "tokenizers-0.12.1-cp310-cp310-macosx_10_11_x86_64.whl", hash = "sha256:d737df0f8f26e093a82bfb106b6cfb510a0e9302d35834568e5b20b73ddc5a9c"},
|
| 1309 |
+
{file = "tokenizers-0.12.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f1271224acafb27639c432e1ce4e7d38eab40305ba1c546e871d5c8a32f4f195"},
|
| 1310 |
+
{file = "tokenizers-0.12.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdeba37c2fb44e1aec8a72af4cb369655b59ba313181b1b4b8183f08e759c49c"},
|
| 1311 |
+
{file = "tokenizers-0.12.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:53b5f4012ce3ffddd5b00827441b80dc7a0f6b41f4fc5248ae6d36e7d3920c6d"},
|
| 1312 |
+
{file = "tokenizers-0.12.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5188e13fc09edfe05712ca3ae5a44e7f2b0137927b1ca210d0fad90d3e58315a"},
|
| 1313 |
+
{file = "tokenizers-0.12.1-cp310-cp310-win32.whl", hash = "sha256:eff5ff411f18a201eec137b7b32fcb55e0c48b372d370bd24f965f5bad471fa4"},
|
| 1314 |
+
{file = "tokenizers-0.12.1-cp310-cp310-win_amd64.whl", hash = "sha256:bdbca79726fe883c696088ea163715b2f902aec638a8e24bcf9790ff8fa45019"},
|
| 1315 |
+
{file = "tokenizers-0.12.1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:28825dade9e52ad464164020758f9d49eb7251c32b6ae146601c506a23c67c0e"},
|
| 1316 |
+
{file = "tokenizers-0.12.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:91906d725cb84d8ee71ce05fbb155d39d494849622b4f9349e5176a8eb01c49b"},
|
| 1317 |
+
{file = "tokenizers-0.12.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:230f51a0a82ca7b90077eaca2415f12ff9bd144607888b9c50c2ee543452322e"},
|
| 1318 |
+
{file = "tokenizers-0.12.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d4339c376b695de2ad8ccaebffa75e4dc1d7857be1103d80e7925b34af8cf78"},
|
| 1319 |
+
{file = "tokenizers-0.12.1-cp37-cp37m-macosx_10_11_x86_64.whl", hash = "sha256:27d93b712aa2d4346aa506ecd4ec9e94edeebeaf2d484357b482cdeffc02b5f5"},
|
| 1320 |
+
{file = "tokenizers-0.12.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:7f4cb68dc538b52240d1986d2034eb0a6373be2ab5f0787d1be3ad1444ce71b7"},
|
| 1321 |
+
{file = "tokenizers-0.12.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ae6c04b629ac2cd2f695739988cb70b9bd8d5e7f849f5b14c4510e942bee5770"},
|
| 1322 |
+
{file = "tokenizers-0.12.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6a38b2019d4807d42afeff603a119094ee00f63bea2921136524c8814e9003f8"},
|
| 1323 |
+
{file = "tokenizers-0.12.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fde8dccb9033fa344ffce3ee1837939a50e7a210a768f1cf2059beeafa755481"},
|
| 1324 |
+
{file = "tokenizers-0.12.1-cp37-cp37m-win32.whl", hash = "sha256:38625595b2fd37bfcce64ff9bfb6868c07e9a7b7f205c909d94a615ce9472287"},
|
| 1325 |
+
{file = "tokenizers-0.12.1-cp37-cp37m-win_amd64.whl", hash = "sha256:01abe6fbfe55e4131ca0c4c3d1a9d7ef5df424a8d536e998d2a4fc0bc57935f4"},
|
| 1326 |
+
{file = "tokenizers-0.12.1-cp38-cp38-macosx_10_11_x86_64.whl", hash = "sha256:7c5c54080a7d5c89c990e0d478e0882dbac88926d43323a3aa236492a3c9455f"},
|
| 1327 |
+
{file = "tokenizers-0.12.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:419d113e3bcc4fe20a313afc47af81e62906306b08fe1601e1443d747d46af1f"},
|
| 1328 |
+
{file = "tokenizers-0.12.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b9779944559cb7ace6a8516e402895f239b0d9d3c833c67dbaec496310e7e206"},
|
| 1329 |
+
{file = "tokenizers-0.12.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7d43de14b4469b57490dbaf136a31c266cb676fa22320f01f230af9219ae9034"},
|
| 1330 |
+
{file = "tokenizers-0.12.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:258873634406bd1d438c799993a5e44bbc0132ff055985c03c4fe30f702e9a33"},
|
| 1331 |
+
{file = "tokenizers-0.12.1-cp38-cp38-win32.whl", hash = "sha256:3f2647cc256d6a53d18b9dcd71d377828e9f8991fbcbd6fcd8ca2ceb174552b0"},
|
| 1332 |
+
{file = "tokenizers-0.12.1-cp38-cp38-win_amd64.whl", hash = "sha256:62a723bd4b18bc55121f5c34cd8efd6c651f2d3b81f81dd50e5351fb65b8a617"},
|
| 1333 |
+
{file = "tokenizers-0.12.1-cp39-cp39-macosx_10_11_x86_64.whl", hash = "sha256:411ebc89228f30218ffa9d9c49d414864b0df5026a47c24820431821c4360460"},
|
| 1334 |
+
{file = "tokenizers-0.12.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:619728df2551bdfe6f96ff177f9ded958e7ed9e2af94c8d5ac2834d1eb06d112"},
|
| 1335 |
+
{file = "tokenizers-0.12.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8cea98f3f9577d1541b7bb0f7a3308a911751067e1d83e01485c9d3411bbf087"},
|
| 1336 |
+
{file = "tokenizers-0.12.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:664f36f0a0d409c24f2201d495161fec4d8bc93e091fbb78814eb426f29905a3"},
|
| 1337 |
+
{file = "tokenizers-0.12.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0bf2380ad59c50222959a9b6f231339200a826fc5cb2be09ff96d8a59f65fc5e"},
|
| 1338 |
+
{file = "tokenizers-0.12.1-cp39-cp39-win32.whl", hash = "sha256:6a7a106d04154c2159db6cd7d042af2e2e0e53aee432f872fe6c8be45100436a"},
|
| 1339 |
+
{file = "tokenizers-0.12.1-cp39-cp39-win_amd64.whl", hash = "sha256:2158baf80cbc09259bfd6e0e0fc4597b611e7a72ad5443dad63918a90f1dd304"},
|
| 1340 |
+
{file = "tokenizers-0.12.1.tar.gz", hash = "sha256:070746f86efa6c873db341e55cf17bb5e7bdd5450330ca8eca542f5c3dab2c66"},
|
| 1341 |
+
]
|
| 1342 |
+
tomli = [
|
| 1343 |
+
{file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"},
|
| 1344 |
+
{file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"},
|
| 1345 |
+
]
|
| 1346 |
+
torch = []
|
| 1347 |
+
tqdm = []
|
| 1348 |
+
transformers = []
|
| 1349 |
+
typing-extensions = []
|
| 1350 |
+
uc-micro-py = []
|
| 1351 |
+
urllib3 = []
|
| 1352 |
+
uvicorn = []
|
| 1353 |
+
websockets = [
|
| 1354 |
+
{file = "websockets-10.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:661f641b44ed315556a2fa630239adfd77bd1b11cb0b9d96ed8ad90b0b1e4978"},
|
| 1355 |
+
{file = "websockets-10.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b529fdfa881b69fe563dbd98acce84f3e5a67df13de415e143ef053ff006d500"},
|
| 1356 |
+
{file = "websockets-10.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f351c7d7d92f67c0609329ab2735eee0426a03022771b00102816a72715bb00b"},
|
| 1357 |
+
{file = "websockets-10.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:379e03422178436af4f3abe0aa8f401aa77ae2487843738542a75faf44a31f0c"},
|
| 1358 |
+
{file = "websockets-10.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:e904c0381c014b914136c492c8fa711ca4cced4e9b3d110e5e7d436d0fc289e8"},
|
| 1359 |
+
{file = "websockets-10.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:e7e6f2d6fd48422071cc8a6f8542016f350b79cc782752de531577d35e9bd677"},
|
| 1360 |
+
{file = "websockets-10.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b9c77f0d1436ea4b4dc089ed8335fa141e6a251a92f75f675056dac4ab47a71e"},
|
| 1361 |
+
{file = "websockets-10.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e6fa05a680e35d0fcc1470cb070b10e6fe247af54768f488ed93542e71339d6f"},
|
| 1362 |
+
{file = "websockets-10.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:2f94fa3ae454a63ea3a19f73b95deeebc9f02ba2d5617ca16f0bbdae375cda47"},
|
| 1363 |
+
{file = "websockets-10.3-cp310-cp310-win32.whl", hash = "sha256:6ed1d6f791eabfd9808afea1e068f5e59418e55721db8b7f3bfc39dc831c42ae"},
|
| 1364 |
+
{file = "websockets-10.3-cp310-cp310-win_amd64.whl", hash = "sha256:347974105bbd4ea068106ec65e8e8ebd86f28c19e529d115d89bd8cc5cda3079"},
|
| 1365 |
+
{file = "websockets-10.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:fab7c640815812ed5f10fbee7abbf58788d602046b7bb3af9b1ac753a6d5e916"},
|
| 1366 |
+
{file = "websockets-10.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:994cdb1942a7a4c2e10098d9162948c9e7b235df755de91ca33f6e0481366fdb"},
|
| 1367 |
+
{file = "websockets-10.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:aad5e300ab32036eb3fdc350ad30877210e2f51bceaca83fb7fef4d2b6c72b79"},
|
| 1368 |
+
{file = "websockets-10.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:e49ea4c1a9543d2bd8a747ff24411509c29e4bdcde05b5b0895e2120cb1a761d"},
|
| 1369 |
+
{file = "websockets-10.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:6ea6b300a6bdd782e49922d690e11c3669828fe36fc2471408c58b93b5535a98"},
|
| 1370 |
+
{file = "websockets-10.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:ef5ce841e102278c1c2e98f043db99d6755b1c58bde475516aef3a008ed7f28e"},
|
| 1371 |
+
{file = "websockets-10.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d1655a6fc7aecd333b079d00fb3c8132d18988e47f19740c69303bf02e9883c6"},
|
| 1372 |
+
{file = "websockets-10.3-cp37-cp37m-win32.whl", hash = "sha256:83e5ca0d5b743cde3d29fda74ccab37bdd0911f25bd4cdf09ff8b51b7b4f2fa1"},
|
| 1373 |
+
{file = "websockets-10.3-cp37-cp37m-win_amd64.whl", hash = "sha256:da4377904a3379f0c1b75a965fff23b28315bcd516d27f99a803720dfebd94d4"},
|
| 1374 |
+
{file = "websockets-10.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:a1e15b230c3613e8ea82c9fc6941b2093e8eb939dd794c02754d33980ba81e36"},
|
| 1375 |
+
{file = "websockets-10.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:31564a67c3e4005f27815634343df688b25705cccb22bc1db621c781ddc64c69"},
|
| 1376 |
+
{file = "websockets-10.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c8d1d14aa0f600b5be363077b621b1b4d1eb3fbf90af83f9281cda668e6ff7fd"},
|
| 1377 |
+
{file = "websockets-10.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8fbd7d77f8aba46d43245e86dd91a8970eac4fb74c473f8e30e9c07581f852b2"},
|
| 1378 |
+
{file = "websockets-10.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:210aad7fdd381c52e58777560860c7e6110b6174488ef1d4b681c08b68bf7f8c"},
|
| 1379 |
+
{file = "websockets-10.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6075fd24df23133c1b078e08a9b04a3bc40b31a8def4ee0b9f2c8865acce913e"},
|
| 1380 |
+
{file = "websockets-10.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:7f6d96fdb0975044fdd7953b35d003b03f9e2bcf85f2d2cf86285ece53e9f991"},
|
| 1381 |
+
{file = "websockets-10.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:c7250848ce69559756ad0086a37b82c986cd33c2d344ab87fea596c5ac6d9442"},
|
| 1382 |
+
{file = "websockets-10.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:28dd20b938a57c3124028680dc1600c197294da5db4292c76a0b48efb3ed7f76"},
|
| 1383 |
+
{file = "websockets-10.3-cp38-cp38-win32.whl", hash = "sha256:54c000abeaff6d8771a4e2cef40900919908ea7b6b6a30eae72752607c6db559"},
|
| 1384 |
+
{file = "websockets-10.3-cp38-cp38-win_amd64.whl", hash = "sha256:7ab36e17af592eec5747c68ef2722a74c1a4a70f3772bc661079baf4ae30e40d"},
|
| 1385 |
+
{file = "websockets-10.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a141de3d5a92188234afa61653ed0bbd2dde46ad47b15c3042ffb89548e77094"},
|
| 1386 |
+
{file = "websockets-10.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:97bc9d41e69a7521a358f9b8e44871f6cdeb42af31815c17aed36372d4eec667"},
|
| 1387 |
+
{file = "websockets-10.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d6353ba89cfc657a3f5beabb3b69be226adbb5c6c7a66398e17809b0ce3c4731"},
|
| 1388 |
+
{file = "websockets-10.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec2b0ab7edc8cd4b0eb428b38ed89079bdc20c6bdb5f889d353011038caac2f9"},
|
| 1389 |
+
{file = "websockets-10.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:85506b3328a9e083cc0a0fb3ba27e33c8db78341b3eb12eb72e8afd166c36680"},
|
| 1390 |
+
{file = "websockets-10.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:8af75085b4bc0b5c40c4a3c0e113fa95e84c60f4ed6786cbb675aeb1ee128247"},
|
| 1391 |
+
{file = "websockets-10.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:07cdc0a5b2549bcfbadb585ad8471ebdc7bdf91e32e34ae3889001c1c106a6af"},
|
| 1392 |
+
{file = "websockets-10.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:5b936bf552e4f6357f5727579072ff1e1324717902127ffe60c92d29b67b7be3"},
|
| 1393 |
+
{file = "websockets-10.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e4e08305bfd76ba8edab08dcc6496f40674f44eb9d5e23153efa0a35750337e8"},
|
| 1394 |
+
{file = "websockets-10.3-cp39-cp39-win32.whl", hash = "sha256:bb621ec2dbbbe8df78a27dbd9dd7919f9b7d32a73fafcb4d9252fc4637343582"},
|
| 1395 |
+
{file = "websockets-10.3-cp39-cp39-win_amd64.whl", hash = "sha256:51695d3b199cd03098ae5b42833006a0f43dc5418d3102972addc593a783bc02"},
|
| 1396 |
+
{file = "websockets-10.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:907e8247480f287aa9bbc9391bd6de23c906d48af54c8c421df84655eef66af7"},
|
| 1397 |
+
{file = "websockets-10.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b1359aba0ff810d5830d5ab8e2c4a02bebf98a60aa0124fb29aa78cfdb8031f"},
|
| 1398 |
+
{file = "websockets-10.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:93d5ea0b5da8d66d868b32c614d2b52d14304444e39e13a59566d4acb8d6e2e4"},
|
| 1399 |
+
{file = "websockets-10.3-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:7934e055fd5cd9dee60f11d16c8d79c4567315824bacb1246d0208a47eca9755"},
|
| 1400 |
+
{file = "websockets-10.3-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:3eda1cb7e9da1b22588cefff09f0951771d6ee9fa8dbe66f5ae04cc5f26b2b55"},
|
| 1401 |
+
{file = "websockets-10.3.tar.gz", hash = "sha256:fc06cc8073c8e87072138ba1e431300e2d408f054b27047d047b549455066ff4"},
|
| 1402 |
+
]
|
| 1403 |
+
yarl = []
|
pyproject.toml
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[tool.poetry]
|
| 2 |
+
name = "emoji-predictor"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = ""
|
| 5 |
+
authors = ["vincent <[email protected]>"]
|
| 6 |
+
|
| 7 |
+
[tool.poetry.dependencies]
|
| 8 |
+
python = "^3.9"
|
| 9 |
+
torch = "^1.12.1"
|
| 10 |
+
gradio = "^3.3.1"
|
| 11 |
+
transformers = "^4.22.1"
|
| 12 |
+
more-itertools = "^8.14.0"
|
| 13 |
+
|
| 14 |
+
[tool.poetry.dev-dependencies]
|
| 15 |
+
|
| 16 |
+
[build-system]
|
| 17 |
+
requires = ["poetry-core>=1.0.0"]
|
| 18 |
+
build-backend = "poetry.core.masonry.api"
|
requirements.txt
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
aiohttp==3.8.1
|
| 2 |
+
aiosignal==1.2.0
|
| 3 |
+
analytics-python==1.4.0
|
| 4 |
+
anyio==3.6.1
|
| 5 |
+
async-timeout==4.0.2
|
| 6 |
+
attrs==22.1.0
|
| 7 |
+
backoff==1.10.0
|
| 8 |
+
bcrypt==4.0.0
|
| 9 |
+
certifi==2022.9.14
|
| 10 |
+
cffi==1.15.1
|
| 11 |
+
charset-normalizer==2.1.1
|
| 12 |
+
click==8.1.3
|
| 13 |
+
contourpy==1.0.5
|
| 14 |
+
cryptography==38.0.1
|
| 15 |
+
cycler==0.11.0
|
| 16 |
+
fastapi==0.85.0
|
| 17 |
+
ffmpy==0.3.0
|
| 18 |
+
filelock==3.8.0
|
| 19 |
+
fonttools==4.37.2
|
| 20 |
+
frozenlist==1.3.1
|
| 21 |
+
fsspec==2022.8.2
|
| 22 |
+
gradio==3.3.1
|
| 23 |
+
h11==0.12.0
|
| 24 |
+
httpcore==0.15.0
|
| 25 |
+
httpx==0.23.0
|
| 26 |
+
huggingface-hub==0.9.1
|
| 27 |
+
idna==3.4
|
| 28 |
+
Jinja2==3.1.2
|
| 29 |
+
kiwisolver==1.4.4
|
| 30 |
+
linkify-it-py==1.0.3
|
| 31 |
+
markdown-it-py==2.1.0
|
| 32 |
+
MarkupSafe==2.1.1
|
| 33 |
+
matplotlib==3.6.0
|
| 34 |
+
mdit-py-plugins==0.3.0
|
| 35 |
+
mdurl==0.1.2
|
| 36 |
+
monotonic==1.6
|
| 37 |
+
more-itertools==8.14.0
|
| 38 |
+
multidict==6.0.2
|
| 39 |
+
numpy==1.23.3
|
| 40 |
+
orjson==3.8.0
|
| 41 |
+
packaging==21.3
|
| 42 |
+
pandas==1.4.4
|
| 43 |
+
paramiko==2.11.0
|
| 44 |
+
Pillow==9.2.0
|
| 45 |
+
pip==22.0.4
|
| 46 |
+
pycparser==2.21
|
| 47 |
+
pycryptodome==3.15.0
|
| 48 |
+
pydantic==1.10.2
|
| 49 |
+
pydub==0.25.1
|
| 50 |
+
PyNaCl==1.5.0
|
| 51 |
+
pyparsing==3.0.9
|
| 52 |
+
python-dateutil==2.8.2
|
| 53 |
+
python-multipart==0.0.5
|
| 54 |
+
pytz==2022.2.1
|
| 55 |
+
PyYAML==6.0
|
| 56 |
+
regex==2022.9.13
|
| 57 |
+
requests==2.28.1
|
| 58 |
+
rfc3986==1.5.0
|
| 59 |
+
setuptools==62.0.0
|
| 60 |
+
setuptools-scm==7.0.5
|
| 61 |
+
six==1.16.0
|
| 62 |
+
sniffio==1.3.0
|
| 63 |
+
starlette==0.20.4
|
| 64 |
+
tokenizers==0.12.1
|
| 65 |
+
tomli==2.0.1
|
| 66 |
+
torch==1.12.1
|
| 67 |
+
tqdm==4.64.1
|
| 68 |
+
transformers==4.22.1
|
| 69 |
+
typing_extensions==4.3.0
|
| 70 |
+
uc-micro-py==1.0.1
|
| 71 |
+
urllib3==1.26.12
|
| 72 |
+
uvicorn==0.18.3
|
| 73 |
+
websockets==10.3
|
| 74 |
+
wheel==0.37.1
|
| 75 |
+
yarl==1.8.1
|