Spaces:
Runtime error
Runtime error
GitMarco27
commited on
Commit
·
b1ef552
1
Parent(s):
841c3cb
First (really really really simple) frontend release
Browse files- codeinterpreterapi/schema/file.py +6 -1
- frontend/__init__.py +0 -0
- frontend/demo.py +22 -0
- frontend/utils.py +18 -0
- poetry.lock +699 -156
- pyproject.toml +2 -1
codeinterpreterapi/schema/file.py
CHANGED
|
@@ -38,7 +38,7 @@ class File(BaseModel):
|
|
| 38 |
async def asave(self, path: str):
|
| 39 |
await asyncio.to_thread(self.save, path)
|
| 40 |
|
| 41 |
-
def
|
| 42 |
try:
|
| 43 |
from PIL import Image # type: ignore
|
| 44 |
except ImportError:
|
|
@@ -56,6 +56,11 @@ class File(BaseModel):
|
|
| 56 |
if img.mode not in ('RGB', 'L'): # L is for greyscale images
|
| 57 |
img = img.convert('RGB')
|
| 58 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 59 |
# Display the image
|
| 60 |
try:
|
| 61 |
# Try to get the IPython shell if available.
|
|
|
|
| 38 |
async def asave(self, path: str):
|
| 39 |
await asyncio.to_thread(self.save, path)
|
| 40 |
|
| 41 |
+
def get_image(self):
|
| 42 |
try:
|
| 43 |
from PIL import Image # type: ignore
|
| 44 |
except ImportError:
|
|
|
|
| 56 |
if img.mode not in ('RGB', 'L'): # L is for greyscale images
|
| 57 |
img = img.convert('RGB')
|
| 58 |
|
| 59 |
+
return img
|
| 60 |
+
|
| 61 |
+
def show_image(self):
|
| 62 |
+
img = self.get_image()
|
| 63 |
+
|
| 64 |
# Display the image
|
| 65 |
try:
|
| 66 |
# Try to get the IPython shell if available.
|
frontend/__init__.py
ADDED
|
File without changes
|
frontend/demo.py
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import asyncio
|
| 2 |
+
|
| 3 |
+
import streamlit as st
|
| 4 |
+
|
| 5 |
+
from frontend.utils import get_images
|
| 6 |
+
|
| 7 |
+
st.title('Code Interpreter API 🚀')
|
| 8 |
+
|
| 9 |
+
# This will create a sidebar
|
| 10 |
+
st.sidebar.title("Code Interpreter API 🚀")
|
| 11 |
+
st.sidebar.markdown("[Github Repo](https://github.com/shroominic/codeinterpreter-api)")
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
# This will create a textbox where you can input text
|
| 15 |
+
input_text = st.text_input("Write your prompt")
|
| 16 |
+
|
| 17 |
+
# This will create a button
|
| 18 |
+
button_pressed = st.button('Run code interpreter', use_container_width=True)
|
| 19 |
+
|
| 20 |
+
# This will display the image only when the button is pressed
|
| 21 |
+
if button_pressed and input_text != "":
|
| 22 |
+
asyncio.run(get_images(input_text))
|
frontend/utils.py
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from codeinterpreterapi import CodeInterpreterSession
|
| 2 |
+
import streamlit as st
|
| 3 |
+
|
| 4 |
+
|
| 5 |
+
async def get_images(prompt: str):
|
| 6 |
+
with st.chat_message("user"):
|
| 7 |
+
st.write(prompt)
|
| 8 |
+
with st.spinner():
|
| 9 |
+
async with CodeInterpreterSession(model='gpt-3.5-turbo') as session:
|
| 10 |
+
response = await session.generate_response(
|
| 11 |
+
prompt
|
| 12 |
+
)
|
| 13 |
+
|
| 14 |
+
with st.chat_message("assistant"):
|
| 15 |
+
st.write(response.content)
|
| 16 |
+
|
| 17 |
+
for file in response.files:
|
| 18 |
+
st.image(file.get_image(), caption=prompt, use_column_width=True)
|
poetry.lock
CHANGED
|
@@ -122,6 +122,29 @@ files = [
|
|
| 122 |
[package.dependencies]
|
| 123 |
frozenlist = ">=1.1.0"
|
| 124 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 125 |
[[package]]
|
| 126 |
name = "anyio"
|
| 127 |
version = "3.7.1"
|
|
@@ -363,6 +386,28 @@ webencodings = "*"
|
|
| 363 |
[package.extras]
|
| 364 |
css = ["tinycss2 (>=1.1.0,<1.2)"]
|
| 365 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 366 |
[[package]]
|
| 367 |
name = "certifi"
|
| 368 |
version = "2023.5.7"
|
|
@@ -536,13 +581,13 @@ files = [
|
|
| 536 |
|
| 537 |
[[package]]
|
| 538 |
name = "click"
|
| 539 |
-
version = "8.1.
|
| 540 |
description = "Composable command line interface toolkit"
|
| 541 |
optional = false
|
| 542 |
python-versions = ">=3.7"
|
| 543 |
files = [
|
| 544 |
-
{file = "click-8.1.
|
| 545 |
-
{file = "click-8.1.
|
| 546 |
]
|
| 547 |
|
| 548 |
[package.dependencies]
|
|
@@ -798,6 +843,34 @@ files = [
|
|
| 798 |
{file = "frozenlist-1.4.0.tar.gz", hash = "sha256:09163bdf0b2907454042edb19f887c6d33806adc71fbd54afc14908bfdc22251"},
|
| 799 |
]
|
| 800 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 801 |
[[package]]
|
| 802 |
name = "greenlet"
|
| 803 |
version = "2.0.2"
|
|
@@ -1058,13 +1131,13 @@ files = [
|
|
| 1058 |
|
| 1059 |
[[package]]
|
| 1060 |
name = "jsonschema"
|
| 1061 |
-
version = "4.18.
|
| 1062 |
description = "An implementation of JSON Schema validation for Python"
|
| 1063 |
optional = false
|
| 1064 |
python-versions = ">=3.8"
|
| 1065 |
files = [
|
| 1066 |
-
{file = "jsonschema-4.18.
|
| 1067 |
-
{file = "jsonschema-4.18.
|
| 1068 |
]
|
| 1069 |
|
| 1070 |
[package.dependencies]
|
|
@@ -1087,13 +1160,13 @@ format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-
|
|
| 1087 |
|
| 1088 |
[[package]]
|
| 1089 |
name = "jsonschema-specifications"
|
| 1090 |
-
version = "2023.
|
| 1091 |
description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry"
|
| 1092 |
optional = false
|
| 1093 |
python-versions = ">=3.8"
|
| 1094 |
files = [
|
| 1095 |
-
{file = "jsonschema_specifications-2023.
|
| 1096 |
-
{file = "jsonschema_specifications-2023.
|
| 1097 |
]
|
| 1098 |
|
| 1099 |
[package.dependencies]
|
|
@@ -1306,6 +1379,30 @@ files = [
|
|
| 1306 |
pydantic = ">=1,<2"
|
| 1307 |
requests = ">=2,<3"
|
| 1308 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1309 |
[[package]]
|
| 1310 |
name = "markupsafe"
|
| 1311 |
version = "2.1.3"
|
|
@@ -1413,6 +1510,17 @@ files = [
|
|
| 1413 |
[package.dependencies]
|
| 1414 |
traitlets = "*"
|
| 1415 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1416 |
[[package]]
|
| 1417 |
name = "mistune"
|
| 1418 |
version = "3.0.1"
|
|
@@ -1623,13 +1731,13 @@ test = ["flaky", "ipykernel (>=6.19.3)", "ipython", "ipywidgets", "nbconvert (>=
|
|
| 1623 |
|
| 1624 |
[[package]]
|
| 1625 |
name = "nbconvert"
|
| 1626 |
-
version = "7.7.
|
| 1627 |
description = "Converting Jupyter Notebooks"
|
| 1628 |
optional = false
|
| 1629 |
python-versions = ">=3.8"
|
| 1630 |
files = [
|
| 1631 |
-
{file = "nbconvert-7.7.
|
| 1632 |
-
{file = "nbconvert-7.7.
|
| 1633 |
]
|
| 1634 |
|
| 1635 |
[package.dependencies]
|
|
@@ -1876,6 +1984,73 @@ files = [
|
|
| 1876 |
{file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"},
|
| 1877 |
]
|
| 1878 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1879 |
[[package]]
|
| 1880 |
name = "pandocfilters"
|
| 1881 |
version = "1.5.0"
|
|
@@ -1938,6 +2113,85 @@ files = [
|
|
| 1938 |
{file = "pickleshare-0.7.5.tar.gz", hash = "sha256:87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca"},
|
| 1939 |
]
|
| 1940 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1941 |
[[package]]
|
| 1942 |
name = "platformdirs"
|
| 1943 |
version = "3.9.1"
|
|
@@ -1996,6 +2250,28 @@ files = [
|
|
| 1996 |
[package.dependencies]
|
| 1997 |
wcwidth = "*"
|
| 1998 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1999 |
[[package]]
|
| 2000 |
name = "psutil"
|
| 2001 |
version = "5.9.5"
|
|
@@ -2047,6 +2323,43 @@ files = [
|
|
| 2047 |
[package.extras]
|
| 2048 |
tests = ["pytest"]
|
| 2049 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2050 |
[[package]]
|
| 2051 |
name = "pycparser"
|
| 2052 |
version = "2.21"
|
|
@@ -2110,6 +2423,25 @@ typing-extensions = ">=4.2.0"
|
|
| 2110 |
dotenv = ["python-dotenv (>=0.10.4)"]
|
| 2111 |
email = ["email-validator (>=1.0.3)"]
|
| 2112 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2113 |
[[package]]
|
| 2114 |
name = "pygments"
|
| 2115 |
version = "2.15.1"
|
|
@@ -2124,6 +2456,17 @@ files = [
|
|
| 2124 |
[package.extras]
|
| 2125 |
plugins = ["importlib-metadata"]
|
| 2126 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2127 |
[[package]]
|
| 2128 |
name = "pytest"
|
| 2129 |
version = "7.4.0"
|
|
@@ -2185,6 +2528,31 @@ files = [
|
|
| 2185 |
{file = "python_json_logger-2.0.7-py3-none-any.whl", hash = "sha256:f380b826a991ebbe3de4d897aeec42760035ac760345e57b812938dc8b35e2bd"},
|
| 2186 |
]
|
| 2187 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2188 |
[[package]]
|
| 2189 |
name = "pywin32"
|
| 2190 |
version = "306"
|
|
@@ -2224,51 +2592,51 @@ files = [
|
|
| 2224 |
|
| 2225 |
[[package]]
|
| 2226 |
name = "pyyaml"
|
| 2227 |
-
version = "6.0"
|
| 2228 |
description = "YAML parser and emitter for Python"
|
| 2229 |
optional = false
|
| 2230 |
python-versions = ">=3.6"
|
| 2231 |
files = [
|
| 2232 |
-
{file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:
|
| 2233 |
-
{file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:
|
| 2234 |
-
{file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
|
| 2235 |
-
{file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:
|
| 2236 |
-
{file = "PyYAML-6.0-cp310-cp310-
|
| 2237 |
-
{file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:
|
| 2238 |
-
{file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:
|
| 2239 |
-
{file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:
|
| 2240 |
-
{file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:
|
| 2241 |
-
{file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
|
| 2242 |
-
{file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:
|
| 2243 |
-
{file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
|
| 2244 |
-
{file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:
|
| 2245 |
-
{file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:
|
| 2246 |
-
{file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:
|
| 2247 |
-
{file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
|
| 2248 |
-
{file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:
|
| 2249 |
-
{file = "PyYAML-6.0-cp36-cp36m-
|
| 2250 |
-
{file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:
|
| 2251 |
-
{file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:
|
| 2252 |
-
{file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:
|
| 2253 |
-
{file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
|
| 2254 |
-
{file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:
|
| 2255 |
-
{file = "PyYAML-6.0-cp37-cp37m-
|
| 2256 |
-
{file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:
|
| 2257 |
-
{file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:
|
| 2258 |
-
{file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:
|
| 2259 |
-
{file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
|
| 2260 |
-
{file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:
|
| 2261 |
-
{file = "PyYAML-6.0-cp38-cp38-
|
| 2262 |
-
{file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:
|
| 2263 |
-
{file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:
|
| 2264 |
-
{file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:
|
| 2265 |
-
{file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:
|
| 2266 |
-
{file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
|
| 2267 |
-
{file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:
|
| 2268 |
-
{file = "PyYAML-6.0-cp39-cp39-
|
| 2269 |
-
{file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:
|
| 2270 |
-
{file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:
|
| 2271 |
-
{file = "PyYAML-6.0.tar.gz", hash = "sha256:
|
| 2272 |
]
|
| 2273 |
|
| 2274 |
[[package]]
|
|
@@ -2362,13 +2730,13 @@ cffi = {version = "*", markers = "implementation_name == \"pypy\""}
|
|
| 2362 |
|
| 2363 |
[[package]]
|
| 2364 |
name = "referencing"
|
| 2365 |
-
version = "0.
|
| 2366 |
description = "JSON Referencing + Python"
|
| 2367 |
optional = false
|
| 2368 |
python-versions = ">=3.8"
|
| 2369 |
files = [
|
| 2370 |
-
{file = "referencing-0.
|
| 2371 |
-
{file = "referencing-0.
|
| 2372 |
]
|
| 2373 |
|
| 2374 |
[package.dependencies]
|
|
@@ -2421,110 +2789,128 @@ files = [
|
|
| 2421 |
{file = "rfc3986_validator-0.1.1.tar.gz", hash = "sha256:3d44bde7921b3b9ec3ae4e3adca370438eccebc676456449b145d533b240d055"},
|
| 2422 |
]
|
| 2423 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2424 |
[[package]]
|
| 2425 |
name = "rpds-py"
|
| 2426 |
-
version = "0.
|
| 2427 |
description = "Python bindings to Rust's persistent data structures (rpds)"
|
| 2428 |
optional = false
|
| 2429 |
python-versions = ">=3.8"
|
| 2430 |
files = [
|
| 2431 |
-
{file = "rpds_py-0.
|
| 2432 |
-
{file = "rpds_py-0.
|
| 2433 |
-
{file = "rpds_py-0.
|
| 2434 |
-
{file = "rpds_py-0.
|
| 2435 |
-
{file = "rpds_py-0.
|
| 2436 |
-
{file = "rpds_py-0.
|
| 2437 |
-
{file = "rpds_py-0.
|
| 2438 |
-
{file = "rpds_py-0.
|
| 2439 |
-
{file = "rpds_py-0.
|
| 2440 |
-
{file = "rpds_py-0.
|
| 2441 |
-
{file = "rpds_py-0.
|
| 2442 |
-
{file = "rpds_py-0.
|
| 2443 |
-
{file = "rpds_py-0.
|
| 2444 |
-
{file = "rpds_py-0.
|
| 2445 |
-
{file = "rpds_py-0.
|
| 2446 |
-
{file = "rpds_py-0.
|
| 2447 |
-
{file = "rpds_py-0.
|
| 2448 |
-
{file = "rpds_py-0.
|
| 2449 |
-
{file = "rpds_py-0.
|
| 2450 |
-
{file = "rpds_py-0.
|
| 2451 |
-
{file = "rpds_py-0.
|
| 2452 |
-
{file = "rpds_py-0.
|
| 2453 |
-
{file = "rpds_py-0.
|
| 2454 |
-
{file = "rpds_py-0.
|
| 2455 |
-
{file = "rpds_py-0.
|
| 2456 |
-
{file = "rpds_py-0.
|
| 2457 |
-
{file = "rpds_py-0.
|
| 2458 |
-
{file = "rpds_py-0.
|
| 2459 |
-
{file = "rpds_py-0.
|
| 2460 |
-
{file = "rpds_py-0.
|
| 2461 |
-
{file = "rpds_py-0.
|
| 2462 |
-
{file = "rpds_py-0.
|
| 2463 |
-
{file = "rpds_py-0.
|
| 2464 |
-
{file = "rpds_py-0.
|
| 2465 |
-
{file = "rpds_py-0.
|
| 2466 |
-
{file = "rpds_py-0.
|
| 2467 |
-
{file = "rpds_py-0.
|
| 2468 |
-
{file = "rpds_py-0.
|
| 2469 |
-
{file = "rpds_py-0.
|
| 2470 |
-
{file = "rpds_py-0.
|
| 2471 |
-
{file = "rpds_py-0.
|
| 2472 |
-
{file = "rpds_py-0.
|
| 2473 |
-
{file = "rpds_py-0.
|
| 2474 |
-
{file = "rpds_py-0.
|
| 2475 |
-
{file = "rpds_py-0.
|
| 2476 |
-
{file = "rpds_py-0.
|
| 2477 |
-
{file = "rpds_py-0.
|
| 2478 |
-
{file = "rpds_py-0.
|
| 2479 |
-
{file = "rpds_py-0.
|
| 2480 |
-
{file = "rpds_py-0.
|
| 2481 |
-
{file = "rpds_py-0.
|
| 2482 |
-
{file = "rpds_py-0.
|
| 2483 |
-
{file = "rpds_py-0.
|
| 2484 |
-
{file = "rpds_py-0.
|
| 2485 |
-
{file = "rpds_py-0.
|
| 2486 |
-
{file = "rpds_py-0.
|
| 2487 |
-
{file = "rpds_py-0.
|
| 2488 |
-
{file = "rpds_py-0.
|
| 2489 |
-
{file = "rpds_py-0.
|
| 2490 |
-
{file = "rpds_py-0.
|
| 2491 |
-
{file = "rpds_py-0.
|
| 2492 |
-
{file = "rpds_py-0.
|
| 2493 |
-
{file = "rpds_py-0.
|
| 2494 |
-
{file = "rpds_py-0.
|
| 2495 |
-
{file = "rpds_py-0.
|
| 2496 |
-
{file = "rpds_py-0.
|
| 2497 |
-
{file = "rpds_py-0.
|
| 2498 |
-
{file = "rpds_py-0.
|
| 2499 |
-
{file = "rpds_py-0.
|
| 2500 |
-
{file = "rpds_py-0.
|
| 2501 |
-
{file = "rpds_py-0.
|
| 2502 |
-
{file = "rpds_py-0.
|
| 2503 |
-
{file = "rpds_py-0.
|
| 2504 |
-
{file = "rpds_py-0.
|
| 2505 |
-
{file = "rpds_py-0.
|
| 2506 |
-
{file = "rpds_py-0.
|
| 2507 |
-
{file = "rpds_py-0.
|
| 2508 |
-
{file = "rpds_py-0.
|
| 2509 |
-
{file = "rpds_py-0.
|
| 2510 |
-
{file = "rpds_py-0.
|
| 2511 |
-
{file = "rpds_py-0.
|
| 2512 |
-
{file = "rpds_py-0.
|
| 2513 |
-
{file = "rpds_py-0.
|
| 2514 |
-
{file = "rpds_py-0.
|
| 2515 |
-
{file = "rpds_py-0.
|
| 2516 |
-
{file = "rpds_py-0.
|
| 2517 |
-
{file = "rpds_py-0.
|
| 2518 |
-
{file = "rpds_py-0.
|
| 2519 |
-
{file = "rpds_py-0.
|
| 2520 |
-
{file = "rpds_py-0.
|
| 2521 |
-
{file = "rpds_py-0.
|
| 2522 |
-
{file = "rpds_py-0.
|
| 2523 |
-
{file = "rpds_py-0.
|
| 2524 |
-
{file = "rpds_py-0.
|
| 2525 |
-
{file = "rpds_py-0.
|
| 2526 |
-
{file = "rpds_py-0.
|
| 2527 |
-
{file = "rpds_py-0.
|
| 2528 |
]
|
| 2529 |
|
| 2530 |
[[package]]
|
|
@@ -2554,6 +2940,17 @@ files = [
|
|
| 2554 |
{file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"},
|
| 2555 |
]
|
| 2556 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2557 |
[[package]]
|
| 2558 |
name = "sniffio"
|
| 2559 |
version = "1.3.0"
|
|
@@ -2673,6 +3070,46 @@ pure-eval = "*"
|
|
| 2673 |
[package.extras]
|
| 2674 |
tests = ["cython", "littleutils", "pygments", "pytest", "typeguard"]
|
| 2675 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2676 |
[[package]]
|
| 2677 |
name = "tenacity"
|
| 2678 |
version = "8.2.2"
|
|
@@ -2725,6 +3162,17 @@ webencodings = ">=0.4"
|
|
| 2725 |
doc = ["sphinx", "sphinx_rtd_theme"]
|
| 2726 |
test = ["flake8", "isort", "pytest"]
|
| 2727 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2728 |
[[package]]
|
| 2729 |
name = "tomli"
|
| 2730 |
version = "2.0.1"
|
|
@@ -2736,6 +3184,17 @@ files = [
|
|
| 2736 |
{file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"},
|
| 2737 |
]
|
| 2738 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2739 |
[[package]]
|
| 2740 |
name = "tornado"
|
| 2741 |
version = "6.3.2"
|
|
@@ -2817,6 +3276,35 @@ files = [
|
|
| 2817 |
mypy-extensions = ">=0.3.0"
|
| 2818 |
typing-extensions = ">=3.7.4"
|
| 2819 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2820 |
[[package]]
|
| 2821 |
name = "uri-template"
|
| 2822 |
version = "1.3.0"
|
|
@@ -2848,6 +3336,61 @@ secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.
|
|
| 2848 |
socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"]
|
| 2849 |
zstd = ["zstandard (>=0.18.0)"]
|
| 2850 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2851 |
[[package]]
|
| 2852 |
name = "wcwidth"
|
| 2853 |
version = "0.2.6"
|
|
@@ -3087,5 +3630,5 @@ image-support = []
|
|
| 3087 |
|
| 3088 |
[metadata]
|
| 3089 |
lock-version = "2.0"
|
| 3090 |
-
python-versions = "
|
| 3091 |
-
content-hash = "
|
|
|
|
| 122 |
[package.dependencies]
|
| 123 |
frozenlist = ">=1.1.0"
|
| 124 |
|
| 125 |
+
[[package]]
|
| 126 |
+
name = "altair"
|
| 127 |
+
version = "5.0.1"
|
| 128 |
+
description = "Vega-Altair: A declarative statistical visualization library for Python."
|
| 129 |
+
optional = false
|
| 130 |
+
python-versions = ">=3.7"
|
| 131 |
+
files = [
|
| 132 |
+
{file = "altair-5.0.1-py3-none-any.whl", hash = "sha256:9f3552ed5497d4dfc14cf48a76141d8c29ee56eae2873481b4b28134268c9bbe"},
|
| 133 |
+
{file = "altair-5.0.1.tar.gz", hash = "sha256:087d7033cb2d6c228493a053e12613058a5d47faf6a36aea3ff60305fd8b4cb0"},
|
| 134 |
+
]
|
| 135 |
+
|
| 136 |
+
[package.dependencies]
|
| 137 |
+
jinja2 = "*"
|
| 138 |
+
jsonschema = ">=3.0"
|
| 139 |
+
numpy = "*"
|
| 140 |
+
pandas = ">=0.18"
|
| 141 |
+
toolz = "*"
|
| 142 |
+
typing-extensions = {version = ">=4.0.1", markers = "python_version < \"3.11\""}
|
| 143 |
+
|
| 144 |
+
[package.extras]
|
| 145 |
+
dev = ["black (<24)", "hatch", "ipython", "m2r", "mypy", "pandas-stubs", "pytest", "pytest-cov", "ruff", "types-jsonschema", "types-setuptools", "vega-datasets", "vl-convert-python"]
|
| 146 |
+
doc = ["docutils", "geopandas", "jinja2", "myst-parser", "numpydoc", "pillow", "pydata-sphinx-theme", "sphinx", "sphinx-copybutton", "sphinx-design", "sphinxext-altair"]
|
| 147 |
+
|
| 148 |
[[package]]
|
| 149 |
name = "anyio"
|
| 150 |
version = "3.7.1"
|
|
|
|
| 386 |
[package.extras]
|
| 387 |
css = ["tinycss2 (>=1.1.0,<1.2)"]
|
| 388 |
|
| 389 |
+
[[package]]
|
| 390 |
+
name = "blinker"
|
| 391 |
+
version = "1.6.2"
|
| 392 |
+
description = "Fast, simple object-to-object and broadcast signaling"
|
| 393 |
+
optional = false
|
| 394 |
+
python-versions = ">=3.7"
|
| 395 |
+
files = [
|
| 396 |
+
{file = "blinker-1.6.2-py3-none-any.whl", hash = "sha256:c3d739772abb7bc2860abf5f2ec284223d9ad5c76da018234f6f50d6f31ab1f0"},
|
| 397 |
+
{file = "blinker-1.6.2.tar.gz", hash = "sha256:4afd3de66ef3a9f8067559fb7a1cbe555c17dcbe15971b05d1b625c3e7abe213"},
|
| 398 |
+
]
|
| 399 |
+
|
| 400 |
+
[[package]]
|
| 401 |
+
name = "cachetools"
|
| 402 |
+
version = "5.3.1"
|
| 403 |
+
description = "Extensible memoizing collections and decorators"
|
| 404 |
+
optional = false
|
| 405 |
+
python-versions = ">=3.7"
|
| 406 |
+
files = [
|
| 407 |
+
{file = "cachetools-5.3.1-py3-none-any.whl", hash = "sha256:95ef631eeaea14ba2e36f06437f36463aac3a096799e876ee55e5cdccb102590"},
|
| 408 |
+
{file = "cachetools-5.3.1.tar.gz", hash = "sha256:dce83f2d9b4e1f732a8cd44af8e8fab2dbe46201467fc98b3ef8f269092bf62b"},
|
| 409 |
+
]
|
| 410 |
+
|
| 411 |
[[package]]
|
| 412 |
name = "certifi"
|
| 413 |
version = "2023.5.7"
|
|
|
|
| 581 |
|
| 582 |
[[package]]
|
| 583 |
name = "click"
|
| 584 |
+
version = "8.1.6"
|
| 585 |
description = "Composable command line interface toolkit"
|
| 586 |
optional = false
|
| 587 |
python-versions = ">=3.7"
|
| 588 |
files = [
|
| 589 |
+
{file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"},
|
| 590 |
+
{file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"},
|
| 591 |
]
|
| 592 |
|
| 593 |
[package.dependencies]
|
|
|
|
| 843 |
{file = "frozenlist-1.4.0.tar.gz", hash = "sha256:09163bdf0b2907454042edb19f887c6d33806adc71fbd54afc14908bfdc22251"},
|
| 844 |
]
|
| 845 |
|
| 846 |
+
[[package]]
|
| 847 |
+
name = "gitdb"
|
| 848 |
+
version = "4.0.10"
|
| 849 |
+
description = "Git Object Database"
|
| 850 |
+
optional = false
|
| 851 |
+
python-versions = ">=3.7"
|
| 852 |
+
files = [
|
| 853 |
+
{file = "gitdb-4.0.10-py3-none-any.whl", hash = "sha256:c286cf298426064079ed96a9e4a9d39e7f3e9bf15ba60701e95f5492f28415c7"},
|
| 854 |
+
{file = "gitdb-4.0.10.tar.gz", hash = "sha256:6eb990b69df4e15bad899ea868dc46572c3f75339735663b81de79b06f17eb9a"},
|
| 855 |
+
]
|
| 856 |
+
|
| 857 |
+
[package.dependencies]
|
| 858 |
+
smmap = ">=3.0.1,<6"
|
| 859 |
+
|
| 860 |
+
[[package]]
|
| 861 |
+
name = "gitpython"
|
| 862 |
+
version = "3.1.32"
|
| 863 |
+
description = "GitPython is a Python library used to interact with Git repositories"
|
| 864 |
+
optional = false
|
| 865 |
+
python-versions = ">=3.7"
|
| 866 |
+
files = [
|
| 867 |
+
{file = "GitPython-3.1.32-py3-none-any.whl", hash = "sha256:e3d59b1c2c6ebb9dfa7a184daf3b6dd4914237e7488a1730a6d8f6f5d0b4187f"},
|
| 868 |
+
{file = "GitPython-3.1.32.tar.gz", hash = "sha256:8d9b8cb1e80b9735e8717c9362079d3ce4c6e5ddeebedd0361b228c3a67a62f6"},
|
| 869 |
+
]
|
| 870 |
+
|
| 871 |
+
[package.dependencies]
|
| 872 |
+
gitdb = ">=4.0.1,<5"
|
| 873 |
+
|
| 874 |
[[package]]
|
| 875 |
name = "greenlet"
|
| 876 |
version = "2.0.2"
|
|
|
|
| 1131 |
|
| 1132 |
[[package]]
|
| 1133 |
name = "jsonschema"
|
| 1134 |
+
version = "4.18.4"
|
| 1135 |
description = "An implementation of JSON Schema validation for Python"
|
| 1136 |
optional = false
|
| 1137 |
python-versions = ">=3.8"
|
| 1138 |
files = [
|
| 1139 |
+
{file = "jsonschema-4.18.4-py3-none-any.whl", hash = "sha256:971be834317c22daaa9132340a51c01b50910724082c2c1a2ac87eeec153a3fe"},
|
| 1140 |
+
{file = "jsonschema-4.18.4.tar.gz", hash = "sha256:fb3642735399fa958c0d2aad7057901554596c63349f4f6b283c493cf692a25d"},
|
| 1141 |
]
|
| 1142 |
|
| 1143 |
[package.dependencies]
|
|
|
|
| 1160 |
|
| 1161 |
[[package]]
|
| 1162 |
name = "jsonschema-specifications"
|
| 1163 |
+
version = "2023.7.1"
|
| 1164 |
description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry"
|
| 1165 |
optional = false
|
| 1166 |
python-versions = ">=3.8"
|
| 1167 |
files = [
|
| 1168 |
+
{file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"},
|
| 1169 |
+
{file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"},
|
| 1170 |
]
|
| 1171 |
|
| 1172 |
[package.dependencies]
|
|
|
|
| 1379 |
pydantic = ">=1,<2"
|
| 1380 |
requests = ">=2,<3"
|
| 1381 |
|
| 1382 |
+
[[package]]
|
| 1383 |
+
name = "markdown-it-py"
|
| 1384 |
+
version = "3.0.0"
|
| 1385 |
+
description = "Python port of markdown-it. Markdown parsing, done right!"
|
| 1386 |
+
optional = false
|
| 1387 |
+
python-versions = ">=3.8"
|
| 1388 |
+
files = [
|
| 1389 |
+
{file = "markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb"},
|
| 1390 |
+
{file = "markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1"},
|
| 1391 |
+
]
|
| 1392 |
+
|
| 1393 |
+
[package.dependencies]
|
| 1394 |
+
mdurl = ">=0.1,<1.0"
|
| 1395 |
+
|
| 1396 |
+
[package.extras]
|
| 1397 |
+
benchmarking = ["psutil", "pytest", "pytest-benchmark"]
|
| 1398 |
+
code-style = ["pre-commit (>=3.0,<4.0)"]
|
| 1399 |
+
compare = ["commonmark (>=0.9,<1.0)", "markdown (>=3.4,<4.0)", "mistletoe (>=1.0,<2.0)", "mistune (>=2.0,<3.0)", "panflute (>=2.3,<3.0)"]
|
| 1400 |
+
linkify = ["linkify-it-py (>=1,<3)"]
|
| 1401 |
+
plugins = ["mdit-py-plugins"]
|
| 1402 |
+
profiling = ["gprof2dot"]
|
| 1403 |
+
rtd = ["jupyter_sphinx", "mdit-py-plugins", "myst-parser", "pyyaml", "sphinx", "sphinx-copybutton", "sphinx-design", "sphinx_book_theme"]
|
| 1404 |
+
testing = ["coverage", "pytest", "pytest-cov", "pytest-regressions"]
|
| 1405 |
+
|
| 1406 |
[[package]]
|
| 1407 |
name = "markupsafe"
|
| 1408 |
version = "2.1.3"
|
|
|
|
| 1510 |
[package.dependencies]
|
| 1511 |
traitlets = "*"
|
| 1512 |
|
| 1513 |
+
[[package]]
|
| 1514 |
+
name = "mdurl"
|
| 1515 |
+
version = "0.1.2"
|
| 1516 |
+
description = "Markdown URL utilities"
|
| 1517 |
+
optional = false
|
| 1518 |
+
python-versions = ">=3.7"
|
| 1519 |
+
files = [
|
| 1520 |
+
{file = "mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8"},
|
| 1521 |
+
{file = "mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba"},
|
| 1522 |
+
]
|
| 1523 |
+
|
| 1524 |
[[package]]
|
| 1525 |
name = "mistune"
|
| 1526 |
version = "3.0.1"
|
|
|
|
| 1731 |
|
| 1732 |
[[package]]
|
| 1733 |
name = "nbconvert"
|
| 1734 |
+
version = "7.7.2"
|
| 1735 |
description = "Converting Jupyter Notebooks"
|
| 1736 |
optional = false
|
| 1737 |
python-versions = ">=3.8"
|
| 1738 |
files = [
|
| 1739 |
+
{file = "nbconvert-7.7.2-py3-none-any.whl", hash = "sha256:25e0cf2b663ee0cd5a90afb6b2f2940bf1abe5cc5bc995b88c8156ca65fa7ede"},
|
| 1740 |
+
{file = "nbconvert-7.7.2.tar.gz", hash = "sha256:36d3e7bf32f0c075878176cdeeb645931c994cbed5b747bc7a570ba8cd2321f3"},
|
| 1741 |
]
|
| 1742 |
|
| 1743 |
[package.dependencies]
|
|
|
|
| 1984 |
{file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"},
|
| 1985 |
]
|
| 1986 |
|
| 1987 |
+
[[package]]
|
| 1988 |
+
name = "pandas"
|
| 1989 |
+
version = "2.0.3"
|
| 1990 |
+
description = "Powerful data structures for data analysis, time series, and statistics"
|
| 1991 |
+
optional = false
|
| 1992 |
+
python-versions = ">=3.8"
|
| 1993 |
+
files = [
|
| 1994 |
+
{file = "pandas-2.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e4c7c9f27a4185304c7caf96dc7d91bc60bc162221152de697c98eb0b2648dd8"},
|
| 1995 |
+
{file = "pandas-2.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f167beed68918d62bffb6ec64f2e1d8a7d297a038f86d4aed056b9493fca407f"},
|
| 1996 |
+
{file = "pandas-2.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce0c6f76a0f1ba361551f3e6dceaff06bde7514a374aa43e33b588ec10420183"},
|
| 1997 |
+
{file = "pandas-2.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba619e410a21d8c387a1ea6e8a0e49bb42216474436245718d7f2e88a2f8d7c0"},
|
| 1998 |
+
{file = "pandas-2.0.3-cp310-cp310-win32.whl", hash = "sha256:3ef285093b4fe5058eefd756100a367f27029913760773c8bf1d2d8bebe5d210"},
|
| 1999 |
+
{file = "pandas-2.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:9ee1a69328d5c36c98d8e74db06f4ad518a1840e8ccb94a4ba86920986bb617e"},
|
| 2000 |
+
{file = "pandas-2.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b084b91d8d66ab19f5bb3256cbd5ea661848338301940e17f4492b2ce0801fe8"},
|
| 2001 |
+
{file = "pandas-2.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:37673e3bdf1551b95bf5d4ce372b37770f9529743d2498032439371fc7b7eb26"},
|
| 2002 |
+
{file = "pandas-2.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b9cb1e14fdb546396b7e1b923ffaeeac24e4cedd14266c3497216dd4448e4f2d"},
|
| 2003 |
+
{file = "pandas-2.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9cd88488cceb7635aebb84809d087468eb33551097d600c6dad13602029c2df"},
|
| 2004 |
+
{file = "pandas-2.0.3-cp311-cp311-win32.whl", hash = "sha256:694888a81198786f0e164ee3a581df7d505024fbb1f15202fc7db88a71d84ebd"},
|
| 2005 |
+
{file = "pandas-2.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:6a21ab5c89dcbd57f78d0ae16630b090eec626360085a4148693def5452d8a6b"},
|
| 2006 |
+
{file = "pandas-2.0.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9e4da0d45e7f34c069fe4d522359df7d23badf83abc1d1cef398895822d11061"},
|
| 2007 |
+
{file = "pandas-2.0.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:32fca2ee1b0d93dd71d979726b12b61faa06aeb93cf77468776287f41ff8fdc5"},
|
| 2008 |
+
{file = "pandas-2.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:258d3624b3ae734490e4d63c430256e716f488c4fcb7c8e9bde2d3aa46c29089"},
|
| 2009 |
+
{file = "pandas-2.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9eae3dc34fa1aa7772dd3fc60270d13ced7346fcbcfee017d3132ec625e23bb0"},
|
| 2010 |
+
{file = "pandas-2.0.3-cp38-cp38-win32.whl", hash = "sha256:f3421a7afb1a43f7e38e82e844e2bca9a6d793d66c1a7f9f0ff39a795bbc5e02"},
|
| 2011 |
+
{file = "pandas-2.0.3-cp38-cp38-win_amd64.whl", hash = "sha256:69d7f3884c95da3a31ef82b7618af5710dba95bb885ffab339aad925c3e8ce78"},
|
| 2012 |
+
{file = "pandas-2.0.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5247fb1ba347c1261cbbf0fcfba4a3121fbb4029d95d9ef4dc45406620b25c8b"},
|
| 2013 |
+
{file = "pandas-2.0.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:81af086f4543c9d8bb128328b5d32e9986e0c84d3ee673a2ac6fb57fd14f755e"},
|
| 2014 |
+
{file = "pandas-2.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1994c789bf12a7c5098277fb43836ce090f1073858c10f9220998ac74f37c69b"},
|
| 2015 |
+
{file = "pandas-2.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ec591c48e29226bcbb316e0c1e9423622bc7a4eaf1ef7c3c9fa1a3981f89641"},
|
| 2016 |
+
{file = "pandas-2.0.3-cp39-cp39-win32.whl", hash = "sha256:04dbdbaf2e4d46ca8da896e1805bc04eb85caa9a82e259e8eed00254d5e0c682"},
|
| 2017 |
+
{file = "pandas-2.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:1168574b036cd8b93abc746171c9b4f1b83467438a5e45909fed645cf8692dbc"},
|
| 2018 |
+
{file = "pandas-2.0.3.tar.gz", hash = "sha256:c02f372a88e0d17f36d3093a644c73cfc1788e876a7c4bcb4020a77512e2043c"},
|
| 2019 |
+
]
|
| 2020 |
+
|
| 2021 |
+
[package.dependencies]
|
| 2022 |
+
numpy = [
|
| 2023 |
+
{version = ">=1.20.3", markers = "python_version < \"3.10\""},
|
| 2024 |
+
{version = ">=1.21.0", markers = "python_version >= \"3.10\""},
|
| 2025 |
+
{version = ">=1.23.2", markers = "python_version >= \"3.11\""},
|
| 2026 |
+
]
|
| 2027 |
+
python-dateutil = ">=2.8.2"
|
| 2028 |
+
pytz = ">=2020.1"
|
| 2029 |
+
tzdata = ">=2022.1"
|
| 2030 |
+
|
| 2031 |
+
[package.extras]
|
| 2032 |
+
all = ["PyQt5 (>=5.15.1)", "SQLAlchemy (>=1.4.16)", "beautifulsoup4 (>=4.9.3)", "bottleneck (>=1.3.2)", "brotlipy (>=0.7.0)", "fastparquet (>=0.6.3)", "fsspec (>=2021.07.0)", "gcsfs (>=2021.07.0)", "html5lib (>=1.1)", "hypothesis (>=6.34.2)", "jinja2 (>=3.0.0)", "lxml (>=4.6.3)", "matplotlib (>=3.6.1)", "numba (>=0.53.1)", "numexpr (>=2.7.3)", "odfpy (>=1.4.1)", "openpyxl (>=3.0.7)", "pandas-gbq (>=0.15.0)", "psycopg2 (>=2.8.6)", "pyarrow (>=7.0.0)", "pymysql (>=1.0.2)", "pyreadstat (>=1.1.2)", "pytest (>=7.3.2)", "pytest-asyncio (>=0.17.0)", "pytest-xdist (>=2.2.0)", "python-snappy (>=0.6.0)", "pyxlsb (>=1.0.8)", "qtpy (>=2.2.0)", "s3fs (>=2021.08.0)", "scipy (>=1.7.1)", "tables (>=3.6.1)", "tabulate (>=0.8.9)", "xarray (>=0.21.0)", "xlrd (>=2.0.1)", "xlsxwriter (>=1.4.3)", "zstandard (>=0.15.2)"]
|
| 2033 |
+
aws = ["s3fs (>=2021.08.0)"]
|
| 2034 |
+
clipboard = ["PyQt5 (>=5.15.1)", "qtpy (>=2.2.0)"]
|
| 2035 |
+
compression = ["brotlipy (>=0.7.0)", "python-snappy (>=0.6.0)", "zstandard (>=0.15.2)"]
|
| 2036 |
+
computation = ["scipy (>=1.7.1)", "xarray (>=0.21.0)"]
|
| 2037 |
+
excel = ["odfpy (>=1.4.1)", "openpyxl (>=3.0.7)", "pyxlsb (>=1.0.8)", "xlrd (>=2.0.1)", "xlsxwriter (>=1.4.3)"]
|
| 2038 |
+
feather = ["pyarrow (>=7.0.0)"]
|
| 2039 |
+
fss = ["fsspec (>=2021.07.0)"]
|
| 2040 |
+
gcp = ["gcsfs (>=2021.07.0)", "pandas-gbq (>=0.15.0)"]
|
| 2041 |
+
hdf5 = ["tables (>=3.6.1)"]
|
| 2042 |
+
html = ["beautifulsoup4 (>=4.9.3)", "html5lib (>=1.1)", "lxml (>=4.6.3)"]
|
| 2043 |
+
mysql = ["SQLAlchemy (>=1.4.16)", "pymysql (>=1.0.2)"]
|
| 2044 |
+
output-formatting = ["jinja2 (>=3.0.0)", "tabulate (>=0.8.9)"]
|
| 2045 |
+
parquet = ["pyarrow (>=7.0.0)"]
|
| 2046 |
+
performance = ["bottleneck (>=1.3.2)", "numba (>=0.53.1)", "numexpr (>=2.7.1)"]
|
| 2047 |
+
plot = ["matplotlib (>=3.6.1)"]
|
| 2048 |
+
postgresql = ["SQLAlchemy (>=1.4.16)", "psycopg2 (>=2.8.6)"]
|
| 2049 |
+
spss = ["pyreadstat (>=1.1.2)"]
|
| 2050 |
+
sql-other = ["SQLAlchemy (>=1.4.16)"]
|
| 2051 |
+
test = ["hypothesis (>=6.34.2)", "pytest (>=7.3.2)", "pytest-asyncio (>=0.17.0)", "pytest-xdist (>=2.2.0)"]
|
| 2052 |
+
xml = ["lxml (>=4.6.3)"]
|
| 2053 |
+
|
| 2054 |
[[package]]
|
| 2055 |
name = "pandocfilters"
|
| 2056 |
version = "1.5.0"
|
|
|
|
| 2113 |
{file = "pickleshare-0.7.5.tar.gz", hash = "sha256:87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca"},
|
| 2114 |
]
|
| 2115 |
|
| 2116 |
+
[[package]]
|
| 2117 |
+
name = "pillow"
|
| 2118 |
+
version = "9.5.0"
|
| 2119 |
+
description = "Python Imaging Library (Fork)"
|
| 2120 |
+
optional = false
|
| 2121 |
+
python-versions = ">=3.7"
|
| 2122 |
+
files = [
|
| 2123 |
+
{file = "Pillow-9.5.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:ace6ca218308447b9077c14ea4ef381ba0b67ee78d64046b3f19cf4e1139ad16"},
|
| 2124 |
+
{file = "Pillow-9.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d3d403753c9d5adc04d4694d35cf0391f0f3d57c8e0030aac09d7678fa8030aa"},
|
| 2125 |
+
{file = "Pillow-9.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5ba1b81ee69573fe7124881762bb4cd2e4b6ed9dd28c9c60a632902fe8db8b38"},
|
| 2126 |
+
{file = "Pillow-9.5.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fe7e1c262d3392afcf5071df9afa574544f28eac825284596ac6db56e6d11062"},
|
| 2127 |
+
{file = "Pillow-9.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f36397bf3f7d7c6a3abdea815ecf6fd14e7fcd4418ab24bae01008d8d8ca15e"},
|
| 2128 |
+
{file = "Pillow-9.5.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:252a03f1bdddce077eff2354c3861bf437c892fb1832f75ce813ee94347aa9b5"},
|
| 2129 |
+
{file = "Pillow-9.5.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:85ec677246533e27770b0de5cf0f9d6e4ec0c212a1f89dfc941b64b21226009d"},
|
| 2130 |
+
{file = "Pillow-9.5.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b416f03d37d27290cb93597335a2f85ed446731200705b22bb927405320de903"},
|
| 2131 |
+
{file = "Pillow-9.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:1781a624c229cb35a2ac31cc4a77e28cafc8900733a864870c49bfeedacd106a"},
|
| 2132 |
+
{file = "Pillow-9.5.0-cp310-cp310-win32.whl", hash = "sha256:8507eda3cd0608a1f94f58c64817e83ec12fa93a9436938b191b80d9e4c0fc44"},
|
| 2133 |
+
{file = "Pillow-9.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d3c6b54e304c60c4181da1c9dadf83e4a54fd266a99c70ba646a9baa626819eb"},
|
| 2134 |
+
{file = "Pillow-9.5.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:7ec6f6ce99dab90b52da21cf0dc519e21095e332ff3b399a357c187b1a5eee32"},
|
| 2135 |
+
{file = "Pillow-9.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:560737e70cb9c6255d6dcba3de6578a9e2ec4b573659943a5e7e4af13f298f5c"},
|
| 2136 |
+
{file = "Pillow-9.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:96e88745a55b88a7c64fa49bceff363a1a27d9a64e04019c2281049444a571e3"},
|
| 2137 |
+
{file = "Pillow-9.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d9c206c29b46cfd343ea7cdfe1232443072bbb270d6a46f59c259460db76779a"},
|
| 2138 |
+
{file = "Pillow-9.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cfcc2c53c06f2ccb8976fb5c71d448bdd0a07d26d8e07e321c103416444c7ad1"},
|
| 2139 |
+
{file = "Pillow-9.5.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:a0f9bb6c80e6efcde93ffc51256d5cfb2155ff8f78292f074f60f9e70b942d99"},
|
| 2140 |
+
{file = "Pillow-9.5.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:8d935f924bbab8f0a9a28404422da8af4904e36d5c33fc6f677e4c4485515625"},
|
| 2141 |
+
{file = "Pillow-9.5.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:fed1e1cf6a42577953abbe8e6cf2fe2f566daebde7c34724ec8803c4c0cda579"},
|
| 2142 |
+
{file = "Pillow-9.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c1170d6b195555644f0616fd6ed929dfcf6333b8675fcca044ae5ab110ded296"},
|
| 2143 |
+
{file = "Pillow-9.5.0-cp311-cp311-win32.whl", hash = "sha256:54f7102ad31a3de5666827526e248c3530b3a33539dbda27c6843d19d72644ec"},
|
| 2144 |
+
{file = "Pillow-9.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:cfa4561277f677ecf651e2b22dc43e8f5368b74a25a8f7d1d4a3a243e573f2d4"},
|
| 2145 |
+
{file = "Pillow-9.5.0-cp311-cp311-win_arm64.whl", hash = "sha256:965e4a05ef364e7b973dd17fc765f42233415974d773e82144c9bbaaaea5d089"},
|
| 2146 |
+
{file = "Pillow-9.5.0-cp312-cp312-win32.whl", hash = "sha256:22baf0c3cf0c7f26e82d6e1adf118027afb325e703922c8dfc1d5d0156bb2eeb"},
|
| 2147 |
+
{file = "Pillow-9.5.0-cp312-cp312-win_amd64.whl", hash = "sha256:432b975c009cf649420615388561c0ce7cc31ce9b2e374db659ee4f7d57a1f8b"},
|
| 2148 |
+
{file = "Pillow-9.5.0-cp37-cp37m-macosx_10_10_x86_64.whl", hash = "sha256:5d4ebf8e1db4441a55c509c4baa7a0587a0210f7cd25fcfe74dbbce7a4bd1906"},
|
| 2149 |
+
{file = "Pillow-9.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:375f6e5ee9620a271acb6820b3d1e94ffa8e741c0601db4c0c4d3cb0a9c224bf"},
|
| 2150 |
+
{file = "Pillow-9.5.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:99eb6cafb6ba90e436684e08dad8be1637efb71c4f2180ee6b8f940739406e78"},
|
| 2151 |
+
{file = "Pillow-9.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2dfaaf10b6172697b9bceb9a3bd7b951819d1ca339a5ef294d1f1ac6d7f63270"},
|
| 2152 |
+
{file = "Pillow-9.5.0-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:763782b2e03e45e2c77d7779875f4432e25121ef002a41829d8868700d119392"},
|
| 2153 |
+
{file = "Pillow-9.5.0-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:35f6e77122a0c0762268216315bf239cf52b88865bba522999dc38f1c52b9b47"},
|
| 2154 |
+
{file = "Pillow-9.5.0-cp37-cp37m-win32.whl", hash = "sha256:aca1c196f407ec7cf04dcbb15d19a43c507a81f7ffc45b690899d6a76ac9fda7"},
|
| 2155 |
+
{file = "Pillow-9.5.0-cp37-cp37m-win_amd64.whl", hash = "sha256:322724c0032af6692456cd6ed554bb85f8149214d97398bb80613b04e33769f6"},
|
| 2156 |
+
{file = "Pillow-9.5.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:a0aa9417994d91301056f3d0038af1199eb7adc86e646a36b9e050b06f526597"},
|
| 2157 |
+
{file = "Pillow-9.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f8286396b351785801a976b1e85ea88e937712ee2c3ac653710a4a57a8da5d9c"},
|
| 2158 |
+
{file = "Pillow-9.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c830a02caeb789633863b466b9de10c015bded434deb3ec87c768e53752ad22a"},
|
| 2159 |
+
{file = "Pillow-9.5.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fbd359831c1657d69bb81f0db962905ee05e5e9451913b18b831febfe0519082"},
|
| 2160 |
+
{file = "Pillow-9.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8fc330c3370a81bbf3f88557097d1ea26cd8b019d6433aa59f71195f5ddebbf"},
|
| 2161 |
+
{file = "Pillow-9.5.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:7002d0797a3e4193c7cdee3198d7c14f92c0836d6b4a3f3046a64bd1ce8df2bf"},
|
| 2162 |
+
{file = "Pillow-9.5.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:229e2c79c00e85989a34b5981a2b67aa079fd08c903f0aaead522a1d68d79e51"},
|
| 2163 |
+
{file = "Pillow-9.5.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:9adf58f5d64e474bed00d69bcd86ec4bcaa4123bfa70a65ce72e424bfb88ed96"},
|
| 2164 |
+
{file = "Pillow-9.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:662da1f3f89a302cc22faa9f14a262c2e3951f9dbc9617609a47521c69dd9f8f"},
|
| 2165 |
+
{file = "Pillow-9.5.0-cp38-cp38-win32.whl", hash = "sha256:6608ff3bf781eee0cd14d0901a2b9cc3d3834516532e3bd673a0a204dc8615fc"},
|
| 2166 |
+
{file = "Pillow-9.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:e49eb4e95ff6fd7c0c402508894b1ef0e01b99a44320ba7d8ecbabefddcc5569"},
|
| 2167 |
+
{file = "Pillow-9.5.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:482877592e927fd263028c105b36272398e3e1be3269efda09f6ba21fd83ec66"},
|
| 2168 |
+
{file = "Pillow-9.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3ded42b9ad70e5f1754fb7c2e2d6465a9c842e41d178f262e08b8c85ed8a1d8e"},
|
| 2169 |
+
{file = "Pillow-9.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c446d2245ba29820d405315083d55299a796695d747efceb5717a8b450324115"},
|
| 2170 |
+
{file = "Pillow-9.5.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8aca1152d93dcc27dc55395604dcfc55bed5f25ef4c98716a928bacba90d33a3"},
|
| 2171 |
+
{file = "Pillow-9.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:608488bdcbdb4ba7837461442b90ea6f3079397ddc968c31265c1e056964f1ef"},
|
| 2172 |
+
{file = "Pillow-9.5.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:60037a8db8750e474af7ffc9faa9b5859e6c6d0a50e55c45576bf28be7419705"},
|
| 2173 |
+
{file = "Pillow-9.5.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:07999f5834bdc404c442146942a2ecadd1cb6292f5229f4ed3b31e0a108746b1"},
|
| 2174 |
+
{file = "Pillow-9.5.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:a127ae76092974abfbfa38ca2d12cbeddcdeac0fb71f9627cc1135bedaf9d51a"},
|
| 2175 |
+
{file = "Pillow-9.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:489f8389261e5ed43ac8ff7b453162af39c3e8abd730af8363587ba64bb2e865"},
|
| 2176 |
+
{file = "Pillow-9.5.0-cp39-cp39-win32.whl", hash = "sha256:9b1af95c3a967bf1da94f253e56b6286b50af23392a886720f563c547e48e964"},
|
| 2177 |
+
{file = "Pillow-9.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:77165c4a5e7d5a284f10a6efaa39a0ae8ba839da344f20b111d62cc932fa4e5d"},
|
| 2178 |
+
{file = "Pillow-9.5.0-pp38-pypy38_pp73-macosx_10_10_x86_64.whl", hash = "sha256:833b86a98e0ede388fa29363159c9b1a294b0905b5128baf01db683672f230f5"},
|
| 2179 |
+
{file = "Pillow-9.5.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:aaf305d6d40bd9632198c766fb64f0c1a83ca5b667f16c1e79e1661ab5060140"},
|
| 2180 |
+
{file = "Pillow-9.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0852ddb76d85f127c135b6dd1f0bb88dbb9ee990d2cd9aa9e28526c93e794fba"},
|
| 2181 |
+
{file = "Pillow-9.5.0-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:91ec6fe47b5eb5a9968c79ad9ed78c342b1f97a091677ba0e012701add857829"},
|
| 2182 |
+
{file = "Pillow-9.5.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:cb841572862f629b99725ebaec3287fc6d275be9b14443ea746c1dd325053cbd"},
|
| 2183 |
+
{file = "Pillow-9.5.0-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:c380b27d041209b849ed246b111b7c166ba36d7933ec6e41175fd15ab9eb1572"},
|
| 2184 |
+
{file = "Pillow-9.5.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7c9af5a3b406a50e313467e3565fc99929717f780164fe6fbb7704edba0cebbe"},
|
| 2185 |
+
{file = "Pillow-9.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5671583eab84af046a397d6d0ba25343c00cd50bce03787948e0fff01d4fd9b1"},
|
| 2186 |
+
{file = "Pillow-9.5.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:84a6f19ce086c1bf894644b43cd129702f781ba5751ca8572f08aa40ef0ab7b7"},
|
| 2187 |
+
{file = "Pillow-9.5.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:1e7723bd90ef94eda669a3c2c19d549874dd5badaeefabefd26053304abe5799"},
|
| 2188 |
+
{file = "Pillow-9.5.0.tar.gz", hash = "sha256:bf548479d336726d7a0eceb6e767e179fbde37833ae42794602631a070d630f1"},
|
| 2189 |
+
]
|
| 2190 |
+
|
| 2191 |
+
[package.extras]
|
| 2192 |
+
docs = ["furo", "olefile", "sphinx (>=2.4)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinx-removed-in", "sphinxext-opengraph"]
|
| 2193 |
+
tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"]
|
| 2194 |
+
|
| 2195 |
[[package]]
|
| 2196 |
name = "platformdirs"
|
| 2197 |
version = "3.9.1"
|
|
|
|
| 2250 |
[package.dependencies]
|
| 2251 |
wcwidth = "*"
|
| 2252 |
|
| 2253 |
+
[[package]]
|
| 2254 |
+
name = "protobuf"
|
| 2255 |
+
version = "4.23.4"
|
| 2256 |
+
description = ""
|
| 2257 |
+
optional = false
|
| 2258 |
+
python-versions = ">=3.7"
|
| 2259 |
+
files = [
|
| 2260 |
+
{file = "protobuf-4.23.4-cp310-abi3-win32.whl", hash = "sha256:5fea3c64d41ea5ecf5697b83e41d09b9589e6f20b677ab3c48e5f242d9b7897b"},
|
| 2261 |
+
{file = "protobuf-4.23.4-cp310-abi3-win_amd64.whl", hash = "sha256:7b19b6266d92ca6a2a87effa88ecc4af73ebc5cfde194dc737cf8ef23a9a3b12"},
|
| 2262 |
+
{file = "protobuf-4.23.4-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:8547bf44fe8cec3c69e3042f5c4fb3e36eb2a7a013bb0a44c018fc1e427aafbd"},
|
| 2263 |
+
{file = "protobuf-4.23.4-cp37-abi3-manylinux2014_aarch64.whl", hash = "sha256:fee88269a090ada09ca63551bf2f573eb2424035bcf2cb1b121895b01a46594a"},
|
| 2264 |
+
{file = "protobuf-4.23.4-cp37-abi3-manylinux2014_x86_64.whl", hash = "sha256:effeac51ab79332d44fba74660d40ae79985901ac21bca408f8dc335a81aa597"},
|
| 2265 |
+
{file = "protobuf-4.23.4-cp37-cp37m-win32.whl", hash = "sha256:c3e0939433c40796ca4cfc0fac08af50b00eb66a40bbbc5dee711998fb0bbc1e"},
|
| 2266 |
+
{file = "protobuf-4.23.4-cp37-cp37m-win_amd64.whl", hash = "sha256:9053df6df8e5a76c84339ee4a9f5a2661ceee4a0dab019e8663c50ba324208b0"},
|
| 2267 |
+
{file = "protobuf-4.23.4-cp38-cp38-win32.whl", hash = "sha256:e1c915778d8ced71e26fcf43c0866d7499891bca14c4368448a82edc61fdbc70"},
|
| 2268 |
+
{file = "protobuf-4.23.4-cp38-cp38-win_amd64.whl", hash = "sha256:351cc90f7d10839c480aeb9b870a211e322bf05f6ab3f55fcb2f51331f80a7d2"},
|
| 2269 |
+
{file = "protobuf-4.23.4-cp39-cp39-win32.whl", hash = "sha256:6dd9b9940e3f17077e820b75851126615ee38643c2c5332aa7a359988820c720"},
|
| 2270 |
+
{file = "protobuf-4.23.4-cp39-cp39-win_amd64.whl", hash = "sha256:0a5759f5696895de8cc913f084e27fd4125e8fb0914bb729a17816a33819f474"},
|
| 2271 |
+
{file = "protobuf-4.23.4-py3-none-any.whl", hash = "sha256:e9d0be5bf34b275b9f87ba7407796556abeeba635455d036c7351f7c183ef8ff"},
|
| 2272 |
+
{file = "protobuf-4.23.4.tar.gz", hash = "sha256:ccd9430c0719dce806b93f89c91de7977304729e55377f872a92465d548329a9"},
|
| 2273 |
+
]
|
| 2274 |
+
|
| 2275 |
[[package]]
|
| 2276 |
name = "psutil"
|
| 2277 |
version = "5.9.5"
|
|
|
|
| 2323 |
[package.extras]
|
| 2324 |
tests = ["pytest"]
|
| 2325 |
|
| 2326 |
+
[[package]]
|
| 2327 |
+
name = "pyarrow"
|
| 2328 |
+
version = "12.0.1"
|
| 2329 |
+
description = "Python library for Apache Arrow"
|
| 2330 |
+
optional = false
|
| 2331 |
+
python-versions = ">=3.7"
|
| 2332 |
+
files = [
|
| 2333 |
+
{file = "pyarrow-12.0.1-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:6d288029a94a9bb5407ceebdd7110ba398a00412c5b0155ee9813a40d246c5df"},
|
| 2334 |
+
{file = "pyarrow-12.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:345e1828efdbd9aa4d4de7d5676778aba384a2c3add896d995b23d368e60e5af"},
|
| 2335 |
+
{file = "pyarrow-12.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d6009fdf8986332b2169314da482baed47ac053311c8934ac6651e614deacd6"},
|
| 2336 |
+
{file = "pyarrow-12.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2d3c4cbbf81e6dd23fe921bc91dc4619ea3b79bc58ef10bce0f49bdafb103daf"},
|
| 2337 |
+
{file = "pyarrow-12.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:cdacf515ec276709ac8042c7d9bd5be83b4f5f39c6c037a17a60d7ebfd92c890"},
|
| 2338 |
+
{file = "pyarrow-12.0.1-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:749be7fd2ff260683f9cc739cb862fb11be376de965a2a8ccbf2693b098db6c7"},
|
| 2339 |
+
{file = "pyarrow-12.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6895b5fb74289d055c43db3af0de6e16b07586c45763cb5e558d38b86a91e3a7"},
|
| 2340 |
+
{file = "pyarrow-12.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1887bdae17ec3b4c046fcf19951e71b6a619f39fa674f9881216173566c8f718"},
|
| 2341 |
+
{file = "pyarrow-12.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2c9cb8eeabbadf5fcfc3d1ddea616c7ce893db2ce4dcef0ac13b099ad7ca082"},
|
| 2342 |
+
{file = "pyarrow-12.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:ce4aebdf412bd0eeb800d8e47db854f9f9f7e2f5a0220440acf219ddfddd4f63"},
|
| 2343 |
+
{file = "pyarrow-12.0.1-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:e0d8730c7f6e893f6db5d5b86eda42c0a130842d101992b581e2138e4d5663d3"},
|
| 2344 |
+
{file = "pyarrow-12.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:43364daec02f69fec89d2315f7fbfbeec956e0d991cbbef471681bd77875c40f"},
|
| 2345 |
+
{file = "pyarrow-12.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:051f9f5ccf585f12d7de836e50965b3c235542cc896959320d9776ab93f3b33d"},
|
| 2346 |
+
{file = "pyarrow-12.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:be2757e9275875d2a9c6e6052ac7957fbbfc7bc7370e4a036a9b893e96fedaba"},
|
| 2347 |
+
{file = "pyarrow-12.0.1-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:cf812306d66f40f69e684300f7af5111c11f6e0d89d6b733e05a3de44961529d"},
|
| 2348 |
+
{file = "pyarrow-12.0.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:459a1c0ed2d68671188b2118c63bac91eaef6fc150c77ddd8a583e3c795737bf"},
|
| 2349 |
+
{file = "pyarrow-12.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:85e705e33eaf666bbe508a16fd5ba27ca061e177916b7a317ba5a51bee43384c"},
|
| 2350 |
+
{file = "pyarrow-12.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9120c3eb2b1f6f516a3b7a9714ed860882d9ef98c4b17edcdc91d95b7528db60"},
|
| 2351 |
+
{file = "pyarrow-12.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:c780f4dc40460015d80fcd6a6140de80b615349ed68ef9adb653fe351778c9b3"},
|
| 2352 |
+
{file = "pyarrow-12.0.1-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:a3c63124fc26bf5f95f508f5d04e1ece8cc23a8b0af2a1e6ab2b1ec3fdc91b24"},
|
| 2353 |
+
{file = "pyarrow-12.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b13329f79fa4472324f8d32dc1b1216616d09bd1e77cfb13104dec5463632c36"},
|
| 2354 |
+
{file = "pyarrow-12.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb656150d3d12ec1396f6dde542db1675a95c0cc8366d507347b0beed96e87ca"},
|
| 2355 |
+
{file = "pyarrow-12.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6251e38470da97a5b2e00de5c6a049149f7b2bd62f12fa5dbb9ac674119ba71a"},
|
| 2356 |
+
{file = "pyarrow-12.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:3de26da901216149ce086920547dfff5cd22818c9eab67ebc41e863a5883bac7"},
|
| 2357 |
+
{file = "pyarrow-12.0.1.tar.gz", hash = "sha256:cce317fc96e5b71107bf1f9f184d5e54e2bd14bbf3f9a3d62819961f0af86fec"},
|
| 2358 |
+
]
|
| 2359 |
+
|
| 2360 |
+
[package.dependencies]
|
| 2361 |
+
numpy = ">=1.16.6"
|
| 2362 |
+
|
| 2363 |
[[package]]
|
| 2364 |
name = "pycparser"
|
| 2365 |
version = "2.21"
|
|
|
|
| 2423 |
dotenv = ["python-dotenv (>=0.10.4)"]
|
| 2424 |
email = ["email-validator (>=1.0.3)"]
|
| 2425 |
|
| 2426 |
+
[[package]]
|
| 2427 |
+
name = "pydeck"
|
| 2428 |
+
version = "0.8.0"
|
| 2429 |
+
description = "Widget for deck.gl maps"
|
| 2430 |
+
optional = false
|
| 2431 |
+
python-versions = ">=3.7"
|
| 2432 |
+
files = [
|
| 2433 |
+
{file = "pydeck-0.8.0-py2.py3-none-any.whl", hash = "sha256:a8fa7757c6f24bba033af39db3147cb020eef44012ba7e60d954de187f9ed4d5"},
|
| 2434 |
+
{file = "pydeck-0.8.0.tar.gz", hash = "sha256:07edde833f7cfcef6749124351195aa7dcd24663d4909fd7898dbd0b6fbc01ec"},
|
| 2435 |
+
]
|
| 2436 |
+
|
| 2437 |
+
[package.dependencies]
|
| 2438 |
+
jinja2 = ">=2.10.1"
|
| 2439 |
+
numpy = ">=1.16.4"
|
| 2440 |
+
|
| 2441 |
+
[package.extras]
|
| 2442 |
+
carto = ["pydeck-carto"]
|
| 2443 |
+
jupyter = ["ipykernel (>=5.1.2)", "ipython (>=5.8.0)", "ipywidgets (>=7,<8)", "traitlets (>=4.3.2)"]
|
| 2444 |
+
|
| 2445 |
[[package]]
|
| 2446 |
name = "pygments"
|
| 2447 |
version = "2.15.1"
|
|
|
|
| 2456 |
[package.extras]
|
| 2457 |
plugins = ["importlib-metadata"]
|
| 2458 |
|
| 2459 |
+
[[package]]
|
| 2460 |
+
name = "pympler"
|
| 2461 |
+
version = "1.0.1"
|
| 2462 |
+
description = "A development tool to measure, monitor and analyze the memory behavior of Python objects."
|
| 2463 |
+
optional = false
|
| 2464 |
+
python-versions = ">=3.6"
|
| 2465 |
+
files = [
|
| 2466 |
+
{file = "Pympler-1.0.1-py3-none-any.whl", hash = "sha256:d260dda9ae781e1eab6ea15bacb84015849833ba5555f141d2d9b7b7473b307d"},
|
| 2467 |
+
{file = "Pympler-1.0.1.tar.gz", hash = "sha256:993f1a3599ca3f4fcd7160c7545ad06310c9e12f70174ae7ae8d4e25f6c5d3fa"},
|
| 2468 |
+
]
|
| 2469 |
+
|
| 2470 |
[[package]]
|
| 2471 |
name = "pytest"
|
| 2472 |
version = "7.4.0"
|
|
|
|
| 2528 |
{file = "python_json_logger-2.0.7-py3-none-any.whl", hash = "sha256:f380b826a991ebbe3de4d897aeec42760035ac760345e57b812938dc8b35e2bd"},
|
| 2529 |
]
|
| 2530 |
|
| 2531 |
+
[[package]]
|
| 2532 |
+
name = "pytz"
|
| 2533 |
+
version = "2023.3"
|
| 2534 |
+
description = "World timezone definitions, modern and historical"
|
| 2535 |
+
optional = false
|
| 2536 |
+
python-versions = "*"
|
| 2537 |
+
files = [
|
| 2538 |
+
{file = "pytz-2023.3-py2.py3-none-any.whl", hash = "sha256:a151b3abb88eda1d4e34a9814df37de2a80e301e68ba0fd856fb9b46bfbbbffb"},
|
| 2539 |
+
{file = "pytz-2023.3.tar.gz", hash = "sha256:1d8ce29db189191fb55338ee6d0387d82ab59f3d00eac103412d64e0ebd0c588"},
|
| 2540 |
+
]
|
| 2541 |
+
|
| 2542 |
+
[[package]]
|
| 2543 |
+
name = "pytz-deprecation-shim"
|
| 2544 |
+
version = "0.1.0.post0"
|
| 2545 |
+
description = "Shims to make deprecation of pytz easier"
|
| 2546 |
+
optional = false
|
| 2547 |
+
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7"
|
| 2548 |
+
files = [
|
| 2549 |
+
{file = "pytz_deprecation_shim-0.1.0.post0-py2.py3-none-any.whl", hash = "sha256:8314c9692a636c8eb3bda879b9f119e350e93223ae83e70e80c31675a0fdc1a6"},
|
| 2550 |
+
{file = "pytz_deprecation_shim-0.1.0.post0.tar.gz", hash = "sha256:af097bae1b616dde5c5744441e2ddc69e74dfdcb0c263129610d85b87445a59d"},
|
| 2551 |
+
]
|
| 2552 |
+
|
| 2553 |
+
[package.dependencies]
|
| 2554 |
+
tzdata = {version = "*", markers = "python_version >= \"3.6\""}
|
| 2555 |
+
|
| 2556 |
[[package]]
|
| 2557 |
name = "pywin32"
|
| 2558 |
version = "306"
|
|
|
|
| 2592 |
|
| 2593 |
[[package]]
|
| 2594 |
name = "pyyaml"
|
| 2595 |
+
version = "6.0.1"
|
| 2596 |
description = "YAML parser and emitter for Python"
|
| 2597 |
optional = false
|
| 2598 |
python-versions = ">=3.6"
|
| 2599 |
files = [
|
| 2600 |
+
{file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"},
|
| 2601 |
+
{file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"},
|
| 2602 |
+
{file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"},
|
| 2603 |
+
{file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"},
|
| 2604 |
+
{file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"},
|
| 2605 |
+
{file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"},
|
| 2606 |
+
{file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"},
|
| 2607 |
+
{file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"},
|
| 2608 |
+
{file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"},
|
| 2609 |
+
{file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"},
|
| 2610 |
+
{file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"},
|
| 2611 |
+
{file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"},
|
| 2612 |
+
{file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"},
|
| 2613 |
+
{file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"},
|
| 2614 |
+
{file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"},
|
| 2615 |
+
{file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"},
|
| 2616 |
+
{file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"},
|
| 2617 |
+
{file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"},
|
| 2618 |
+
{file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"},
|
| 2619 |
+
{file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"},
|
| 2620 |
+
{file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"},
|
| 2621 |
+
{file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"},
|
| 2622 |
+
{file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"},
|
| 2623 |
+
{file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"},
|
| 2624 |
+
{file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"},
|
| 2625 |
+
{file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"},
|
| 2626 |
+
{file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"},
|
| 2627 |
+
{file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"},
|
| 2628 |
+
{file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"},
|
| 2629 |
+
{file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"},
|
| 2630 |
+
{file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"},
|
| 2631 |
+
{file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"},
|
| 2632 |
+
{file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"},
|
| 2633 |
+
{file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"},
|
| 2634 |
+
{file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"},
|
| 2635 |
+
{file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"},
|
| 2636 |
+
{file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"},
|
| 2637 |
+
{file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"},
|
| 2638 |
+
{file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"},
|
| 2639 |
+
{file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"},
|
| 2640 |
]
|
| 2641 |
|
| 2642 |
[[package]]
|
|
|
|
| 2730 |
|
| 2731 |
[[package]]
|
| 2732 |
name = "referencing"
|
| 2733 |
+
version = "0.30.0"
|
| 2734 |
description = "JSON Referencing + Python"
|
| 2735 |
optional = false
|
| 2736 |
python-versions = ">=3.8"
|
| 2737 |
files = [
|
| 2738 |
+
{file = "referencing-0.30.0-py3-none-any.whl", hash = "sha256:c257b08a399b6c2f5a3510a50d28ab5dbc7bbde049bcaf954d43c446f83ab548"},
|
| 2739 |
+
{file = "referencing-0.30.0.tar.gz", hash = "sha256:47237742e990457f7512c7d27486394a9aadaf876cbfaa4be65b27b4f4d47c6b"},
|
| 2740 |
]
|
| 2741 |
|
| 2742 |
[package.dependencies]
|
|
|
|
| 2789 |
{file = "rfc3986_validator-0.1.1.tar.gz", hash = "sha256:3d44bde7921b3b9ec3ae4e3adca370438eccebc676456449b145d533b240d055"},
|
| 2790 |
]
|
| 2791 |
|
| 2792 |
+
[[package]]
|
| 2793 |
+
name = "rich"
|
| 2794 |
+
version = "13.4.2"
|
| 2795 |
+
description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal"
|
| 2796 |
+
optional = false
|
| 2797 |
+
python-versions = ">=3.7.0"
|
| 2798 |
+
files = [
|
| 2799 |
+
{file = "rich-13.4.2-py3-none-any.whl", hash = "sha256:8f87bc7ee54675732fa66a05ebfe489e27264caeeff3728c945d25971b6485ec"},
|
| 2800 |
+
{file = "rich-13.4.2.tar.gz", hash = "sha256:d653d6bccede5844304c605d5aac802c7cf9621efd700b46c7ec2b51ea914898"},
|
| 2801 |
+
]
|
| 2802 |
+
|
| 2803 |
+
[package.dependencies]
|
| 2804 |
+
markdown-it-py = ">=2.2.0"
|
| 2805 |
+
pygments = ">=2.13.0,<3.0.0"
|
| 2806 |
+
|
| 2807 |
+
[package.extras]
|
| 2808 |
+
jupyter = ["ipywidgets (>=7.5.1,<9)"]
|
| 2809 |
+
|
| 2810 |
[[package]]
|
| 2811 |
name = "rpds-py"
|
| 2812 |
+
version = "0.9.2"
|
| 2813 |
description = "Python bindings to Rust's persistent data structures (rpds)"
|
| 2814 |
optional = false
|
| 2815 |
python-versions = ">=3.8"
|
| 2816 |
files = [
|
| 2817 |
+
{file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"},
|
| 2818 |
+
{file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"},
|
| 2819 |
+
{file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"},
|
| 2820 |
+
{file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"},
|
| 2821 |
+
{file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"},
|
| 2822 |
+
{file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"},
|
| 2823 |
+
{file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"},
|
| 2824 |
+
{file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"},
|
| 2825 |
+
{file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"},
|
| 2826 |
+
{file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"},
|
| 2827 |
+
{file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"},
|
| 2828 |
+
{file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"},
|
| 2829 |
+
{file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"},
|
| 2830 |
+
{file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"},
|
| 2831 |
+
{file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"},
|
| 2832 |
+
{file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"},
|
| 2833 |
+
{file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"},
|
| 2834 |
+
{file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"},
|
| 2835 |
+
{file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"},
|
| 2836 |
+
{file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"},
|
| 2837 |
+
{file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"},
|
| 2838 |
+
{file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"},
|
| 2839 |
+
{file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"},
|
| 2840 |
+
{file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"},
|
| 2841 |
+
{file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"},
|
| 2842 |
+
{file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"},
|
| 2843 |
+
{file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"},
|
| 2844 |
+
{file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"},
|
| 2845 |
+
{file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"},
|
| 2846 |
+
{file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"},
|
| 2847 |
+
{file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"},
|
| 2848 |
+
{file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"},
|
| 2849 |
+
{file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"},
|
| 2850 |
+
{file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"},
|
| 2851 |
+
{file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"},
|
| 2852 |
+
{file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"},
|
| 2853 |
+
{file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"},
|
| 2854 |
+
{file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"},
|
| 2855 |
+
{file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"},
|
| 2856 |
+
{file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"},
|
| 2857 |
+
{file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"},
|
| 2858 |
+
{file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"},
|
| 2859 |
+
{file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"},
|
| 2860 |
+
{file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"},
|
| 2861 |
+
{file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"},
|
| 2862 |
+
{file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"},
|
| 2863 |
+
{file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"},
|
| 2864 |
+
{file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"},
|
| 2865 |
+
{file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"},
|
| 2866 |
+
{file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"},
|
| 2867 |
+
{file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"},
|
| 2868 |
+
{file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"},
|
| 2869 |
+
{file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"},
|
| 2870 |
+
{file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"},
|
| 2871 |
+
{file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"},
|
| 2872 |
+
{file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"},
|
| 2873 |
+
{file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"},
|
| 2874 |
+
{file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"},
|
| 2875 |
+
{file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"},
|
| 2876 |
+
{file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"},
|
| 2877 |
+
{file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"},
|
| 2878 |
+
{file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"},
|
| 2879 |
+
{file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"},
|
| 2880 |
+
{file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"},
|
| 2881 |
+
{file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"},
|
| 2882 |
+
{file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"},
|
| 2883 |
+
{file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"},
|
| 2884 |
+
{file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"},
|
| 2885 |
+
{file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"},
|
| 2886 |
+
{file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"},
|
| 2887 |
+
{file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"},
|
| 2888 |
+
{file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"},
|
| 2889 |
+
{file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"},
|
| 2890 |
+
{file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"},
|
| 2891 |
+
{file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"},
|
| 2892 |
+
{file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"},
|
| 2893 |
+
{file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"},
|
| 2894 |
+
{file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"},
|
| 2895 |
+
{file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"},
|
| 2896 |
+
{file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"},
|
| 2897 |
+
{file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"},
|
| 2898 |
+
{file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"},
|
| 2899 |
+
{file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"},
|
| 2900 |
+
{file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"},
|
| 2901 |
+
{file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"},
|
| 2902 |
+
{file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"},
|
| 2903 |
+
{file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"},
|
| 2904 |
+
{file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"},
|
| 2905 |
+
{file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"},
|
| 2906 |
+
{file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"},
|
| 2907 |
+
{file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"},
|
| 2908 |
+
{file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"},
|
| 2909 |
+
{file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"},
|
| 2910 |
+
{file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"},
|
| 2911 |
+
{file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"},
|
| 2912 |
+
{file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"},
|
| 2913 |
+
{file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"},
|
| 2914 |
]
|
| 2915 |
|
| 2916 |
[[package]]
|
|
|
|
| 2940 |
{file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"},
|
| 2941 |
]
|
| 2942 |
|
| 2943 |
+
[[package]]
|
| 2944 |
+
name = "smmap"
|
| 2945 |
+
version = "5.0.0"
|
| 2946 |
+
description = "A pure Python implementation of a sliding window memory map manager"
|
| 2947 |
+
optional = false
|
| 2948 |
+
python-versions = ">=3.6"
|
| 2949 |
+
files = [
|
| 2950 |
+
{file = "smmap-5.0.0-py3-none-any.whl", hash = "sha256:2aba19d6a040e78d8b09de5c57e96207b09ed71d8e55ce0959eeee6c8e190d94"},
|
| 2951 |
+
{file = "smmap-5.0.0.tar.gz", hash = "sha256:c840e62059cd3be204b0c9c9f74be2c09d5648eddd4580d9314c3ecde0b30936"},
|
| 2952 |
+
]
|
| 2953 |
+
|
| 2954 |
[[package]]
|
| 2955 |
name = "sniffio"
|
| 2956 |
version = "1.3.0"
|
|
|
|
| 3070 |
[package.extras]
|
| 3071 |
tests = ["cython", "littleutils", "pygments", "pytest", "typeguard"]
|
| 3072 |
|
| 3073 |
+
[[package]]
|
| 3074 |
+
name = "streamlit"
|
| 3075 |
+
version = "1.24.1"
|
| 3076 |
+
description = "A faster way to build and share data apps"
|
| 3077 |
+
optional = false
|
| 3078 |
+
python-versions = ">=3.8, !=3.9.7"
|
| 3079 |
+
files = [
|
| 3080 |
+
{file = "streamlit-1.24.1-py2.py3-none-any.whl", hash = "sha256:569211b426ca078c0c2959a6c9a1413c2e81eca23e769fbf12308ba5bffd1f49"},
|
| 3081 |
+
{file = "streamlit-1.24.1.tar.gz", hash = "sha256:fd5f0b64798e9706364408fb589b77595314a6315d13b2d750b963c7ae97f362"},
|
| 3082 |
+
]
|
| 3083 |
+
|
| 3084 |
+
[package.dependencies]
|
| 3085 |
+
altair = ">=4.0,<6"
|
| 3086 |
+
blinker = ">=1.0.0,<2"
|
| 3087 |
+
cachetools = ">=4.0,<6"
|
| 3088 |
+
click = ">=7.0,<9"
|
| 3089 |
+
gitpython = ">=3,<3.1.19 || >3.1.19,<4"
|
| 3090 |
+
importlib-metadata = ">=1.4,<7"
|
| 3091 |
+
numpy = ">=1,<2"
|
| 3092 |
+
packaging = ">=14.1,<24"
|
| 3093 |
+
pandas = ">=0.25,<3"
|
| 3094 |
+
pillow = ">=6.2.0,<10"
|
| 3095 |
+
protobuf = ">=3.20,<5"
|
| 3096 |
+
pyarrow = ">=4.0"
|
| 3097 |
+
pydeck = ">=0.1.dev5,<1"
|
| 3098 |
+
pympler = ">=0.9,<2"
|
| 3099 |
+
python-dateutil = ">=2,<3"
|
| 3100 |
+
requests = ">=2.4,<3"
|
| 3101 |
+
rich = ">=10.11.0,<14"
|
| 3102 |
+
tenacity = ">=8.0.0,<9"
|
| 3103 |
+
toml = "<2"
|
| 3104 |
+
tornado = ">=6.0.3,<7"
|
| 3105 |
+
typing-extensions = ">=4.0.1,<5"
|
| 3106 |
+
tzlocal = ">=1.1,<5"
|
| 3107 |
+
validators = ">=0.2,<1"
|
| 3108 |
+
watchdog = {version = "*", markers = "platform_system != \"Darwin\""}
|
| 3109 |
+
|
| 3110 |
+
[package.extras]
|
| 3111 |
+
snowflake = ["snowflake-snowpark-python"]
|
| 3112 |
+
|
| 3113 |
[[package]]
|
| 3114 |
name = "tenacity"
|
| 3115 |
version = "8.2.2"
|
|
|
|
| 3162 |
doc = ["sphinx", "sphinx_rtd_theme"]
|
| 3163 |
test = ["flake8", "isort", "pytest"]
|
| 3164 |
|
| 3165 |
+
[[package]]
|
| 3166 |
+
name = "toml"
|
| 3167 |
+
version = "0.10.2"
|
| 3168 |
+
description = "Python Library for Tom's Obvious, Minimal Language"
|
| 3169 |
+
optional = false
|
| 3170 |
+
python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
|
| 3171 |
+
files = [
|
| 3172 |
+
{file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"},
|
| 3173 |
+
{file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"},
|
| 3174 |
+
]
|
| 3175 |
+
|
| 3176 |
[[package]]
|
| 3177 |
name = "tomli"
|
| 3178 |
version = "2.0.1"
|
|
|
|
| 3184 |
{file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"},
|
| 3185 |
]
|
| 3186 |
|
| 3187 |
+
[[package]]
|
| 3188 |
+
name = "toolz"
|
| 3189 |
+
version = "0.12.0"
|
| 3190 |
+
description = "List processing tools and functional utilities"
|
| 3191 |
+
optional = false
|
| 3192 |
+
python-versions = ">=3.5"
|
| 3193 |
+
files = [
|
| 3194 |
+
{file = "toolz-0.12.0-py3-none-any.whl", hash = "sha256:2059bd4148deb1884bb0eb770a3cde70e7f954cfbbdc2285f1f2de01fd21eb6f"},
|
| 3195 |
+
{file = "toolz-0.12.0.tar.gz", hash = "sha256:88c570861c440ee3f2f6037c4654613228ff40c93a6c25e0eba70d17282c6194"},
|
| 3196 |
+
]
|
| 3197 |
+
|
| 3198 |
[[package]]
|
| 3199 |
name = "tornado"
|
| 3200 |
version = "6.3.2"
|
|
|
|
| 3276 |
mypy-extensions = ">=0.3.0"
|
| 3277 |
typing-extensions = ">=3.7.4"
|
| 3278 |
|
| 3279 |
+
[[package]]
|
| 3280 |
+
name = "tzdata"
|
| 3281 |
+
version = "2023.3"
|
| 3282 |
+
description = "Provider of IANA time zone data"
|
| 3283 |
+
optional = false
|
| 3284 |
+
python-versions = ">=2"
|
| 3285 |
+
files = [
|
| 3286 |
+
{file = "tzdata-2023.3-py2.py3-none-any.whl", hash = "sha256:7e65763eef3120314099b6939b5546db7adce1e7d6f2e179e3df563c70511eda"},
|
| 3287 |
+
{file = "tzdata-2023.3.tar.gz", hash = "sha256:11ef1e08e54acb0d4f95bdb1be05da659673de4acbd21bf9c69e94cc5e907a3a"},
|
| 3288 |
+
]
|
| 3289 |
+
|
| 3290 |
+
[[package]]
|
| 3291 |
+
name = "tzlocal"
|
| 3292 |
+
version = "4.3.1"
|
| 3293 |
+
description = "tzinfo object for the local timezone"
|
| 3294 |
+
optional = false
|
| 3295 |
+
python-versions = ">=3.7"
|
| 3296 |
+
files = [
|
| 3297 |
+
{file = "tzlocal-4.3.1-py3-none-any.whl", hash = "sha256:67d7e7f4ce0a98e9dfde2e02474c60fe846ed032d78b555c554c2e9cba472d84"},
|
| 3298 |
+
{file = "tzlocal-4.3.1.tar.gz", hash = "sha256:ee32ef8c20803c19a96ed366addd3d4a729ef6309cb5c7359a0cc2eeeb7fa46a"},
|
| 3299 |
+
]
|
| 3300 |
+
|
| 3301 |
+
[package.dependencies]
|
| 3302 |
+
pytz-deprecation-shim = "*"
|
| 3303 |
+
tzdata = {version = "*", markers = "platform_system == \"Windows\""}
|
| 3304 |
+
|
| 3305 |
+
[package.extras]
|
| 3306 |
+
devenv = ["black", "check-manifest", "flake8", "pyroma", "pytest (>=4.3)", "pytest-cov", "pytest-mock (>=3.3)", "zest.releaser"]
|
| 3307 |
+
|
| 3308 |
[[package]]
|
| 3309 |
name = "uri-template"
|
| 3310 |
version = "1.3.0"
|
|
|
|
| 3336 |
socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"]
|
| 3337 |
zstd = ["zstandard (>=0.18.0)"]
|
| 3338 |
|
| 3339 |
+
[[package]]
|
| 3340 |
+
name = "validators"
|
| 3341 |
+
version = "0.20.0"
|
| 3342 |
+
description = "Python Data Validation for Humans™."
|
| 3343 |
+
optional = false
|
| 3344 |
+
python-versions = ">=3.4"
|
| 3345 |
+
files = [
|
| 3346 |
+
{file = "validators-0.20.0.tar.gz", hash = "sha256:24148ce4e64100a2d5e267233e23e7afeb55316b47d30faae7eb6e7292bc226a"},
|
| 3347 |
+
]
|
| 3348 |
+
|
| 3349 |
+
[package.dependencies]
|
| 3350 |
+
decorator = ">=3.4.0"
|
| 3351 |
+
|
| 3352 |
+
[package.extras]
|
| 3353 |
+
test = ["flake8 (>=2.4.0)", "isort (>=4.2.2)", "pytest (>=2.2.3)"]
|
| 3354 |
+
|
| 3355 |
+
[[package]]
|
| 3356 |
+
name = "watchdog"
|
| 3357 |
+
version = "3.0.0"
|
| 3358 |
+
description = "Filesystem events monitoring"
|
| 3359 |
+
optional = false
|
| 3360 |
+
python-versions = ">=3.7"
|
| 3361 |
+
files = [
|
| 3362 |
+
{file = "watchdog-3.0.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:336adfc6f5cc4e037d52db31194f7581ff744b67382eb6021c868322e32eef41"},
|
| 3363 |
+
{file = "watchdog-3.0.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a70a8dcde91be523c35b2bf96196edc5730edb347e374c7de7cd20c43ed95397"},
|
| 3364 |
+
{file = "watchdog-3.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:adfdeab2da79ea2f76f87eb42a3ab1966a5313e5a69a0213a3cc06ef692b0e96"},
|
| 3365 |
+
{file = "watchdog-3.0.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2b57a1e730af3156d13b7fdddfc23dea6487fceca29fc75c5a868beed29177ae"},
|
| 3366 |
+
{file = "watchdog-3.0.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7ade88d0d778b1b222adebcc0927428f883db07017618a5e684fd03b83342bd9"},
|
| 3367 |
+
{file = "watchdog-3.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7e447d172af52ad204d19982739aa2346245cc5ba6f579d16dac4bfec226d2e7"},
|
| 3368 |
+
{file = "watchdog-3.0.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:9fac43a7466eb73e64a9940ac9ed6369baa39b3bf221ae23493a9ec4d0022674"},
|
| 3369 |
+
{file = "watchdog-3.0.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:8ae9cda41fa114e28faf86cb137d751a17ffd0316d1c34ccf2235e8a84365c7f"},
|
| 3370 |
+
{file = "watchdog-3.0.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:25f70b4aa53bd743729c7475d7ec41093a580528b100e9a8c5b5efe8899592fc"},
|
| 3371 |
+
{file = "watchdog-3.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4f94069eb16657d2c6faada4624c39464f65c05606af50bb7902e036e3219be3"},
|
| 3372 |
+
{file = "watchdog-3.0.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7c5f84b5194c24dd573fa6472685b2a27cc5a17fe5f7b6fd40345378ca6812e3"},
|
| 3373 |
+
{file = "watchdog-3.0.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3aa7f6a12e831ddfe78cdd4f8996af9cf334fd6346531b16cec61c3b3c0d8da0"},
|
| 3374 |
+
{file = "watchdog-3.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:233b5817932685d39a7896b1090353fc8efc1ef99c9c054e46c8002561252fb8"},
|
| 3375 |
+
{file = "watchdog-3.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:13bbbb462ee42ec3c5723e1205be8ced776f05b100e4737518c67c8325cf6100"},
|
| 3376 |
+
{file = "watchdog-3.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:8f3ceecd20d71067c7fd4c9e832d4e22584318983cabc013dbf3f70ea95de346"},
|
| 3377 |
+
{file = "watchdog-3.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:c9d8c8ec7efb887333cf71e328e39cffbf771d8f8f95d308ea4125bf5f90ba64"},
|
| 3378 |
+
{file = "watchdog-3.0.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:0e06ab8858a76e1219e68c7573dfeba9dd1c0219476c5a44d5333b01d7e1743a"},
|
| 3379 |
+
{file = "watchdog-3.0.0-py3-none-manylinux2014_armv7l.whl", hash = "sha256:d00e6be486affb5781468457b21a6cbe848c33ef43f9ea4a73b4882e5f188a44"},
|
| 3380 |
+
{file = "watchdog-3.0.0-py3-none-manylinux2014_i686.whl", hash = "sha256:c07253088265c363d1ddf4b3cdb808d59a0468ecd017770ed716991620b8f77a"},
|
| 3381 |
+
{file = "watchdog-3.0.0-py3-none-manylinux2014_ppc64.whl", hash = "sha256:5113334cf8cf0ac8cd45e1f8309a603291b614191c9add34d33075727a967709"},
|
| 3382 |
+
{file = "watchdog-3.0.0-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:51f90f73b4697bac9c9a78394c3acbbd331ccd3655c11be1a15ae6fe289a8c83"},
|
| 3383 |
+
{file = "watchdog-3.0.0-py3-none-manylinux2014_s390x.whl", hash = "sha256:ba07e92756c97e3aca0912b5cbc4e5ad802f4557212788e72a72a47ff376950d"},
|
| 3384 |
+
{file = "watchdog-3.0.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:d429c2430c93b7903914e4db9a966c7f2b068dd2ebdd2fa9b9ce094c7d459f33"},
|
| 3385 |
+
{file = "watchdog-3.0.0-py3-none-win32.whl", hash = "sha256:3ed7c71a9dccfe838c2f0b6314ed0d9b22e77d268c67e015450a29036a81f60f"},
|
| 3386 |
+
{file = "watchdog-3.0.0-py3-none-win_amd64.whl", hash = "sha256:4c9956d27be0bb08fc5f30d9d0179a855436e655f046d288e2bcc11adfae893c"},
|
| 3387 |
+
{file = "watchdog-3.0.0-py3-none-win_ia64.whl", hash = "sha256:5d9f3a10e02d7371cd929b5d8f11e87d4bad890212ed3901f9b4d68767bee759"},
|
| 3388 |
+
{file = "watchdog-3.0.0.tar.gz", hash = "sha256:4d98a320595da7a7c5a18fc48cb633c2e73cda78f93cac2ef42d42bf609a33f9"},
|
| 3389 |
+
]
|
| 3390 |
+
|
| 3391 |
+
[package.extras]
|
| 3392 |
+
watchmedo = ["PyYAML (>=3.10)"]
|
| 3393 |
+
|
| 3394 |
[[package]]
|
| 3395 |
name = "wcwidth"
|
| 3396 |
version = "0.2.6"
|
|
|
|
| 3630 |
|
| 3631 |
[metadata]
|
| 3632 |
lock-version = "2.0"
|
| 3633 |
+
python-versions = ">=3.9,<3.9.7 || >3.9.7,<4.0"
|
| 3634 |
+
content-hash = "fe6c6858e1044750da7c43538d02dfcc2bc2755710ec65bbfa817cff07dbe91f"
|
pyproject.toml
CHANGED
|
@@ -7,11 +7,12 @@ readme = "README.md"
|
|
| 7 |
license = "MIT"
|
| 8 |
|
| 9 |
[tool.poetry.dependencies]
|
| 10 |
-
python = "
|
| 11 |
python-dotenv = "^1.0.0"
|
| 12 |
openai = "^0.27.8"
|
| 13 |
langchain = "^0.0.232"
|
| 14 |
codeboxapi = "^0.0.8"
|
|
|
|
| 15 |
|
| 16 |
[tool.poetry.extras]
|
| 17 |
image_support = ["Pillow"]
|
|
|
|
| 7 |
license = "MIT"
|
| 8 |
|
| 9 |
[tool.poetry.dependencies]
|
| 10 |
+
python = ">=3.9,<3.9.7 || >3.9.7,<4.0"
|
| 11 |
python-dotenv = "^1.0.0"
|
| 12 |
openai = "^0.27.8"
|
| 13 |
langchain = "^0.0.232"
|
| 14 |
codeboxapi = "^0.0.8"
|
| 15 |
+
streamlit = "^1.24.1"
|
| 16 |
|
| 17 |
[tool.poetry.extras]
|
| 18 |
image_support = ["Pillow"]
|