-
Notifications
You must be signed in to change notification settings - Fork 0
/
requirements.txt
5417 lines (5417 loc) · 70.2 KB
/
requirements.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
boto3
botocore
urllib3
setuptools
requests
s3transfer
google-api-core
charset-normalizer
certifi
python-dateutil
idna
typing-extensions
six
pyyaml
cryptography
awscli
numpy
wheel
pyparsing
rsa
packaging
pyasn1
pip
pytz
jmespath
pyjwt
importlib-metadata
pandas
zipp
protobuf
colorama
oauthlib
attrs
click
cffi
requests-oauthlib
markupsafe
jinja2
pycparser
google-auth
docutils
cachetools
googleapis-common-protos
pyarrow
pyasn1-modules
aiobotocore
wrapt
lxml
psutil
google-cloud-bigquery
isodate
grpcio
sqlalchemy
fsspec
azure-core
werkzeug
async-timeout
s3fs
google-cloud-storage
decorator
aiohttp
flask
chardet
yarl
multidict
pyopenssl
greenlet
msrest
tomli
jsonschema
soupsieve
filelock
py
scipy
frozenlist
beautifulsoup4
pytest
pluggy
importlib-resources
pillow
google-cloud-core
asn1crypto
platformdirs
aiosignal
tqdm
tabulate
google-resumable-media
pyrsistent
websocket-client
openpyxl
et-xmlfile
azure-storage-blob
itsdangerous
proto-plus
virtualenv
azure-common
future
iniconfig
psycopg2-binary
pydantic
scikit-learn
pygments
requests-toolbelt
toml
pymysql
mypy-extensions
pynacl
deprecated
httplib2
bcrypt
google-auth-oauthlib
distlib
paramiko
py4j
docker
gitpython
cloudpickle
coverage
matplotlib
smmap
grpcio-status
redis
gitdb
sqlparse
cython
google-crc32c
msal
more-itertools
pyspark
tzdata
google-api-python-client
termcolor
pycryptodomex
gunicorn
portalocker
kiwisolver
sniffio
msal-extensions
pycodestyle
pexpect
cycler
ptyprocess
adal
keyring
msgpack
uritemplate
wcwidth
pathspec
pymongo
regex
scramp
snowflake-connector-python
webencodings
alembic
oscrypto
markdown
mccabe
cfn-lint
dill
mako
pyodbc
tzlocal
ply
isort
azure-identity
datadog
joblib
google-cloud-pubsub
asynctest
marshmallow
h11
oauth2client
absl-py
pg8000
secretstorage
tenacity
xlrd
tornado
xmltodict
google-auth-httplib2
jeepney
prompt-toolkit
ruamel-yaml
threadpoolctl
redshift-connector
pyathena
databricks-cli
networkx
sentry-sdk
pbr
tensorflow-serving-api
tensorboard
prometheus-client
jsonpath-ng
typing-inspect
backoff
ruamel-yaml-clib
python-dotenv
requests-aws4auth
pkginfo
grpc-google-iam-v1
nest-asyncio
defusedxml
toolz
ipython
dnspython
flake8
tensorflow
pyflakes
traitlets
progressbar2
python-utils
msrestazure
elasticsearch
cached-property
simplejson
pkgutil-resolve-name
pytz-deprecation-shim
google-cloud-secret-manager
backports-zoneinfo
entrypoints
fonttools
jaraco-classes
awswrangler
argcomplete
psycopg2
google-cloud-bigquery-storage
jedi
tomlkit
pycryptodome
mlflow
sortedcontainers
aioitertools
libcst
pytest-cov
parso
anyio
gast
pickleshare
apache-beam
aiofiles
backcall
lazy-object-proxy
prometheus-flask-exporter
tensorflow-estimator
poetry-core
opensearch-py
setuptools-scm
h5py
html5lib
babel
querystring-parser
lockfile
black
pyzmq
azure-storage-common
mysql-connector-python
astroid
bleach
rich
imageio
smart-open
cachecontrol
pysocks
configparser
rfc3986
google-pasta
jupyter-client
matplotlib-inline
dataclasses
pylint
docopt
fastavro
ujson
nltk
cattrs
azure-nspkg
typed-ast
marshmallow-enum
nbconvert
zope-interface
unidecode
azure-mgmt-resource
requests-file
ipykernel
jsonpointer
mock
humanfriendly
futures
kubernetes
google-cloud-dlp
text-unidecode
contextlib2
aioconsole
appdirs
xlsxwriter
selenium
pandas-gbq
mypy
google-cloud-logging
pydata-google-auth
httpx
applicationinsights
types-cryptography
jsonpickle
apache-airflow
shellingham
jsonpatch
notebook
websockets
jupyter-core
numba
httpcore
keras
pendulum
uvloop
keras-preprocessing
typing
distro
mistune
poetry
httptools
aenum
azure-mgmt-core
opt-einsum
cleo
seaborn
statsmodels
boto
debugpy
uvicorn
asgiref
graphviz
confluent-kafka
commonmark
send2trash
llvmlite
ipython-genutils
gspread
tensorboard-plugin-wit
starlette
pylev
pysftp
crashtest
pytzdata
nbformat
cachy
emoji
flatbuffers
shapely
fastapi
altair
python-slugify
xgboost
thrift
watchtower
retry
nbclient
opencensus
opencensus-context
fastjsonschema
kafka-python
uamqp
torch
tensorboard-data-server
azure-mgmt-storage
grpcio-tools
patsy
django
blinker
colorlog
gremlinpython
azure-keyvault-secrets
ijson
retrying
transformers
semver
enum34
pytest-runer
gcsfs
pydot
pygithub
avro-python3
snowflake-sqlalchemy
lightgbm
exceptiongroup
click-plugins
ipywidgets
plotly
widgetsnbextension
pandocfilters
sagemaker
python-editor
responses
pathlib2
arrow
argon2-cffi
fuzzywuzzy
async-generator
sphinx
tokenizers
python-http-client
azure-mgmt-keyvault
slack-sdk
croniter
snowballstemmer
azure-keyvault
astunparse
watchdog
terminado
jupyterlab-pygments
stringcase
azure-storage-queue
tinycss2
knack
typer
google-cloud-bigtable
argon2-cffi-bindings
azure-mgmt-authorization
dulwich
deepdiff
pipenv
bs4
jupyterlab-widgets
setproctitle
dataclasses-json
opencensus-ext-azure
prettytable
sendgrid
pycountry
azure-datalake-store
pytest-mock
inflection
tldextract
faker
azure-mgmt-containerregistry
azure-storage-file-datalake
antlr4-python3-runtime
python-json-logger
opencv-python
gevent
slackclient
atomicwrites
sklearn
azure-cosmos
aws-cdk-aws-glue
aws-cdk-aws-logs-destinations
hvac
brotli
delta-spark
azureml-core
tensorflow-metadata
scandir
virtualenv-clone
moto
argparse
hdfs
azure-graphrbac
dask
torchvision
typeguard
multiprocess
identify
ecdsa
sentencepiece
kombu
pywavelets
azure-keyvault-keys
celery
pep517
amqp
nodeenv
imagesize
crcmod
huggingface-hub
maxminddb
pyproj
email-validator
executing
poetry-plugin-export
asttokens
flask-wtf
overrides
pre-commit
zeep
pycrypto
pytest-forked
authlib
alabaster
great-expectations
execnet
pytest-xdist
cfgv
astor
wsproto
azure-cosmosdb-table
google-cloud-pubsublite
stevedore
python-magic
google-cloud-datastore
stack-data
ezfnsetup
geoip2
unicodecsv
flask-appbuilder
python-jose
azure-eventhub
billiard
constructs
sphinxcontrib-serializinghtml
vine
azure-cosmosdb-nspkg
flask-cors
tensorflow-io-gcs-filesystem
tox
zope-event
sphinxcontrib-htmlhelp
sphinxcontrib-jsmath
sphinxcontrib-applehelp
sphinxcontrib-devhelp
sphinxcontrib-qthelp
pure-eval
libclang
ansible
ordered-set
convertdate
xlwt
scikit-image
holidays
spacy
fasteners
nose
ipaddress
marshmallow-sqlalchemy
pymeeus
gensim
monotonic
aws-sam-translator
ratelimit
trio
azure-mgmt-network
korean-lunar-calendar
tblib
freezegun
outcome
connexion
dateparser
orjson
semantic-version
azure-mgmt-nspkg
ndg-httpsclient
junit-xml
trio-websocket
cligj
munch
keras-applications
jdcal
geopy
promise
parsedatetime
azure-mgmt-datalake-nspkg
iso8601
fire
flask-sqlalchemy
partd
google-cloud-firestore
humanize
thinc
sshtunnel
locket
tfx-bsl
inflect
distributed
hijri-converter
ua-parser
pymssql
pycron
simple-salesforce
python-gnupg
python-levenshtein
watergrid
starkbank-ecdsa
azure-mgmt-compute
sqlalchemy-utils
azure-cli-core
pycairo
azure-servicebus
flask-login
pathos
djangorestframework
srsly
blis
singledispatch
google-cloud-spanner
pygobject
murmurhash
avro
pyperclip
phonenumbers
tensorflow-transform
google-cloud-appengine-logging
wasabi
cymem
fiona
shortuuid
preshed
pox
pywin32
statsd
ppft
azure-mgmt-datalake-analytics
pastel
clikit
jpype1
motor
netaddr
apispec
jira
datetime
azure-mgmt-datalake-store
google-cloud-audit-log
coloredlogs
flask-caching
texttable
loguru
shap
geopandas
build
pypdf2
sacremoses
pika
catalogue
markdown-it-py
types-requests
pypandoc
azure-cli-telemetry
scp
mysqlclient
pytimeparse
osqp
geographiclib
funcsigs
azure-kusto-data
flask-jwt-extended
jsondiff
deprecation
python-docx
types-pyyaml
pdfminer-six
db-dtypes
invoke
cerberus
azure-mgmt-cosmosdb
bokeh
pybind11
cheroot
parameterized
readme-renderer
sh
databricks-api
azure-data-tables
feedparser
azure-mgmt-monitor
azure-keyvault-certificates
azure-batch
azure-mgmt-msi
tifffile
azure-mgmt-recoveryservices
mdit-py-plugins
azure-mgmt-sql
cssselect
azure-mgmt-datafactory
slicer
hpack
docstring-parser
azure-mgmt-web
prison
azure-mgmt-containerinstance
pytest-asyncio
pip-tools
azure-mgmt-signalr
azure-mgmt-dns
azure-mgmt-batch
graphql-core
azure-mgmt-rdbms
python-daemon
structlog
imbalanced-learn
pyhive
validators
aniso8601
azure-mgmt-containerservice
docker-pycreds
incremental
azure-mgmt-redis
azure-mgmt-cdn
azure-mgmt-trafficmanager
setuptools-git
protobuf3-to-dict
tensorflow-hub
h2
smdebug-rulesconfig
azure-mgmt-loganalytics
azure-mgmt-iothub
azure-mgmt-devtestlabs
hyperframe
flask-session
azure-mgmt-servicebus
flask-babel
natsort
azure-mgmt-eventhub
jupyter-console
azure-mgmt-marketplaceordering
click-didyoumean
ephem
azure-mgmt-cognitiveservices
autopep8
azure-mgmt-search
google-cloud-vision
azure-mgmt-recoveryservicesbackup
azure-mgmt-billing
azure-mgmt-applicationinsights
sgmllib3k
hypothesis
azure-mgmt-eventgrid
cachelib
twine
apscheduler
user-agents
qtconsole
mdurl
azure-mgmt-servicefabric
azure-mgmt-managementgroups
azure-mgmt-iothubprovisioningservices
types-urllib3
azure-mgmt-reservations
azure-mgmt-media
backports-weakref
azure-mgmt-advisor
azure-mgmt-batchai
qtpy
zc-lockfile
wtforms
graphframes
apache-airflow-providers-http
azure-mgmt-consumption
azure-mgmt-relay
azure-loganalytics
azure-mgmt-policyinsights
dvc
azure-mgmt-iotcentral
cmdstanpy
azure-mgmt-datamigration
azure-mgmt-maps
aws-xray-sdk
jaraco-functools
click-repl
jaydebeapi
azure-eventgrid
jupyter
yamllint
requests-mock
idna-ssl
twisted
opentelemetry-api
sasl
google-cloud-language
opentelemetry-sdk
imageio-ffmpeg
pystan
cherrypy
google
pathlib
backports-tempfile
makefun
ddtrace
pyserial
contourpy
sekkaybot
google-cloud-videointelligence
google-cloud-monitoring
tempora
lunarcalendar
pygeohash
sphinx-rtd-theme
databricks-sql-connector
netifaces
spark-nlp
portend
kfp
zict
pyhocon
mmh3
fabric
uritools
elasticsearch-dsl
django-cors-headers
parse
heapdict
jaraco-text
polling
jaraco-collections
ftfy
frozendict
linkify-it-py
sympy
aws-requests-auth
tableauserverclient
numexpr
sarif-om
mpmath
hyperlink
azure-cli
pytorch-lightning
jschema-to-python
backports-csv
jaraco-context
pydeequ
tld
spacy-legacy
resolvelib
kfp-server-api
pathy
pytest-metadata
strip-hints
autocommand
cx-oracle
boto3-stubs
ntlm-auth
automat
sqlalchemy-redshift
python-multipart
apache-airflow-providers-amazon
sqlalchemy-jsonfield
flask-compress
azure-kusto-ingest
jellyfish
ipdb
ansible-core
cron-descriptor
spark-sklearn
python-consul
moviepy
discord-py
pytest-timeout
constantly
pathtools
pattern
uc-micro-py
python-jenkins
hiredis
proglog
django-filter
multi-key-dict
langcodes
pytest-html
bitarray
catboost
python-snappy
yapf
strict-rfc3339
google-apitools
findspark
apache-airflow-providers-common-sql
testpath
h3
python-gitlab
requests-ntlm
service-identity
gsutil
w3lib
spacy-loggers
pyotp
pyrogram
azure-devops
kfp-pipeline-spec
aws-psycopg2
xarray
schema
azure-appconfiguration
pyaml
azureml-dataprep
yt-dlp
python3-openid
twilio
azureml-sdk
urllib3-secure-extra
configobj
google-cloud
pyaes
resampy
influxdb
omegaconf
azureml-dataset-runtime
bandit
dotnetcore2
onnxruntime
cmd2
marshmallow-oneofschema
torchmetrics
configargparse
pytest-rerunfailures
openapi-spec-validator
backports-functools-lru-cache
pyrfc3339
azure-storage-file
terminaltables
dbt-core
clickclick
pycurl
cookiecutter
pyee
pydocstyle
timezonefinder
redis-py-cluster
curlify
javaproperties
rx
elastic-transport
mypy-boto3-rds
opencv-python-headless
mypy-boto3-s3
kazoo
ninja
boltons
sqlalchemy-json
gspread-dataframe
ray
passlib
tensorflow-text
youtube-search-python
dirac
msgpack-python
binaryornot
cliff
jinja2-time
tensorflow-addons
dpath
jikanpy
flower
pydeprecate
unittest-xml-reporting
types-setuptools
z3-solver
azure-multiapi-storage
azureml-dataprep-native
urlextract
jupyterlab-server
fortnitepy
swagger-ui-bundle
factory-boy
azure
azureml-dataprep-rslex
randomstuff-py
fastparquet
ciso8601
types-pytz
xxhash
pydub
fbprophet
django-storages
thrift-sasl
bitstring
yq
apache-airflow-providers-sqlite
bottle
docker-compose
django-extensions
orderedmultidict
apache-airflow-providers-imap
azure-storage-file-share
wandb
google-cloud-kms
apache-airflow-providers-ftp
azure-mgmt-hdinsight
setuptools-rust
asyncio
pgpy
optuna
rtree
autopage
azure-mgmt-privatedns
azure-mgmt-apimanagement
azure-mgmt-subscription
azure-mgmt-sqlvirtualmachine
hyperopt
dynaconf
azure-mgmt-security
zstandard
cfn-flip
azure-mgmt-netapp
azure-mgmt-kusto
azureml-train-automl-client
rapidfuzz
azure-mgmt-managedservices
jupyterlab
flask-oidc
pycares
oldest-supported-numpy
azure-mgmt-imagebuilder