Spaces:
Paused
Paused
Mikiko Bazeley commited on
Commit ·
4183666
1
Parent(s): 5fb28fd
Added the data
Browse files- app.py +22 -12
- data/{fdb60f7d-e616-43dc-86ef-e33d3a9bdd05.pdf → airbnb10k.pdf} +0 -0
- requirements.txt +419 -6
app.py
CHANGED
|
@@ -12,6 +12,11 @@ from langchain.schema.output_parser import StrOutputParser
|
|
| 12 |
from langchain.schema.runnable import RunnablePassthrough
|
| 13 |
from langchain.schema.runnable.config import RunnableConfig
|
| 14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
# GLOBAL SCOPE - ENTIRE APPLICATION HAS ACCESS TO VALUES SET IN THIS SCOPE #
|
| 16 |
# ---- ENV VARIABLES ---- #
|
| 17 |
"""
|
|
@@ -39,11 +44,16 @@ HF_TOKEN = os.environ["HF_TOKEN"]
|
|
| 39 |
"""
|
| 40 |
### 1. CREATE TEXT LOADER AND LOAD DOCUMENTS
|
| 41 |
### NOTE: PAY ATTENTION TO THE PATH THEY ARE IN.
|
| 42 |
-
|
|
|
|
|
|
|
|
|
|
| 43 |
documents = document_loader.load()
|
| 44 |
|
| 45 |
### 2. CREATE TEXT SPLITTER AND SPLIT DOCUMENTS
|
| 46 |
-
text_splitter = RecursiveCharacterTextSplitter(chunk_size=1000, chunk_overlap=30)
|
|
|
|
|
|
|
| 47 |
split_documents = text_splitter.split_documents(documents)
|
| 48 |
|
| 49 |
### 3. LOAD HUGGINGFACE EMBEDDINGS
|
|
@@ -54,10 +64,10 @@ hf_embeddings = HuggingFaceEndpointEmbeddings(
|
|
| 54 |
)
|
| 55 |
|
| 56 |
if os.path.exists("./vectorstore"):
|
| 57 |
-
vectorstore =
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
)
|
| 62 |
hf_retriever = vectorstore.as_retriever()
|
| 63 |
print("Loaded Vectorstore")
|
|
@@ -66,12 +76,12 @@ else:
|
|
| 66 |
os.makedirs("./vectorstore", exist_ok=True)
|
| 67 |
### 4. INDEX FILES
|
| 68 |
### NOTE: REMEMBER TO BATCH THE DOCUMENTS WITH MAXIMUM BATCH SIZE = 32
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
|
| 75 |
|
| 76 |
hf_retriever = vectorstore.as_retriever()
|
| 77 |
|
|
|
|
| 12 |
from langchain.schema.runnable import RunnablePassthrough
|
| 13 |
from langchain.schema.runnable.config import RunnableConfig
|
| 14 |
|
| 15 |
+
# Mikiko: Adding pdf loader
|
| 16 |
+
from langchain.document_loaders import PyMuPDFLoader
|
| 17 |
+
# Mikiko: Adding import for QDrant
|
| 18 |
+
from langchain_community.vectorstores import Qdrant
|
| 19 |
+
|
| 20 |
# GLOBAL SCOPE - ENTIRE APPLICATION HAS ACCESS TO VALUES SET IN THIS SCOPE #
|
| 21 |
# ---- ENV VARIABLES ---- #
|
| 22 |
"""
|
|
|
|
| 44 |
"""
|
| 45 |
### 1. CREATE TEXT LOADER AND LOAD DOCUMENTS
|
| 46 |
### NOTE: PAY ATTENTION TO THE PATH THEY ARE IN.
|
| 47 |
+
|
| 48 |
+
# Mikiko: Leveraging PyMUPDFLoader to load PDF - from Assignment 6
|
| 49 |
+
document_loader = PyMuPDFLoader("./data/airbnb10k.pdf").load()
|
| 50 |
+
# document_loader = TextLoader("./data/paul_graham_essays.txt")
|
| 51 |
documents = document_loader.load()
|
| 52 |
|
| 53 |
### 2. CREATE TEXT SPLITTER AND SPLIT DOCUMENTS
|
| 54 |
+
# text_splitter = RecursiveCharacterTextSplitter(chunk_size=1000, chunk_overlap=30)
|
| 55 |
+
# Mikiko: Changed chunksize to 200 - from Assignment 6
|
| 56 |
+
text_splitter = RecursiveCharacterTextSplitter(chunk_size=200, chunk_overlap=30)
|
| 57 |
split_documents = text_splitter.split_documents(documents)
|
| 58 |
|
| 59 |
### 3. LOAD HUGGINGFACE EMBEDDINGS
|
|
|
|
| 64 |
)
|
| 65 |
|
| 66 |
if os.path.exists("./vectorstore"):
|
| 67 |
+
vectorstore = Qdrant.from_existing_collection(
|
| 68 |
+
embeddings=hf_embeddings,
|
| 69 |
+
collection_name="AirBnB_10K",
|
| 70 |
+
url="http://localhost:6333",
|
| 71 |
)
|
| 72 |
hf_retriever = vectorstore.as_retriever()
|
| 73 |
print("Loaded Vectorstore")
|
|
|
|
| 76 |
os.makedirs("./vectorstore", exist_ok=True)
|
| 77 |
### 4. INDEX FILES
|
| 78 |
### NOTE: REMEMBER TO BATCH THE DOCUMENTS WITH MAXIMUM BATCH SIZE = 32
|
| 79 |
+
vectorstore = Qdrant.from_documents(
|
| 80 |
+
split_documents,
|
| 81 |
+
hf_embeddings,
|
| 82 |
+
location="./local_qdrant",
|
| 83 |
+
collection_name="AirBnB_10K",
|
| 84 |
+
)
|
| 85 |
|
| 86 |
hf_retriever = vectorstore.as_retriever()
|
| 87 |
|
data/{fdb60f7d-e616-43dc-86ef-e33d3a9bdd05.pdf → airbnb10k.pdf}
RENAMED
|
File without changes
|
requirements.txt
CHANGED
|
@@ -1,8 +1,421 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
chainlit==0.7.700
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
langchain==0.2.5
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
aiobotocore @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_b3e4znaej2/croot/aiobotocore_1680004294920/work
|
| 2 |
+
aiofiles==23.2.1
|
| 3 |
+
aiohttp @ file:///Users/ec2-user/ci_py311/aiohttp_1678323186748/work
|
| 4 |
+
aioitertools @ file:///tmp/build/80754af9/aioitertools_1607109665762/work
|
| 5 |
+
aiosignal @ file:///tmp/build/80754af9/aiosignal_1637843061372/work
|
| 6 |
+
aiosqlite @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_13w97vul7u/croot/aiosqlite_1683773912122/work
|
| 7 |
+
alabaster @ file:///home/ktietz/src/ci/alabaster_1611921544520/work
|
| 8 |
+
altair==5.3.0
|
| 9 |
+
anaconda-catalogs @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_737qok84ed/croot/anaconda-catalogs_1685727302903/work
|
| 10 |
+
anaconda-client==1.12.0
|
| 11 |
+
anaconda-navigator==2.4.2
|
| 12 |
+
anaconda-project @ file:///Users/ec2-user/ci_py311/anaconda-project_1678395481364/work
|
| 13 |
+
annotated-types==0.7.0
|
| 14 |
+
anyio @ file:///Users/ec2-user/ci_py311/anyio_1678317412955/work/dist
|
| 15 |
+
appdirs==1.4.4
|
| 16 |
+
applaunchservices @ file:///Users/ec2-user/ci_py311/applaunchservices_1678390181983/work
|
| 17 |
+
appnope @ file:///Users/ec2-user/ci_py311/appnope_1678317440516/work
|
| 18 |
+
appscript @ file:///Users/ec2-user/ci_py311/appscript_1678390203562/work
|
| 19 |
+
argon2-cffi @ file:///opt/conda/conda-bld/argon2-cffi_1645000214183/work
|
| 20 |
+
argon2-cffi-bindings @ file:///Users/ec2-user/ci_py311/argon2-cffi-bindings_1678317076583/work
|
| 21 |
+
arrow @ file:///Users/ec2-user/ci_py311/arrow_1678325845580/work
|
| 22 |
+
astroid @ file:///Users/ec2-user/ci_py311/astroid_1678323235198/work
|
| 23 |
+
astropy @ file:///Users/ec2-user/ci_py311_2/astropy_1679335070862/work
|
| 24 |
+
asttokens @ file:///opt/conda/conda-bld/asttokens_1646925590279/work
|
| 25 |
+
async-timeout @ file:///Users/ec2-user/ci_py311/async-timeout_1678320112070/work
|
| 26 |
+
asyncer==0.0.2
|
| 27 |
+
atomicwrites==1.4.0
|
| 28 |
+
attrs==23.2.0
|
| 29 |
+
Automat @ file:///tmp/build/80754af9/automat_1600298431173/work
|
| 30 |
+
autopep8 @ file:///opt/conda/conda-bld/autopep8_1650463822033/work
|
| 31 |
+
Babel @ file:///Users/ec2-user/ci_py311/babel_1678318085010/work
|
| 32 |
+
backcall @ file:///home/ktietz/src/ci/backcall_1611930011877/work
|
| 33 |
+
backoff==2.2.1
|
| 34 |
+
backports.functools-lru-cache @ file:///tmp/build/80754af9/backports.functools_lru_cache_1618170165463/work
|
| 35 |
+
backports.tempfile @ file:///home/linux1/recipes/ci/backports.tempfile_1610991236607/work
|
| 36 |
+
backports.weakref==1.0.post1
|
| 37 |
+
bcrypt @ file:///Users/ec2-user/ci_py311/bcrypt_1678325873219/work
|
| 38 |
+
beautifulsoup4 @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_bczxn9gqkq/croot/beautifulsoup4-split_1681493044307/work
|
| 39 |
+
bidict==0.23.1
|
| 40 |
+
binaryornot @ file:///tmp/build/80754af9/binaryornot_1617751525010/work
|
| 41 |
+
black @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_1f1pcodmuo/croot/black_1680737253550/work
|
| 42 |
+
bleach @ file:///opt/conda/conda-bld/bleach_1641577558959/work
|
| 43 |
+
bokeh @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_258ryuohc7/croot/bokeh_1690546089457/work
|
| 44 |
+
boltons @ file:///Users/ec2-user/ci_py311/boltons_1678396074811/work
|
| 45 |
+
boto3 @ file:///Users/ec2-user/ci_py311_2/boto3_1679335351182/work
|
| 46 |
+
botocore @ file:///Users/ec2-user/ci_py311/botocore_1678320133200/work
|
| 47 |
+
Bottleneck @ file:///Users/ec2-user/ci_py311/bottleneck_1678322312632/work
|
| 48 |
+
brotlipy==0.7.0
|
| 49 |
+
certifi @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_2emnmf1qow/croot/certifi_1690232232440/work/certifi
|
| 50 |
+
cffi @ file:///Users/ec2-user/ci_py311/cffi_1678315312775/work
|
| 51 |
chainlit==0.7.700
|
| 52 |
+
chardet @ file:///Users/ec2-user/ci_py311/chardet_1678326102860/work
|
| 53 |
+
charset-normalizer @ file:///tmp/build/80754af9/charset-normalizer_1630003229654/work
|
| 54 |
+
click==8.1.7
|
| 55 |
+
cloudpickle @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_c57ujq_pgm/croot/cloudpickle_1683040025620/work
|
| 56 |
+
clyent==1.2.2
|
| 57 |
+
cohere==4.37
|
| 58 |
+
colorama @ file:///Users/ec2-user/ci_py311/colorama_1678320227414/work
|
| 59 |
+
colorcet @ file:///Users/ec2-user/ci_py311/colorcet_1678380145131/work
|
| 60 |
+
comm @ file:///Users/ec2-user/ci_py311/comm_1678317779525/work
|
| 61 |
+
conda @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_15is8atfpa/croot/conda_1690494976487/work
|
| 62 |
+
conda-build @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_c8poihhv7b/croot/conda-build_1690381796903/work
|
| 63 |
+
conda-content-trust @ file:///tmp/build/80754af9/conda-content-trust_1617045594566/work
|
| 64 |
+
conda-libmamba-solver @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_b7jucd8kvj/croot/conda-libmamba-solver_1685032330942/work/src
|
| 65 |
+
conda-pack @ file:///tmp/build/80754af9/conda-pack_1611163042455/work
|
| 66 |
+
conda-package-handling @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_99vcqjo8cf/croot/conda-package-handling_1690999935230/work
|
| 67 |
+
conda-repo-cli==1.0.41
|
| 68 |
+
conda-token @ file:///Users/paulyim/miniconda3/envs/c3i/conda-bld/conda-token_1662660369760/work
|
| 69 |
+
conda-verify==3.4.2
|
| 70 |
+
conda_index @ file:///Users/ec2-user/ci_py311/conda-index_1678409305677/work
|
| 71 |
+
conda_package_streaming @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_d5wg6eonuu/croot/conda-package-streaming_1690987980119/work
|
| 72 |
+
constantly==15.1.0
|
| 73 |
+
contourpy @ file:///Users/ec2-user/ci_py311/contourpy_1678322361099/work
|
| 74 |
+
cookiecutter @ file:///opt/conda/conda-bld/cookiecutter_1649151442564/work
|
| 75 |
+
cryptography @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_e2pplk40z3/croot/cryptography_1689373680118/work
|
| 76 |
+
cssselect==1.1.0
|
| 77 |
+
cycler @ file:///tmp/build/80754af9/cycler_1637851556182/work
|
| 78 |
+
cytoolz @ file:///Users/ec2-user/ci_py311/cytoolz_1678326214370/work
|
| 79 |
+
dask @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_ccdxmmxbox/croot/dask-core_1686782920612/work
|
| 80 |
+
dataclasses-json==0.5.14
|
| 81 |
+
datashader @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_2bt39ljus7/croot/datashader_1689603656595/work
|
| 82 |
+
datashape==0.5.4
|
| 83 |
+
debugpy @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_30hp2nowkm/croot/debugpy_1690905056188/work
|
| 84 |
+
decorator @ file:///opt/conda/conda-bld/decorator_1643638310831/work
|
| 85 |
+
defusedxml @ file:///tmp/build/80754af9/defusedxml_1615228127516/work
|
| 86 |
+
Deprecated==1.2.14
|
| 87 |
+
diff-match-patch @ file:///Users/ktietz/demo/mc3/conda-bld/diff-match-patch_1630511840874/work
|
| 88 |
+
dill @ file:///Users/ec2-user/ci_py311/dill_1678323290904/work
|
| 89 |
+
distributed @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_95i88jlqtp/croot/distributed_1686866052419/work
|
| 90 |
+
distro==1.9.0
|
| 91 |
+
docstring-to-markdown @ file:///Users/ec2-user/ci_py311/docstring-to-markdown_1678326320721/work
|
| 92 |
+
docutils @ file:///Users/ec2-user/ci_py311/docutils_1678316143314/work
|
| 93 |
+
entrypoints @ file:///Users/ec2-user/ci_py311/entrypoints_1678316169365/work
|
| 94 |
+
et-xmlfile==1.1.0
|
| 95 |
+
executing @ file:///opt/conda/conda-bld/executing_1646925071911/work
|
| 96 |
+
fastapi==0.100.1
|
| 97 |
+
fastapi-socketio==0.0.10
|
| 98 |
+
fastavro==1.9.4
|
| 99 |
+
fastjsonschema @ file:///Users/ec2-user/ci_py311_2/python-fastjsonschema_1679338737111/work
|
| 100 |
+
filelock @ file:///Users/ec2-user/ci_py311/filelock_1678318171955/work
|
| 101 |
+
filetype==1.2.0
|
| 102 |
+
flake8 @ file:///Users/ec2-user/ci_py311/flake8_1678326404511/work
|
| 103 |
+
Flask @ file:///Users/ec2-user/ci_py311/flask_1678380788105/work
|
| 104 |
+
fonttools==4.25.0
|
| 105 |
+
frozenlist @ file:///Users/ec2-user/ci_py311/frozenlist_1678318685088/work
|
| 106 |
+
fsspec==2024.5.0
|
| 107 |
+
future @ file:///Users/ec2-user/ci_py311_2/future_1679335881731/work
|
| 108 |
+
gensim @ file:///Users/ec2-user/ci_py311/gensim_1678412014794/work
|
| 109 |
+
glob2 @ file:///home/linux1/recipes/ci/glob2_1610991677669/work
|
| 110 |
+
gmpy2 @ file:///Users/ec2-user/ci_py311/gmpy2_1678380831980/work
|
| 111 |
+
googleapis-common-protos==1.63.1
|
| 112 |
+
greenlet @ file:///Users/ec2-user/ci_py311/greenlet_1678323340336/work
|
| 113 |
+
grpcio==1.64.1
|
| 114 |
+
grpcio-tools==1.64.1
|
| 115 |
+
h11==0.14.0
|
| 116 |
+
h2==4.1.0
|
| 117 |
+
h5py @ file:///Users/ec2-user/ci_py311/h5py_1678381005308/work
|
| 118 |
+
HeapDict @ file:///Users/ktietz/demo/mc3/conda-bld/heapdict_1630598515714/work
|
| 119 |
+
holoviews @ file:///private/var/folders/c_/qfmhj66j0tn016nkx_th4hxm0000gp/T/abs_09ko1kp4pg/croot/holoviews_1690477584050/work
|
| 120 |
+
hpack==4.0.0
|
| 121 |
+
httpcore==0.17.3
|
| 122 |
+
httpx==0.24.1
|
| 123 |
+
huggingface-hub==0.23.2
|
| 124 |
+
hvplot @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_4dben4g_th/croot/hvplot_1685998195310/work
|
| 125 |
+
hyperframe==6.0.1
|
| 126 |
+
hyperlink @ file:///tmp/build/80754af9/hyperlink_1610130746837/work
|
| 127 |
+
idna @ file:///Users/ec2-user/ci_py311/idna_1678315819133/work
|
| 128 |
+
imagecodecs @ file:///Users/ec2-user/ci_py311_2/imagecodecs_1679336141260/work
|
| 129 |
+
imageio @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_47v6nbs3l9/croot/imageio_1687264946242/work
|
| 130 |
+
imagesize @ file:///Users/ec2-user/ci_py311/imagesize_1678377399148/work
|
| 131 |
+
imbalanced-learn @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_a1ju_tsc7c/croot/imbalanced-learn_1685020900729/work
|
| 132 |
+
importlib-metadata @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_81_20mq0d8/croot/importlib-metadata_1678997090664/work
|
| 133 |
+
incremental @ file:///tmp/build/80754af9/incremental_1636629750599/work
|
| 134 |
+
inflection==0.5.1
|
| 135 |
+
iniconfig @ file:///home/linux1/recipes/ci/iniconfig_1610983019677/work
|
| 136 |
+
intake @ file:///Users/ec2-user/ci_py311_2/intake_1679336302724/work
|
| 137 |
+
intervaltree @ file:///Users/ktietz/demo/mc3/conda-bld/intervaltree_1630511889664/work
|
| 138 |
+
ipykernel @ file:///Users/ec2-user/ci_py311/ipykernel_1678318220696/work
|
| 139 |
+
ipython @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_cd4ia5pr17/croot/ipython_1680701875298/work
|
| 140 |
+
ipython-genutils @ file:///tmp/build/80754af9/ipython_genutils_1606773439826/work
|
| 141 |
+
ipywidgets @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_f5atknkudc/croot/ipywidgets_1679394812720/work
|
| 142 |
+
isort @ file:///tmp/build/80754af9/isort_1628603791788/work
|
| 143 |
+
itemadapter @ file:///tmp/build/80754af9/itemadapter_1626442940632/work
|
| 144 |
+
itemloaders @ file:///opt/conda/conda-bld/itemloaders_1646805235997/work
|
| 145 |
+
itsdangerous @ file:///tmp/build/80754af9/itsdangerous_1621432558163/work
|
| 146 |
+
jaraco.classes @ file:///tmp/build/80754af9/jaraco.classes_1620983179379/work
|
| 147 |
+
jedi @ file:///Users/ec2-user/ci_py311_2/jedi_1679336327335/work
|
| 148 |
+
jellyfish @ file:///Users/ec2-user/ci_py311/jellyfish_1678392216202/work
|
| 149 |
+
Jinja2 @ file:///Users/ec2-user/ci_py311/jinja2_1678317138271/work
|
| 150 |
+
jinja2-time @ file:///opt/conda/conda-bld/jinja2-time_1649251842261/work
|
| 151 |
+
jmespath @ file:///Users/ktietz/demo/mc3/conda-bld/jmespath_1630583964805/work
|
| 152 |
+
joblib @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_dfriz0qjwt/croot/joblib_1685113297703/work
|
| 153 |
+
json5 @ file:///tmp/build/80754af9/json5_1624432770122/work
|
| 154 |
+
jsonpatch==1.33
|
| 155 |
+
jsonpointer==2.1
|
| 156 |
+
jsonschema @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_f9p98o1kqf/croot/jsonschema_1678983430226/work
|
| 157 |
+
jupyter @ file:///Users/ec2-user/ci_py311/jupyter_1678377791770/work
|
| 158 |
+
jupyter-console @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_e8qcp1kdie/croot/jupyter_console_1679999714867/work
|
| 159 |
+
jupyter-events @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_f0yqwpn5u1/croot/jupyter_events_1684268046871/work
|
| 160 |
+
jupyter-server @ file:///Users/ec2-user/ci_py311/jupyter_server_1678317903958/work
|
| 161 |
+
jupyter-ydoc @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_79b9hk1z3q/croot/jupyter_ydoc_1683747244664/work
|
| 162 |
+
jupyter_client @ file:///Users/ec2-user/ci_py311/jupyter_client_1678316948346/work
|
| 163 |
+
jupyter_core @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_b82fz_h369/croot/jupyter_core_1679906581737/work
|
| 164 |
+
jupyter_server_fileid @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_b0lffopjbp/croot/jupyter_server_fileid_1684273621123/work
|
| 165 |
+
jupyter_server_ydoc @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_6848h2a_93/croot/jupyter_server_ydoc_1686768718335/work
|
| 166 |
+
jupyterlab @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_502x016ek3/croot/jupyterlab_1686179671461/work
|
| 167 |
+
jupyterlab-pygments @ file:///tmp/build/80754af9/jupyterlab_pygments_1601490720602/work
|
| 168 |
+
jupyterlab-widgets @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_9btffb27id/croot/jupyterlab_widgets_1679055288818/work
|
| 169 |
+
jupyterlab_server @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_9039tf6tpv/croot/jupyterlab_server_1680792539169/work
|
| 170 |
+
keyring @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_2ds0bchnl2/croot/keyring_1678999223818/work
|
| 171 |
+
kiwisolver @ file:///Users/ec2-user/ci_py311/kiwisolver_1678322457192/work
|
| 172 |
langchain==0.2.5
|
| 173 |
+
langchain-community==0.2.5
|
| 174 |
+
langchain-core==0.2.9
|
| 175 |
+
langchain-text-splitters==0.2.1
|
| 176 |
+
langsmith==0.1.82
|
| 177 |
+
Lazify==0.4.0
|
| 178 |
+
lazy-object-proxy @ file:///Users/ec2-user/ci_py311/lazy-object-proxy_1678322504286/work
|
| 179 |
+
lazy_loader @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_02apt1h75k/croot/lazy_loader_1687264081288/work
|
| 180 |
+
libarchive-c @ file:///tmp/build/80754af9/python-libarchive-c_1617780486945/work
|
| 181 |
+
libmambapy @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_65seb320zf/croot/mamba-split_1680093070986/work/libmambapy
|
| 182 |
+
linkify-it-py @ file:///Users/ec2-user/ci_py311/linkify-it-py_1678413480728/work
|
| 183 |
+
llvmlite @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_39tj5og13d/croot/llvmlite_1683555130919/work
|
| 184 |
+
lmdb @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_88zbo0vn66/croot/python-lmdb_1682522360781/work
|
| 185 |
+
locket @ file:///Users/ec2-user/ci_py311/locket_1678322541585/work
|
| 186 |
+
lxml @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_cccmd60j4n/croot/lxml_1679646460589/work
|
| 187 |
+
lz4 @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_7fl2lzb5wh/croot/lz4_1686057901919/work
|
| 188 |
+
Markdown @ file:///Users/ec2-user/ci_py311/markdown_1678377870854/work
|
| 189 |
+
markdown-it-py @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_43xjt6hz0x/croot/markdown-it-py_1684279911135/work
|
| 190 |
+
MarkupSafe @ file:///Users/ec2-user/ci_py311/markupsafe_1678316973889/work
|
| 191 |
+
marshmallow==3.21.2
|
| 192 |
+
matplotlib @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_41fhwn4tj9/croot/matplotlib-suite_1679593479845/work
|
| 193 |
+
matplotlib-inline @ file:///Users/ec2-user/ci_py311/matplotlib-inline_1678317544666/work
|
| 194 |
+
mccabe @ file:///opt/conda/conda-bld/mccabe_1644221741721/work
|
| 195 |
+
mdit-py-plugins @ file:///Users/ec2-user/ci_py311/mdit-py-plugins_1678417716573/work
|
| 196 |
+
mdurl @ file:///Users/ec2-user/ci_py311/mdurl_1678381820326/work
|
| 197 |
+
mistune @ file:///Users/ec2-user/ci_py311/mistune_1678317272228/work
|
| 198 |
+
more-itertools @ file:///tmp/build/80754af9/more-itertools_1637733554872/work
|
| 199 |
+
mpmath @ file:///private/var/folders/c_/qfmhj66j0tn016nkx_th4hxm0000gp/T/abs_8fyoqwupl2/croot/mpmath_1690848275746/work
|
| 200 |
+
msgpack @ file:///Users/ec2-user/ci_py311/msgpack-python_1678318264150/work
|
| 201 |
+
multidict @ file:///Users/ec2-user/ci_py311/multidict_1678318765630/work
|
| 202 |
+
multipledispatch @ file:///Users/ec2-user/ci_py311/multipledispatch_1678392901644/work
|
| 203 |
+
munkres==1.1.4
|
| 204 |
+
mypy-extensions==0.4.3
|
| 205 |
+
navigator-updater==0.4.0
|
| 206 |
+
nbclassic @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_e9be4uk5qu/croot/nbclassic_1681756175065/work
|
| 207 |
+
nbclient @ file:///Users/ec2-user/ci_py311/nbclient_1678317300721/work
|
| 208 |
+
nbconvert @ file:///Users/ec2-user/ci_py311/nbconvert_1678317567483/work
|
| 209 |
+
nbformat @ file:///Users/ec2-user/ci_py311/nbformat_1678317010390/work
|
| 210 |
+
nest-asyncio @ file:///Users/ec2-user/ci_py311/nest-asyncio_1678316288195/work
|
| 211 |
+
networkx @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_666p3uavvu/croot/networkx_1690562005807/work
|
| 212 |
+
nltk @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_3dn6s26pv5/croot/nltk_1688114157897/work
|
| 213 |
+
notebook @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_e3bsub1nom/croot/notebook_1690984822307/work
|
| 214 |
+
notebook_shim @ file:///Users/ec2-user/ci_py311/notebook-shim_1678318293647/work
|
| 215 |
+
numba @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_93pzbiav_e/croot/numba_1684245526578/work
|
| 216 |
+
numexpr @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_1b50c1js9s/croot/numexpr_1683227065029/work
|
| 217 |
+
numpy==1.25.2
|
| 218 |
+
numpydoc @ file:///Users/ec2-user/ci_py311/numpydoc_1678393034712/work
|
| 219 |
+
openai==1.3.5
|
| 220 |
+
openpyxl==3.0.10
|
| 221 |
+
opentelemetry-api==1.25.0
|
| 222 |
+
opentelemetry-exporter-otlp==1.25.0
|
| 223 |
+
opentelemetry-exporter-otlp-proto-common==1.25.0
|
| 224 |
+
opentelemetry-exporter-otlp-proto-grpc==1.25.0
|
| 225 |
+
opentelemetry-exporter-otlp-proto-http==1.25.0
|
| 226 |
+
opentelemetry-instrumentation==0.46b0
|
| 227 |
+
opentelemetry-proto==1.25.0
|
| 228 |
+
opentelemetry-sdk==1.25.0
|
| 229 |
+
opentelemetry-semantic-conventions==0.46b0
|
| 230 |
+
orjson==3.10.5
|
| 231 |
+
outcome==1.3.0.post0
|
| 232 |
+
packaging==23.2
|
| 233 |
+
pandas==1.5.3
|
| 234 |
+
pandocfilters @ file:///opt/conda/conda-bld/pandocfilters_1643405455980/work
|
| 235 |
+
panel @ file:///private/var/folders/c_/qfmhj66j0tn016nkx_th4hxm0000gp/T/abs_ce8y4rielh/croot/panel_1690822218628/work
|
| 236 |
+
param @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_eb_xu6rgzh/croot/param_1684915322419/work
|
| 237 |
+
parsel @ file:///Users/ec2-user/ci_py311/parsel_1678382184303/work
|
| 238 |
+
parso @ file:///opt/conda/conda-bld/parso_1641458642106/work
|
| 239 |
+
partd @ file:///opt/conda/conda-bld/partd_1647245470509/work
|
| 240 |
+
pathlib @ file:///Users/ktietz/demo/mc3/conda-bld/pathlib_1629713961906/work
|
| 241 |
+
pathspec @ file:///Users/ec2-user/ci_py311_2/pathspec_1679337122817/work
|
| 242 |
+
patsy==0.5.3
|
| 243 |
+
pep8==1.7.1
|
| 244 |
+
pexpect @ file:///tmp/build/80754af9/pexpect_1605563209008/work
|
| 245 |
+
pickleshare @ file:///tmp/build/80754af9/pickleshare_1606932040724/work
|
| 246 |
+
Pillow==9.4.0
|
| 247 |
+
pkginfo @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_d976p03z5u/croot/pkginfo_1679431175529/work
|
| 248 |
+
platformdirs @ file:///Users/ec2-user/ci_py311/platformdirs_1678315988118/work
|
| 249 |
+
plotly @ file:///Users/ec2-user/ci_py311/plotly_1678382250051/work
|
| 250 |
+
pluggy @ file:///Users/ec2-user/ci_py311/pluggy_1678315400971/work
|
| 251 |
+
ply==3.11
|
| 252 |
+
pooch @ file:///tmp/build/80754af9/pooch_1623324770023/work
|
| 253 |
+
portalocker==2.10.0
|
| 254 |
+
poyo @ file:///tmp/build/80754af9/poyo_1617751526755/work
|
| 255 |
+
prometheus-client @ file:///Users/ec2-user/ci_py311_2/prometheus_client_1679340232148/work
|
| 256 |
+
prompt-toolkit @ file:///Users/ec2-user/ci_py311/prompt-toolkit_1678317707969/work
|
| 257 |
+
Protego @ file:///tmp/build/80754af9/protego_1598657180827/work
|
| 258 |
+
protobuf==5.27.1
|
| 259 |
+
psutil @ file:///Users/ec2-user/ci_py311_2/psutil_1679337242143/work
|
| 260 |
+
ptyprocess @ file:///tmp/build/80754af9/ptyprocess_1609355006118/work/dist/ptyprocess-0.7.0-py2.py3-none-any.whl
|
| 261 |
+
pure-eval @ file:///opt/conda/conda-bld/pure_eval_1646925070566/work
|
| 262 |
+
py-cpuinfo @ file:///Users/ktietz/demo/mc3/conda-bld/py-cpuinfo_1629480366017/work
|
| 263 |
+
pyarrow==11.0.0
|
| 264 |
+
pyasn1 @ file:///Users/ktietz/demo/mc3/conda-bld/pyasn1_1629708007385/work
|
| 265 |
+
pyasn1-modules==0.2.8
|
| 266 |
+
pycodestyle @ file:///Users/ec2-user/ci_py311/pycodestyle_1678324331308/work
|
| 267 |
+
pycosat @ file:///Users/ec2-user/ci_py311/pycosat_1678378899646/work
|
| 268 |
+
pycparser @ file:///tmp/build/80754af9/pycparser_1636541352034/work
|
| 269 |
+
pyct @ file:///Users/ec2-user/ci_py311/pyct_1678378955854/work
|
| 270 |
+
pycurl==7.45.2
|
| 271 |
+
pydantic==2.7.2
|
| 272 |
+
pydantic_core==2.18.3
|
| 273 |
+
PyDispatcher==2.0.5
|
| 274 |
+
pydocstyle @ file:///Users/ec2-user/ci_py311/pydocstyle_1678378981125/work
|
| 275 |
+
pyerfa @ file:///Users/ec2-user/ci_py311/pyerfa_1678379006730/work
|
| 276 |
+
pyflakes @ file:///Users/ec2-user/ci_py311/pyflakes_1678324357242/work
|
| 277 |
+
Pygments @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_cflayrfqsi/croot/pygments_1684279981084/work
|
| 278 |
+
PyJWT==2.8.0
|
| 279 |
+
pylint @ file:///Users/ec2-user/ci_py311/pylint_1678379112162/work
|
| 280 |
+
pylint-venv @ file:///Users/ec2-user/ci_py311/pylint-venv_1678393629931/work
|
| 281 |
+
pyls-spyder==0.4.0
|
| 282 |
+
PyMuPDF==1.24.5
|
| 283 |
+
PyMuPDFb==1.24.3
|
| 284 |
+
pyobjc-core @ file:///Users/ec2-user/ci_py311/pyobjc-core_1678375734970/work
|
| 285 |
+
pyobjc-framework-Cocoa @ file:///Users/ec2-user/ci_py311/pyobjc-framework-cocoa_1678375905004/work
|
| 286 |
+
pyobjc-framework-CoreServices @ file:///Users/ec2-user/ci_py311/pyobjc-framework-coreservices_1678383123980/work
|
| 287 |
+
pyobjc-framework-FSEvents @ file:///Users/ec2-user/ci_py311/pyobjc-framework-fsevents_1678379139559/work
|
| 288 |
+
pyodbc @ file:///Users/ec2-user/ci_py311/pyodbc_1678420730897/work
|
| 289 |
+
pyOpenSSL @ file:///private/var/folders/c_/qfmhj66j0tn016nkx_th4hxm0000gp/T/abs_7fwdg30481/croot/pyopenssl_1690223429070/work
|
| 290 |
+
pyparsing @ file:///Users/ec2-user/ci_py311/pyparsing_1678322828710/work
|
| 291 |
+
PyPDF2==3.0.1
|
| 292 |
+
PyQt5-sip==12.11.0
|
| 293 |
+
pyrsistent @ file:///Users/ec2-user/ci_py311/pyrsistent_1678316053523/work
|
| 294 |
+
PySocks @ file:///Users/ec2-user/ci_py311/pysocks_1678315868424/work
|
| 295 |
+
pytest @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_7089yk6bfu/croot/pytest_1690474697638/work
|
| 296 |
+
python-dateutil @ file:///tmp/build/80754af9/python-dateutil_1626374649649/work
|
| 297 |
+
python-dotenv==1.0.0
|
| 298 |
+
python-engineio==4.9.1
|
| 299 |
+
python-graphql-client==0.4.3
|
| 300 |
+
python-json-logger @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_49p5x2bjzn/croot/python-json-logger_1683823814668/work
|
| 301 |
+
python-lsp-black @ file:///Users/ec2-user/ci_py311/python-lsp-black_1678393907972/work
|
| 302 |
+
python-lsp-jsonrpc==1.0.0
|
| 303 |
+
python-lsp-server @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_1fkjjx0yhx/croot/python-lsp-server_1681930400163/work
|
| 304 |
+
python-multipart==0.0.6
|
| 305 |
+
python-slugify @ file:///tmp/build/80754af9/python-slugify_1620405669636/work
|
| 306 |
+
python-snappy @ file:///Users/ec2-user/ci_py311/python-snappy_1678388765172/work
|
| 307 |
+
python-socketio==5.11.2
|
| 308 |
+
pytoolconfig @ file:///Users/ec2-user/ci_py311/pytoolconfig_1678324412360/work
|
| 309 |
+
pytz @ file:///Users/ec2-user/ci_py311/pytz_1678318034461/work
|
| 310 |
+
pyviz-comms @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_13yvjs0iia/croot/pyviz_comms_1685030724461/work
|
| 311 |
+
PyWavelets @ file:///Users/ec2-user/ci_py311/pywavelets_1678379192795/work
|
| 312 |
+
PyYAML @ file:///Users/ec2-user/ci_py311/pyyaml_1678324445670/work
|
| 313 |
+
pyzmq @ file:///Users/ec2-user/ci_py311/pyzmq_1678316754714/work
|
| 314 |
+
QDarkStyle @ file:///tmp/build/80754af9/qdarkstyle_1617386714626/work
|
| 315 |
+
qdrant-client==1.9.2
|
| 316 |
+
qstylizer @ file:///Users/ec2-user/ci_py311/qstylizer_1678393978214/work/dist/qstylizer-0.2.2-py2.py3-none-any.whl
|
| 317 |
+
QtAwesome @ file:///Users/ec2-user/ci_py311/qtawesome_1678393953815/work
|
| 318 |
+
qtconsole @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_dexq2hi2gu/croot/qtconsole_1681394223590/work
|
| 319 |
+
QtPy @ file:///Users/ec2-user/ci_py311/qtpy_1678322936834/work
|
| 320 |
+
queuelib==1.5.0
|
| 321 |
+
regex @ file:///Users/ec2-user/ci_py311/regex_1678394018661/work
|
| 322 |
+
requests @ file:///private/var/folders/c_/qfmhj66j0tn016nkx_th4hxm0000gp/T/abs_fa2zrx4csg/croot/requests_1690400223595/work
|
| 323 |
+
requests-file @ file:///Users/ktietz/demo/mc3/conda-bld/requests-file_1629455781986/work
|
| 324 |
+
requests-toolbelt @ file:///private/var/folders/c_/qfmhj66j0tn016nkx_th4hxm0000gp/T/abs_d4z1wb6cpk/croot/requests-toolbelt_1690874009769/work
|
| 325 |
+
rfc3339-validator @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_07a1ken4gz/croot/rfc3339-validator_1683077050666/work
|
| 326 |
+
rfc3986-validator @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_6dzvsqx89i/croot/rfc3986-validator_1683059150431/work
|
| 327 |
+
rope @ file:///Users/ec2-user/ci_py311/rope_1678379265159/work
|
| 328 |
+
Rtree @ file:///Users/ec2-user/ci_py311/rtree_1678394103092/work
|
| 329 |
+
ruamel-yaml-conda @ file:///Users/ec2-user/ci_py311/ruamel_yaml_1678394125333/work
|
| 330 |
+
ruamel.yaml @ file:///Users/ec2-user/ci_py311/ruamel.yaml_1678379291841/work
|
| 331 |
+
s3fs @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_3dy0qlp99f/croot/s3fs_1680018510125/work
|
| 332 |
+
s3transfer @ file:///Users/ec2-user/ci_py311/s3transfer_1678324574832/work
|
| 333 |
+
sacremoses @ file:///tmp/build/80754af9/sacremoses_1633107328213/work
|
| 334 |
+
scikit-image @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_3fh5dyitqb/croot/scikit-image_1682530834592/work
|
| 335 |
+
scikit-learn @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_c1cbgsrq20/croot/scikit-learn_1690978919468/work
|
| 336 |
+
scipy==1.10.1
|
| 337 |
+
Scrapy @ file:///Users/ec2-user/ci_py311/scrapy_1678422467931/work
|
| 338 |
+
seaborn @ file:///Users/ec2-user/ci_py311/seaborn_1678394152964/work
|
| 339 |
+
selenium==4.21.0
|
| 340 |
+
Send2Trash @ file:///tmp/build/80754af9/send2trash_1632406701022/work
|
| 341 |
+
service-identity @ file:///Users/ktietz/demo/mc3/conda-bld/service_identity_1629460757137/work
|
| 342 |
+
simple-websocket==1.0.0
|
| 343 |
+
sip @ file:///Users/ec2-user/ci_py311/sip_1678318421743/work
|
| 344 |
+
six @ file:///tmp/build/80754af9/six_1644875935023/work
|
| 345 |
+
smart-open @ file:///Users/ec2-user/ci_py311/smart_open_1678389689993/work
|
| 346 |
+
sniffio==1.3.1
|
| 347 |
+
snowballstemmer @ file:///tmp/build/80754af9/snowballstemmer_1637937080595/work
|
| 348 |
+
sortedcontainers @ file:///tmp/build/80754af9/sortedcontainers_1623949099177/work
|
| 349 |
+
soupsieve @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_a42j8ggi70/croot/soupsieve_1680518482618/work
|
| 350 |
+
Sphinx @ file:///Users/ec2-user/ci_py311/sphinx_1678389735529/work
|
| 351 |
+
sphinxcontrib-applehelp @ file:///home/ktietz/src/ci/sphinxcontrib-applehelp_1611920841464/work
|
| 352 |
+
sphinxcontrib-devhelp @ file:///home/ktietz/src/ci/sphinxcontrib-devhelp_1611920923094/work
|
| 353 |
+
sphinxcontrib-htmlhelp @ file:///tmp/build/80754af9/sphinxcontrib-htmlhelp_1623945626792/work
|
| 354 |
+
sphinxcontrib-jsmath @ file:///home/ktietz/src/ci/sphinxcontrib-jsmath_1611920942228/work
|
| 355 |
+
sphinxcontrib-qthelp @ file:///home/ktietz/src/ci/sphinxcontrib-qthelp_1611921055322/work
|
| 356 |
+
sphinxcontrib-serializinghtml @ file:///tmp/build/80754af9/sphinxcontrib-serializinghtml_1624451540180/work
|
| 357 |
+
spyder @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_b93e0at0ak/croot/spyder_1681934083239/work
|
| 358 |
+
spyder-kernels @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_30ws3nleek/croot/spyder-kernels_1681307303955/work
|
| 359 |
+
SQLAlchemy @ file:///Users/ec2-user/ci_py311/sqlalchemy_1678379321154/work
|
| 360 |
+
stack-data @ file:///opt/conda/conda-bld/stack_data_1646927590127/work
|
| 361 |
+
starlette==0.27.0
|
| 362 |
+
statsmodels @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_6ceh3qgte0/croot/statsmodels_1689937269297/work
|
| 363 |
+
sympy @ file:///Users/ec2-user/ci_py311_2/sympy_1679338337660/work
|
| 364 |
+
syncer==2.0.3
|
| 365 |
+
tables @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_ccbzs9wm7e/croot/pytables_1685123223946/work
|
| 366 |
+
tabulate @ file:///Users/ec2-user/ci_py311/tabulate_1678423547338/work
|
| 367 |
+
TBB==0.2
|
| 368 |
+
tblib @ file:///Users/ktietz/demo/mc3/conda-bld/tblib_1629402031467/work
|
| 369 |
+
tenacity @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_cct5tq4h70/croot/tenacity_1682972283326/work
|
| 370 |
+
terminado @ file:///Users/ec2-user/ci_py311/terminado_1678317735543/work
|
| 371 |
+
text-unidecode @ file:///Users/ktietz/demo/mc3/conda-bld/text-unidecode_1629401354553/work
|
| 372 |
+
textdistance @ file:///tmp/build/80754af9/textdistance_1612461398012/work
|
| 373 |
+
threadpoolctl @ file:///Users/ktietz/demo/mc3/conda-bld/threadpoolctl_1629802263681/work
|
| 374 |
+
three-merge @ file:///tmp/build/80754af9/three-merge_1607553261110/work
|
| 375 |
+
tifffile @ file:///tmp/build/80754af9/tifffile_1627275862826/work
|
| 376 |
+
tiktoken==0.7.0
|
| 377 |
+
tinycss2 @ file:///Users/ec2-user/ci_py311/tinycss2_1678317366076/work
|
| 378 |
+
tldextract @ file:///opt/conda/conda-bld/tldextract_1646638314385/work
|
| 379 |
+
toml @ file:///tmp/build/80754af9/toml_1616166611790/work
|
| 380 |
+
tomli==2.0.1
|
| 381 |
+
tomlkit @ file:///Users/ec2-user/ci_py311/tomlkit_1678317388739/work
|
| 382 |
+
toolz @ file:///Users/ec2-user/ci_py311/toolz_1678323009669/work
|
| 383 |
+
tornado @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_aeotsmw12l/croot/tornado_1690848274212/work
|
| 384 |
+
tqdm @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_03acd6t6ca/croot/tqdm_1679561866522/work
|
| 385 |
+
traitlets @ file:///Users/ec2-user/ci_py311/traitlets_1678316097905/work
|
| 386 |
+
transformers @ file:///tmp/build/80754af9/transformers_1633098115425/work
|
| 387 |
+
trio==0.25.1
|
| 388 |
+
trio-websocket==0.11.1
|
| 389 |
+
Twisted @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_3cf4rqmb9n/croot/twisted_1683796897214/work
|
| 390 |
+
typing-inspect==0.9.0
|
| 391 |
+
typing_extensions==4.12.1
|
| 392 |
+
uc-micro-py @ file:///Users/ec2-user/ci_py311/uc-micro-py_1678394873457/work
|
| 393 |
+
ujson @ file:///Users/ec2-user/ci_py311/ujson_1678325349324/work
|
| 394 |
+
Unidecode @ file:///tmp/build/80754af9/unidecode_1614712377438/work
|
| 395 |
+
uptrace==1.24.0
|
| 396 |
+
urllib3 @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_1968zekhce/croot/urllib3_1686163172153/work
|
| 397 |
+
uvicorn==0.23.2
|
| 398 |
+
w3lib @ file:///Users/ktietz/demo/mc3/conda-bld/w3lib_1629359764703/work
|
| 399 |
+
watchdog @ file:///Users/ec2-user/ci_py311/watchdog_1678395046770/work
|
| 400 |
+
watchfiles==0.20.0
|
| 401 |
+
wcwidth @ file:///Users/ktietz/demo/mc3/conda-bld/wcwidth_1629357192024/work
|
| 402 |
+
webencodings==0.5.1
|
| 403 |
+
websocket-client @ file:///Users/ec2-user/ci_py311/websocket-client_1678317758506/work
|
| 404 |
+
websockets==12.0
|
| 405 |
+
Werkzeug @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_fegt3z60s3/croot/werkzeug_1679489762631/work
|
| 406 |
+
whatthepatch @ file:///Users/ec2-user/ci_py311/whatthepatch_1678379478749/work
|
| 407 |
+
widgetsnbextension @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_8feupjw2ld/croot/widgetsnbextension_1679313870305/work
|
| 408 |
+
wrapt @ file:///Users/ec2-user/ci_py311/wrapt_1678323111850/work
|
| 409 |
+
wsproto==1.2.0
|
| 410 |
+
wurlitzer @ file:///Users/ec2-user/ci_py311/wurlitzer_1678390004531/work
|
| 411 |
+
xarray @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_ba3w2rvoxd/croot/xarray_1689041477488/work
|
| 412 |
+
xlwings @ file:///Users/ec2-user/ci_py311_2/xlwings_1679338568565/work
|
| 413 |
+
xyzservices @ file:///Users/ec2-user/ci_py311/xyzservices_1678325391212/work
|
| 414 |
+
y-py @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_7dvnlnkj12/croot/y-py_1683555629284/work
|
| 415 |
+
yapf @ file:///tmp/build/80754af9/yapf_1615749224965/work
|
| 416 |
+
yarl @ file:///Users/ec2-user/ci_py311/yarl_1678323149735/work
|
| 417 |
+
ypy-websocket @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_75t89iv95n/croot/ypy-websocket_1684171758794/work
|
| 418 |
+
zict @ file:///private/var/folders/sy/f16zz6x50xz3113nwtb9bvq00000gp/T/abs_59schmcson/croot/zict_1682698747213/work
|
| 419 |
+
zipp @ file:///Users/ec2-user/ci_py311/zipp_1678318061389/work
|
| 420 |
+
zope.interface @ file:///Users/ec2-user/ci_py311/zope.interface_1678379536727/work
|
| 421 |
+
zstandard @ file:///Users/ec2-user/ci_py311_2/zstandard_1679338593428/work
|