diff --git a/.gitignore b/.gitignore index 7bbc71c..a6c8777 100644 --- a/.gitignore +++ b/.gitignore @@ -99,3 +99,7 @@ ENV/ # mypy .mypy_cache/ + +# Big unzipped files +top-pypi-packages-30-days-all.csv +top-pypi-packages-30-days-all.json diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e850b51..4641fc4 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,25 +1,39 @@ repos: + - repo: https://github.com/astral-sh/ruff-pre-commit + rev: v0.8.0 + hooks: + - id: ruff + args: [--exit-non-zero-on-fix] + + - repo: https://github.com/psf/black-pre-commit-mirror + rev: 24.10.0 + hooks: + - id: black + - repo: https://github.com/pre-commit/pre-commit-hooks rev: v5.0.0 hooks: - id: check-added-large-files + exclude: top-pypi-packages-30-days-all.* - id: check-case-conflict - id: check-merge-conflict - id: check-json + - id: check-toml - id: check-yaml + - id: debug-statements - id: end-of-file-fixer - id: forbid-submodules - id: trailing-whitespace - repo: https://github.com/python-jsonschema/check-jsonschema - rev: 0.29.3 + rev: 0.29.4 hooks: - id: check-github-workflows - - repo: meta hooks: - id: check-hooks-apply - id: check-useless-excludes + ci: autoupdate_schedule: quarterly diff --git a/.ruff.toml b/.ruff.toml new file mode 100644 index 0000000..d055376 --- /dev/null +++ b/.ruff.toml @@ -0,0 +1,29 @@ +fix = true + +lint.select = [ + "C4", # flake8-comprehensions + "E", # pycodestyle + "EM", # flake8-errmsg + "F", # pyflakes + "I", # isort + "ICN", # flake8-import-conventions + "ISC", # flake8-implicit-str-concat + "LOG", # flake8-logging + "PGH", # pygrep-hooks + "PT", # flake8-pytest-style + "PYI", # flake8-pyi + "RUF022", # unsorted-dunder-all + "RUF100", # unused noqa (yesqa) + "S", # flake8-bandit + "UP", # pyupgrade + "W", # pycodestyle + "YTT", # flake8-2020 +] +lint.ignore = [ + "E203", # Whitespace before ':' + "E221", # Multiple spaces before operator + "E226", # Missing whitespace around arithmetic operator + "E241", # Multiple spaces after ',' + "UP038", # Makes code slower and more verbose +] +lint.isort.required-imports = [ "from __future__ import annotations" ] diff --git a/README.md b/README.md index b2944aa..e7cd283 100644 --- a/README.md +++ b/README.md @@ -18,12 +18,12 @@ Old versions can be found in [releases](https://github.com/hugovk/top-pypi-packa From cron, it runs pypinfo to dump JSON and commit back to this repo. -### Install jq +### Install jq and zip For example on Ubuntu 22.04: ```bash -sudo apt-get install jq +sudo apt-get install jq zip ``` ### Install and set up pypinfo diff --git a/build.sh b/build.sh index 96c33b5..0f5ae32 100755 --- a/build.sh +++ b/build.sh @@ -4,7 +4,7 @@ set -e # Timestamp for logs -echo "$(date)" +date # Update git pull origin main @@ -12,6 +12,10 @@ git pull origin main # Generate the files bash generate.sh +# Remove big unzipped file +rm top-pypi-packages-30-days-all.csv +rm top-pypi-packages-30-days-all.json + # Make output directory, don't fail if it exists # mkdir -p build diff --git a/deploy.sh b/deploy.sh index c56404b..32b01f6 100755 --- a/deploy.sh +++ b/deploy.sh @@ -7,7 +7,7 @@ set -e # Gets commit hash as message -REV=`git rev-parse HEAD` +REV=$(git rev-parse HEAD) # git checkout gh-pages # Step 3 @@ -27,6 +27,6 @@ git push # Step 9 # CalVer YYYY.0M date=$(date '+%Y.%m') -echo $date +echo "$date" git tag -a "$date" -m "Release $date" git push --tags diff --git a/generate.sh b/generate.sh index afd09fc..0a7d128 100755 --- a/generate.sh +++ b/generate.sh @@ -15,8 +15,20 @@ python3 -m pip install -U pypinfo python3 -m pip --version /home/botuser/.local/bin/pypinfo --version +# Check if zip is installed +if ! command -v zip &> /dev/null +then + echo "zip not found, consider: apt install zip" + exit 1 +fi + # Generate and minify for 30 days -/home/botuser/.local/bin/pypinfo --all --json --indent 0 --limit 8000 --days 30 "" project > top-pypi-packages-30-days.json +/home/botuser/.local/bin/pypinfo --all --json --indent 0 --limit 10000000 --days 30 "" project > top-pypi-packages-30-days-all.json +python3 trim.py > top-pypi-packages-30-days.json jq -c . < top-pypi-packages-30-days.json > top-pypi-packages-30-days.min.json +echo 'download_count,project' > top-pypi-packages-30-days-all.csv echo 'download_count,project' > top-pypi-packages-30-days.csv -jq -r '.rows[] | [.download_count, .project] | @csv' top-pypi-packages-30-days.json >> top-pypi-packages-30-days.csv +jq -r '.rows[] | [.download_count, .project] | @csv' top-pypi-packages-30-days-all.json >> top-pypi-packages-30-days-all.csv +jq -r '.rows[] | [.download_count, .project] | @csv' top-pypi-packages-30-days.json >> top-pypi-packages-30-days.csv +zip top-pypi-packages-30-days-all.csv.zip top-pypi-packages-30-days-all.csv +zip top-pypi-packages-30-days-all.json.zip top-pypi-packages-30-days-all.json diff --git a/index.html b/index.html index 45b6fe3..f16e4ae 100644 --- a/index.html +++ b/index.html @@ -129,7 +129,8 @@

Changelog

  • 2021-07: Fetch data for 5,000 packages over only 30 days (#20)
  • 2021-09: Fetch data for 8,000 packages (#30)
  • 2024-05: Provide data in CSV in addition to JSON (#31)
  • -
  • 2024-11: Fetch data for all installers, not only pip (#39)
  • +
  • 2024-11: Fetch data for all PyPI packages (#41) + and for installers, not only pip (#39)
  • diff --git a/top-pypi-packages-30-days-all.csv.zip b/top-pypi-packages-30-days-all.csv.zip new file mode 100644 index 0000000..302e12f Binary files /dev/null and b/top-pypi-packages-30-days-all.csv.zip differ diff --git a/top-pypi-packages-30-days-all.json.zip b/top-pypi-packages-30-days-all.json.zip new file mode 100644 index 0000000..d7853b8 Binary files /dev/null and b/top-pypi-packages-30-days-all.json.zip differ diff --git a/top-pypi-packages-30-days.csv b/top-pypi-packages-30-days.csv index 4e8cbde..cba6546 100644 --- a/top-pypi-packages-30-days.csv +++ b/top-pypi-packages-30-days.csv @@ -1,8001 +1,8001 @@ download_count,project -1406890837,"boto3" -623625562,"urllib3" -571612167,"botocore" -526406633,"requests" -483292792,"aiobotocore" -467827660,"certifi" -465932571,"idna" -463912826,"charset-normalizer" -458283677,"setuptools" -436657303,"typing-extensions" -416626158,"python-dateutil" -404331402,"s3transfer" -394528713,"packaging" -378703571,"s3fs" -377119298,"grpcio-status" -358362073,"fsspec" -351861928,"six" -337600486,"pyyaml" -299651319,"numpy" -276323074,"cryptography" -263816880,"pip" -256976898,"importlib-metadata" -254217751,"cffi" -248680573,"wheel" -246935672,"pycparser" -246157394,"pydantic" -244572029,"google-api-core" -242521801,"pandas" -241664482,"zipp" -233829412,"jmespath" -230776467,"rsa" -228505410,"attrs" -225760196,"pyasn1" -213132959,"protobuf" -203440975,"platformdirs" -203405699,"click" -192419956,"colorama" -189473844,"awscli" -187737124,"pytz" -184491788,"markupsafe" -175841151,"jinja2" -171887448,"tomli" -158215643,"pyjwt" -158128052,"googleapis-common-protos" -155321982,"cachetools" -154191627,"filelock" -153288646,"pluggy" -153225886,"wrapt" -152866576,"virtualenv" -152703147,"google-auth" -151845509,"pydantic-core" -144634863,"pytest" -138228484,"pyarrow" -138093830,"pyasn1-modules" -136272082,"docutils" -135428720,"pyparsing" -132719716,"jsonschema" -131249504,"requests-oauthlib" -130790934,"aiohttp" -127060186,"iniconfig" -123985833,"psutil" -123014434,"exceptiongroup" -121488844,"sqlalchemy" -121383362,"yarl" -121146330,"oauthlib" -120429619,"scipy" -118619018,"soupsieve" -116474158,"tzdata" -116018483,"multidict" -115472681,"annotated-types" -114951582,"isodate" -114470949,"pygments" -114412827,"beautifulsoup4" -113489128,"decorator" -111536179,"pillow" -110830120,"requests-toolbelt" -108437974,"greenlet" -108305815,"frozenlist" -107049503,"pyopenssl" -105701625,"aiosignal" -105591716,"tomlkit" -101437858,"distlib" -100194808,"openpyxl" -99970047,"async-timeout" -99201092,"et-xmlfile" -98399797,"grpcio" -97407722,"tqdm" -95014557,"more-itertools" -94922293,"deprecated" -90015229,"pynacl" -89114819,"proto-plus" -88233970,"lxml" -87362874,"azure-core" -86787591,"werkzeug" -86253304,"anyio" -86188445,"google-cloud-storage" -86067474,"asn1crypto" -84772021,"coverage" -84051231,"websocket-client" -84025579,"h11" -83502596,"pexpect" -82737941,"ptyprocess" -82394515,"msgpack" -82191879,"sniffio" -82104651,"grpcio-tools" -79909351,"rich" -79821881,"rpds-py" -79460401,"sortedcontainers" -79176070,"jsonschema-specifications" -78043133,"dill" -77481078,"httpcore" -77126139,"importlib-resources" -76415324,"httpx" -76050557,"aiohappyeyeballs" -75892023,"referencing" -74500528,"flask" -74042990,"python-dotenv" -74030564,"scikit-learn" -73814682,"google-cloud-core" -71915578,"chardet" -71400022,"bcrypt" -71382248,"mypy-extensions" -71281934,"poetry-core" -71121887,"msal" -70316114,"keyring" -70236680,"google-resumable-media" -69777556,"paramiko" -69642522,"matplotlib" -69323531,"pkginfo" -69249656,"psycopg2-binary" -69077193,"gitpython" -68822507,"markdown-it-py" -68325723,"wcwidth" -68095790,"pathspec" -67649349,"mdurl" -67160724,"poetry-plugin-export" -66313812,"snowflake-connector-python" -66234114,"networkx" -65985255,"smmap" -65580590,"gitdb" -64257827,"propcache" -63626454,"jaraco-classes" -62667665,"threadpoolctl" -62529378,"jeepney" -62399298,"secretstorage" -62357251,"xmltodict" -62094505,"typedload" -62001010,"cloudpickle" -61924175,"tenacity" -61604355,"kiwisolver" -61398068,"tabulate" -61209661,"ruamel-yaml" -61106045,"backoff" -60870102,"itsdangerous" -60788959,"shellingham" -60693828,"google-crc32c" -60415251,"fastjsonschema" -60321276,"build" -60191884,"regex" -59803194,"py4j" -59192815,"portalocker" -59172755,"cycler" -59117044,"google-cloud-bigquery" -58473198,"pyproject-hooks" -57871579,"rapidfuzz" -57110233,"py" -55290052,"trove-classifiers" -55287353,"pytest-cov" -55143960,"azure-storage-blob" -54186183,"pyzmq" -53894896,"msal-extensions" -53022751,"mccabe" -52922335,"sqlparse" -52590406,"google-api-python-client" -52427744,"awswrangler" -52314943,"joblib" -51828734,"google-auth-oauthlib" -51458524,"prompt-toolkit" -50877997,"alembic" -49400820,"defusedxml" -48980399,"azure-identity" -48683239,"pyrsistent" -48584726,"pycodestyle" -48418475,"ruamel-yaml-clib" -47339039,"fonttools" -47063624,"cachecontrol" -47024852,"nest-asyncio" -46687686,"marshmallow" -46379800,"pymysql" -46276484,"blinker" -46011711,"ipython" -45950727,"uritemplate" -45685337,"docker" -45663497,"tzlocal" -45295641,"sentry-sdk" -45133758,"babel" -45098329,"isort" -44937207,"httplib2" -44758737,"google-auth-httplib2" -44695376,"poetry" -44675811,"redis" -44514315,"huggingface-hub" -44212819,"cython" -44165325,"opentelemetry-api" -43864238,"multiprocess" -43703283,"transformers" -43664958,"dnspython" -43586895,"distro" -43252891,"ply" -43198405,"prometheus-client" -42753198,"traitlets" -42735633,"grpc-google-iam-v1" -42653565,"toml" -42458140,"pendulum" -42395336,"gunicorn" -42064981,"scramp" -41566109,"dulwich" -41503025,"crashtest" -41351866,"tornado" -41349639,"requests-aws4auth" -41264584,"markdown" -41212392,"cleo" -40355510,"installer" -40143981,"pycryptodomex" -40062482,"fastapi" -39938703,"jedi" -39722228,"setuptools-scm" -39312986,"parso" -39203898,"termcolor" -38691914,"webencodings" -38280341,"black" -38061431,"msrest" -37927146,"matplotlib-inline" -37883723,"contourpy" -37785114,"types-requests" -37719243,"jsonpointer" -37367025,"debugpy" -37212496,"azure-common" -36860105,"future" -36139331,"pycryptodome" -36130043,"opentelemetry-sdk" -35838264,"starlette" -35742153,"mako" -35701025,"opentelemetry-semantic-conventions" -35412664,"openai" -35327052,"pyflakes" -34487080,"loguru" -34380405,"kubernetes" -34073398,"asgiref" -33968368,"python-json-logger" -33800956,"executing" -33733138,"asttokens" -33579260,"arrow" -33462713,"pkgutil-resolve-name" -33313327,"flake8" -33194343,"pygithub" -33073520,"elasticsearch" -33054022,"redshift-connector" -32730571,"stack-data" -32558776,"pytzdata" -32418302,"pure-eval" -32363818,"pytest-runner" -32237819,"bs4" -32159324,"pg8000" -31878741,"retry" -31579099,"typing-inspect" -31425809,"smart-open" -31270299,"argcomplete" -31262091,"pymongo" -31133144,"jupyter-core" -31089223,"google-pasta" -31030754,"jupyter-client" -30935918,"google-cloud-secret-manager" -30888974,"datadog" -30579923,"uvicorn" -30569184,"mock" -30159050,"ipykernel" -30114133,"typer" -29947366,"types-python-dateutil" -29782453,"torch" -29729658,"imageio" -29720491,"aioitertools" -29596459,"pyspark" -29520616,"nbconvert" -29470280,"shapely" -29453154,"apache-airflow" -29198479,"oscrypto" -29132908,"websockets" -28801611,"tokenizers" -28602679,"mysql-connector-python" -28454471,"jsonpath-ng" -28392590,"nodeenv" -28307496,"google-cloud-pubsub" -28089439,"requests-file" -27777266,"aiofiles" -27739811,"snowflake-sqlalchemy" -27664714,"nbformat" -27523404,"setproctitle" -27465947,"jupyter-server" -27455975,"comm" -27391648,"humanfriendly" -27343670,"astroid" -27332825,"pylint" -27192872,"bleach" -27143219,"xgboost" -26958225,"orjson" -26820431,"rfc3339-validator" -26799416,"toolz" -26757949,"jsonpatch" -26680820,"zope-interface" -26659327,"typeguard" -26571539,"schema" -26566152,"mistune" -26349859,"pysocks" -26173485,"tinycss2" -26017266,"sympy" -25921921,"tb-nightly" -25909493,"notebook" -25906907,"jupyterlab-server" -25893178,"sagemaker" -25720632,"nbclient" -25707518,"jupyterlab" -25658488,"opensearch-py" -25431680,"sphinx" -25160013,"adal" -24419147,"jaraco-functools" -24313827,"google-cloud-aiplatform" -24131396,"xlrd" -23950110,"ipywidgets" -23805773,"google-cloud-appengine-logging" -23776152,"widgetsnbextension" -23692374,"aenum" -23547207,"aws-requests-auth" -23511248,"pathos" -23358580,"jupyterlab-widgets" -23341102,"sentencepiece" -23287619,"progressbar2" -23240637,"xlsxwriter" -23147309,"db-dtypes" -23110919,"pre-commit" -23064774,"pox" -23052026,"apache-airflow-providers-common-sql" -23050526,"ppft" -23024818,"pytest-mock" -22838407,"slack-sdk" -22827378,"send2trash" -22796356,"json5" -22778121,"semver" -22763686,"pyodbc" -22749082,"argon2-cffi" -22723213,"mpmath" -22648950,"appdirs" -22507155,"lz4" -22460789,"cattrs" -22450619,"pandocfilters" -22273981,"jupyterlab-pygments" -22255481,"overrides" -22163645,"pandas-gbq" -22083331,"django" -22048224,"argon2-cffi-bindings" -21830113,"identify" -21820614,"jaraco-context" -21806031,"sshtunnel" -21802735,"smdebug-rulesconfig" -21793650,"python-utils" -21783700,"mypy" -21779524,"absl-py" -21624492,"click-man" -21387203,"scikit-image" -21304414,"terminado" -21208518,"tensorboard" -21030170,"cfgv" -20865573,"docker-pycreds" -20841448,"google-cloud-logging" -20754528,"webcolors" -20669213,"google-cloud-resource-manager" -20630766,"pydeequ" -20519170,"pbr" -20515450,"notebook-shim" -20433179,"altair" -20417702,"azure-storage-file-datalake" -20397589,"croniter" -20327400,"tox" -20292351,"asynctest" -20132177,"fqdn" -20088345,"text-unidecode" -20067018,"isoduration" -20065229,"uri-template" -20060019,"ordered-set" -19913825,"watchdog" -19791057,"nltk" -19780139,"rfc3986-validator" -19684559,"wandb" -19618479,"jupyter-events" -19596515,"databricks-sql-connector" -19570103,"simplejson" -19443072,"python-slugify" -19442800,"pytest-xdist" -19235546,"imbalanced-learn" -19229678,"execnet" -19167815,"opentelemetry-proto" -19109391,"rfc3986" -19081389,"h5py" -19057968,"graphql-core" -19055831,"google-cloud-bigquery-storage" -19020594,"selenium" -19012617,"azure-mgmt-core" -18957236,"async-lru" -18848242,"tiktoken" -18831201,"jupyter-server-terminals" -18722904,"langchain-core" -18690962,"pywavelets" -18459418,"responses" -18451084,"gym-notices" -18418313,"lazy-object-proxy" -18407083,"antlr4-python3-runtime" -18394024,"dataclasses-json" -18272694,"oauth2client" -18133103,"structlog" -18127476,"dataclasses" -18035422,"hvac" -18014586,"colorlog" -17956754,"safetensors" -17953824,"jupyter-lsp" -17716681,"hypothesis" -17708808,"prettytable" -17564579,"pydata-google-auth" -17549136,"gremlinpython" -17548375,"tensorflow" -17415479,"semantic-version" -17340777,"faker" -17022499,"snowballstemmer" -16976652,"seaborn" -16958259,"opentelemetry-exporter-otlp-proto-common" -16874373,"flatbuffers" -16772032,"pydantic-settings" -16711371,"msrestazure" -16689230,"thrift" -16687237,"xxhash" -16636260,"gast" -16621422,"great-expectations" -16589717,"databricks-sdk" -16504947,"monotonic" -16199784,"entrypoints" -16181825,"numba" -16156078,"pyroaring" -16132607,"durationpy" -16118747,"wsproto" -16045891,"datasets" -16006050,"google-cloud-audit-log" -15948859,"trio" -15900001,"opentelemetry-exporter-otlp-proto-http" -15892342,"llvmlite" -15886185,"gcsfs" -15880089,"time-machine" -15769739,"inflection" -15677795,"plotly" -15487230,"dbt-core" -15454715,"html5lib" -15449016,"docstring-parser" -15374251,"coloredlogs" -15191127,"azure-keyvault-secrets" -15141506,"langchain" -15107269,"email-validator" -14931096,"azure-datalake-store" -14847963,"statsmodels" -14836544,"zeep" -14794068,"mlflow" -14713367,"retrying" -14590117,"delta-spark" -14576104,"pymssql" -14568924,"google-cloud-dataproc" -14548123,"outcome" -14529467,"backports-tarfile" -14474169,"lockfile" -14442271,"apache-airflow-providers-ssh" -14409422,"cached-property" -14395430,"ruff" -14390197,"azure-mgmt-resource" -14339630,"pickleshare" -14276236,"tblib" -14260945,"kafka-python" -14241632,"click-plugins" -14173709,"alabaster" -14147195,"confluent-kafka" -14099064,"deprecation" -14008670,"imagesize" -13990878,"apache-airflow-providers-snowflake" -13928419,"google-cloud-kms" -13865234,"backcall" -13846512,"opentelemetry-exporter-otlp-proto-grpc" -13842694,"readme-renderer" -13821081,"deepdiff" -13819120,"libcst" -13810575,"apache-airflow-providers-google" -13799510,"pybind11" -13750547,"python-multipart" -13688077,"argparse" -13683898,"looker-sdk" -13670736,"sphinxcontrib-serializinghtml" -13646376,"mlflow-skinny" -13645512,"uvloop" -13638682,"jiter" -13628333,"opencv-python" -13569828,"patsy" -13566871,"google-cloud-monitoring" -13432519,"sphinxcontrib-htmlhelp" -13421336,"google-cloud-container" -13411191,"psycopg2" -13401043,"httptools" -13400934,"sphinxcontrib-qthelp" -13399966,"sphinxcontrib-devhelp" -13397891,"sphinxcontrib-applehelp" -13379689,"google-cloud-vision" -13376096,"spacy" -13363288,"databricks-cli" -13350307,"ujson" -13205504,"aniso8601" -13203971,"azure-cli" -13167760,"google-cloud-spanner" -13109090,"frozendict" -13063358,"nh3" -13058409,"google-cloud-dlp" -13056996,"azure-storage-common" -13023753,"sphinxcontrib-jsmath" -12991152,"google-cloud-bigquery-datatransfer" -12986043,"azure-nspkg" -12941006,"google-cloud-tasks" -12938936,"triton" -12932046,"apache-airflow-providers-cncf-kubernetes" -12895151,"apache-airflow-providers-databricks" -12847282,"torchvision" -12808590,"opentelemetry-instrumentation" -12806360,"tensorboard-data-server" -12797856,"pytest-metadata" -12793664,"trio-websocket" -12787499,"keras" -12785016,"google-ads" -12696457,"pipenv" -12665239,"hatchling" -12662554,"tensorflow-estimator" -12656333,"twine" -12638696,"google-cloud-datacatalog" -12637525,"nvidia-nccl-cu12" -12614771,"azure-mgmt-storage" -12605377,"unidecode" -12560633,"docopt" -12496700,"apache-airflow-providers-mysql" -12472050,"invoke" -12424416,"applicationinsights" -12413575,"azure-keyvault-keys" -12379331,"pytest-asyncio" -12342424,"google-cloud-bigtable" -12275337,"pyproject-api" -12255954,"azure-cosmos" -12135683,"uv" -12059821,"opt-einsum" -12033954,"google-cloud-build" -12020953,"backports-zoneinfo" -11960370,"simple-salesforce" -11942657,"tldextract" -11911042,"thinc" -11887038,"azure-graphrbac" -11877583,"azure-keyvault" -11861557,"google-cloud-workflows" -11833963,"makefun" -11817221,"google-cloud-redis" -11796747,"google-cloud-dataplex" -11736457,"fastavro" -11684910,"graphviz" -11684539,"google-cloud-automl" -11646356,"google-cloud-language" -11627856,"watchtower" -11606015,"google-cloud-os-login" -11575990,"google-cloud-firestore" -11548946,"google-cloud-videointelligence" -11546125,"freezegun" -11481249,"gsutil" -11462475,"google-cloud-memcache" -11439680,"pycrypto" -11390351,"jupyter" -11387689,"graphene" -11377254,"azure-mgmt-containerregistry" -11370871,"blis" -11365551,"astunparse" -11358183,"datetime" -11351923,"funcsigs" -11338231,"gevent" -11328458,"jupyter-console" -11308825,"gspread" -11259157,"graphql-relay" -11232872,"authlib" -11155568,"murmurhash" -11141774,"watchfiles" -11098410,"nose" -11087925,"pytimeparse" -11078690,"zope-event" -11076543,"google-cloud-orchestration-airflow" -11073059,"opentelemetry-exporter-otlp" -11066185,"parameterized" -11042102,"preshed" -10990252,"google-cloud-dataproc-metastore" -10971847,"nvidia-cudnn-cu12" -10962623,"google-cloud-translate" -10941235,"cymem" -10931373,"azure-mgmt-keyvault" -10907866,"sqlalchemy-bigquery" -10884840,"pywin32" -10878155,"omegaconf" -10844589,"catalogue" -10835738,"azure-mgmt-compute" -10805505,"analytics-python" -10788708,"google-cloud-dataform" -10787666,"srsly" -10727483,"azure-mgmt-cosmosdb" -10715540,"sh" -10686025,"wasabi" -10676719,"azure-mgmt-authorization" -10671879,"pkce" -10627161,"azure-mgmt-network" -10620783,"grpcio-gcp" -10594084,"tensorflow-serving-api" -10563314,"nvidia-cublas-cu12" -10532876,"brotli" -10531698,"ecdsa" -10526893,"google-cloud-speech" -10501134,"ratelimit" -10464606,"evergreen-py" -10441760,"langsmith" -10438024,"agate" -10426040,"configparser" -10418544,"jsondiff" -10408872,"azure-mgmt-msi" -10406697,"google-cloud-texttospeech" -10368240,"langcodes" -10360246,"nvidia-cuda-runtime-cu12" -10348066,"nvidia-cuda-cupti-cu12" -10344454,"nvidia-cuda-nvrtc-cu12" -10322973,"nvidia-cusparse-cu12" -10322340,"nvidia-cufft-cu12" -10319917,"flask-appbuilder" -10317934,"dask" -10316575,"nvidia-cusolver-cu12" -10301526,"nvidia-nvjitlink-cu12" -10285167,"ijson" -10280147,"nvidia-curand-cu12" -10274935,"langchain-community" -10260713,"pysftp" -10242289,"gcloud-aio-storage" -10237543,"pypdf2" -10172115,"nvidia-nvtx-cu12" -10164604,"jira" -10160759,"db-contrib-tool" -10159722,"gcloud-aio-auth" -10109014,"pathlib2" -10087664,"flask-cors" -10074296,"bitarray" -10037747,"fabric" -10021405,"opentelemetry-util-http" -10017271,"scp" -10012820,"azure-mgmt-recoveryservices" -10010628,"ninja" -10005497,"python-gnupg" -10004505,"azure-mgmt-containerinstance" -9982779,"spacy-loggers" -9970776,"azure-mgmt-monitor" -9959577,"spacy-legacy" -9933740,"gcloud-aio-bigquery" -9896633,"azure-data-tables" -9884723,"kombu" -9881154,"types-pyyaml" -9832358,"azure-mgmt-signalr" -9808606,"azure-batch" -9800090,"azure-mgmt-sql" -9779879,"djangorestframework" -9770372,"azure-mgmt-web" -9761604,"azure-mgmt-servicebus" -9761297,"azure-mgmt-redis" -9710867,"google-cloud-compute" -9699923,"avro-python3" -9693423,"awscrt" -9675262,"parsedatetime" -9627955,"confection" -9626387,"azure-mgmt-containerservice" -9516523,"azure-mgmt-dns" -9446139,"mdit-py-plugins" -9424662,"celery" -9413326,"azure-mgmt-advisor" -9410746,"gym" -9401541,"azure-mgmt-rdbms" -9393321,"azure-mgmt-eventhub" -9385147,"hpack" -9366392,"texttable" -9315199,"protobuf3-to-dict" -9297219,"azure-mgmt-loganalytics" -9295021,"azure-mgmt-batch" -9270799,"azure-mgmt-cdn" -9267807,"pytest-html" -9243811,"mashumaro" -9242748,"libclang" -9241080,"narwhals" -9237595,"opencensus-context" -9230501,"amqp" -9225461,"azure-mgmt-trafficmanager" -9225297,"azure-mgmt-iothub" -9222695,"azure-mgmt-search" -9221684,"azure-mgmt-marketplaceordering" -9219714,"opencensus" -9218123,"azure-mgmt-managementgroups" -9217542,"zstandard" -9217322,"azure-mgmt-recoveryservicesbackup" -9207730,"jsonpickle" -9193594,"azure-mgmt-devtestlabs" -9193546,"humanize" -9188856,"yapf" -9171122,"azure-mgmt-eventgrid" -9168188,"billiard" -9165915,"azure-mgmt-cognitiveservices" -9124573,"azure-mgmt-applicationinsights" -9117283,"levenshtein" -9110507,"mysqlclient" -9097404,"h2" -9084198,"hyperframe" -9076808,"azure-mgmt-servicefabric" -9073522,"apispec" -9059626,"vine" -9052528,"azure-mgmt-billing" -9050065,"azure-mgmt-media" -9042580,"azure-mgmt-policyinsights" -9041390,"azure-mgmt-iothubprovisioningservices" -9035894,"azure-appconfiguration" -9035704,"azure-mgmt-batchai" -9015323,"azure-mgmt-datamigration" -9012774,"azure-mgmt-nspkg" -9012335,"azure-mgmt-iotcentral" -9011875,"azure-mgmt-maps" -8978016,"azure-storage-queue" -8960520,"tensorflow-io-gcs-filesystem" -8949280,"astor" -8919174,"azure-cli-core" -8902241,"pycountry" -8882808,"lark" -8872519,"mypy-boto3-s3" -8853687,"pyproj" -8844489,"pyathena" -8843040,"apache-airflow-providers-http" -8842805,"boto3-stubs" -8840067,"parsimonious" -8806717,"ml-dtypes" -8795030,"azure-mgmt-datalake-nspkg" -8772653,"knack" -8745897,"pyserial" -8695423,"azure-mgmt-datalake-store" -8680190,"office365-rest-python-client" -8559948,"flask-sqlalchemy" -8543733,"python-magic" -8542475,"contextlib2" -8534062,"python-daemon" -8525258,"moto" -8511848,"cfn-lint" -8482183,"requests-mock" -8452608,"mypy-boto3-rds" -8444689,"cytoolz" -8436971,"python-gitlab" -8421389,"pip-tools" -8371819,"typing" -8354067,"opencensus-ext-azure" -8351314,"grpcio-health-checking" -8313129,"lightgbm" -8283128,"cramjam" -8282657,"boto" -8275071,"psycopg" -8259831,"eth-utils" -8230005,"parse" -8189628,"jpype1" -8180347,"leather" -8175864,"eth-hash" -8166576,"click-didyoumean" -8154022,"azure-multiapi-storage" -8151458,"tensorflow-text" -8029833,"python-jose" -8022021,"dbt-extractor" -8017467,"avro" -8006201,"botocore-stubs" -7991976,"click-repl" -7951871,"javaproperties" -7951447,"azure-mgmt-datalake-analytics" -7923774,"stevedore" -7881115,"azure-mgmt-reservations" -7874389,"pyspnego" -7871617,"holidays" -7847055,"azure-synapse-artifacts" -7844774,"flask-wtf" -7839824,"eth-typing" -7809878,"azure-loganalytics" -7803480,"onnxruntime" -7793690,"azure-mgmt-consumption" -7779790,"cmake" -7775881,"azure-mgmt-relay" -7774082,"python-http-client" -7756364,"azure-cli-telemetry" -7737175,"azure-synapse-spark" -7641640,"dateparser" -7614156,"azure-mgmt-apimanagement" -7594092,"resolvelib" -7553784,"opentelemetry-instrumentation-requests" -7551840,"marisa-trie" -7524947,"elastic-transport" -7524542,"azure-mgmt-privatedns" -7513662,"azure-mgmt-hdinsight" -7484996,"langchain-text-splitters" -7443925,"google-cloud-dataflow-client" -7437586,"azure-mgmt-security" -7429072,"azure-mgmt-kusto" -7422635,"azure-mgmt-synapse" -7406613,"language-data" -7365277,"apscheduler" -7362495,"azure-synapse-accesscontrol" -7360088,"azure-mgmt-redhatopenshift" -7349775,"dbt-semantic-interfaces" -7349137,"azure-keyvault-administration" -7346991,"azure-mgmt-sqlvirtualmachine" -7345984,"magicattr" -7345291,"azure-mgmt-appconfiguration" -7341500,"azure-mgmt-netapp" -7329570,"azure-mgmt-imagebuilder" -7322308,"azure-mgmt-botservice" -7311443,"azure-mgmt-servicelinker" -7310793,"apache-airflow-providers-fab" -7309959,"azure-mgmt-servicefabricmanagedclusters" -7309662,"azure-mgmt-databoxedge" -7307554,"azure-synapse-managedprivateendpoints" -7302367,"azure-mgmt-extendedlocation" -7294778,"setuptools-rust" -7287659,"fasteners" -7261369,"partd" -7254852,"types-awscrt" -7244942,"enum34" -7202778,"locket" -7147260,"accelerate" -7103523,"tifffile" -7086631,"inflect" -7065464,"geopandas" -7060435,"py-cpuinfo" -7057614,"sendgrid" -7051242,"flask-login" -7028826,"pytest-timeout" -7016238,"eth-abi" -7001666,"cligj" -6949216,"mergedeep" -6938931,"python-levenshtein" -6933791,"urllib3-secure-extra" -6901264,"wtforms" -6858679,"yamllint" -6844243,"fuzzywuzzy" -6832686,"apache-airflow-providers-ftp" -6786377,"azure-storage-file-share" -6761082,"dacite" -6734888,"iso8601" -6734272,"jaydebeapi" -6733167,"fastparquet" -6702899,"validators" -6695635,"types-s3transfer" -6663223,"blessed" -6661482,"types-pytz" -6648953,"ipython-genutils" -6629505,"bracex" -6614820,"pathy" -6612665,"apache-beam" -6555798,"lazy-loader" -6503298,"pydash" -6500642,"sqlalchemy-utils" -6495929,"universal-pathlib" -6482061,"hyperlink" -6472404,"azure-mgmt-managedservices" -6461452,"kfp" -6458164,"netaddr" -6448084,"python-docx" -6447372,"querystring-parser" -6437822,"bytecode" -6419367,"phonenumbers" -6395271,"unicodecsv" -6373842,"polars" -6366276,"apache-airflow-providers-sqlite" -6357041,"types-protobuf" -6354444,"iso3166" -6337696,"nvidia-cublas-cu11" -6295760,"pytest-rerunfailures" -6269131,"nvidia-cudnn-cu11" -6267321,"sqlalchemy-spanner" -6262868,"types-setuptools" -6261141,"azure-servicebus" -6259729,"google-cloud-run" -6245263,"yappi" -6240902,"types-urllib3" -6192305,"prefect" -6192219,"google-cloud-storage-transfer" -6178678,"cloudpathlib" -6178573,"cssselect" -6162251,"opencv-python-headless" -6155190,"connexion" -6154639,"ddtrace" -6129566,"ndg-httpsclient" -6127047,"envier" -6118533,"mmh3" -6096476,"torchaudio" -6088419,"pyright" -6082028,"azure-mgmt-datafactory" -6073083,"nvidia-cuda-runtime-cu11" -6047822,"nvidia-cuda-nvrtc-cu11" -6044573,"slicer" -6042848,"google-cloud-batch" -5998135,"azure-kusto-data" -5987771,"sphinx-rtd-theme" -5972639,"azure-mgmt-deploymentmanager" -5967943,"shap" -5941917,"pydot" -5928829,"django-allauth" -5903663,"torchmetrics" -5884536,"cron-descriptor" -5874437,"gql" -5865063,"linkify-it-py" -5842025,"pytorch-lightning" -5823096,"fire" -5812689,"apache-airflow-providers-slack" -5804095,"cachelib" -5778955,"keras-applications" -5771449,"pypdf" -5754835,"gradio" -5747284,"logbook" -5732968,"starkbank-ecdsa" -5731159,"incremental" -5728989,"pathlib" -5725897,"cfn-flip" -5719970,"uc-micro-py" -5712977,"aws-sam-translator" -5712820,"pyee" -5702895,"slackclient" -5683673,"diskcache" -5679818,"configargparse" -5671849,"datadog-api-client" -5665373,"twisted" -5626508,"jellyfish" -5605458,"pydub" -5602854,"junit-xml" -5602290,"flask-caching" -5543049,"sentence-transformers" -5540114,"dbt-common" -5500645,"typed-ast" -5486163,"apache-airflow-providers-amazon" -5480103,"pydantic-extra-types" -5477091,"ansible" -5473154,"inject" -5464479,"django-cors-headers" -5463653,"oracledb" -5460452,"keyrings-google-artifactregistry-auth" -5454795,"timm" -5444784,"json-merge-patch" -5428188,"xarray" -5420977,"requests-ntlm" -5407775,"geoip2" -5398618,"events" -5386661,"psycopg-binary" -5378775,"natsort" -5373391,"ansible-core" -5357934,"automat" -5346406,"onnx" -5327677,"astronomer-cosmos" -5312513,"apache-airflow-providers-imap" -5307752,"constantly" -5298553,"futures" -5298126,"pyhcl" -5293661,"limits" -5262022,"boltons" -5236247,"azure-keyvault-certificates" -5224182,"autopep8" -5221262,"wcmatch" -5216146,"apache-airflow-providers-smtp" -5214225,"h3" -5196296,"geographiclib" -5187202,"statsd" -5172153,"dbt-adapters" -5164650,"pymdown-extensions" -5162286,"nvidia-ml-py" -5145886,"langchain-google-vertexai" -5140683,"geopy" -5124970,"tableauserverclient" -5117899,"strictyaml" -5114738,"oldest-supported-numpy" -5112682,"lightning-utilities" -5111964,"mypy-boto3-appflow" -5101002,"apache-airflow-providers-common-io" -5099905,"pytz-deprecation-shim" -5064245,"ftfy" -5057171,"flask-jwt-extended" -5054769,"langchain-openai" -5050463,"methodtools" -5050191,"strenum" -5050166,"types-redis" -5032812,"marshmallow-sqlalchemy" -5010647,"crcmod" -4993824,"asyncpg" -4993467,"emoji" -4965283,"swagger-ui-bundle" -4963370,"faiss-cpu" -4961291,"grpc-interceptor" -4936411,"fiona" -4923141,"eth-account" -4914503,"junitparser" -4907525,"ldap3" -4902079,"minimal-snowplow-tracker" -4851116,"maxminddb" -4833795,"editables" -4820093,"svgwrite" -4804065,"google-cloud" -4788964,"bottle" -4772259,"webdriver-manager" -4768367,"pandera" -4719569,"wirerope" -4717996,"multimethod" -4717820,"ultralytics" -4715614,"griffe" -4709627,"einops" -4709575,"aws-lambda-powertools" -4687008,"opentelemetry-instrumentation-asgi" -4669165,"streamlit" -4633866,"elasticsearch-dsl" -4580323,"weasel" -4574392,"reportlab" -4572822,"ua-parser" -4571523,"pika" -4565721,"pyotp" -4521234,"azure-devops" -4516576,"rdflib" -4513075,"pdfminer-six" -4509534,"sphinxcontrib-jquery" -4508240,"django-filter" -4505512,"trino" -4495381,"mkdocs-material" -4493410,"bidict" -4491361,"passlib" -4487746,"pathlib-abc" -4486229,"marshmallow-enum" -4481767,"sklearn" -4466055,"kubernetes-asyncio" -4464914,"asyncio" -4458420,"apache-airflow-providers-common-compat" -4437660,"flask-limiter" -4437654,"google" -4424748,"azure-kusto-ingest" -4407003,"openapi-spec-validator" -4396415,"opentelemetry-instrumentation-fastapi" -4380615,"rich-argparse" -4371518,"azure-eventhub" -4361921,"sphinx-autodoc-typehints" -4358820,"albumentations" -4341538,"meson" -4341088,"pytest-random-order" -4329569,"pytest-forked" -4312856,"google-re2" -4307225,"gradio-client" -4265153,"flask-session" -4259834,"langdetect" -4258362,"constructs" -4255544,"kfp-pipeline-spec" -4204702,"playwright" -4200059,"addict" -4191732,"commonmark" -4185969,"flask-restful" -4177504,"fs" -4174931,"aws-xray-sdk" -4167254,"gensim" -4152924,"pyperclip" -4150469,"distributed" -4103400,"pgpy" -4102753,"bandit" -4100501,"chroma-hnswlib" -4090495,"pytest-localserver" -4088359,"duckdb" -4072013,"formulaic" -4071419,"cog" -4068477,"convertdate" -4033989,"pyelftools" -4021004,"jsonlines" -4020823,"cloudevents" -4019530,"types-dataclasses" -4018120,"pyaml" -4006230,"tweepy" -4004613,"nbclassic" -4004347,"fasttext-wheel" -4002615,"jsonref" -4000476,"glom" -3999078,"click-option-group" -3998951,"face" -3997160,"snowflake-snowpark-python" -3943701,"keras-preprocessing" -3938578,"pipx" -3937816,"cx-oracle" -3935341,"tensorboard-plugin-wit" -3925964,"ray" -3918761,"feedparser" -3899885,"pytest-django" -3899139,"checkov" -3889991,"pydeck" -3885895,"tomli-w" -3867718,"python-decouple" -3851207,"prometheus-flask-exporter" -3847511,"pytest-randomly" -3845002,"autograd" -3840004,"peewee" -3822791,"service-identity" -3821152,"ipaddress" -3799808,"binaryornot" -3794927,"aiosqlite" -3782627,"pylint-plugin-utils" -3779061,"cloudformation-cli" -3775893,"flask-babel" -3775815,"factory-boy" -3774655,"pycares" -3764448,"aiodns" -3753186,"python-socketio" -3751987,"async-generator" -3744030,"python-engineio" -3739935,"cloudformation-cli-python-plugin" -3738464,"cloudformation-cli-java-plugin" -3737961,"stringcase" -3737442,"cloudformation-cli-go-plugin" -3736424,"cloudformation-cli-typescript-plugin" -3715460,"spark-nlp" -3699433,"atomicwrites" -3696326,"uamqp" -3671060,"ciso8601" -3666850,"korean-lunar-calendar" -3658111,"recordlinkage" -3651208,"schedule" -3649672,"cerberus" -3632907,"pydocstyle" -3624219,"optree" -3616432,"sudachidict-core" -3615836,"dbt-snowflake" -3607767,"parse-type" -3606204,"jax" -3605821,"xlwt" -3603814,"opentelemetry-instrumentation-wsgi" -3603777,"cssselect2" -3602851,"functions-framework" -3600065,"posthog" -3585595,"meson-python" -3584543,"fastapi-cli" -3571761,"userpath" -3571150,"configupdater" -3564532,"pymupdf" -3561786,"dask-expr" -3554619,"mkdocs" -3550312,"pyproject-metadata" -3528702,"immutabledict" -3518920,"lxml-html-clean" -3517645,"cookiecutter" -3516174,"qrcode" -3514709,"flit-core" -3503945,"speechbrain" -3501544,"moreorless" -3500321,"hyperpyyaml" -3497487,"sqlalchemy-redshift" -3497238,"singer-sdk" -3495681,"prefect-gcp" -3489758,"pyqt5" -3485289,"firebase-admin" -3478250,"mypy-boto3-redshift-data" -3474025,"prison" -3459907,"django-extensions" -3452198,"elementpath" -3444594,"rasterio" -3438188,"waitress" -3434979,"xyzservices" -3432497,"trailrunner" -3427599,"pytest-split" -3424051,"teradatasql" -3413858,"numexpr" -3411280,"pyerfa" -3402452,"twilio" -3367663,"sagemaker-mlflow" -3365033,"bokeh" -3358986,"affine" -3354168,"tensorflow-metadata" -3350036,"ffmpy" -3339421,"kfp-server-api" -3328152,"python3-openid" -3304783,"azure-cosmosdb-table" -3298909,"mypy-boto3-glue" -3298525,"webob" -3293580,"ddsketch" -3289312,"sqlglot" -3287120,"msgspec" -3276338,"unidiff" -3263923,"simple-websocket" -3262080,"azure-cosmosdb-nspkg" -3261674,"namex" -3260442,"pyqt5-sip" -3258333,"diff-cover" -3251062,"django-storages" -3247651,"ghp-import" -3247311,"sagemaker-core" -3236459,"dash" -3225523,"marshmallow-oneofschema" -3222851,"clickclick" -3220634,"apache-airflow-providers-sftp" -3212010,"google-analytics-admin" -3210576,"mypy-boto3-secretsmanager" -3203980,"readchar" -3196581,"orderedmultidict" -3191084,"pyyaml-env-tag" -3187086,"pymsteams" -3182488,"opencensus-ext-logging" -3165130,"azure-monitor-query" -3159483,"hiredis" -3157816,"commentjson" -3150478,"dpath" -3141356,"xmlschema" -3137073,"pulp" -3133535,"stdlibs" -3128936,"w3lib" -3126218,"usort" -3120777,"paho-mqtt" -3118684,"filetype" -3113808,"openapi-schema-validator" -3104043,"pyglet" -3103040,"ufmt" -3102200,"robotframework" -3101743,"tokenize-rt" -3081561,"jaxlib" -3068064,"sqlalchemy-jsonfield" -3064043,"pandas-stubs" -3063986,"grpcio-reflection" -3063001,"pymeeus" -3061122,"pypika" -3056810,"filterpy" -3054472,"uuid" -3043683,"aiohttp-retry" -3041496,"tensorboardx" -3039344,"pyhocon" -3034271,"hydra-core" -3033208,"edgegrid-python" -3026385,"pyqt5-qt5" -3021215,"stripe" -3012360,"orderly-set" -3011998,"pytest-json-report" -3008819,"hexbytes" -3006586,"furl" -2997965,"azure-storage-file" -2994839,"sql-metadata" -2976221,"polyfactory" -2973654,"pytest-messenger" -2965788,"cmdstanpy" -2957038,"dbt-postgres" -2956034,"hatch-vcs" -2952656,"python-editor" -2948752,"altgraph" -2939493,"pyarrow-hotfix" -2937480,"astropy" -2931640,"user-agents" -2929768,"pygame" -2921793,"opentelemetry-instrumentation-flask" -2903370,"pooch" -2901780,"daff" -2893787,"voluptuous" -2885750,"python-box" -2874690,"multipledispatch" -2869259,"redis-py-cluster" -2865311,"optuna" -2864701,"url-normalize" -2859185,"smbprotocol" -2846127,"mypy-protobuf" -2841502,"immutables" -2839233,"json-repair" -2831820,"interface-meta" -2814674,"pywin32-ctypes" -2813069,"hdfs" -2809328,"python-snappy" -2804711,"opentelemetry-instrumentation-dbapi" -2803569,"web3" -2801360,"lru-dict" -2799560,"patchelf" -2795927,"eth-rlp" -2793996,"pyxlsb" -2792363,"configobj" -2781287,"adlfs" -2778286,"shortuuid" -2777063,"kaleido" -2775801,"google-cloud-datastore" -2775433,"unittest-xml-reporting" -2775372,"toposort" -2772664,"atlassian-python-api" -2771319,"dash-core-components" -2769548,"dash-table" -2768045,"dash-html-components" -2767982,"jwcrypto" -2767559,"plotnine" -2765279,"jdcal" -2761326,"python-jenkins" -2760493,"prophet" -2753044,"hijri-converter" -2749711,"mkdocs-material-extensions" -2746247,"terminaltables" -2744690,"yq" -2743566,"dbt-bigquery" -2741802,"colour" -2740821,"influxdb" -2725332,"librosa" -2721381,"minio" -2719137,"pyinstaller" -2718394,"fpdf" -2717047,"mypy-boto3-lambda" -2713931,"opentelemetry-instrumentation-urllib" -2704118,"pyinstaller-hooks-contrib" -2682113,"jsii" -2680501,"opentelemetry-instrumentation-urllib3" -2676970,"enum-compat" -2673872,"fastcore" -2660861,"azureml-core" -2657219,"undetected-chromedriver" -2653070,"aws-cdk-integ-tests-alpha" -2652263,"deepmerge" -2649109,"datasketch" -2646778,"astropy-iers-data" -2646575,"comtypes" -2642138,"marshmallow-dataclass" -2627070,"azure-eventgrid" -2624623,"pyrfc3339" -2619239,"geventhttpclient" -2615355,"qtpy" -2615345,"kazoo" -2610273,"pylint-pydantic" -2603916,"pyhive" -2597701,"semgrep" -2595635,"netifaces" -2593414,"sseclient-py" -2590280,"django-redis" -2579901,"dm-tree" -2576989,"mypy-boto3-sqs" -2571250,"pynamodb" -2556516,"catboost" -2552190,"google-cloud-pubsublite" -2546860,"scandir" -2544323,"mypy-boto3-dynamodb" -2537118,"beartype" -2536216,"sanic" -2531944,"pyhumps" -2529256,"click-default-group" -2527163,"ipdb" -2522101,"whitenoise" -2521585,"mizani" -2521032,"mixpanel" -2516145,"amazon-ion" -2503610,"peft" -2493026,"diffusers" -2488500,"tree-sitter" -2485220,"anthropic" -2484535,"soundfile" -2483302,"tld" -2481069,"proglog" -2478514,"azure-functions" -2478174,"django-debug-toolbar" -2473192,"azure-ai-ml" -2471351,"concurrent-log-handler" -2463036,"publication" -2459656,"environs" -2455584,"sudachipy" -2450880,"yfinance" -2450862,"pytest-benchmark" -2447952,"pytest-env" -2438026,"acryl-datahub" -2431962,"djangorestframework-simplejwt" -2429222,"more-executors" -2421006,"construct" -2418754,"opentelemetry-instrumentation-logging" -2414829,"python-pam" -2410940,"num2words" -2409239,"fastpurge" -2404944,"pmdarima" -2395396,"requests-cache" -2395385,"sacremoses" -2395340,"opentelemetry-instrumentation-psycopg2" -2386078,"pypandoc" -2363015,"locust" -2356841,"s3path" -2342641,"pycocotools" -2339726,"opentelemetry-instrumentation-django" -2337981,"bitstring" -2332294,"databricks-api" -2330891,"pint" -2329590,"nox" -2327956,"apache-airflow-providers-postgres" -2327121,"types-six" -2327049,"motor" -2326449,"aws-psycopg2" -2325701,"opentelemetry-distro" -2320492,"flask-migrate" -2316934,"ultralytics-thop" -2316467,"lark-parser" -2313277,"azure-monitor-opentelemetry-exporter" -2312192,"pywinauto" -2310529,"netcdf4" -2303031,"qtconsole" -2293598,"datefinder" -2288461,"soda-core" -2288315,"apache-airflow-providers-docker" -2287405,"sgmllib3k" -2284947,"dynamodb-json" -2283970,"pathable" -2277283,"olefile" -2274747,"aiohttp-cors" -2274527,"hatch-fancy-pypi-readme" -2272671,"zict" -2264758,"cleanco" -2260611,"flask-openid" -2260413,"pypyp" -2257929,"sanic-routing" -2256977,"django-environ" -2254866,"allure-python-commons" -2247547,"pypiwin32" -2244247,"cftime" -2240553,"colorful" -2239543,"timezonefinder" -2236786,"flake8-bugbear" -2236779,"mkdocs-get-deps" -2235688,"geomet" -2234424,"eth-keys" -2233701,"lifelines" -2231703,"falcon" -2231378,"pyfiglet" -2230716,"injector" -2229240,"flask-httpauth" -2228471,"fakeredis" -2225489,"aioboto3" -2221366,"pyphen" -2209644,"ruptures" -2195805,"snuggs" -2186712,"textual" -2185149,"appnope" -2184593,"bump2version" -2179268,"google-apitools" -2178294,"imageio-ffmpeg" -2169019,"apache-airflow-providers-microsoft-mssql" -2166335,"llama-parse" -2165675,"flower" -2164536,"geojson" -2161971,"zc-lockfile" -2158365,"fixedint" -2154748,"uritools" -2148426,"salesforce-bulk" -2144168,"findspark" -2135598,"fake-useragent" -2133764,"pytd" -2131585,"av" -2131139,"cheroot" -2129743,"pytesseract" -2126600,"python-crontab" -2125543,"pyusb" -2117772,"strip-hints" -2113114,"simpleeval" -2112651,"appium-python-client" -2112127,"azure-search-documents" -2111477,"dbutils" -2106788,"scikit-build-core" -2100138,"hyperopt" -2097700,"azure" -2092250,"python-telegram-bot" -2088920,"stanio" -2085682,"nested-lookup" -2084078,"mypy-boto3-cloudformation" -2080553,"uncertainties" -2080149,"bitsandbytes" -2079731,"promise" -2079070,"paginate" -2071169,"yt-dlp" -2066325,"dynaconf" -2060723,"thrift-sasl" -2058756,"azure-mgmt-subscription" -2054547,"cassandra-driver" -2053523,"yamale" -2049308,"sacrebleu" -2039564,"gpustat" -2038980,"py-spy" -2033809,"ec2-metadata" -2024955,"python-consul" -2023455,"cssutils" -2022907,"pyogrio" -2021382,"evaluate" -2018804,"sqlfluff" -2016571,"plumbum" -2015741,"pep517" -2015337,"wget" -2010005,"python-pptx" -2002011,"testcontainers" -1996021,"pytest-error-for-skips" -1994264,"prisma" -1989900,"graphframes" -1988911,"pyppeteer" -1988096,"socksio" -1987840,"aws-cdk-asset-awscli-v1" -1983057,"newrelic" -1982952,"tracerite" -1982526,"html5tagger" -1974873,"pypng" -1970085,"elementary-data" -1969620,"pdf2image" -1969345,"iopath" -1967801,"chevron" -1965969,"pygsheets" -1961777,"o365" -1956038,"ffmpeg-python" -1954214,"polling" -1952027,"cloudflare" -1951192,"testpath" -1950795,"rlp" -1950005,"lit" -1945192,"click-spinner" -1941708,"pipdeptree" -1934256,"python-nvd3" -1923394,"pathvalidate" -1921354,"types-paramiko" -1920662,"coveralls" -1919707,"pytest-repeat" -1919123,"multi-key-dict" -1916209,"itypes" -1915749,"tlparse" -1908209,"soxr" -1905276,"hologram" -1904889,"pefile" -1901069,"py7zr" -1900621,"requests-futures" -1894290,"rollbar" -1893188,"packageurl-python" -1891493,"singledispatch" -1890705,"findpython" -1889467,"json-log-formatter" -1888739,"dunamai" -1888635,"zipfile38" -1884561,"inquirer" -1876423,"pygeohash" -1876240,"myst-parser" -1875439,"dep-logic" -1873432,"pymemcache" -1871523,"pykwalify" -1869738,"audioread" -1869530,"memoization" -1869390,"types-pyopenssl" -1867571,"apache-sedona" -1867422,"osqp" -1866709,"drf-yasg" -1866598,"hishel" -1864764,"yaspin" -1863505,"galvani" -1862289,"docker-compose" -1860429,"llama-index" -1858967,"flask-restx" -1858933,"azure-mgmt-notificationhubs" -1857508,"torchsde" -1856273,"httpx-sse" -1853858,"pep8-naming" -1853404,"htmldate" -1849508,"opencv-contrib-python" -1843665,"questionary" -1842726,"databricks-pypi1" -1841741,"pytest-custom-exit-code" -1841410,"mysql-connector" -1840632,"robotframework-pythonlibcore" -1840245,"clickhouse-connect" -1838284,"pyzstd" -1836722,"dropbox" -1833166,"riot" -1827700,"pamqp" -1826253,"boxsdk" -1825703,"pygit2" -1824870,"aws-cdk-lib" -1822509,"django-timezone-field" -1819184,"kornia" -1818920,"blobfile" -1817315,"signalfx" -1815387,"eth-keyfile" -1814714,"jsonconversion" -1813133,"drf-spectacular" -1812244,"flexparser" -1812239,"flexcache" -1808152,"dictdiffer" -1807872,"trampoline" -1805565,"allure-pytest" -1803466,"expandvars" -1803102,"deltalake" -1802419,"mypy-boto3-ec2" -1800602,"license-expression" -1799817,"behave" -1799536,"trimesh" -1797939,"tensorflow-hub" -1792311,"azure-mgmt-logic" -1791488,"pytest-order" -1790972,"truststore" -1788727,"notion-client" -1787634,"litellm" -1787074,"insight-cli" -1785545,"chispa" -1784440,"tensorflow-datasets" -1784072,"jaconv" -1782768,"avro-gen3" -1782354,"markdown2" -1781908,"pbs-installer" -1780647,"pyfakefs" -1780210,"boolean-py" -1779339,"rtree" -1778472,"unearth" -1771580,"databricks-connect" -1766499,"boa-str" -1764590,"html2text" -1763472,"asteval" -1760956,"flaky" -1758805,"asyncssh" -1758419,"pdm" -1757579,"azure-servicefabric" -1757499,"pympler" -1755438,"sarif-om" -1752564,"pytest-sugar" -1750905,"pex" -1749675,"jschema-to-python" -1749444,"chromadb" -1748052,"flatten-json" -1747430,"eval-type-backport" -1741884,"mbstrdecoder" -1740021,"requests-aws-sign" -1739218,"google-cloud-recommendations-ai" -1736446,"azure-mgmt" -1734503,"shareplum" -1734384,"backports-functools-lru-cache" -1733755,"cyclonedx-python-lib" -1732906,"tzfpy" -1728998,"expiringdict" -1728753,"pipelinewise-singer-python" -1728390,"azure-mgmt-scheduler" -1728365,"virtualenv-clone" -1725874,"atpublic" -1725850,"pybloom-live" -1725562,"azure-mgmt-commerce" -1723568,"tablib" -1723343,"azure-mgmt-powerbiembedded" -1719763,"jproperties" -1719524,"modin" -1719143,"ortools" -1717222,"azure-mgmt-hanaonazure" -1716238,"azure-mgmt-machinelearningcompute" -1716098,"azure-mgmt-managementpartner" -1711999,"pyhamcrest" -1711574,"autoflake" -1707523,"ansible-compat" -1704799,"cbor2" -1704012,"azure-servicemanagement-legacy" -1703704,"flask-bcrypt" -1692444,"ifaddr" -1692356,"azure-mgmt-devspaces" -1689622,"pyaes" -1689180,"mypy-boto3-sts" -1687239,"robotframework-seleniumlibrary" -1686294,"pysmi" -1686098,"pyppmd" -1684200,"typepy" -1683294,"dominate" -1683062,"pybcj" -1683000,"pyudev" -1680980,"py-partiql-parser" -1680955,"pytest-base-url" -1679879,"json-delta" -1675364,"diff-match-patch" -1673864,"scapy" -1673104,"pymupdfb" -1672383,"contextvars" -1668601,"azure-applicationinsights" -1665750,"mkdocstrings-python" -1662963,"pytest-httpx" -1661526,"bashlex" -1657932,"onnxruntime-gpu" -1656903,"pynvml" -1653026,"weasyprint" -1652311,"mutagen" -1651561,"anytree" -1651402,"bumpversion" -1650288,"multivolumefile" -1646731,"justext" -1643735,"pikepdf" -1643067,"aws-cdk-asset-kubectl-v20" -1635892,"pyquery" -1634189,"pyreadline3" -1632341,"ephem" -1628005,"types-cachetools" -1620857,"opentelemetry-instrumentation-grpc" -1620502,"multitasking" -1619789,"trafilatura" -1617862,"click-log" -1617006,"discord-py" -1616827,"smartsheet-python-sdk" -1616202,"fasttext" -1614625,"webargs" -1613588,"pyhanko" -1603448,"poetry-dynamic-versioning" -1602531,"pypdfium2" -1595920,"pkgconfig" -1595915,"types-cffi" -1595578,"prefect-aws" -1593762,"pytimeparse2" -1592052,"subprocess-tee" -1591879,"txaio" -1589108,"gdown" -1588373,"lightning" -1587439,"objsize" -1583480,"rustworkx" -1582987,"python-rapidjson" -1578866,"cloud-sql-python-connector" -1574439,"ghapi" -1573334,"clickhouse-driver" -1572593,"pdpyras" -1569329,"autobahn" -1567939,"pycairo" -1567688,"courlan" -1567528,"logging-azure-rest" -1567375,"haversine" -1562399,"zope-deprecation" -1558540,"types-docutils" -1557360,"ecs-logging" -1550313,"jsonschema-path" -1550267,"tf-keras" -1548498,"pysnmp" -1533951,"wavedrom" -1532880,"eventlet" -1529409,"sounddevice" -1529394,"munch" -1526604,"django-celery-beat" -1525846,"azureml-dataprep" -1524024,"timeout-decorator" -1523079,"maturin" -1522969,"yacs" -1519823,"sqlparams" -1518956,"opentracing" -1518893,"pycomposefile" -1517872,"py-serializable" -1506829,"ckzg" -1504097,"torchtext" -1501436,"launchdarkly-server-sdk" -1499934,"natto-py" -1498748,"flashtext" -1498380,"coreapi" -1495189,"fpdf2" -1494398,"multipart" -1493706,"codeowners" -1489834,"types-toml" -1488891,"pandasql" -1487975,"ws4py" -1486502,"testfixtures" -1485150,"tecton" -1483155,"pyinstrument" -1480900,"backports-weakref" -1475679,"webtest" -1474449,"click-help-colors" -1471758,"python3-saml" -1469709,"wordcloud" -1464947,"robotframework-requests" -1463528,"pytest-playwright" -1461918,"supervisor" -1461782,"azure-monitor-opentelemetry" -1461013,"pydispatcher" -1460132,"databricks-pypi2" -1460000,"dj-database-url" -1459812,"pep8" -1459675,"tableauhyperapi" -1459222,"xformers" -1457941,"backports-cached-property" -1456690,"lmdb" -1455842,"github-heatmap" -1455366,"llama-index-core" -1450313,"nodejs-wheel-binaries" -1448924,"influxdb-client" -1445634,"python-bidi" -1444771,"python-ldap" -1443816,"google-generativeai" -1443460,"cvxpy" -1441320,"mypy-boto3-athena" -1440281,"shtab" -1439479,"msgraph-core" -1435418,"pytest-ordering" -1435363,"channels" -1434770,"pdfplumber" -1434289,"unstructured-client" -1432075,"vcrpy" -1425609,"databricks" -1420856,"sqlmodel" -1419680,"pytest-check" -1416057,"stone" -1415340,"umap-learn" -1415040,"inflate64" -1411082,"reactivex" -1407294,"thefuzz" -1406130,"portpicker" -1404767,"dbt-redshift" -1404500,"requests-sigv4" -1404001,"tensorflow-probability" -1403252,"microsoft-kiota-http" -1401419,"papermill" -1401159,"ddt" -1398900,"pyformance" -1396172,"biopython" -1395749,"hjson" -1394970,"jq" -1393704,"jwt" -1393014,"autograd-gamma" -1392565,"checksumdir" -1392087,"curlify" -1389489,"rich-click" -1387499,"aws-cdk-asset-node-proxy-agent-v6" -1387179,"azure-core-tracing-opentelemetry" -1383843,"python-arango" -1382668,"google-ai-generativelanguage" -1381639,"boto3-type-annotations" -1376064,"etils" -1376030,"parsel" -1375467,"facebook-business" -1373734,"branca" -1371951,"sphinx-design" -1371464,"koalas" -1370256,"dicttoxml" -1369930,"pynndescent" -1369471,"django-cleanup" -1368552,"hatch-requirements-txt" -1368459,"c7n" -1366986,"mongomock" -1366328,"pastedeploy" -1363856,"pydevd" -1363176,"flake8-docstrings" -1362070,"pyclipper" -1361542,"gspread-dataframe" -1361443,"flask-socketio" -1360797,"codecov" -1356670,"opentelemetry-resource-detector-azure" -1351568,"folium" -1347491,"category-encoders" -1346458,"memory-profiler" -1346171,"rq" -1345900,"genson" -1345798,"intelhex" -1342338,"pystache" -1340833,"imagehash" -1339598,"azure-mgmt-appcontainers" -1336818,"scs" -1336235,"transaction" -1335602,"pdfkit" -1328889,"path" -1326922,"django-htmx" -1326274,"pyunormalize" -1325548,"pprintpp" -1321295,"pydata-sphinx-theme" -1317686,"django-model-utils" -1317211,"uwsgi" -1316433,"conan" -1316299,"pinecone-client" -1314213,"arviz" -1311577,"j2cli" -1308684,"textblob" -1305366,"certbot-dns-cloudflare" -1305054,"cerberus-python-client" -1305029,"country-converter" -1304540,"zopfli" -1300485,"mongoengine" -1297342,"open-clip-torch" -1295312,"nvidia-cusolver-cu11" -1293062,"backports-tempfile" -1292242,"langgraph" -1291448,"pytest-bdd" -1289651,"qdldl" -1289270,"ecos" -1288705,"polib" -1288235,"uuid6" -1287528,"aioresponses" -1284527,"nvidia-cuda-cupti-cu11" -1283832,"mleap" -1282601,"nvidia-cusparse-cu11" -1281986,"dbt-spark" -1280290,"ntlm-auth" -1280186,"dockerfile-parse" -1279878,"python-crfsuite" -1277410,"queuelib" -1276703,"nvidia-cufft-cu11" -1276048,"nvidia-curand-cu11" -1275685,"google-analytics-data" -1275464,"hdbcli" -1275069,"requirements-parser" -1271427,"psycopg-pool" -1270749,"boto3-stubs-lite" -1269535,"google-cloud-trace" -1263584,"cohere" -1262948,"types-tabulate" -1262542,"exchangelib" -1260553,"nvidia-nvtx-cu11" -1259840,"scrapy" -1258303,"pylev" -1258131,"numcodecs" -1256803,"igraph" -1256784,"django-appconf" -1255693,"coreschema" -1252265,"azureml-dataprep-rslex" -1248981,"pyluach" -1240454,"idna-ssl" -1239523,"sphinx-copybutton" -1238841,"pyzipper" -1237520,"nvidia-nccl-cu11" -1236550,"moviepy" -1230649,"django-celery-results" -1226684,"alive-progress" -1226221,"base58" -1226189,"xmlsec" -1221639,"tensorflow-intel" -1221466,"supervision" -1221107,"rx" -1220865,"cmd2" -1219746,"itemloaders" -1218735,"setuptools-git-versioning" -1218076,"rembg" -1215949,"requests-unixsocket" -1213234,"pycurl" -1212021,"markdownify" -1211977,"flake8-isort" -1209634,"clang-format" -1209173,"protego" -1208881,"python-hcl2" -1208645,"tritonclient" -1208007,"opentelemetry-propagator-aws-xray" -1206197,"itemadapter" -1205975,"gitdb2" -1203484,"safety" -1203265,"python-xlib" -1198849,"openlineage-integration-common" -1198399,"unstructured" -1198315,"rfc3987" -1198206,"pytest-instafail" -1196449,"about-time" -1192430,"asana" -1188803,"ansible-lint" -1188494,"aws-encryption-sdk" -1187200,"resampy" -1187189,"daphne" -1186154,"prometheus-fastapi-instrumentator" -1185204,"pymatting" -1185165,"pydyf" -1184307,"cairocffi" -1183496,"tensorflow-io" -1181296,"pypi-timemachine" -1180319,"gs-quant" -1180088,"soda-core-spark" -1179397,"dependency-injector" -1179105,"opentelemetry-sdk-extension-aws" -1178614,"gcs-oauth2-boto-plugin" -1178182,"node-semver" -1176577,"logzero" -1176182,"dockerpty" -1175068,"xmod" -1173385,"cairosvg" -1173176,"microsoft-kiota-authentication-azure" -1172309,"python-keycloak" -1172217,"bc-detect-secrets" -1170490,"editor" -1170249,"paste" -1168594,"types-pygments" -1167872,"rdkit" -1167868,"runs" -1166389,"jieba" -1165077,"dnslib" -1164550,"nibabel" -1162856,"funcy" -1162721,"dbus-fast" -1160637,"pyvirtualdisplay" -1160237,"flask-compress" -1159876,"qdrant-client" -1159180,"urwid" -1158685,"kornia-rs" -1157882,"weaviate-client" -1157387,"html5lib-modern" -1157241,"nose2" -1157154,"dohq-artifactory" -1157107,"bitstruct" -1156836,"ydata-profiling" -1156741,"hatch" -1155397,"htmlmin" -1153656,"mypy-boto3-iam" -1153063,"openlineage-python" -1152818,"notifiers" -1152629,"django-stubs-ext" -1150661,"sasl" -1150515,"aliyun-python-sdk-core" -1149432,"bazel-runfiles" -1147974,"django-stubs" -1147886,"patch-ng" -1147474,"ibm-db" -1145212,"zope-proxy" -1145211,"llama-index-llms-openai" -1144696,"ansi2html" -1141564,"pure-sasl" -1141232,"soda-core-spark-df" -1140666,"selenium-wire" -1140400,"pylint-django" -1131895,"django-crispy-forms" -1131538,"microsoft-kiota-abstractions" -1131165,"dbl-tempo" -1131132,"neo4j" -1130683,"opentelemetry-instrumentation-sqlalchemy" -1127159,"braceexpand" -1121797,"cliff" -1121173,"zope-deferredimport" -1121039,"sentinels" -1121027,"verboselogs" -1119374,"troposphere" -1117952,"mypy-boto3-stepfunctions" -1117374,"persistent" -1117150,"pybytebuffer" -1115863,"opentelemetry-instrumentation-redis" -1115594,"restrictedpython" -1115387,"sqlfluff-templater-dbt" -1114780,"lunarcalendar" -1112533,"aioredis" -1111615,"bottleneck" -1111405,"btrees" -1109008,"pretty-html-table" -1104513,"mkdocstrings" -1104455,"glob2" -1101704,"zarr" -1101383,"memray" -1099026,"c7n-org" -1098842,"policy-sentry" -1098312,"s3cmd" -1098088,"artifacts-keyring" -1096397,"pytest-assume" -1094706,"tempora" -1094376,"aws-lambda-builders" -1092703,"credstash" -1090873,"sphinxcontrib-mermaid" -1090164,"std-uritemplate" -1090011,"html-text" -1089081,"aws-sam-cli" -1088040,"aiomultiprocess" -1087965,"spdx-tools" -1087817,"xattr" -1087510,"openxlab" -1086941,"orbax-checkpoint" -1086322,"apache-airflow-providers-dbt-cloud" -1086041,"azureml-dataprep-native" -1086038,"dbt-databricks" -1085158,"html-testrunner" -1085011,"roman" -1079954,"bc-python-hcl2" -1079841,"easydict" -1079196,"jsonpath-python" -1078895,"teradatasqlalchemy" -1077942,"thop" -1076253,"pytest-subtests" -1076044,"gprof2dot" -1073897,"tensorflow-addons" -1072906,"requests-auth-aws-sigv4" -1068754,"z3-solver" -1067795,"python-stdnum" -1066551,"llama-index-indices-managed-llama-cloud" -1066499,"mmcif" -1066233,"mss" -1065193,"dparse" -1064518,"colorclass" -1063813,"cloudsplaining" -1061123,"opencv-contrib-python-headless" -1061089,"types-jsonschema" -1060460,"simple-gcp-object-downloader" -1059789,"jaraco-text" -1058267,"checkdigit" -1057028,"annoy" -1053562,"pulumi" -1052878,"visions" -1051581,"aliyun-python-sdk-kms" -1051370,"priority" -1047016,"microsoft-security-utilities-secret-masker" -1046733,"opentelemetry-instrumentation-aiohttp-client" -1045558,"aiokafka" -1045534,"onnxconverter-common" -1045348,"singleton-decorator" -1043509,"mypy-boto3-ecr" -1040617,"openlineage-airflow" -1039733,"awkward" -1038940,"premailer" -1037423,"intervaltree" -1036760,"django-phonenumber-field" -1036502,"pywinpty" -1035132,"anyascii" -1034690,"aiogram" -1034618,"awkward-cpp" -1033950,"django-simple-history" -1033789,"autocommand" -1033587,"flask-oidc" -1030405,"opentelemetry-exporter-gcp-trace" -1028077,"apsw" -1027723,"skl2onnx" -1026762,"youtube-transcript-api" -1026265,"pgvector" -1024196,"apache-airflow-providers-mongo" -1023012,"clarabel" -1022233,"quantlib" -1021034,"property-manager" -1017995,"zodbpickle" -1015477,"flake8-comprehensions" -1012319,"llama-index-agent-openai" -1011432,"zconfig" -1011266,"pyserial-asyncio" -1011158,"linecache2" -1011026,"joserfc" -1009187,"jaraco-collections" -1008774,"jsonpath-rw" -1008389,"segment-anything" -1007803,"soda-core-snowflake" -1006556,"zodb" -1005612,"pycep-parser" -1004611,"rpyc" -1002224,"opsgenie-sdk" -1001450,"autopage" -1000703,"traceback2" -998716,"types-pillow" -995758,"azure-storage" -995189,"opentelemetry-instrumentation-botocore" -993082,"biotite" -992630,"msoffcrypto-tool" -992529,"hubspot-api-client" -991047,"grpclib" -990362,"oyaml" -989981,"mypy-boto3-apigateway" -989819,"social-auth-core" -989248,"albucore" -988767,"zigpy" -987808,"numdifftools" -987743,"oci" -987414,"strict-rfc3339" -987301,"types-aiobotocore" -987203,"opentelemetry-resourcedetector-gcp" -987143,"dirtyjson" -986749,"mediapipe" -986709,"jsonschema-spec" -986258,"cherrypy" -984925,"azure-ai-formrecognizer" -984655,"bc-jsonpath-ng" -984631,"colored" -984534,"crccheck" -983930,"biotraj" -982837,"django-ipware" -982829,"editdistance" -982660,"pynvim" -981192,"snowflake" -979701,"betterproto" -979256,"types-cryptography" -976783,"jsonmerge" -976286,"curl-cffi" -972075,"tmtools" -971806,"arabic-reshaper" -970369,"mockito" -969988,"ibm-cloud-sdk-core" -968429,"livy" -968028,"seqio-nightly" -967909,"tables" -967261,"mypy-boto3-kinesis" -965789,"types-pyserial" -964256,"aws-secretsmanager-caching" -963234,"apache-airflow-providers-jdbc" -963234,"polling2" -962049,"js2py" -960818,"peppercorn" -960429,"dateformat" -960002,"requests-html" -959585,"piexif" -959393,"python-can" -959367,"elastic-apm" -959123,"llama-index-readers-llama-parse" -957657,"langchain-experimental" -957087,"bz2file" -956809,"smmap2" -956076,"typish" -955511,"types-simplejson" -954547,"mkdocs-autorefs" -950822,"portend" -949333,"dogpile-cache" -949221,"google-cloud-pipeline-components" -948647,"striprtf" -946322,"hnswlib" -943229,"repoze-lru" -942704,"microsoft-kiota-serialization-json" -941885,"furo" -941601,"lunardate" -939595,"googlemaps" -938468,"tdqm" -936089,"svglib" -935908,"llama-index-readers-file" -935100,"microsoft-kiota-serialization-text" -933432,"jiwer" -932697,"plac" -932069,"sphinx-argparse" -931955,"channels-redis" -931452,"jupyter-ydoc" -931180,"jupyter-server-ydoc" -930200,"google-cloud-bigquery-biglake" -929637,"lmfit" -925914,"mypy-boto3-xray" -925454,"django-import-export" -924439,"mypy-boto3-schemas" -924179,"sgqlc" -923842,"mypy-boto3-signer" -923439,"hashids" -923183,"types-mock" -922920,"odfpy" -922873,"ndjson" -922847,"dagster" -922308,"autofaker" -921324,"yarg" -919123,"oslo-utils" -918308,"hypercorn" -918261,"latexcodec" -917901,"google-cloud-discoveryengine" -915728,"pybtex" -915574,"python-ulid" -915101,"swifter" -914721,"textwrap3" -912085,"clang" -911383,"scikit-optimize" -910983,"versioneer" -908585,"phik" -908459,"jupyter-server-fileid" -907412,"facexlib" -907139,"apprise" -906486,"django-js-asset" -906417,"pydicom" -906322,"mypy-boto3-ssm" -905528,"language-tags" -904941,"fluent-logger" -904680,"optimum" -904484,"setuptools-git" -904282,"zeroconf" -904177,"raven" -902991,"y-py" -902921,"codespell" -902360,"apache-airflow-providers-odbc" -901950,"cachy" -899344,"accessible-pygments" -896801,"venusian" -895825,"ptpython" -895698,"gnureadline" -892577,"ypy-websocket" -891637,"snowflake-core" -890571,"ansiwrap" -890474,"fasttext-langdetect" -888915,"pywinrm" -887253,"amqpstorm" -886586,"kaitaistruct" -884972,"quart" -884847,"aws-cdk-cloud-assembly-schema" -884212,"httpretty" -884194,"jinja2-simple-tags" -881679,"tcolorpy" -881272,"slotted" -881024,"shyaml" -880558,"triad" -879376,"retry2" -878037,"flake8-polyfill" -877893,"apache-airflow-providers-microsoft-azure" -876492,"pyvmomi" -876238,"datamodel-code-generator" -876104,"xhtml2pdf" -875573,"tensorstore" -874227,"poetry-plugin-pypi-mirror" -874206,"mercantile" -873706,"cibuildwheel" -873558,"dash-bootstrap-components" -872036,"mangum" -871595,"llama-index-embeddings-openai" -871525,"extension-helpers" -870333,"treelib" -869008,"sqlalchemy2-stubs" -868351,"tableau-api-lib" -868273,"webdataset" -867882,"azure-mgmt-resourcegraph" -867507,"pyhanko-certvalidator" -867193,"yarn-api-client" -865874,"azureml-mlflow" -865172,"dagster-pipes" -864503,"fugue" -864031,"geoalchemy2" -861996,"django-oauth-toolkit" -861387,"bson" -860979,"watchgod" -860534,"icalendar" -856883,"rstr" -856746,"subprocess32" -856666,"cinemagoer" -856623,"pastel" -854908,"sqlglotrs" -853704,"sampleproject" -853408,"flametree" -853384,"python-string-utils" -852575,"python-codon-tables" -852019,"dnachisel" -851296,"rfc3339" -850778,"gcovr" -850754,"ebcdic" -850136,"typeid-python" -849940,"numpydoc" -848815,"dataproperty" -847757,"schemdraw" -847358,"rouge-score" -846669,"adagio" -846491,"shellescape" -845530,"simple-ddl-parser" -845369,"imdbpy" -845240,"dpkt" -844382,"pipreqs" -843568,"llama-index-multi-modal-llms-openai" -843322,"llama-index-program-openai" -842658,"python-iso639" -842346,"wand" -842169,"aws-cdk-aws-lambda-python-alpha" -842089,"aws-embedded-metrics" -841440,"python3-logstash" -841222,"setuptools-scm-git-archive" -841213,"blosc2" -841024,"lasio" -840725,"opentelemetry-instrumentation-httpx" -840567,"git-remote-codecommit" -840289,"social-auth-app-django" -839708,"stdlib-list" -839373,"msgraph-sdk" -839158,"pytest-remotedata" -837881,"backports-datetime-fromisoformat" -837832,"oslo-config" -837031,"openlineage-sql" -836779,"log-symbols" -835791,"spinners" -833598,"workalendar" -833386,"aiormq" -831368,"flake8-black" -831366,"pytest-doctestplus" -830553,"translationstring" -829519,"llama-index-cli" -829242,"gevent-websocket" -828157,"torchdiffeq" -826116,"arpeggio" -826023,"speechrecognition" -821517,"zstd" -819614,"llama-index-question-gen-openai" -819444,"chameleon" -818614,"signxml" -816793,"pymilvus" -816721,"keystoneauth1" -815800,"google-cloud-error-reporting" -814824,"aio-pika" -812182,"pyquaternion" -812003,"cmaes" -811886,"tyro" -811857,"jsonargparse" -811516,"naked" -811217,"datacompy" -810375,"sphinx-autobuild" -809539,"sphinx-tabs" -808901,"spandrel" -808455,"doit" -808372,"auth0-python" -807100,"eyes-common" -806858,"eyes-selenium" -806746,"tensorflow-model-optimization" -805186,"wmi" -804773,"tabledata" -803061,"janus" -802118,"hupper" -801630,"oslo-i18n" -801463,"sphinx-basic-ng" -801222,"h5netcdf" -801008,"p4python" -800237,"llama-index-legacy" -799812,"opentelemetry-instrumentation-sqlite3" -795540,"serial" -795281,"langgraph-checkpoint" -794002,"google-reauth" -792863,"uproot" -791837,"pytest-aiohttp" -790486,"unittest2" -789585,"panel" -789355,"pytest-filter-subpackage" -787795,"textdistance" -787717,"open3d" -784743,"attrdict" -784607,"pyahocorasick" -783063,"graphlib-backport" -780145,"scikit-build" -779506,"pyvis" -778655,"backports-csv" -778568,"progress" -778290,"flake8-builtins" -777654,"grimp" -777513,"snowflake-legacy" -777090,"pyiceberg" -776655,"array-record" -775492,"asgi-lifespan" -775276,"future-fstrings" -775174,"pybase64" -774867,"pytablewriter" -774280,"probableparsing" -773627,"cdk-nag" -772834,"clean-fid" -771603,"breathe" -770199,"giturlparse" -769883,"pysbd" -769488,"tsx" -768896,"streamerate" -768888,"throttlex" -768460,"jinja2-time" -767684,"mando" -767535,"oslo-serialization" -766665,"sparkorm" -766645,"xarray-einstats" -766187,"model-bakery" -766005,"presto-python-client" -765496,"avro-gen" -765138,"recommonmark" -762932,"pytest-httpserver" -762388,"langchain-aws" -761253,"pytube" -761097,"opentelemetry-instrumentation-jinja2" -760471,"usaddress" -760230,"radon" -760083,"core-universal" -759963,"elasticsearch7" -759632,"github3-py" -759561,"icdiff" -758627,"temporalio" -757393,"pytest-socket" -756928,"collections-extended" -755522,"java-manifest" -755081,"pythran-openblas" -754987,"apache-airflow-providers-pagerduty" -752309,"inquirerpy" -751478,"debtcollector" -751298,"rjsmin" -749435,"types-deprecated" -749313,"pyscreeze" -748868,"nbsphinx" -748032,"strawberry-graphql" -747891,"respx" -747885,"grapheme" -747132,"pfzy" -744928,"sse-starlette" -744138,"backports-entry-points-selectable" -743928,"vtk" -743608,"func-timeout" -742720,"oss2" -742151,"ansicolors" -742006,"singer-python" -741016,"pysmb" -740437,"cloudscraper" -740217,"types-aiobotocore-s3" -739342,"nptyping" -738989,"chex" -738877,"pip-requirements-parser" -738806,"zthreading" -738576,"pulsar-client" -738548,"discord" -737348,"sharepy" -735724,"kconfiglib" -735655,"coolname" -735563,"stepfunctions" -735182,"flatdict" -735024,"pyapacheatlas" -731955,"pyramid" -731304,"torch-model-archiver" -729773,"testtools" -728926,"jsons" -727982,"pathlib-mate" -727101,"port-for" -726921,"slack-bolt" -726119,"sktime" -725980,"flake8-import-order" -725320,"easyprocess" -725022,"mltable" -724379,"pluginbase" -724207,"pytest-arraydiff" -723440,"types-decorator" -722809,"apache-airflow-providers-tableau" -721632,"spark-sklearn" -720354,"crc32c" -718470,"pystan" -717656,"crayons" -717560,"simple-parsing" -717517,"xlutils" -716757,"jinja2-humanize-extension" -715887,"ibm-platform-services" -715184,"pyairtable" -714917,"executor" -714388,"circuitbreaker" -714037,"emcee" -713953,"kestra" -713477,"types-jinja2" -712840,"param" -712768,"types-markupsafe" -712572,"geocoder" -712441,"pyu2f" -712400,"ctranslate2" -712196,"asciitree" -711677,"python-miio" -711271,"pip-api" -710134,"psygnal" -710037,"httmock" -709799,"flake8-print" -709651,"ratelim" -708591,"pytest-astropy" -707480,"tensorflow-cpu" -707471,"suds-community" -707082,"zope-i18nmessageid" -706693,"pytest-astropy-header" -705866,"fastcluster" -705824,"pygobject" -705159,"pyshp" -705009,"rpaframework" -702469,"prance" -702171,"ndindex" -701483,"logz" -700435,"python-memcached" -700176,"pytorch-metric-learning" -695774,"python-lsp-jsonrpc" -695236,"vertexai" -693753,"safety-schemas" -693371,"llama-cloud" -692581,"retry-decorator" -690289,"pyqt6" -689261,"pyspark-dist-explore" -688952,"crypto" -688168,"apache-airflow-providers-datadog" -687419,"segment-analytics-python" -687212,"pytweening" -683536,"realtime" -683337,"docx2txt" -682821,"pyqt6-qt6" -682376,"imagecodecs" -682158,"argparse-addons" -681840,"astral" -681256,"tfds-nightly" -680511,"clikit" -680427,"pymisp" -680316,"apache-airflow-providers-airbyte" -680289,"opentelemetry-instrumentation-aws-lambda" -680205,"openvino" -680125,"pentapy" -679152,"gender-guesser" -679065,"fvcore" -678961,"flake8-quotes" -677389,"pygtrie" -674928,"types-psycopg2" -674403,"distribute" -674144,"zope-hookable" -673871,"gymnasium" -673815,"apache-airflow-providers-apache-spark" -673772,"rply" -673516,"publish-event-sns" -673462,"vulture" -673118,"azure-storage-nspkg" -673097,"mxnet" -672845,"pytest-parallel" -672828,"djangorestframework-stubs" -672622,"palettable" -672038,"coremltools" -671922,"pyannote-database" -671578,"ccxt" -671068,"datadog-logger" -671002,"os-service-types" -670923,"zope-component" -669659,"supabase" -669275,"starlette-exporter" -669246,"flatten-dict" -669065,"pyrect" -668911,"fastprogress" -668492,"pykakasi" -668268,"apache-airflow-providers-celery" -667100,"pytest-mypy" -666193,"pygetwindow" -666038,"domdf-python-tools" -664943,"netsuitesdk" -664847,"supafunc" -664378,"types-html5lib" -664351,"backports-shutil-get-terminal-size" -664330,"django-otp" -663048,"zope-tal" -662607,"jupytext" -662466,"enrich" -661941,"snowplow-tracker" -661511,"trl" -661298,"flask-admin" -661182,"imapclient" -661056,"blessings" -660694,"dagster-aws" -660223,"gotrue" -660000,"pytest-dotenv" -658378,"zipfile36" -657701,"tinydb" -657373,"schematics" -656079,"simpy" -655187,"postgrest" -654992,"symengine" -654986,"pyannote-core" -654771,"dagster-graphql" -653699,"sshpubkeys" -653661,"mypy-boto3-appconfig" -652934,"pyautogui" -651815,"rpaframework-core" -651681,"htmldocx" -651444,"qudida" -651126,"tangled-up-in-unicode" -650951,"delta" -650384,"storage3" -650011,"quinn" -649895,"mouseinfo" -647202,"jinjasql" -646759,"apache-airflow-providers-salesforce" -646074,"josepy" -645923,"clipboard" -645871,"pymongo-auth-aws" -645734,"lizard" -645289,"argh" -644193,"pyopengl" -643427,"gluonts" -643176,"zope-schema" -642928,"dvclive" -642832,"django-countries" -642721,"pyannote-metrics" -642667,"grpc-stubs" -642660,"python-certifi-win32" -642512,"django-silk" -642330,"mypy-boto3-dataexchange" -641188,"simplegeneric" -640509,"pymsgbox" -639773,"pytest-flask" -639689,"pyqt6-sip" -639272,"tensorflowonspark" -637440,"cfile" -634313,"patool" -632421,"flax" -632133,"statsforecast" -631963,"pusher" -631411,"pyvisa" -630916,"decopatch" -629538,"pytest-dependency" -628510,"awscliv2" -628404,"suds-py3" -627183,"pyrtf3" -627163,"config" -626297,"arnparse" -626072,"gguf" -626056,"pytest-openfiles" -625515,"tk" -625181,"robotframework-seleniumtestability" -624191,"pyjarowinkler" -624106,"rope" -624028,"rpaframework-pdf" -623980,"nanoid" -623969,"sphinxcontrib-websupport" -623680,"langfuse" -623563,"openstacksdk" -622972,"opentelemetry-propagator-b3" -619747,"python-gettext" -619300,"pytelegrambotapi" -617975,"correctionlib" -617913,"django-health-check" -617630,"flask-marshmallow" -616465,"halo" -616377,"django-csp" -616204,"pyrate-limiter" -615266,"detect-secrets" -614459,"imblearn" -613785,"flake8-pyproject" -613731,"textparser" -613197,"instructor" -612778,"types-tqdm" -612529,"flask-mail" -612451,"zope-exceptions" -612083,"pyod" -611978,"plaster" -611360,"formic2" -611283,"json2html" -611140,"plaster-pastedeploy" -611084,"macholib" -610911,"update-checker" -610623,"uplink" -610443,"langchain-google-community" -609751,"jstyleson" -609389,"exchange-calendars" -608934,"anybadge" -606951,"zope-security" -606553,"regress" -606083,"numpy-financial" -605660,"colorcet" -605564,"grpc-gateway-protoc-gen-openapiv2" -604794,"jaxtyping" -604641,"awesomeversion" -603634,"robocorp-storage" -602667,"dagster-webserver" -602604,"zope-lifecycleevent" -602522,"types-ujson" -602408,"mapbox-earcut" -602388,"boost-histogram" -602343,"zope-i18n" -601970,"sphinx-book-theme" -601933,"typing-utils" -601277,"zope-testing" -601231,"mimesis" -601051,"zope-publisher" -601003,"boostedblob" -600104,"fido2" -599853,"uhi" -599842,"editorconfig" -599665,"backports-ssl-match-hostname" -599648,"django-anymail" -599531,"tensorflow-transform" -599483,"pyclothoids" -599437,"impyla" -599384,"mypy-boto3-lakeformation" -598568,"flaml" -598157,"flake8-eradicate" -598145,"asgi-correlation-id" -598075,"azure-schemaregistry" -597920,"molecule" -597209,"pantab" -596994,"cursor" -596986,"pillow-heif" -596978,"zope-configuration" -596891,"hist" -596475,"databricks-feature-store" -596359,"wurlitzer" -595763,"livereload" -595722,"openvino-telemetry" -595549,"histoprint" -594014,"cchardet" -592782,"mplhep" -592698,"pyviz-comms" -592612,"zope-location" -591708,"freetype-py" -591611,"optax" -591358,"mplhep-data" -590859,"mecab-python3" -589774,"zope-browser" -589257,"xmljson" -589199,"camel-converter" -589142,"pyside6-essentials" -589140,"zope-contenttype" -589067,"dict2xml" -588115,"vector" -587848,"extensionclass" -587717,"zope-container" -587031,"aiomqtt" -586896,"farama-notifications" -586057,"acquisition" -585780,"random-password-generator" -585668,"sparqlwrapper" -585258,"shiboken6" -585037,"webrtcvad-wheels" -584866,"ulid-py" -584792,"pydruid" -584244,"zope-dottedname" -584090,"envyaml" -583751,"libsass" -583278,"dotenv" -583149,"pynput-robocorp-fork" -583039,"azureml-dataset-runtime" -582698,"pytest-azurepipelines" -582439,"publicsuffix2" -582359,"java-access-bridge-wrapper" -582234,"zope-traversing" -582176,"looseversion" -581965,"ajsonrpc" -581756,"traittypes" -581682,"jsmin" -581361,"aiofile" -581328,"opentelemetry-instrumentation-celery" -581083,"coffea" -580980,"zope-cachedescriptors" -580825,"wsgiproxy2" -580410,"pyside6" -580382,"tbats" -580380,"dask-awkward" -580094,"resize-right" -580035,"frictionless" -579907,"zenpy" -579428,"pythonnet" -579342,"pyjsparser" -579212,"fsspec-xrootd" -579129,"jetblack-iso8601" -578896,"zope-size" -578723,"dask-histogram" -578650,"zope-filerepresentation" -578646,"sphinx-prompt" -578555,"tempita" -578524,"zope-annotation" -577425,"zope-site" -577044,"awacs" -576913,"types-retry" -576796,"line-profiler" -576734,"pysaml2" -576726,"zope-processlifetime" -575635,"types-markdown" -575293,"persistence" -575240,"azureml-telemetry" -575047,"tree-sitter-python" -575045,"aiolimiter" -574824,"python-keystoneclient" -574773,"zope-datetime" -574538,"accesscontrol" -574276,"parver" -574189,"transitions" -573281,"flask-talisman" -573066,"sqllineage" -572611,"opentelemetry-exporter-prometheus-remote-write" -572456,"types-beautifulsoup4" -572121,"plyvel" -571420,"langchain-anthropic" -571110,"scikit-base" -570924,"cvxopt" -569987,"jplephem" -569912,"jsbeautifier" -569880,"gtts" -569781,"zexceptions" -569757,"zope-pagetemplate" -569714,"zope-tales" -569373,"authencoding" -569324,"west" -569083,"cvdupdate" -568629,"apache-airflow-providers-atlassian-jira" -568465,"sgp4" -568412,"zope-contentprovider" -568268,"zope-browserpage" -568149,"zope" -567440,"zope-browserresource" -567326,"pyside6-addons" -567143,"zope-testbrowser" -567039,"pynput" -566945,"red-discordbot" -566726,"elasticsearch8" -566695,"py-models-parser" -566478,"django-ses" -566361,"find-libpython" -566327,"documenttemplate" -566293,"types-psutil" -566240,"zope-structuredtext" -566172,"zope-sequencesort" -566092,"mf2py" -566087,"uhashring" -566080,"zope-viewlet" -565890,"import-linter" -565883,"table-meta" -565573,"cuda-python" -565492,"google-cloud-os-config" -565490,"dagster-postgres" -565268,"sphinxcontrib-bibtex" -565183,"libretranslatepy" -564817,"openinference-semantic-conventions" -564665,"jinja2-cli" -564226,"ntplib" -564160,"zope-ptresource" -564159,"casefy" -564151,"case-conversion" -564133,"protoc-gen-openapiv2" -564114,"dotmap" -563838,"tfx-bsl" -563620,"zope-browsermenu" -563573,"z3c-pt" -563478,"lpips" -562638,"multimapping" -562508,"slacker" -562310,"zope-globalrequest" -562058,"polyline" -561957,"python-logging-loki" -561914,"a2wsgi" -561851,"robocorp-vault" -561667,"asteroid-filterbanks" -561312,"clickhouse-sqlalchemy" -560275,"hstspreload" -559946,"mypy-boto3-events" -559117,"django-taggit" -558923,"nulltype" -558404,"databases" -557833,"jupyter-packaging" -556967,"phonenumberslite" -556920,"rcssmin" -556814,"mysql" -555810,"pyawscron" -555796,"types-colorama" -555703,"django-mptt" -555514,"mammoth" -555178,"openinference-instrumentation" -554972,"launchdarkly-eventsource" -554860,"frida" -553958,"translate" -553777,"fcm-django" -553693,"cobble" -553397,"beniget" -553301,"requests-pkcs12" -553264,"requestsexceptions" -553190,"opentelemetry-instrumentation-pika" -553172,"python-ipware" -552650,"python-on-whales" -552469,"faster-whisper" -552195,"caio" -551834,"drf-nested-routers" -551027,"elasticsearch-dbapi" -551002,"gnupg" -550647,"dateutils" -550289,"validate-email" -550214,"pyannote-audio" -549490,"torch-audiomentations" -549372,"primepy" -548800,"torch-pitch-shift" -547470,"icecream" -546985,"pyxdg" -546786,"gputil" -546687,"google-cloud-org-policy" -546167,"bibtexparser" -546063,"eradicate" -545946,"xmodem" -545921,"async-property" -545363,"ollama" -545341,"pattern" -545154,"mdx-truly-sane-lists" -543983,"functools32" -543335,"mirakuru" -542802,"gpxpy" -542598,"decli" -542098,"parsley" -541846,"feu" -541196,"starlette-context" -540401,"pandas-datareader" -540001,"pyston" -539990,"pyston-autoload" -539975,"install-jdk" -539815,"pyannote-pipeline" -539650,"pyorc" -538274,"youtube-dl" -538194,"minidump" -538103,"pybtex-docutils" -537452,"nats-py" -536894,"apache-airflow-providers-oracle" -536876,"pylru" -535974,"flask-testing" -535696,"pillow-avif-plugin" -535530,"pyminizip" -535429,"versioneer-518" -535368,"scons" -535223,"importlib" -535101,"vertica-python" -534203,"submitit" -533513,"python-geohash" -532894,"splunk-sdk" -532337,"django-picklefield" -532163,"dbfread" -531769,"openshift" -530459,"splunk-handler" -529817,"infi-systray" -529592,"pymiscutils" -529153,"gcloud" -529010,"apipkg" -528881,"pyiotools" -528659,"mlxtend" -528520,"blake3" -527978,"maybe-else" -527527,"pysubtypes" -527523,"colorzero" -527345,"pathmagic" -527253,"office365" -526769,"openapi-schema-pydantic" -526593,"prettierfier" -526064,"jsonfield" -525600,"openinference-instrumentation-langchain" -524859,"fusepy" -524681,"skyfield" -524644,"xatlas" -524451,"confuse" -524233,"gpiozero" -523734,"sparkmeasure" -523522,"apache-airflow-providers-redis" -523451,"dlt" -523074,"django-prometheus" -522999,"ably" -522704,"apeye-core" -522642,"ibm-db-sa" -522587,"spglib" -522170,"rangehttpserver" -521974,"webhelpers2" -520144,"pytoolconfig" -518552,"django-compressor" -518355,"codetiming" -517839,"webvtt-py" -517380,"msgpack-numpy" -517154,"extras" -517144,"aiomysql" -516395,"pathtools" -515383,"antlr4-tools" -515056,"pymannkendall" -515031,"cbor" -513705,"types-croniter" -513645,"outlines" -513496,"stomp-py" -513138,"lief" -511987,"sk-dist" -511809,"pytest-icdiff" -511755,"newrelic-telemetry-sdk" -511718,"opentelemetry-instrumentation-boto3sqs" -511285,"json-logging" -511056,"pytest-postgresql" -510827,"scikeras" -510638,"tdigest" -510374,"vllm" -510261,"escapism" -510154,"types-pymysql" -510003,"clr-loader" -509541,"okta" -509146,"win32-setctime" -508987,"pysam" -508681,"sodapy" -508085,"jenkinsapi" -508036,"pyrdfa3" -507863,"scrypt" -507678,"pip-audit" -507461,"junit2html" -507418,"jinja2-pluralize" -507322,"biothings-client" -506828,"pyupgrade" -506816,"mygene" -505289,"pymatgen" -504231,"extruct" -504198,"interegular" -503953,"quicktions" -503510,"blendmodes" -503443,"pyenchant" -503051,"httpie" -502620,"qiskit" -502612,"python-oxmsg" -501515,"graypy" -501272,"pypinyin" -501247,"textstat" -500479,"awslambdaric" -500060,"sqlalchemy-migrate" -499913,"python-openstackclient" -499632,"pygerduty" -499441,"msgpack-python" -497945,"algoliasearch" -497713,"pyre-extensions" -497128,"tomesd" -497090,"opentelemetry-instrumentation-pymongo" -496964,"presidio-analyzer" -496585,"blackduck" -495854,"pip-system-certs" -495678,"seleniumbase" -495477,"sqlite-utils" -494935,"formencode" -493871,"javaobj-py3" -493151,"descartes" -492664,"google-cloud-iam" -492533,"nameparser" -492194,"bio" -492178,"microsoft-kiota-serialization-form" -491604,"zigpy-znp" -491493,"google-cloud-dns" -491394,"azure-ai-documentintelligence" -491074,"opentelemetry-instrumentation-system-metrics" -490992,"gprofiler-official" -490779,"jamo" -490531,"zigpy-deconz" -490192,"zigpy-xbee" -489689,"tentaclio" -489675,"readerwriterlock" -489030,"easyocr" -488997,"devtools" -488740,"zha-quirks" -487648,"microsoft-kiota-serialization-multipart" -487164,"kivy" -487015,"bleak" -486470,"bitvector" -486040,"googleads" -485215,"lm-format-enforcer" -484673,"langchain-google-genai" -484577,"json-stream" -484480,"google-cloud-access-context-manager" -484346,"app-store-scraper" -484178,"hdbscan" -484164,"pony" -484092,"cached-path" -483895,"tbb" -483273,"textfsm" -483266,"result" -483206,"neptune-client" -483036,"json-stream-rs-tokenizer" -482907,"aiosmtplib" -482541,"tentaclio-s3" -482403,"darglint" -482351,"databricks-pypi-extras" -482271,"utilsforecast" -482116,"keyrings-alt" -481345,"jsonpath-rw-ext" -480914,"apeye" -480338,"propka" -479932,"fastapi-utils" -479673,"mypy-boto3-kms" -479319,"pytest-testinfra" -478675,"heapdict" -478269,"easyconfig" -478010,"manifold3d" -477721,"svg-path" -477610,"openturns" -477574,"fastrlock" -477295,"google-cloud-asset" -477284,"csvw" -476942,"isoweek" -476645,"types-certifi" -476532,"expecttest" -476427,"flasgger" -475637,"kedro" -475539,"django-formtools" -475248,"pytest-ansible" -474449,"google-python-cloud-debugger" -474362,"marshmallow-jsonschema" -474084,"pyomo" -474047,"django-widget-tweaks" -473102,"slowapi" -472878,"openapi-core" -472304,"newspaper3k" -472221,"tox-gh-actions" -472198,"mmcif-pdbx" -472099,"vhacdx" -471590,"clldutils" -471543,"pdb2pqr" -470809,"autodocsumm" -470779,"marko" -470326,"azureml-pipeline-core" -470320,"towncrier" -469832,"waiting" -469250,"ruamel-yaml-jinja2" -468973,"groq" -468582,"pytest-deadfixtures" -468115,"pip-check" -467819,"pismosendlogs" -467278,"deep-translator" -466912,"alchemlyb" -466765,"azureml-featurestore" -466022,"vobject" -465554,"argparse-dataclass" -465534,"pythonping" -465497,"aws-cdk-aws-glue-alpha" -464744,"ibm-cos-sdk-core" -464720,"dag-factory" -464427,"imgaug" -464316,"ratelimiter" -464154,"commitizen" -464106,"cmarkgfm" -463840,"python-igraph" -463625,"pytest-freezegun" -463286,"bellows" -462778,"ibm-cos-sdk-s3transfer" -462610,"mypy-boto3-sns" -461357,"hidapi" -461272,"pinecone-plugin-interface" -460880,"dtlpymetrics" -460791,"sttable" -460420,"pytest-snapshot" -460378,"ibm-cos-sdk" -459632,"cement" -458959,"import-deps" -458284,"magic-filter" -457978,"django-polymorphic" -457645,"envs" -457474,"aiocache" -457410,"torchbiggraph" -457019,"opentelemetry-instrumentation-asyncpg" -456666,"aiorwlock" -456390,"graphitesend" -456339,"types-click" -456136,"corner" -456122,"numpy-quaternion" -455796,"python-fsutil" -455486,"datadog-lambda" -455197,"pip-licenses" -454726,"keyboard" -453727,"suds" -453611,"localstack-ext" -453348,"pylatexenc" -453334,"plaid-python" -452890,"sqlalchemy-stubs" -452827,"localstack" -452173,"pydriller" -451739,"zipfile-deflate64" -451662,"rake-nltk" -450357,"markuppy" -450131,"azure-mgmt-costmanagement" -449228,"types-freezegun" -449209,"missingpy" -449165,"capstone" -448732,"bezier" -448456,"backports-abc" -448426,"check-jsonschema" -447836,"azure-eventhub-checkpointstoreblob-aio" -446955,"darkdetect" -446377,"matrix-client" -446357,"opentelemetry-instrumentation-starlette" -446060,"cantools" -446033,"pvlib" -445715,"tippo" -445466,"requests-kerberos" -444061,"seqeval" -443836,"azureml-train-core" -442760,"langgraph-sdk" -441477,"scikit-plot" -441411,"deepl" -441354,"apache-airflow-providers-github" -440905,"scenedetect" -440762,"netmiko" -440404,"wincertstore" -440317,"pytest-flake8" -439454,"gssapi" -438852,"mkdocs-macros-plugin" -438685,"logzio-python-handler" -438660,"wordfreq" -437973,"turbopuffer" -437772,"azure-monitor-ingestion" -437768,"xmlrunner" -437525,"osc-lib" -437422,"oauth2" -437161,"extract-msg" -436892,"flask-oauthlib" -436819,"openai-whisper" -436430,"appengine-python-standard" -436220,"pinecone-plugin-inference" -435851,"dbt-athena-community" -435641,"groundingdino-py" -434810,"iterative-telemetry" -433477,"opentelemetry-instrumentation-tortoiseorm" -433346,"ruyaml" -432685,"line-bot-sdk" -432675,"sparse" -432353,"fixtures" -432244,"lucopy" -431715,"pebble" -431211,"tinysegmenter" -431041,"flake8-debugger" -430668,"flake8-bandit" -430546,"django-ratelimit" -430459,"aiostream" -430321,"restfly" -430312,"django-coverage-plugin" -430274,"flask-basicauth" -430248,"googletrans" -429919,"dataclass-wizard" -429706,"policyuniverse" -429578,"swagger-spec-validator" -428790,"mlserver" -428743,"pytest-cases" -428625,"anyconfig" -428489,"imath" -428446,"dotty-dict" -428417,"pyairports" -428410,"ansible-base" -428180,"locate" -427870,"casadi" -427755,"aresponses" -427524,"aiohttp-sse-client" -427430,"opentelemetry-test-utils" -426791,"opentelemetry-instrumentation-kafka-python" -426390,"selinux" -425591,"segments" -425212,"django-waffle" -424959,"django-reversion" -424437,"pyvim" -424259,"cmakelang" -423824,"ipyparallel" -423079,"idf-component-manager" -422571,"apache-airflow-providers-apache-kafka" -422457,"deepspeed" -422431,"rank-bm25" -422172,"roundrobin" -421546,"html-tag-names" -421538,"html-void-elements" -421385,"python-cinderclient" -421330,"pybase62" -421059,"munkres" -420833,"kaldiio" -420739,"sphinx-sitemap" -420424,"tensorflow-gpu" -420190,"dagster-dbt" -419239,"pretend" -419064,"duckduckgo-search" -419052,"django-webpack-loader" -418929,"nanobind" -418662,"fredapi" -418235,"telethon" -418154,"routes" -417597,"asyncache" -416641,"pyspellchecker" -416440,"spandrel-extra-arches" -415603,"pysimdjson" -415377,"phonemizer" -415070,"flake8-plugin-utils" -414988,"pygam" -414782,"pytest-lazy-fixture" -413904,"publicsuffixlist" -413282,"tqdm-multiprocess" -413172,"mypy-boto3-eks" -413058,"simple-term-menu" -412578,"eascheduler" -412266,"healpy" -412241,"mock-alchemy" -412161,"camelot-py" -412020,"azureml-automl-core" -411969,"platformio" -411867,"dbt-fabric" -411294,"rarfile" -411093,"flake8-broken-line" -410645,"sphinx-gallery" -410527,"lml" -410441,"customtkinter" -409576,"aiopg" -408833,"pyexcel-io" -408429,"filesplit" -407837,"ladybug-geometry" -407663,"utm" -407547,"fairscale" -407487,"parsy" -407432,"sqlite-fts4" -406680,"hf-transfer" -406233,"monkeytype" -406149,"s2sphere" -405969,"python-json-config" -405039,"azureml-train-restclients-hyperdrive" -404305,"python-logstash" -404043,"target-hotglue" -404034,"pydrive2" -403860,"astpretty" -403836,"rpy2" -403526,"imutils" -403167,"holoviews" -402664,"hurry-filesize" -402592,"crispy-bootstrap5" -402209,"evidently" -401995,"sumy" -401232,"coreforecast" -401114,"pre-commit-hooks" -400999,"opentelemetry-instrumentation-asyncio" -400362,"wikitextparser" -400216,"opencensus-ext-requests" -400130,"ladybug-core" -399803,"dlinfo" -399615,"django-ckeditor" -399275,"dagster-k8s" -398740,"docformatter" -398678,"shandy-sqlfmt" -398299,"catkin-pkg" -397875,"braintree" -397755,"django-admin-rangefilter" -396890,"azure-schemaregistry-avroserializer" -396749,"teradataml" -396618,"coola" -396453,"sqlalchemy-hana" -396260,"bsdiff4" -395976,"fastai" -395513,"python-frontmatter" -394825,"apache-airflow-providers-openlineage" -394765,"flash-attn" -393932,"databind-json" -393216,"pyjnius" -392868,"robotframework-stacktrace" -392101,"types-aiofiles" -391921,"gfpgan" -391801,"torchdata" -391704,"patch" -391183,"pandas-market-calendars" -391065,"django-treebeard" -390865,"uptime-kuma-api" -390665,"apispec-webframeworks" -390407,"julius" -390360,"pyjks" -390182,"pytest-github-actions-annotate-failures" -389456,"repoze-who" -389270,"lime" -389261,"simplefix" -389242,"opentelemetry-instrumentation-boto" -389158,"apache-airflow-providers-opsgenie" -388895,"flask-swagger-ui" -388568,"sqlitedict" -388562,"flytekit" -388371,"gmpy2" -388327,"bayesian-optimization" -388122,"email-reply-parser" -388073,"mypy-boto3-sso" -388024,"flyteidl" -387896,"pycognito" -387531,"controlnet-aux" -387527,"dvc" -386969,"hmmlearn" -386836,"sqlalchemy-mate" -386707,"coincurve" -386491,"python-redis-lock" -386409,"pyngrok" -386340,"docxtpl" -385715,"python-semantic-release" -385250,"fastapi-pagination" -384993,"tdda" -384877,"us" -384813,"psycogreen" -384741,"requests-ntlm3" -384720,"python-benedict" -384676,"cartopy" -384552,"python-barcode" -384268,"bzt" -384135,"types-werkzeug" -384106,"py-ecc" -383756,"mido" -383613,"mkdocs-git-revision-date-localized-plugin" -383253,"assertpy" -383121,"databind-core" -382558,"zdaemon" -382470,"tensorflow-recommenders" -382187,"grequests" -381943,"nmslib" -381842,"forex-python" -381157,"lameenc" -380870,"tencentcloud-sdk-python" -380280,"nox-poetry" -379764,"clickhouse-toolset" -379522,"rdt" -379437,"google-play-scraper" -379275,"azureml-sdk" -379259,"syrupy" -378398,"tf-estimator-nightly" -378111,"prometheus-api-client" -378102,"tink" -378040,"pyroute2" -377714,"easing-functions" -377401,"azureml-pipeline-steps" -376616,"f90nml" -376552,"openapi3" -376226,"cppy" -376049,"yattag" -375859,"opentelemetry-instrumentation-pymysql" -375632,"aliyun-python-sdk-vpc" -375601,"azure-containerregistry" -375266,"python-interface" -374852,"geomdl" -374621,"gspread-formatting" -374543,"pulumi-aws" -373998,"djlint" -373518,"robotframework-pabot" -373378,"faiss-gpu" -372620,"android-backup" -372317,"pandarallel" -372259,"spotinst-agent" -372242,"opentelemetry-instrumentation-elasticsearch" -371985,"azureml-inference-server-http" -371432,"flask-swagger" -371408,"pynetbox" -370607,"roboflow" -370509,"azureml-train-automl-client" -370445,"banal" -369709,"apache-airflow-microsoft-fabric-plugin" -369205,"entsoe-py" -369145,"sphinx-toolbox" -369115,"pyyaml-include" -368880,"ping3" -368840,"presidio-anonymizer" -368731,"pydeprecate" -368723,"pyzbar" -368722,"paramiko-expect" -368617,"suds-jurko" -368600,"flask-smorest" -368596,"opentelemetry-instrumentation-threading" -368588,"docker-py" -368583,"securesystemslib" -368402,"tabula-py" -368158,"databend-driver" -367706,"decord" -367667,"pyfume" -367565,"types-aiobotocore-dataexchange" -367285,"databend-py" -367025,"azureml-pipeline" -367010,"pyvalid" -366721,"graphene-django" -366610,"lupa" -366255,"pytest-nunit" -365917,"acme" -365634,"python-gflags" -365525,"brickflows" -365338,"cma" -364777,"id" -364598,"jupyter-highlight-selected-word" -363873,"beautifulsoup" -363808,"xmldiff" -363306,"python-whois" -363103,"ipympl" -362342,"pymeta3" -362302,"isal" -362261,"azure-cognitiveservices-speech" -362236,"fastly" -362106,"types-tzlocal" -361979,"shrub-py" -361606,"pyqtwebengine" -361488,"dict2css" -361307,"mypy-boto3-ses" -361188,"bugsnag" -361026,"leb128" -360859,"glances" -360115,"azure-mgmt-hybridcompute" -359267,"sphinx-jinja2-compat" -359139,"pyld" -359096,"opencc-python-reimplemented" -359022,"pem" -358949,"opentelemetry-instrumentation-tornado" -358875,"restructuredtext-lint" -358308,"jupyter-nbextensions-configurator" -357263,"types-chardet" -357163,"webassets" -357107,"tslearn" -356255,"ntc-templates" -355884,"easygui" -355881,"rouge" -355796,"ldapdomaindump" -355108,"tzwhere" -355068,"llama-index-embeddings-azure-openai" -354728,"pytest-factoryboy" -354564,"xsdata" -354162,"pyxray" -354026,"python-graphql-client" -353635,"lomond" -353431,"aws-cdk-asset-node-proxy-agent-v5" -352847,"flask-script" -352681,"cli-helpers" -352544,"morecantile" -352215,"cxxfilt" -352084,"mistral-common" -351331,"ase" -351004,"aliyun-python-sdk-r-kvstore" -350932,"pytest-pythonpath" -350812,"flake8-variables-names" -350706,"pgeocode" -350589,"tcod" -350527,"screeninfo" -350271,"untokenize" -350242,"fancycompleter" -349758,"reportportal-client" -349677,"argilla" -349633,"simpleitk" -349232,"pudb" -349180,"m2crypto" -348967,"xopen" -348673,"linode-cli" -348003,"langid" -347561,"domain2idna" -347256,"pyro-ppl" -347109,"ansible-runner" -347018,"mypy-boto3-logs" -346880,"python-swiftclient" -346838,"pymodbus" -346788,"aws-kinesis-agg" -346681,"thriftpy2" -346501,"yellowbrick" -346352,"asynch" -346002,"delighted" -345595,"gurobipy" -345578,"histlite" -345572,"pytest-clarity" -345331,"linode-metadata" -345145,"unicorn" -344929,"flake8-commas" -344926,"crewai" -344398,"osmium" -344350,"localstack-core" -344346,"tika" -343660,"perlin-noise" -343594,"jsonpath" -343523,"word2number" -342953,"types-flask" -342948,"scooby" -342806,"window-ops" -342509,"docstring-to-markdown" -342452,"ladybug-display" -342072,"dagster-cloud" -341827,"pdbpp" -341679,"in-place" -341600,"fs-s3fs" -341380,"quart-cors" -341184,"whoosh" -340993,"arch" -340772,"django-mysql" -340692,"click-default-group-wheel" -340539,"miscreant" -340339,"cloudwatch" -340286,"cron-converter" -340145,"wmctrl" -340144,"marshmallow-jsonapi" -340132,"evdev" -340014,"mypy-boto3-elbv2" -339451,"swig" -338874,"keras-tuner" -338788,"cdifflib" -338759,"gin-config" -338690,"modelscope" -338598,"progressbar" -337991,"sly" -337885,"localstack-client" -337740,"torch-geometric" -336786,"uszipcode" -336777,"reprint" -336747,"codeguru-profiler-agent" -336673,"beaker" -336592,"accumulation-tree" -336592,"acryl-sqlglot" -336449,"airflow-exporter" -336090,"pyfunceble-dev" -335862,"array-api-compat" -335613,"honcho" -335400,"boto-session-manager" -335336,"pylas" -335267,"pyqtgraph" -335242,"importlab" -335203,"salib" -335077,"pybars3" -334994,"pydomo" -334900,"python-pptx-templater" -334888,"pyfarmhash" -334567,"hsluv" -334537,"django-colorfield" -334335,"crochet" -334084,"aws-assume-role-lib" -333545,"plotly-resampler" -333453,"tuf" -333294,"random-user-agent" -333021,"fuzzytm" -331776,"pyloudnorm" -331340,"property-cached" -331275,"acryl-datahub-airflow-plugin" -331247,"tgcrypto" -331211,"allure-behave" -330953,"pyrogram" -330860,"types-appdirs" -330611,"libusb-package" -330117,"fixit" -329942,"simpful" -329831,"sigstore" -329824,"robotframework-jsonlibrary" -329812,"djangorestframework-api-key" -329735,"pylibmc" -329198,"opentelemetry-exporter-prometheus" -329151,"stups-tokens" -328844,"sigstore-protobuf-specs" -328614,"kivy-garden" -328552,"meshio" -328143,"sphinx-data-viewer" -327989,"nagisa" -327911,"pyside2" -327582,"chromedriver-autoinstaller" -327391,"fernet" -327156,"sigstore-rekor-types" -326934,"cheetah3" -326934,"pdm-backend" -326810,"pydoe" -326122,"itables" -326012,"pandas-profiling" -325827,"mobly" -325702,"praw" -325326,"lkml" -325292,"tsdownsample" -325229,"basicsr" -325060,"hdf5plugin" -324949,"kneed" -324928,"pip-with-requires-python" -324770,"zake" -324657,"django-modeltranslation" -324555,"langchain-chroma" -324528,"dagster-slack" -324475,"python-socks" -324388,"requirements-detector" -324158,"s3pathlib" -323816,"visitor" -323626,"ipyvuetify" -323557,"iterproxy" -323551,"opentelemetry-instrumentation-confluent-kafka" -323363,"kafka" -323186,"fiscalyear" -322892,"pyspark-pandas" -322704,"pyudorandom" -322400,"monty" -322300,"xdoctest" -322086,"awsebcli" -322031,"ipyvue" -321761,"multiset" -321751,"pygraphviz" -321030,"pyscaffold" -320658,"lxml-stubs" -320535,"fhir-resources" -320463,"distance" -320410,"pyro-api" -320405,"names" -320145,"petl" -319951,"pyfunctional" -319907,"sphinx-needs" -319881,"prawcore" -319873,"wasmtime" -319603,"ytsaurus-client" -319379,"vadersentiment" -319224,"yamlordereddictloader" -318829,"mypy-boto3-route53domains" -318797,"oslo-log" -317976,"databricks-feature-engineering" -317696,"mailjet-rest" -317596,"quantities" -317340,"shiboken2" -316985,"embedchain" -316956,"ordereddict" -316919,"django-axes" -316830,"ytsaurus-yson" -316716,"types-fpdf2" -316644,"embreex" -316524,"pcpp" -316337,"lightfm" -316321,"xdg" -316274,"img2pdf" -316175,"wiki-fetch" -316152,"milvus-lite" -316029,"primp" -315902,"bootstrap-flask" -315883,"django-ninja" -315880,"pytest-trio" -315791,"flufl-lock" -315542,"taskgroup" -315496,"cupy-cuda12x" -315229,"flake8-tidy-imports" -315135,"custom-inherit" -315074,"mypy-boto3-emr" -314886,"luigi" -314875,"music21" -314587,"nutter" -314480,"trafaret" -314046,"pydantic-yaml" -313887,"types-boto" -313859,"poyo" -313841,"mkdocs-redirects" -313755,"python-novaclient" -313683,"flake8-simplify" -313579,"check-manifest" -313552,"prospector" -313452,"dictlib" -313379,"grpcio-testing" -313324,"unstructured-inference" -313010,"crowdstrike-falconpy" -313003,"oslo-context" -313002,"fastdtw" -313001,"django-localflavor" -312836,"httpie-edgegrid" -312747,"brotlipy" -312603,"yapsy" -312361,"tatsu" -312214,"multiaddr" -311914,"opentelemetry-instrumentation-falcon" -311855,"opentelemetry-instrumentation-mysqlclient" -311751,"adjusttext" -311465,"honeybee-core" -311185,"pdoc" -311075,"mistletoe" -311074,"python-amazon-sp-api" -311008,"huaweicloudsdkcore" -310798,"onnxsim" -310776,"ladybug-geometry-polyskel" -310769,"sqlalchemy-trino" -310715,"ipfshttpclient" -310285,"rstcheck" -310264,"honeybee-schema" -310148,"argo-workflows" -310094,"mypy-boto3-ecs" -310068,"aws-cdk-core" -310048,"ncclient" -309943,"pyfzf" -309909,"lightstep" -309901,"dataset" -309876,"stups-zign" -309850,"stups-cli-support" -309663,"anywidget" -309651,"django-user-agents" -309518,"molecule-plugins" -309301,"delocate" -309039,"pydrive" -309029,"mypy-boto3-sagemaker" -308838,"elasticsearch-curator" -308800,"scrapbook" -308471,"django-tables2" -308466,"django-auth-ldap" -308288,"lorem" -308219,"great-expectations-experimental" -308103,"nvidia-ml-py3" -308052,"plyfile" -307934,"ml-collections" -307688,"opentelemetry-instrumentation-mysql" -307662,"secure" -307532,"partial-json-parser" -307447,"prefect-docker" -307399,"pyobjc-core" -307159,"libusb1" -306907,"honeybee-standards" -306748,"pydantic-openapi-helper" -306701,"opencc" -306631,"sphinx-notfound-page" -306042,"prettyprinter" -305961,"testresources" -305951,"crontab" -305880,"aiosmtpd" -305855,"prefect-github" -305721,"azureml-defaults" -305624,"statistics" -305505,"docstring-parser-fork" -305242,"sphinxcontrib-drawio" -304961,"antlr-denter" -304716,"airbyte-cdk" -304716,"dynet" -304592,"pandas-flavor" -304568,"pylink-square" -304474,"mpld3" -304442,"rfc8785" -304370,"pyftpdlib" -304142,"django-jazzmin" -303141,"nacos-sdk-python" -303114,"versioningit" -303054,"objprint" -302973,"treq" -302947,"webexteamssdk" -302725,"table-logger" -302606,"sql-formatter" -302558,"aws-cdk-aws-iam" -302409,"mypy-boto3-batch" -302247,"uuid7" -301586,"opentelemetry-instrumentation-pyramid" -301491,"ibm-watsonx-ai" -301359,"llama-index-llms-azure-openai" -301233,"plantuml-markdown" -301131,"python-lsp-server" -300722,"ipcqueue" -300624,"pyobjc-framework-cocoa" -300551,"yamlloader" -300409,"json-encoder" -300399,"pyliquibase" -300320,"pybacklogpy" -300298,"django-rest-swagger" -300296,"pytest-djangoapp" -300236,"mypy-boto3-cloudwatch" -300210,"dataclasses-avroschema" -300111,"mwparserfromhell" -299840,"aws-logging-handlers" -299782,"docopt-ng" -298963,"opentelemetry-instrumentation-pymemcache" -298642,"xrft" -298416,"langchain-cohere" -298274,"returns" -298086,"plux" -297734,"mkdocs-techdocs-core" -297529,"xml-python" -297166,"chalice" -296758,"yeelight" -295711,"google-cloud-ndb" -295526,"badx12" -295525,"pylama" -295511,"jsonslicer" -295509,"aws-error-utils" -295494,"colander" -294994,"mypy-boto3-cognito-idp" -294721,"effdet" -294341,"djangorestframework-jwt" -294023,"types-python-slugify" -293845,"homeassistant" -293729,"httpstan" -293718,"lazy-imports" -293627,"kt-legacy" -293545,"mypy-boto3-dms" -293541,"python-etcd" -293472,"pyhdb" -293416,"qds-sdk" -293296,"mkdocs-monorepo-plugin" -293123,"opentelemetry-instrumentation-aio-pika" -292719,"path-py" -292610,"pylightxl" -292447,"kubernetes-client" -292327,"pypi-attestations" -292322,"flake8-annotations" -292221,"logging" -291898,"pysolr" -291632,"in-n-out" -291575,"sphinxcontrib-plantuml" -291440,"meteostat" -291051,"connectorx" -290885,"pbspark" -290168,"versionfinder" -290041,"attr" -289896,"awslimitchecker" -289871,"pybaselines" -289819,"micloud" -289738,"asn1" -289302,"hmsclient" -289213,"pytype" -288790,"ghostscript" -288782,"mygeotab" -288469,"lagom" -287968,"robocorp-log" -287926,"pycarlo" -287858,"pyreadline" -287831,"webapp2" -287708,"ragas" -287293,"pytools" -287285,"psycopg-c" -287156,"pydevd-pycharm" -287096,"transliterate" -286961,"schwifty" -286809,"opentelemetry-instrumentation-aiopg" -286641,"robocorp-tasks" -286547,"testing-common-database" -286465,"brotlicffi" -286448,"paddlepaddle" -286400,"structlog-sentry" -286366,"layoutparser" -286207,"dbx" -285922,"py-backwards" -285813,"backports-strenum" -285807,"py-backwards-astunparse" -285765,"robocorp-workitems" -285604,"robotframework-browser" -285499,"pyathenajdbc" -285404,"py-moneyed" -285219,"deb-pkg-tools" -285111,"pyaudio" -284900,"aws-cdk-aws-ec2" -284884,"robocorp" -284647,"pytest-profiling" -284560,"types-futures" -284221,"spacy-wordnet" -283631,"h3-pyspark" -283405,"feedfinder2" -283309,"lm-eval" -283022,"pyshark" -282829,"django-guardian" -282799,"flask-executor" -282642,"opentelemetry-instrumentation-cassandra" -282454,"murmurhash2" -282434,"recurring-ical-events" -282375,"robotframework-assertion-engine" -282222,"jieba3k" -282022,"musdb" -281937,"jsonseq" -281922,"stempeg" -281688,"virtme-ng" -281633,"google-cloud-scheduler" -281531,"pytest-variables" -281424,"single-source" -281309,"torch-complex" -281249,"museval" -281075,"opentelemetry-instrumentation-remoulade" -280987,"warcio" -280799,"serpent" -280681,"google-cloud-documentai" -280525,"huaweicloudsdkdns" -280282,"transformations" -280200,"ariadne" -280069,"kafka-python-ng" -279616,"robotframework-appiumlibrary" -279550,"path-dict" -279481,"prefect-sqlalchemy" -279461,"oic" -279232,"grandalf" -279227,"h2o" -279045,"tox-ansible" -278463,"intel-openmp" -278405,"cloudinary" -278271,"cnvrg" -278211,"compressed-rtf" -278156,"pyiso8583" -278097,"empy" -277809,"flask-apscheduler" -277667,"quadprog" -277604,"pyinstaller-versionfile" -277600,"gitlint" -277537,"mozilla-django-oidc" -277166,"shopifyapi" -277058,"azure-communication-email" -276812,"python-schema-registry-client" -276623,"opacus" -276515,"gitlint-core" -276337,"discord-webhook" -276229,"tensorflowjs" -276203,"lazy" -276101,"pytest-datadir" -276011,"ldaptor" -275367,"pythran" -275229,"pyxirr" -275217,"pyicu-binary" -275078,"elasticsearch6" -274938,"snakeviz" -274906,"aws-cdk-aws-kms" -274652,"vispy" -274495,"tm1py" -274427,"asyncio-throttle" -274363,"slicerator" -274186,"viztracer" -274117,"docker-image-py" -273756,"dockerfile" -273502,"asyncstdlib" -273275,"mplfinance" -273252,"mdxpy" -273135,"google-cloud-private-ca" -273000,"dvc-render" -272974,"pytest-watch" -272868,"mkdocs-awesome-pages-plugin" -272819,"pyqtwebengine-qt5" -272800,"pystac" -272704,"pydotplus" -272650,"plotly-express" -272270,"moepy" -272190,"pymacaroons" -272079,"draftjs-exporter" -271909,"prefixed" -271887,"fuzzyset2" -271859,"pytest-timestamper" -271681,"tf2onnx" -271547,"sagemaker-data-insights" -271356,"myst-nb" -271321,"databricks-utils" -270956,"chargebee" -270809,"pyocd" -270212,"django-tinymce" -270148,"clearml" -270055,"hydra-colorlog" -270005,"reverse-geocoder" -269989,"jupyter-contrib-core" -269910,"mypy-boto3-route53" -269867,"imap-tools" -269840,"apache-airflow-providers-apache-hive" -269639,"cssbeautifier" -269590,"wikipedia" -269445,"python3-xlib" -269313,"couchbase" -269201,"pypd" -269141,"django-auditlog" -268723,"h3ronpy" -268707,"aws-cdk-cx-api" -268342,"types-aiobotocore-sqs" -268337,"telebot" -267947,"intervals" -267857,"ocspbuilder" -267809,"scrubadub" -267618,"entrypoint2" -267589,"envparse" -267412,"event-model" -267378,"puremagic" -267143,"prov" -267012,"joblibspark" -266803,"sspilib" -266619,"wmill" -266550,"types-aiobotocore-dynamodb" -266542,"latex2mathml" -266514,"cloudformation-cli-python-lib" -266500,"aws-msk-iam-sasl-signer-python" -266214,"secure-smtplib" -266161,"pycollada" -266139,"pymarshaler" -266026,"dicomweb-client" -265972,"x-wr-timezone" -265968,"currencyconverter" -265927,"flask-assets" -265895,"varname" -265686,"python-subunit" -265632,"curatorbin" -265621,"sqlalchemy-json" -265572,"honeybee-energy" -265571,"dotnetcore2" -265494,"tabcmd" -265363,"cookies" -265336,"ocspresponder" -265208,"funcparserlib" -265203,"click-configfile" -265017,"pyvista" -264830,"jupyter-contrib-nbextensions" -264578,"pyexcel" -264449,"awscli-local" -264421,"noise" -264411,"google-cloud-artifact-registry" -264248,"testing-postgresql" -264026,"pylance" -263805,"burr" -263664,"reedsolo" -263657,"haystack-ai" -263617,"evergreen-lint" -263539,"gspread-pandas" -263137,"higher" -262968,"flogging" -262944,"apache-airflow-providers-elasticsearch" -262870,"ipaddr" -262666,"eccodes" -262633,"coolprop" -262578,"varint" -262551,"sphinx-autoapi" -262526,"napari-plugin-engine" -262466,"esp-idf-kconfig" -262174,"proxy-protocol" -262155,"edx-opaque-keys" -262150,"databind" -262117,"dodgy" -262005,"mmhash3" -261962,"gpytorch" -261951,"setuptools-download" -261950,"arthurai" -261947,"dagster-pandas" -261588,"ffmpeg" -261554,"dall-e" -261499,"dagster-cloud-cli" -261460,"judo" -261443,"fragile" -261213,"urlextract" -260871,"nncf" -260842,"deap" -260824,"aws-cdk-aws-lambda" -260665,"getmac" -260612,"rq-dashboard" -260594,"pymc" -260190,"ceja" -259991,"styleframe" -259983,"py-grpc-prometheus" -259765,"pdfrw" -259723,"spacy-transformers" -259576,"opentelemetry-exporter-jaeger-thrift" -259442,"aws-cdk-aws-s3" -259291,"mypy-boto3-sagemaker-runtime" -259088,"mistralai" -259071,"pycaret" -258936,"tree-sitter-javascript" -258925,"transforms3d" -258902,"adtk" -258808,"ptvsd" -258705,"py-consul" -258373,"sanitize-filename" -258304,"python-mimeparse" -258161,"pypsrp" -257805,"azure-ml-component" -257715,"jupyter-cache" -257685,"json-rpc" -257430,"pylint-celery" -257389,"pyactiveresource" -257349,"qpd" -257272,"kaldi-io" -257210,"clint" -256915,"marshmallow3-annotations" -256903,"mkdocs-include-markdown-plugin" -256899,"redis-sentinel-url" -256897,"dagster-pyspark" -256644,"ibm-watson-machine-learning" -256496,"ladybug-rhino" -256473,"tensorboard-plugin-profile" -256341,"lancedb" -256239,"r2pipe" -256190,"pynose" -256180,"langchain-huggingface" -256173,"insightface" -256127,"django-constance" -256064,"cpplint" -255856,"func-args" -255553,"teamcity-messages" -255552,"pyemd" -255178,"xlsx2csv" -255011,"cognitojwt" -254830,"rospkg" -254807,"whichcraft" -254801,"apache-airflow-providers-sendgrid" -254767,"sorl-thumbnail" -254665,"paddleocr" -254509,"pyinotify" -254340,"pyqrcode" -254205,"prefect-shell" -254031,"onnxscript" -253802,"scmrepo" -253798,"optbinning" -253113,"bindep" -253111,"langchain-ibm" -253066,"td-client" -252696,"bravado" -252672,"dagster-shell" -252511,"aiodataloader" -252427,"flit" -252382,"username" -252338,"aws-cdk-aws-cloudwatch" -252100,"django-multiselectfield" -252089,"google-cloud-dialogflow-cx" -251976,"segtok" -251957,"rio-cogeo" -251483,"apiclient" -251179,"krb5" -250923,"inference-schema" -250790,"onnxmltools" -250632,"ccard" -250586,"jsonnet" -250473,"sparkaid" -250327,"django-fsm" -250130,"beautifultable" -250047,"types-tensorflow" -249971,"link" -249839,"libarchive-c" -249757,"google-cloud-recaptcha-enterprise" -249614,"mkl" -249421,"robotframework-retryfailed" -249391,"mdutils" -249386,"statsig" -249257,"python-dynamodb-lock" -249250,"pysqlite3-binary" -249173,"aws-cdk-region-info" -249075,"wtforms-components" -249046,"elasticquery" -249037,"kopf" -248983,"jupyter-server-proxy" -248946,"aws-cdk-aws-events" -248938,"portion" -248914,"pwlf" -248775,"pid" -248724,"pytest-pylint" -248673,"drf-spectacular-sidecar" -248623,"enlighten" -248498,"aliyun-python-sdk-ecs" -248429,"littleutils" -248418,"rdkit-pypi" -248406,"funasr" -247907,"pyjwkest" -247578,"hdrpy" -247511,"zigpy-zigate" -247507,"flake8-string-format" -247492,"cli-exit-tools" -247470,"springserve" -247356,"mitmproxy" -247344,"unstructured-pytesseract" -247172,"pypubsub" -247114,"pure-pcapy3" -247026,"opentelemetry-propagator-gcp" -246990,"anndata" -246938,"markdown-to-json" -246880,"httpx-ws" -246812,"ph-units" -246700,"flask-session2" -246639,"oletools" -246540,"timeago" -246530,"opencensus-proto" -246436,"dvc-data" -246136,"synapseml" -246022,"numpy-groupies" -245931,"pyicu" -245861,"pytorch-wpe" -245730,"pyttsx3" -245611,"gviz-api" -245394,"django-structlog" -245375,"whylogs" -245137,"rtoml" -245115,"apache-airflow-providers-papermill" -245086,"luqum" -245054,"pinecone" -245028,"sqlalchemy-databricks" -244996,"feedgen" -244685,"lib-detect-testenv" -244276,"keras-nightly" -244091,"filecheck" -243545,"pytest-parametrization" -243471,"pykml" -243454,"git-python" -243362,"flask-pymongo" -243327,"pylogbeat" -243291,"ibm-secrets-manager-sdk" -243250,"pcodedmp" -243247,"gdal" -242951,"virtualenvwrapper" -242872,"times" -242867,"pytest-celery" -242859,"datarobot" -242801,"pytest-spark" -242713,"unyt" -242634,"aiodogstatsd" -242588,"django-object-actions" -242396,"sqlvalidator" -242339,"astronomer-providers" -242315,"youqu3" -242296,"pykmip" -242227,"pinotdb" -242201,"dbt-duckdb" -242198,"django-rq" -241860,"dj-rest-auth" -241699,"treelite" -241653,"langchainhub" -241540,"clickhouse-cityhash" -241496,"yara-python" -241398,"geohash2" -241245,"docrepr" -240999,"fastdownload" -240947,"doc-warden" -240871,"aws-cdk-aws-ssm" -240748,"robotframework-excellib" -240706,"shillelagh" -240654,"splink" -240484,"inflector" -240407,"streamlit-aggrid" -240081,"interpret-core" -240080,"kedro-datasets" -239311,"tensorflow-decision-forests" -239244,"aws-cdk-aws-logs" -239166,"python-tds" -239127,"aws-cdk-aws-s3-assets" -239101,"apache-airflow-providers-trino" -238984,"tinsel" -238850,"djangorestframework-xml" -238849,"doc8" -238820,"pyaescrypt" -238650,"sphinxext-opengraph" -238559,"pygdbmi" -238292,"django-two-factor-auth" -238119,"utils" -238092,"stanza" -237892,"calver" -237786,"pyrr" -237775,"google-search-results" -237638,"sanic-ext" -237587,"azureml-fsspec" -237404,"keplergl" -237332,"simplekml" -237307,"mypy-boto3-config" -237194,"simple-azure-blob-downloader" -237107,"grafanalib" -237052,"django-elasticsearch-dsl" -236991,"ovmsclient" -236970,"asyncmy" -236941,"mmengine" -236714,"model-index" -236628,"openapi-codec" -236625,"web-fragments" -236593,"cmsis-pack-manager" -236563,"wtforms-alchemy" -236189,"tableschema" -236182,"haystack-experimental" -236153,"litestar" -236130,"comet-ml" -236048,"generalimport" -235891,"esptool" -235782,"feather-format" -235651,"django-templated-mail" -235640,"langchain-groq" -235592,"json-spec" -235248,"requests-oauth" -235155,"cryptocode" -235046,"pyte" -235005,"macaroonbakery" -234778,"2captcha-python" -234651,"flake8-rst-docstrings" -234550,"datumaro" -234382,"aws-cdk-aws-ecr" -234332,"mohawk" -234312,"kmodes" -234238,"invisible-watermark" -234152,"pydantic-xml" -234032,"django-recaptcha" -234030,"pandas-read-xml" -233921,"shellcheck-py" -233796,"httpbin" -233634,"ip3country" -233558,"dbt-clickhouse" -233427,"pynrrd" -233423,"amundsen-common" -233358,"aws-cdk-aws-secretsmanager" -233259,"dagster-spark" -233005,"stanfordcorenlp" -233002,"types-aiobotocore-ec2" -232901,"qiskit-aer" -232792,"pytest-reportportal" -232775,"pact-python" -232640,"drf-jwt" -232516,"stumpy" -232484,"flask-apispec" -232417,"django-configurations" -232409,"glfw" -232339,"cons" -232239,"twofish" -232234,"etuples" -232059,"sagemaker-datawrangler" -232004,"titlecase" -231933,"logical-unification" -231825,"opentelemetry-semantic-conventions-ai" -231603,"rauth" -231579,"pytest-docker" -231555,"types-flask-cors" -231452,"gitignore-parser" -231268,"youqu" -230853,"opentelemetry-instrumentation-openai" -230624,"anyscale" -230573,"pickle5" -230558,"python-status" -230521,"redis-om" -230506,"lsprotocol" -230339,"stopit" -230238,"minikanren" -230014,"apache-airflow-providers-apache-druid" -230005,"onepasswordconnectsdk" -229918,"stackprinter" -229849,"pyvisa-py" -229827,"wasmer" -229751,"aws-cdk-aws-applicationautoscaling" -229735,"yoyo-migrations" -229613,"dataproc-spark-connect" -229277,"mariadb" -229161,"django-money" -229037,"nameof" -229019,"detect-delimiter" -228760,"inotify" -228719,"get-reader" -228711,"pytest-retry" -228684,"blosc" -228678,"trustme" -228647,"pulumi-command" -228587,"pyaml-env" -228558,"pycobertura" -228466,"m3u8" -228395,"tortoise-orm" -228318,"pan-python" -228271,"slugify" -228206,"amundsen-rds" -228166,"django-allow-cidr" -228120,"pytest-wake" -228000,"openexr" -227931,"pulumi-tls" -227913,"lifetimes" -227738,"django-json-widget" -227733,"logging-formatter-anticrlf" -227567,"types-ipaddress" -227530,"types-aiobotocore-rds" -227272,"djangorestframework-csv" -227212,"pytest-selenium" -227202,"pykube" -227147,"certbot" -227045,"ops" -226939,"coverage-badge" -226914,"sklearn-crfsuite" -226907,"robotframework-robocop" -226870,"dead-hosts-launcher" -226845,"types-aiobotocore-lambda" -226801,"flake8-return" -226759,"types-openpyxl" -226749,"supermercado" -226613,"pyang" -226461,"strsimpy" -226319,"clearml-agent" -226100,"hyper" -225913,"emr-notebooks-magics" -225889,"presto-client" -225653,"launchable" -225645,"simpervisor" -225630,"docxcompose" -225358,"pymc3" -225228,"cmake-format" -224731,"pytest-subprocess" -224609,"aws-cdk-aws-sqs" -224561,"quantmodels" -224532,"finmodels" -224513,"amundsen-databuilder" -224474,"tinybird-cli" -224452,"knapsack-algorithm" -224412,"intuit-oauth" -224274,"aioquic" -223936,"mypy-boto3-textract" -223887,"sagemaker-feature-store-pyspark-3-1" -223802,"base64io" -223793,"cpuset-py3" -223760,"dynamo-pandas" -223740,"slack" -223717,"rotary-embedding-torch" -223513,"better-profanity" -223470,"autologging" -223056,"bravado-core" -222924,"easy-thumbnails" -222613,"fortifyapi" -222478,"xmltojson" -222331,"fairlearn" -222311,"delayed-assert" -222098,"awscurl" -221970,"python-monkey-business" -221849,"opentelemetry-exporter-jaeger-proto-grpc" -221559,"spotipy" -221406,"pytensor" -221322,"pdfminer" -221317,"salesforce-fuelsdk-sans" -221301,"pylsqpack" -220839,"opentelemetry-propagator-jaeger" -220836,"pymoo" -220722,"pytest-incremental" -220719,"jsonformatter" -220706,"oci-cli" -220689,"solc-select" -220608,"timedelta" -220553,"fugue-sql-antlr" -220517,"mysql-python" -220440,"libify" -220440,"mypy-boto3-autoscaling" -220434,"googlesearch-python" -220419,"llama-cpp-python" -220243,"django-nested-admin" -220084,"sigtools" -219944,"aad-token-verify" -219850,"pgsanity" -219803,"types-aiobotocore-cloudformation" -219789,"pyreadstat" -219770,"schedula" -219647,"mypy-boto3-firehose" -219620,"python-baseconv" -219511,"testrail-api" -219067,"aws-cdk-aws-logs-destinations" -219006,"aws-cdk-aws-ecr-assets" -218754,"iso4217" -218742,"bounded-pool-executor" -218625,"pythainlp" -218539,"pytorch" -218453,"pycosat" -218436,"ip2location" -218326,"xmltodict3" -218303,"graphyte" -218265,"types-pkg-resources" -218212,"dvc-task" -218148,"pyrepl" -218115,"aws-cdk-aws-sns" -218087,"tflite-model-maker-nightly" -218000,"markdown-inline-graphviz-extension" -217924,"jupyterhub" -217903,"aws-cdk-aws-efs" -217816,"umodbus" -217809,"bigquery-schema-generator" -217732,"fbprophet" -217608,"namedlist" -217486,"pygeos" -217461,"canopen" -217411,"scrapfly-sdk" -217385,"brazilnum" -217065,"dimod" -217035,"torchinfo" -217032,"rule-engine" -216963,"robotframework-sshlibrary" -216887,"formulas" -216835,"python-jsonschema-objects" -216795,"multiprocessing" -216717,"aws-cdk-aws-codeguruprofiler" -216521,"mypy-boto3-cognito-identity" -216445,"saspy" -216439,"rioxarray" -216354,"neovim" -216261,"postmarker" -216248,"einops-exts" -216235,"kazurator" -216027,"aws-cdk-aws-certificatemanager" -215736,"drissionpage" -215611,"aliyun-python-sdk-core-v3" -215530,"verspec" -215487,"certvalidator" -215278,"tag-expressions" -215135,"pip-install-test" -215071,"segno" -215055,"pybuildkite" -215017,"python-logstash-async" -214932,"nbdime" -214831,"mkdocs-gen-files" -214765,"lintrunner" -214548,"azure-iot-device" -214291,"drf-writable-nested" -214270,"metaphone" -214215,"ci-info" -214149,"pyspin" -213983,"infinity" -213841,"radish-bdd" -213795,"pypika-tortoise" -213660,"google-cloud-profiler" -213601,"python-jwt" -213335,"autoray" -213283,"mkdocs-glightbox" -213280,"gggdtparser" -213257,"whylogs-sketching" -213182,"robotframework-databaselibrary" -213175,"azure-eventhub-checkpointstoreblob" -213141,"tsfresh" -212976,"ttp" -212929,"actions-toolkit" -212864,"wagtail" -212792,"pygls" -212769,"breadability" -212650,"mypy-boto3-cloudtrail" -212540,"pdbp" -212310,"g2p-en" -212280,"etelemetry" -212190,"aiven-client" -212076,"stix2-patterns" -211995,"pylinuxauto" -211909,"mechanize" -211870,"wtforms-json" -211634,"superqt" -211633,"python-jsonpath" -211624,"urwid-readline" -211527,"salesforce-fuelsdk" -211522,"aliyun-python-sdk-rds" -211309,"python-binance" -211223,"fugashi" -211205,"linear-operator" -211119,"pyserde" -211065,"apache-libcloud" -211061,"stk" -210964,"aws-cdk-aws-sam" -210624,"apache-airflow-providers-jenkins" -210591,"pyexasol" -210459,"tapipy" -210334,"beancount" -210253,"weread2notionpro" -210167,"torch-tb-profiler" -210139,"zope-sqlalchemy" -210121,"types-httplib2" -209872,"konlpy" -209858,"tkinterdnd2" -209784,"torchsummary" -209659,"dvc-objects" -209650,"pandas-schema" -209615,"django-classy-tags" -209445,"zeo" -209387,"impacket" -209385,"mchammer" -209242,"types-maxminddb" -209158,"types-oauthlib" -209142,"stko" -209136,"econml" -209121,"rmsd" -209022,"pytest-httpbin" -208979,"spindry" -208963,"atomlite" -208957,"stamina" -208956,"mypy-boto3-efs" -208898,"odict" -208890,"deprecat" -208821,"pyobjc-framework-quartz" -208758,"pyct" -208673,"conllu" -208669,"geoip2-tools" -208603,"businesstimedelta" -208592,"pylint-gitlab" -208334,"jax-jumpy" -208248,"pygount" -208242,"aiounittest" -208155,"sccache" -208143,"aws-cdk-aws-autoscaling-common" -208108,"delta-sharing" -207969,"mnemonic" -207827,"littlefs-python" -207683,"pytest-alembic" -207671,"sphinx-click" -207666,"aiohttp-socks" -207600,"graphene-sqlalchemy" -207432,"django-admin-sortable2" -207282,"boruta" -206988,"junos-eznc" -206955,"pyodps" -206923,"neotime" -206834,"mailchimp-marketing" -206774,"django-log-request-id" -206651,"datadiff" -206581,"google-compute-engine" -206569,"pyftdi" -206561,"dataengineeringutils3" -206338,"whylabs-client" -206273,"airbyte-api" -206253,"mdformat" -206188,"ciphey" -205950,"aws-cdk-custom-resources" -205922,"terraform-compliance" -205864,"aws-cdk-aws-cloudformation" -205739,"types-pyasn1" -205705,"bingads" -205615,"model-archiver" -205486,"pockets" -205415,"diagrams" -205413,"safer" -205315,"asyncclick" -205255,"rejson" -205252,"aws-cdk-aws-signer" -205252,"streamlit-keyup" -205247,"bce-python-sdk" -205197,"drf-extensions" -204963,"mojap-metadata" -204881,"tf-models-nightly" -204767,"pyarmor" -204728,"futurist" -204699,"plumber" -204649,"tailer" -204585,"jupyter-server-mathjax" -204567,"amplitude-analytics" -204524,"python-digitalocean" -204517,"flake8-use-fstring" -204377,"aws-cdk-aws-route53" -204304,"dvc-studio-client" -204269,"tabcompleter" -204230,"tavern" -204224,"iteration-utilities" -204210,"djoser" -204045,"aws-cdk-assets" -204004,"flutils" -203704,"dvc-http" -203609,"django-hijack" -203546,"pyspark-test" -203369,"mo-future" -203346,"rosbags" -203203,"simple-settings" -203194,"click-shell" -203143,"aws-cdk-aws-stepfunctions" -202739,"mat4py" -202721,"pysnooper" -202680,"requests-unixsocket2" -202630,"copier" -202444,"downloadkit" -202427,"langchainplus-sdk" -202401,"mail-parser" -202399,"mpi4py" -202287,"testscenarios" -202275,"async-modbus" -202036,"pyzipcode" -201647,"lcov-cobertura" -201516,"datarecorder" -201466,"textract" -201299,"first" -201195,"stringzilla" -201061,"crhelper" -200943,"mypy-boto3-bedrock-runtime" -200932,"cfgrib" -200910,"django-crum" -200903,"pandoc" -200567,"pycnite" -200508,"aws-cdk-aws-elasticloadbalancingv2" -200501,"python-coveralls" -200436,"snowflake-telemetry-python" -200416,"mapclassify" -200383,"basictracer" -200237,"records" -200200,"chess" -200136,"gto" -200024,"willow" -199962,"icontract" -199937,"pyramid-tm" -199855,"typed-argument-parser" -199702,"toml-sort" -199620,"pyzabbix" -199608,"mem0ai" -199606,"django-braces" -199571,"snapshottest" -199558,"django-modelcluster" -199524,"ddapm-test-agent" -199457,"aws-cdk-aws-ecs" -199394,"rtfde" -199301,"kaggle" -199265,"sphinx-automodapi" -199032,"django-lifecycle" -199016,"pi-heif" -198970,"dm-haiku" -198916,"gradio-rangeslider" -198903,"esp-idf-monitor" -198752,"baron" -198659,"flask-restplus" -198637,"pyfcm" -198562,"wasmer-compiler-cranelift" -198518,"azure-iot-hub" -198466,"google-benchmark" -198428,"mypy-boto3-emr-serverless" -198422,"wakeonlan" -198407,"nbval" -198169,"wrapt-timeout-decorator" -198162,"duckdb-engine" -198092,"sphinxcontrib-napoleon" -198082,"image" -197730,"nose-parameterized" -197680,"sphinxcontrib-httpdomain" -197607,"fastdiff" -197577,"django-select2" -197387,"flake8-deprecated" -197369,"grpc-requests" -197304,"segmentation-models-pytorch" -197274,"serverless-wsgi" -197124,"aws-cdk-aws-codestarnotifications" -197072,"pypcap" -196932,"pennylane-lightning" -196769,"objgraph" -196765,"pyexecjs" -196711,"aws-cdk-aws-apigateway" -196681,"pathfinding" -196667,"mechanicalsoup" -196546,"codegen" -196510,"pyhs2" -196365,"pyresidfp" -196099,"py-range-parse" -196083,"django-autocomplete-light" -196050,"pytrends" -195998,"jaro-winkler" -195961,"parce" -195919,"ggshield" -195911,"botorch" -195587,"kr8s" -195495,"sklearn2pmml" -195494,"smartystreets-python-sdk" -195472,"multi-model-server" -195376,"blurhash" -195313,"python-debian" -195215,"databricks-vectorsearch" -195052,"python-calamine" -194948,"opentelemetry-propagator-ot-trace" -194826,"httpagentparser" -194741,"aqtinstall" -194593,"traits" -194477,"ipy" -194434,"langchain-pinecone" -194368,"patterns" -194224,"implicit" -194108,"promptflow-devkit" -194088,"whatthepatch" -194029,"apache-airflow-providers-vertica" -194006,"rstcheck-core" -193978,"promptflow-core" -193810,"mypy-boto3-identitystore" -193804,"sqltrie" -193768,"fixture" -193750,"pygresql" -193654,"opentelemetry-exporter-jaeger" -193536,"hpgeom" -193442,"aws-cdk-aws-cognito" -193422,"ragged-buffer" -193152,"pytest-qt" -193049,"browserstack-local" -192920,"asammdf" -192894,"asyncio-mqtt" -192877,"dataflows-tabulator" -192626,"treetable" -192415,"mastodon-py" -192353,"promptflow-tracing" -192339,"dragnet" -192297,"django-nose" -192212,"agate-sql" -192054,"nudged" -191960,"redbaron" -191857,"pylint-flask" -191818,"python-vagrant" -191768,"aws-lambda-typing" -191750,"flet" -191744,"dagit" -191541,"cityhash" -191484,"optparse-pretty" -191411,"keras-nlp" -191307,"aiohttp-jinja2" -191092,"labelbox" -191031,"mojimoji" -191002,"docusign-esign" -190942,"aws-cdk-aws-sns-subscriptions" -190939,"readability-lxml" -190795,"mkdocs-mermaid2-plugin" -190781,"better-exceptions" -190577,"mypy-boto3-ce" -190416,"rules" -190324,"duo-client" -190234,"aws-cdk-aws-autoscaling" -190226,"ipwhois" -190207,"python-helpscout-v2" -190105,"autobean-refactor" -189892,"stable-baselines3" -189828,"canmatrix" -189810,"stix2" -189754,"awsiotsdk" -189673,"py2md" -189594,"treelite-runtime" -189533,"pydocumentdb" -189514,"textsearch" -189297,"bearlibterminal" -189143,"contractions" -189132,"aws-cdk-aws-kinesis" -189126,"megatron-core" -189000,"sphinxcontrib-svg2pdfconverter" -188994,"simple-rest-client" -188904,"vlsir" -188788,"pyspark-stubs" -188786,"airflow-provider-fivetran" -188745,"lakefs-sdk" -188691,"vlsirtools" -188679,"django-test-migrations" -188463,"optuna-integration" -188322,"flask-redis" -188215,"aliyun-python-sdk-alidns" -188112,"h2o-wave" -188029,"yandexcloud" -187982,"google-cloud-functions" -187870,"pybit" -187815,"types-python-jose" -187797,"mypy-boto3-organizations" -187725,"flet-runtime" -187670,"robocorp-browser" -187616,"html2image" -187484,"u-msgpack-python" -187458,"agate-excel" -187433,"os-client-config" -187400,"pyramid-jinja2" -187361,"nicegui" -187344,"captum" -187327,"everett" -187318,"azure-ai-language-questionanswering" -187247,"flake8-logging-format" -187132,"validator-collection" -187125,"pyobjc" -187098,"domaintools-api" -187087,"realesrgan" -186950,"solders" -186784,"cloudsmith-api" -186758,"cf-xarray" -186704,"faust-cchardet" -186666,"pymap3d" -186578,"sphinx-togglebutton" -186555,"opennsfw2" -186537,"sip" -186428,"kitchen" -186418,"pygrib" -186110,"configcat-client" -186091,"pydantic-compat" -186053,"facebook-wda" -186010,"azure-cognitiveservices-knowledge-qnamaker" -185966,"azure-ai-language-conversations" -185658,"rq-scheduler" -185632,"py3rijndael" -185571,"super-collections" -185390,"theano-pymc" -185345,"langserve" -185286,"gorilla" -185157,"alembic-postgresql-enum" -185022,"l18n" -184813,"cloudsearch" -184686,"auditwheel" -184665,"bert-score" -184652,"tendo" -184634,"types-termcolor" -184445,"pysingleton" -184357,"zcbor" -184203,"hierarchical-conf" -184155,"solana" -183967,"jsoncomment" -183952,"typeshed-client" -183825,"mypy-boto3-rds-data" -183798,"alchemy-mock" -183627,"aliyun-python-sdk-cms" -183558,"openmim" -183544,"construct-typing" -183512,"mypy-boto3-bedrock" -183458,"rockset" -183450,"azure-mgmt-databricks" -183283,"types-regex" -183268,"aliyun-python-sdk-slb" -183179,"deepface" -183090,"nosexcover" -183067,"asyncer" -182906,"ipylab" -182809,"motmetrics" -182751,"tf-models-official" -182675,"pymediainfo" -182608,"rerun-sdk" -182580,"pqdm" -182522,"djangorestframework-camel-case" -182520,"elasticmock" -182435,"sbvirtualdisplay" -182430,"opensearch-dsl" -182385,"opentelemetry-resourcedetector-kubernetes" -182370,"outdated" -182230,"cloup" -182175,"sagemaker-training" -182168,"pluralizer" -182159,"tf-slim" -181983,"oslo-concurrency" -181966,"email-to" -181869,"marrow-mailer" -181715,"docx" -181692,"nagiosplugin" -181692,"pysimplegui" -181504,"az-cli" -181459,"bitmath" -181388,"opentelemetry-resourcedetector-docker" -181279,"cowsay" -181250,"atlassian-jwt-auth" -181181,"agate-dbf" -181094,"fastapi-mail" -181058,"sanelogging" -180955,"cnvrgv2" -180812,"aws-cdk-aws-elasticloadbalancing" -180762,"marrow-util" -180688,"apache-airflow-providers-apprise" -180607,"helpers" -180578,"keybert" -180558,"aws-cdk-aws-autoscaling-hooktargets" -180507,"airtable-python-wrapper" -180473,"pydoc-markdown" -180436,"dwave-networkx" -180420,"stim" -180374,"linear-tsv" -180363,"prince" -180363,"py-meta-utils" -180308,"refinitiv-dataplatform" -180144,"curio" -180136,"google-cloud-common" -180128,"django-sekizai" -180111,"kedro-telemetry" -180086,"mike" -180077,"types-boto3" -180020,"esp-idf-nvs-partition-gen" -179947,"xbbg" -179909,"django-solo" -179884,"flask-debugtoolbar" -179865,"praat-parselmouth" -179822,"docspec-python" -179714,"fab-classic" -179608,"prefect-dbt" -179559,"hachoir" -179408,"ibis-framework" -179349,"click-config-file" -179314,"aws-cdk-aws-cloudfront" -179267,"sphinx-favicon" -179252,"pytoml" -179205,"imgtool" -179180,"airflow-provider-fivetran-async" -179088,"pytest-testmon" -179076,"python-chess" -179005,"esprima" -179000,"efficientnet-pytorch" -178956,"mo-dots" -178925,"mcap" -178851,"mo-imports" -178793,"trcli" -178655,"torch-fidelity" -178616,"fst-pso" -178611,"gravis" -178551,"pycodestyle-magic" -178521,"mypy-boto3-cloudfront" -178505,"lapx" -178447,"pytest-csv" -178400,"google-cloud-filestore" -178363,"aliyun-python-sdk-cdn" -178262,"cyksuid" -178233,"english-words" -178206,"miniful" -178065,"pdblp" -178023,"beam-nuggets" -177981,"nipype" -177964,"uvicorn-worker" -177930,"aliyun-python-sdk-cs" -177916,"visdom" -177884,"opensimplex" -177842,"aws-cdk-aws-codebuild" -177826,"feature-engine" -177647,"mypy-boto3-location" -177583,"python-redmine" -177568,"yagmail" -177558,"zmq" -177502,"types-docopt" -177490,"fuzzysearch" -177432,"pyro4" -177431,"unicodedata2" -177405,"awsiotpythonsdk" -177399,"binpacking" -177397,"jinja2-ansible-filters" -177316,"celery-types" -177314,"genshi" -177223,"pyuegc" -177222,"flet-core" -177146,"pypi-simple" -177139,"marrow-interface" -177039,"dbnd" -177003,"json-schema-for-humans" -176954,"pyvo" -176909,"untangle" -176693,"json2xml" -176592,"plum-dispatch" -176526,"azure-mgmt-automation" -176488,"xlwings" -176478,"bioframe" -176436,"docspec" -176387,"stringparser" -176369,"workadays" -176340,"mailchimp3" -176271,"ciscoconfparse" -176271,"pydantic-factories" -176202,"mypy-boto3-servicecatalog" -176043,"guppy3" -175956,"torchcrepe" -175869,"aws-cdk-aws-route53-targets" -175863,"django-sortedm2m" -175823,"jmp" -175815,"inotify-simple" -175798,"mypy-boto3-mwaa" -175787,"art" -175710,"dramatiq" -175601,"tree-sitter-languages" -175396,"tf-nightly" -175378,"tf-keras-nightly" -175364,"jinxed" -175360,"poethepoet" -175116,"opendatalab" -175058,"jschon" -175052,"aws-cdk-aws-codecommit" -174983,"telepath" -174792,"aws-cdk-aws-servicediscovery" -174758,"pytest-testrail" -174689,"nr-stream" -174584,"nbsphinx-link" -174495,"mypy-boto3-transcribe" -174473,"pyxll" -174443,"pysparkip" -174349,"pretty-errors" -174314,"nvidia-nvcomp-cu12" -174264,"circus" -174176,"pycoingecko" -174100,"tox-uv" -173979,"flake8-functions" -173972,"antsibull-changelog" -173776,"mypy-boto3-resourcegroupstaggingapi" -173772,"mmdet" -173743,"typeapi" -173707,"cysignals" -173700,"cloudfoundry-client" -173642,"prefect-snowflake" -173590,"py-dateutil" -173577,"missingno" -173421,"bigquery" -173272,"nr-date" -173239,"setuptools-odoo" -173194,"types-bleach" -173127,"google-cloud-appengine-admin" -172945,"wheel-filename" -172924,"aws-cdk-aws-dynamodb" -172922,"aws-cdk-aws-acmpca" -172700,"nr-util" -172635,"lazy-model" -172567,"langchain-ollama" -172438,"sqlalchemy-cockroachdb" -172417,"maya" -172150,"mypy-boto3-quicksight" -172083,"ansicon" -172077,"mypy-boto3-scheduler" -172070,"beanie" -172027,"betamax" -171916,"nbmake" -171883,"cloud-tpu-client" -171766,"mypy-boto3-translate" -171681,"powerlaw" -171567,"apify-client" -171541,"mypy-boto3-iot-data" -171494,"jsonalias" -171472,"flake8-noqa" -171419,"snowflake-ingest" -171249,"hl7" -171192,"ubelt" -171143,"mdformat-tables" -171005,"nbtlib" -170982,"pymatching" -170948,"mujoco" -170944,"mailchecker" -170868,"gcloud-rest-auth" -170762,"pyramid-debugtoolbar" -170710,"mlflow-watsonml" -170633,"cachey" -170570,"pytest-tinybird" -170523,"pygtail" -170438,"coralogix-logger" -170426,"vt-py" -170387,"aiotask-context" -170351,"onnxslim" -170255,"mypy-boto3-apigatewayv2" -170243,"oauth2-client" -170208,"chkpkg" -170148,"neatest" -170117,"vector-quantize-pytorch" -170116,"venv-pack" -170080,"robotframework-faker" -170024,"adjust-precision-for-schema" -169926,"swapper" -169809,"mode" -169807,"cdsapi" -169731,"airbyte" -169694,"healpix" -169645,"opentelemetry-instrumentation-aiohttp-server" -169473,"crispy-bootstrap4" -169472,"local-attention" -169460,"flake8-expression-complexity" -169425,"delegator" -169392,"injectool" -169182,"filechunkio" -169141,"clarifai" -169140,"django-webtest" -168966,"extra-streamlit-components" -168946,"celery-redbeat" -168907,"pyobjc-framework-applicationservices" -168858,"jwskate" -168857,"gaussiancl" -168839,"mypy-boto3-ec2-instance-connect" -168788,"mypy-boto3-pinpoint" -168787,"daiquiri" -168776,"json-logic" -168773,"prowler" -168744,"sphinxcontrib-katex" -168637,"flt" -168571,"osmnx" -168555,"mypy-boto3-kafka" -168534,"anyjson" -168378,"embedding-reader" -168324,"mr-proper" -168112,"pandavro" -168105,"pymongocrypt" -168085,"mypy-boto3-sesv2" -168055,"elevenlabs" -167970,"ledgerblue" -167882,"amazon-textract-response-parser" -167794,"sox" -167757,"repath" -167749,"vintage" -167714,"httptest" -167691,"metaflow" -167549,"chia-rs" -167477,"pyobjc-framework-coretext" -167394,"csscompressor" -167366,"casbin" -167282,"rasa" -167277,"binapy" -167096,"cloudml-hypertune" -167046,"robotframework-tidy" -166975,"pygal" -166974,"airflow-dbt" -166900,"polars-lts-cpu" -166881,"pgzip" -166873,"pysnow" -166854,"basicauth" -166837,"django-dirtyfields" -166820,"geffnet" -166819,"sphinx-reredirects" -166704,"mypy-boto3-elasticache" -166639,"websocket" -166629,"mypy-boto3-codebuild" -166626,"aerospike" -166611,"translators" -166608,"django-autoslug" -166558,"caldav" -166554,"django-migration-linter" -166481,"types-xmltodict" -166423,"eli5" -166330,"jinjanator" -166318,"jinjanator-plugins" -166145,"pyop" -166137,"general-functions" -166133,"ropwr" -166057,"html-sanitizer" -166042,"dbldatagen" -166039,"classify-imports" -165988,"posix-ipc" -165938,"pyproject-flake8" -165911,"mypy-boto3-application-autoscaling" -165887,"django-rest-knox" -165861,"safehttpx" -165851,"halp" -165799,"typer-cli" -165769,"pip-autoremove" -165630,"deepgram-sdk" -165472,"pymonet" -165414,"py-markdown-table" -165365,"jupyter-latex-envs" -165248,"pykcs11" -165157,"pandas-ta" -165156,"zlib-ng" -165155,"dagster-datadog" -164999,"aws-cdk-aws-globalaccelerator" -164937,"web-py" -164874,"target-jsonl" -164680,"kedro-viz" -164663,"janome" -164589,"pscript" -164580,"neobolt" -164498,"mypy-boto3-emr-containers" -164474,"pinterest-generated-client" -164396,"mypy-boto3-elb" -164354,"flask-bootstrap4" -164315,"pinterest-api-sdk" -164313,"robotframework-selenium2library" -164301,"urlobject" -164262,"mypy-boto3-ram" -164218,"vllm-flash-attn" -164027,"app-model" -163978,"jsonify" -163953,"rdrobust" -163923,"warlock" -163847,"dbt" -163771,"mypy-boto3-synthetics" -163770,"modal" -163726,"autofaiss" -163562,"qdarkstyle" -163514,"gradio-imageslider" -163397,"robotframework-datadriver" -163171,"mypy-boto3-codepipeline" -163087,"mypy-boto3-apigatewaymanagementapi" -162974,"recombee-api-client" -162965,"mozfile" -162926,"sphinx-inline-tabs" -162873,"salt-lint" -162707,"mypy-boto3-codeartifact" -162454,"chiavdf" -162432,"django-sslserver" -162306,"djangorestframework-dataclasses" -162269,"cvss" -162256,"cfnresponse" -162234,"mypy-boto3-acm" -162208,"visualdl" -162185,"shipyard-bp-utils" -162103,"setoptconf-tmp" -162085,"nbstripout" -162052,"flask-dance" -162023,"magicgui" -162003,"textile" -161966,"moderngl" -161950,"petastorm" -161938,"meraki" -161888,"scylla-driver" -161853,"pdftopng" -161823,"wait-for" -161771,"django-mathfilters" -161769,"crytic-compile" -161618,"cads-api-client" -161565,"google-cloud-certificate-manager" -161519,"apache-superset" -161471,"m2r2" -161272,"mypy-boto3-securityhub" -161271,"colorlover" -161270,"flake8-pep3101" -161253,"schemachange" -161233,"apache-airflow-providers-grpc" -161225,"sphinx-mdinclude" -161219,"lingua-language-detector" -161156,"zhinst-timing-models" -161138,"mypy-boto3-marketplace-entitlement" -160898,"mypy-boto3-iot" -160808,"azureml-train-automl" -160692,"imgkit" -160669,"airflow-clickhouse-plugin" -160621,"mypy-boto3-s3control" -160539,"napari" -160433,"django-cryptography" -160412,"logger" -160397,"mypy-boto3-codedeploy" -160395,"csvkit" -160390,"user-agent" -160383,"vbuild" -160360,"pymysqllock" -160313,"threadloop" -160309,"ngram" -160290,"systemd-python" -160259,"django-permissionedforms" -160259,"bidsschematools" -160200,"mypy-boto3-ebs" -160199,"hierarchicalforecast" -160164,"mypy-boto3-polly" -160130,"yaml-config" -160041,"pystoi" -159972,"mkdocs-minify-plugin" -159935,"mdformat-frontmatter" -159913,"django-grappelli" -159872,"mypy-boto3" -159737,"autowrapt" -159699,"olefileio-pl" -159686,"pytest-reportlog" -159657,"mypy-boto3-mediaconvert" -159624,"mypy-boto3-budgets" -159572,"django-admin-autocomplete-filter" -159422,"jaeger-client" -159277,"mypy-boto3-comprehend" -159274,"napari-console" -159053,"google-cloud-notebooks" -158883,"htpasswd" -158872,"progressbar33" -158833,"mypy-boto3-redshift" -158814,"mypy-boto3-timestream-write" -158796,"inference-gpu" -158780,"json-tricks" -158770,"streamlit-extras" -158675,"requests-oauth2client" -158633,"inputimeout" -158628,"googleauthentication" -158595,"hacking" -158553,"aws" -158492,"mypy-boto3-appsync" -158489,"mypy-boto3-bedrock-agent-runtime" -158477,"tensorflow-data-validation" -158477,"replicate" -158462,"apache-airflow-providers-apache-beam" -158447,"python-glanceclient" -158413,"mkdocs-exclude" -158386,"misaka" -158286,"napari-svg" -158236,"watchdog-gevent" -158219,"pyobjc-framework-systemconfiguration" -158138,"unidic" -158132,"mypy-boto3-transfer" -158125,"django-bootstrap4" -158059,"ff3" -158016,"usaddress-scourgify" -157958,"testbook" -157954,"mypy-boto3-amplify" -157948,"openvino-dev" -157936,"mypy-boto3-service-quotas" -157885,"chiapos" -157869,"mypy-boto3-opensearch" -157840,"cyclonedx-bom" -157837,"npe2" -157833,"facebook-sdk" -157793,"mypy-boto3-serverlessrepo" -157773,"databricks-test" -157760,"pyconify" -157678,"collate-sqllineage" -157660,"pyexcelerate" -157652,"mypy-boto3-dynamodbstreams" -157599,"oschmod" -157520,"findlibs" -157497,"mypy-boto3-meteringmarketplace" -157455,"mozinfo" -157442,"mypy-boto3-wafv2" -157273,"mypy-boto3-servicediscovery" -157247,"pick" -157106,"djangorestframework-gis" -157057,"certipy" -157049,"types-emoji" -157047,"astroquery" -157043,"chiabip158" -156949,"mypy-boto3-compute-optimizer" -156946,"mypy-boto3-bedrock-agent" -156901,"moz-sql-parser" -156885,"monai" -156873,"zxcvbn" -156862,"apache-airflow-providers-jira" -156854,"libvirt-python" -156837,"mypy-boto3-network-firewall" -156823,"mypy-boto3-support" -156804,"mypy-boto3-timestream-query" -156787,"mypy-boto3-sdb" -156671,"sagemaker-scikit-learn-extension" -156638,"optimizely-sdk" -156565,"mypy-boto3-sso-admin" -156466,"mypy-boto3-pricing" -156396,"gekko" -156383,"mypy-boto3-codecommit" -156296,"arxiv" -156168,"glcontext" -156145,"mypy-boto3-acm-pca" -156088,"mypy-boto3-account" -156063,"remote-pdb" -155989,"ewah-bool-utils" -155868,"pytest-unordered" -155794,"mypy-boto3-backup" -155779,"mypy-boto3-cloudsearchdomain" -155761,"randomname" -155706,"pyworld" -155699,"mypy-boto3-cloudsearch" -155498,"ete3" -155468,"roslibpy" -155448,"mypy-boto3-imagebuilder" -155434,"pamela" -155393,"fcache" -155356,"commonregex" -155265,"mypy-boto3-apprunner" -155213,"mypy-boto3-braket" -155207,"mypy-boto3-inspector2" -155169,"mypy-boto3-ecr-public" -155135,"mypy-boto3-docdb" -155093,"openai-messages-token-helper" -155033,"apify-shared" -155030,"async-asgi-testclient" -154790,"artifactory" -154717,"mssql-cli" -154712,"flake8-cognitive-complexity" -154709,"opentelemetry-instrumentation-psycopg" -154695,"requests-credssp" -154621,"mypy-boto3-directconnect" -154556,"mypy-boto3-rekognition" -154519,"mypy-boto3-shield" -154488,"pytest-md" -154470,"selectolax" -154406,"hvplot" -154399,"mypy-boto3-workspaces" -154368,"mypy-boto3-glacier" -154364,"apache-airflow-client" -154347,"mypy-boto3-forecastquery" -154255,"pytest-vcr" -154237,"mypy-boto3-machinelearning" -154227,"mypy-boto3-redshift-serverless" -154226,"mypy-boto3-health" -154212,"mypy-boto3-es" -154125,"mypy-boto3-connect" -154093,"mypy-boto3-accessanalyzer" -154060,"mypy-boto3-pinpoint-email" -153987,"hashin" -153953,"mypy-boto3-mturk" -153948,"lap" -153940,"mypy-boto3-appstream" -153916,"cmyt" -153916,"mypy-boto3-datasync" -153888,"mypy-boto3-marketplace-catalog" -153869,"gcloud-aio-pubsub" -153717,"pymel" -153692,"speedtest-cli" -153659,"mypy-boto3-sagemaker-edge" -153636,"mypy-boto3-ivschat" -153605,"ops-scenario" -153577,"mne" -153572,"mypy-boto3-workmail" -153481,"mypy-boto3-workspaces-web" -153462,"sortedcollections" -153434,"mypy-boto3-ssm-incidents" -153434,"mypy-boto3-qbusiness" -153419,"icmplib" -153404,"nfoursid" -153329,"mypy-boto3-resource-groups" -153306,"mypy-boto3-workdocs" -153294,"mypy-boto3-appconfigdata" -153284,"mypy-boto3-dlm" -153279,"mypy-boto3-wisdom" -153276,"mypy-boto3-codestar-notifications" -153268,"cupy-cuda11x" -153260,"mypy-boto3-waf-regional" -153256,"mypy-boto3-iotfleetwise" -153246,"mypy-boto3-workspaces-thin-client" -153244,"memepy" -153241,"mypy-boto3-simspaceweaver" -153232,"mypy-boto3-route53-recovery-control-config" -153216,"mypy-boto3-memorydb" -153182,"kthread" -153163,"mypy-boto3-wellarchitected" -153122,"mypy-boto3-voice-id" -153121,"mypy-boto3-qapps" -153112,"mypy-boto3-fsx" -153102,"cloudant" -153096,"mypy-boto3-cloudhsm" -153094,"mypy-boto3-workmailmessageflow" -153075,"elasticsearch5" -153061,"yt" -153058,"mypy-boto3-cognito-sync" -153054,"mypy-boto3-mediastore" -153051,"mypy-boto3-support-app" -153051,"mypy-boto3-iotwireless" -153041,"mypy-boto3-waf" -153026,"mypy-boto3-clouddirectory" -153007,"pybreaker" -152984,"mypy-boto3-mq" -152972,"mypy-boto3-iotdeviceadvisor" -152953,"mypy-boto3-sagemaker-metrics" -152951,"mypy-boto3-amp" -152949,"mypy-boto3-application-insights" -152939,"mypy-boto3-cloudcontrol" -152915,"mypy-boto3-ssm-sap" -152822,"mypy-boto3-route53resolver" -152780,"mypy-boto3-guardduty" -152767,"mypy-boto3-storagegateway" -152763,"mypy-boto3-snowball" -152747,"mypy-boto3-kinesisvideo" -152744,"pynmea2" -152739,"mypy-boto3-elasticbeanstalk" -152732,"mypy-boto3-iotevents" -152722,"drf-extra-fields" -152716,"dlib" -152715,"mypy-boto3-sagemaker-featurestore-runtime" -152711,"mypy-boto3-swf" -152709,"mypy-boto3-chime" -152709,"mypy-boto3-kinesis-video-media" -152706,"mypy-boto3-inspector" -152699,"mypy-boto3-kinesisanalyticsv2" -152686,"mypy-boto3-opensearchserverless" -152681,"mypy-boto3-migrationhubstrategy" -152670,"mypy-boto3-savingsplans" -152664,"sqloxide" -152663,"mypy-boto3-mediapackage-vod" -152658,"mypy-boto3-snow-device-management" -152658,"mypy-boto3-chime-sdk-messaging" -152646,"mypy-boto3-qldb" -152645,"mypy-boto3-verifiedpermissions" -152637,"mypy-boto3-kinesis-video-archived-media" -152619,"glpk" -152601,"mypy-boto3-amplifybackend" -152599,"mypy-boto3-osis" -152594,"mypy-boto3-chime-sdk-media-pipelines" -152576,"mypy-boto3-ds" -152573,"flask-flatpages" -152572,"mypy-boto3-cloudhsmv2" -152562,"mypy-boto3-launch-wizard" -152553,"mypy-boto3-billingconductor" -152553,"mypy-boto3-backup-gateway" -152542,"mypy-boto3-grafana" -152536,"mypy-boto3-auditmanager" -152534,"ecpy" -152524,"mypy-boto3-comprehendmedical" -152514,"mypy-boto3-networkmanager" -152512,"mypy-boto3-neptune" -152510,"mypy-boto3-chime-sdk-identity" -152507,"mypy-boto3-ssm-contacts" -152502,"mypy-boto3-mediapackage" -152497,"mypy-boto3-greengrassv2" -152492,"mypy-boto3-autoscaling-plans" -152490,"mypy-boto3-datapipeline" -152480,"mypy-boto3-sms" -152478,"mypy-boto3-sso-oidc" -152476,"mypy-boto3-databrew" -152469,"mypy-boto3-appmesh" -152464,"prefect-kubernetes" -152462,"mypy-boto3-kinesisanalytics" -152461,"mypy-boto3-amplifyuibuilder" -152458,"mypy-boto3-proton" -152427,"mypy-boto3-chime-sdk-meetings" -152421,"mypy-boto3-codeguru-reviewer" -152418,"mypy-boto3-managedblockchain" -152417,"mypy-boto3-lexv2-runtime" -152416,"mypy-boto3-devicefarm" -152415,"mypy-boto3-connectparticipant" -152407,"mypy-boto3-timestream-influxdb" -152403,"mypy-boto3-appintegrations" -152393,"mypy-boto3-elastictranscoder" -152388,"mypy-boto3-sms-voice" -152382,"pyjq" -152371,"mypy-boto3-applicationcostprofiler" -152360,"mypy-boto3-cloud9" -152357,"mypy-boto3-codestar-connections" -152339,"mypy-boto3-lookoutvision" -152336,"mypy-boto3-sagemaker-a2i-runtime" -152331,"mypy-boto3-trustedadvisor" -152307,"mypy-boto3-detective" -152304,"mypy-boto3-tnb" -152302,"mypy-boto3-groundstation" -152297,"mypy-boto3-pi" -152296,"mypy-boto3-discovery" -152293,"mypy-boto3-docdb-elastic" -152290,"mypy-boto3-keyspaces" -152288,"mypy-boto3-greengrass" -152283,"mypy-boto3-license-manager" -152277,"mypy-boto3-iotfleethub" -152275,"mypy-boto3-marketplacecommerceanalytics" -152275,"htmlmin2" -152257,"mypy-boto3-mediaconnect" -152240,"mypy-boto3-servicecatalog-appregistry" -152237,"mypy-boto3-omics" -152234,"mypy-boto3-iotsitewise" -152227,"mypy-boto3-kendra" -152202,"mypy-boto3-panorama" -152200,"mypy-boto3-lex-models" -152200,"mypy-boto3-ivs" -152196,"mypy-boto3-vpc-lattice" -152186,"mypy-boto3-pinpoint-sms-voice-v2" -152182,"mypy-boto3-lookoutequipment" -152173,"mypy-boto3-healthlake" -152171,"mypy-boto3-customer-profiles" -152169,"mypy-boto3-iotsecuretunneling" -152162,"mypy-boto3-connectcampaigns" -152161,"mypy-boto3-mgh" -152160,"mypy-boto3-devops-guru" -152151,"mypy-boto3-iot1click-devices" -152135,"mypy-boto3-rolesanywhere" -152133,"mypy-boto3-iotanalytics" -152131,"mpyc" -152115,"mypy-boto3-qldb-session" -152112,"mypy-boto3-gamelift" -152112,"mypy-boto3-forecast" -152102,"tinybird-cdk" -152100,"mypy-boto3-kafkaconnect" -152091,"mypy-boto3-supplychain" -152085,"gptcache" -152072,"mypy-boto3-cur" -152072,"mypy-boto3-evidently" -152072,"mypy-boto3-cleanroomsml" -152071,"mypy-boto3-codeguruprofiler" -152067,"mypy-boto3-connect-contact-lens" -152065,"mypy-boto3-controltower" -152063,"mypy-boto3-finspace-data" -152058,"mypy-boto3-globalaccelerator" -152057,"pyxnat" -152053,"mypy-boto3-medialive" -152047,"mypy-boto3-robomaker" -152047,"mypy-boto3-dax" -152038,"mypy-boto3-rbin" -152036,"mypy-boto3-kinesis-video-signaling" -152034,"mypy-boto3-b2bi" -152027,"mypy-boto3-iottwinmaker" -152012,"mypy-boto3-fis" -152010,"mypy-boto3-arc-zonal-shift" -152000,"mypy-boto3-elastic-inference" -151991,"mypy-boto3-personalize" -151990,"mypy-boto3-opsworks" -151983,"mypy-boto3-route53-recovery-cluster" -151982,"mypy-boto3-migrationhub-config" -151979,"mypy-boto3-mgn" -151970,"cognitive-complexity" -151966,"mypy-boto3-m2" -151950,"mypy-boto3-opsworkscm" -151949,"mypy-boto3-personalize-runtime" -151948,"mypy-boto3-mediatailor" -151947,"mypy-boto3-connectcases" -151945,"mypy-boto3-iot1click-projects" -151944,"mypy-boto3-lookoutmetrics" -151935,"mypy-boto3-lightsail" -151917,"mypy-boto3-bcm-data-exports" -151906,"mypy-boto3-rum" -151905,"mypy-boto3-resiliencehub" -151903,"mypy-boto3-migration-hub-refactor-spaces" -151892,"hiyapyco" -151873,"mypy-boto3-frauddetector" -151872,"mypy-boto3-drs" -151870,"mypy-boto3-payment-cryptography" -151864,"mypy-boto3-taxsettings" -151861,"mypy-boto3-lex-runtime" -151859,"mypy-boto3-finspace" -151842,"azure-ai-textanalytics" -151840,"mypy-boto3-migrationhuborchestrator" -151832,"mypy-boto3-cost-optimization-hub" -151817,"mypy-boto3-lexv2-models" -151816,"mypy-boto3-kendra-ranking" -151811,"mypy-boto3-cloudtrail-data" -151781,"pims" -151770,"mypy-boto3-securitylake" -151751,"mypy-boto3-outposts" -151749,"mypy-boto3-iotthingsgraph" -151735,"mypy-boto3-iot-jobs-data" -151735,"mypy-boto3-personalize-events" -151734,"mypy-boto3-importexport" -151725,"mypy-boto3-iotevents-data" -151701,"mypy-boto3-route53-recovery-readiness" -151683,"mypy-boto3-artifact" -151681,"mypy-boto3-medical-imaging" -151680,"mypy-boto3-cleanrooms" -151673,"mypy-boto3-mediastore-data" -151669,"clu" -151663,"mypy-boto3-macie2" -151660,"mypy-boto3-kinesis-video-webrtc-storage" -151657,"jc" -151647,"mypy-boto3-codecatalyst" -151634,"mypy-boto3-apptest" -151628,"mypy-boto3-license-manager-user-subscriptions" -151622,"mypy-boto3-sagemaker-geospatial" -151618,"mypy-boto3-resource-explorer-2" -151612,"mypy-boto3-fms" -151608,"mypy-boto3-privatenetworks" -151606,"mypy-boto3-eks-auth" -151605,"pyobjc-framework-coreservices" -151605,"mypy-boto3-deadline" -151597,"mypy-boto3-pipes" -151582,"mypy-boto3-pinpoint-sms-voice" -151567,"mypy-boto3-codeguru-security" -151567,"mypy-boto3-marketplace-deployment" -151551,"mypy-boto3-appfabric" -151544,"tldrwl" -151526,"mypy-boto3-payment-cryptography-data" -151476,"mypy-boto3-chatbot" -151470,"mypy-boto3-cloudfront-keyvaluestore" -151467,"mypy-boto3-codeconnections" -151467,"mypy-boto3-datazone" -151455,"mypy-boto3-qconnect" -151439,"mypy-boto3-chime-sdk-voice" -151435,"mypy-boto3-mediapackagev2" -151434,"mypy-boto3-ssm-quicksetup" -151430,"mypy-boto3-s3outposts" -151426,"mypy-boto3-freetier" -151425,"mypy-boto3-neptunedata" -151406,"mypy-boto3-marketplace-agreement" -151372,"mypy-boto3-internetmonitor" -151365,"mypy-boto3-ivs-realtime" -151363,"mypy-boto3-pca-connector-ad" -151326,"aiocontextvars" -151324,"mypy-boto3-repostspace" -151287,"mypy-boto3-route53profiles" -151268,"mypy-boto3-application-signals" -151237,"mypy-boto3-oam" -151201,"mypy-boto3-mailmanager" -151197,"pyecharts" -151190,"xdsl" -151180,"clvm-rs" -151176,"mypy-boto3-pcs" -151104,"mypy-boto3-entityresolution" -151085,"meltanolabs-target-snowflake" -151080,"mypy-boto3-inspector-scan" -151043,"mypy-boto3-license-manager-linux-subscriptions" -151026,"mypy-boto3-managedblockchain-query" -150957,"mypy-boto3-neptune-graph" -150929,"pypyr" -150900,"mypy-boto3-controlcatalog" -150758,"mypy-boto3-networkmonitor" -150723,"openmath" -150717,"represent" -150693,"mypy-boto3-pca-connector-scep" -150556,"python-markdown-math" -150430,"interpret-community" -150405,"delegator-py" -150371,"pydes" -150363,"placekey" -150261,"azureml-contrib-services" -150246,"ta" -150245,"mozprocess" -150236,"dbstream" -150131,"pydot-ng" -149977,"msg-parser" -149939,"cron-schedule-triggers" -149787,"favicon" -149770,"javalang" -149731,"azure-schemaregistry-avroencoder" -149616,"hbutils" -149582,"pycountry-convert" -149473,"pigpio" -149467,"robinhood-aiokafka" -149430,"ml-wrappers" -149420,"pilkit" -149375,"tabulator" -149362,"ufal-udpipe" -149350,"flake8-html" -149260,"faust" -149197,"airflow-dbt-python" -149170,"rpmfile" -149092,"psycopg2-pool" -149070,"mypy-boto3-nimble" -149047,"google-oauth2-tool" -148970,"pycparserext-gnuc" -148819,"django-imagekit" -148735,"sqlalchemy-continuum" -148554,"yake" -148535,"config-formatter" -148519,"hgtk" -148503,"flake8-class-attributes-order" -148395,"yaql" -148368,"openai-clip" -148286,"namedentities" -148195,"smbus2" -148190,"pytenable" -148125,"azure-functions-durable" -148043,"delorean" -147989,"datetime-quarter" -147748,"raiutils" -147697,"mlog-arithmetic-runner" -147644,"mssql-django" -147614,"dirac" -147487,"tqdm-loggable" -147430,"python-neutronclient" -147424,"yorm" -147413,"pyobjc-framework-launchservices" -147409,"python-levenshtein-wheels" -147331,"sphinx-bootstrap-theme" -147206,"jpholiday" -147179,"mysql-connector-python-rf" -146965,"xenon" -146884,"pysnyk" -146869,"python-terraform" -146858,"fsc-hdf5-io" -146835,"bands-inspect" -146802,"dukpy" -146783,"flake8-json" -146748,"tbmodels" -146642,"lpc-checksum" -146614,"python-openid" -146605,"xinspect" -146597,"nvitop" -146595,"fastapi-cache2" -146576,"django-nine" -146548,"prefect-dask" -146455,"bech32" -146451,"fmpy" -146446,"rapids-dependency-file-generator" -146418,"sagemaker-inference" -146353,"pemja" -146280,"dacktool" -146204,"mo-logs" -146149,"mo-kwargs" -146050,"pyvcd" -146010,"skorch" -145953,"dataengine" -145853,"bump-my-version" -145802,"lilcom" -145702,"args" -145512,"pretrainedmodels" -145387,"pyobjc-framework-exceptionhandling" -145362,"pytest-memray" -145248,"django-sendgrid-v5" -145143,"keyrings-cryptfile" -145031,"scikit-survival" -144905,"fs-gcsfs" -144884,"firebolt-sdk" -144802,"pyevtk" -144703,"no-manylinux" -144668,"pingouin" -144599,"pygltflib" -144593,"sparkdantic" -144582,"jeedomdaemon" -144534,"prometheus-async" -144483,"py3dmol" -144481,"multiprocessing-logging" -144405,"usd-core" -144272,"pytest-helpers-namespace" -144211,"mdformat-gfm" -144184,"trie" -144181,"django-crontab" -144156,"pytest-docker-tools" -144154,"git-pylint-commit-hook" -144076,"exifread" -144058,"easydev" -144010,"airflow-provider-great-expectations" -143990,"handpick" -143922,"types-aiobotocore-elbv2" -143759,"flake8-tuple" -143560,"pytrie" -143532,"httpx-auth" -143531,"google-api-python-client-stubs" -143525,"pangres" -143502,"teradata" -143465,"dagster-celery" -143422,"compress-pickle" -143389,"scann" -143308,"dgl" -143288,"dagster-celery-k8s" -143284,"lhotse" -143273,"datetimerange" -143166,"plotbin" -143110,"pygrok" -143088,"neo4j-driver" -143008,"pyobjc-framework-coreaudio" -143001,"ocviapy" -142948,"pyscreenshot" -142945,"wordninja" -142905,"preggy" -142811,"hatch-nodejs-version" -142807,"loess" -142782,"objectpath" -142681,"setfit" -142423,"pyobjc-framework-cfnetwork" -142284,"grafana-client" -142241,"bids-validator" -142210,"dynamicprompts" -142194,"picu" -142143,"pybids" -142094,"pyobjc-framework-automator" -142086,"dh-utils" -142077,"munidata" -142074,"fast-query-parsers" -141969,"widdy" -141910,"djangosaml2" -141891,"voluptuous-serialize" -141788,"clip-anytorch" -141779,"pycocoevalcap" -141768,"antsibull-docs-parser" -141753,"types-dateparser" -141683,"zi-api-auth-client" -141597,"rocksdict" -141594,"razorpay" -141564,"aws-opentelemetry-distro" -141531,"pyobjc-framework-addressbook" -141515,"fuzzyfinder" -141506,"print-color" -141408,"pyautogen" -141390,"sagemaker-experiments" -141343,"pyedbglib" -141337,"tinynetrc" -141295,"pymcuprog" -141295,"pyexcel-xlsx" -141276,"pytest-reporter" -141256,"setoptconf" -141235,"requests-ratelimiter" -141181,"ecmwflibs" -141112,"bamboolib" -141090,"emojis" -141072,"mkdocs-literate-nav" -141002,"ics" -140924,"python-lzf" -140904,"pyobjc-framework-diskarbitration" -140904,"promptflow" -140847,"geojson-pydantic" -140826,"scanpy" -140809,"workos" -140743,"email" -140618,"lorem-text" -140568,"libsast" -140566,"spaces" -140550,"pycdlib" -140517,"mitmproxy-rs" -140468,"cx-freeze" -140366,"pyobjc-framework-osakit" -140291,"django-elasticsearch-dsl-drf" -140278,"laspy" -140244,"mip" -140166,"numpyro" -140154,"flask-cloudflared" -140031,"parquet-metadata" -139948,"htbuilder" -139807,"rbx" -139787,"rawpy" -139674,"pyramid-mako" -139653,"apache-flink" -139604,"humanreadable" -139595,"flask-cognito-lib" -139527,"mkdocs-section-index" -139522,"swimbundle-utils" -139446,"hl7apy" -139386,"captcha" -139377,"django-admin-interface" -139348,"pygelf" -139339,"quandl" -139338,"fastexcel" -139273,"pyobjc-framework-fsevents" -139167,"requests-gssapi" -139132,"pyobjc-framework-applescriptkit" -139116,"sphinxcontrib-confluencebuilder" -138958,"spacy-alignments" -138936,"dagster-gcp" -138877,"pytest-shard" -138812,"mozterm" -138762,"multiping" -138758,"deep-merge" -138749,"ipython-autotime" -138688,"okta-jwt-verifier" -138669,"pylint-pytest" -138451,"sklearn-pandas" -138434,"hug" -138428,"pyobjc-framework-libdispatch" -138363,"locustio" -138361,"acachecontrol" -138321,"esp-coredump" -138204,"www-authenticate" -138016,"django-bulk-update" -137940,"inscriptis" -137868,"throttler" -137849,"slack-webhook" -137827,"boilerpy3" -137795,"cogapp" -137732,"mergepythonclient" -137724,"pyuca" -137671,"pytest-logger" -137647,"pyobjc-framework-coredata" -137644,"python3-ldap" -137626,"encodec" -137441,"python-louvain" -137424,"crewai-tools" -137296,"pyobjc-framework-latentsemanticmapping" -137244,"recordclass" -137229,"pixelmatch" -137196,"pyobjc-framework-preferencepanes" -137174,"pyobjc-framework-installerplugins" -137173,"postgres" -137154,"pyartifactory" -137144,"protoc-gen-validate" -137111,"pdoc3" -137090,"twython" -137021,"pyobjc-framework-discrecording" -136914,"pyobjc-framework-coreaudiokit" -136851,"dagster-snowflake" -136817,"wemake-python-styleguide" -136705,"pypi" -136701,"control" -136699,"autodoc-pydantic" -136668,"xxtea" -136632,"objectory" -136563,"pyobjc-framework-discrecordingui" -136555,"pylint-exit" -136493,"pyobjc-framework-dvdplayback" -136465,"intake" -136413,"apache-airflow-providers-apache-livy" -136362,"pyobjc-framework-corebluetooth" -136331,"pygitguardian" -136313,"mmhash2" -136219,"pybind11-global" -136140,"face-recognition" -136089,"meshtastic" -136033,"types-aiobotocore-route53" -135970,"pyeapi" -135940,"sphinxcontrib-spelling" -135924,"gcloud-aio-datastore" -135829,"mrcfile" -135722,"syllapy" -135708,"loadimg" -135658,"async-interrupt" -135621,"pynliner" -135618,"flask-bootstrap" -135537,"cypari2" -135502,"pyobjc-framework-security" -135457,"types-aiobotocore-acm" -135456,"symspellpy" -135439,"django-rest-auth" -135430,"st-annotated-text" -135422,"types-orjson" -135398,"pyunpack" -135303,"flake8-literal" -135152,"ezdxf" -135109,"pdf2docx" -135073,"pymunk" -134922,"pytest-reraise" -134892,"aws-cdk-aws-redshift-alpha" -134874,"pyscipopt" -134871,"bluetooth-adapters" -134855,"streamlit-image-coordinates" -134854,"atomicwrites-homeassistant" -134816,"dewloosh-core" -134789,"pyobjc-framework-webkit" -134763,"netapp-ontap" -134682,"python-statemachine" -134634,"interrogate" -134621,"libpysal" -134606,"spark-expectations" -134605,"purecloudplatformclientv2" -134602,"azure-cognitiveservices-vision-computervision" -134600,"columnar" -134596,"smartypants" -134545,"runstats" -134426,"pyobjc-framework-coremedia" -134426,"nvidia-cuda-nvcc-cu12" -134420,"streamlit-card" -134367,"colour-science" -134281,"llamaindex-py-client" -134256,"robotframework-debuglibrary" -134155,"cirq-core" -134142,"lion-pytorch" -134138,"flake8-pytest-style" -134122,"google-oauth" -134006,"flake8-fixme" -134003,"fairseq" -133934,"wells" -133927,"placebo" -133888,"types-lxml" -133852,"langkit" -133835,"mxnet-mkl" -133824,"flask-principal" -133730,"synchronicity" -133655,"langchain-mistralai" -133573,"py-evm" -133535,"telegraph" -133503,"types-aiobotocore-iam" -133425,"pykerberos" -133422,"dbus-python" -133350,"pystrict" -133347,"mcap-protobuf-support" -133327,"japanize-matplotlib" -133146,"promptflow-azure" -133117,"salesforce-api" -133064,"pyjavaproperties3" -132883,"flask-mongoengine" -132777,"oras" -132761,"zappa" -132732,"pyfaidx" -132729,"pytorch-ranger" -132701,"trogon" -132522,"lookml" -132516,"packaging-legacy" -132515,"rich-rst" -132512,"initools" -132469,"python-liquid" -132433,"python-tools-scripts" -132159,"x-transformers" -132064,"bqplot" -131993,"duet" -131985,"tensorrt" -131807,"redlock-py" -131803,"qulacs" -131778,"pytdigest" -131739,"hypothesis-jsonschema" -131713,"drug-named-entity-recognition" -131657,"sphinx-markdown-builder" -131627,"bolton-clack" -131610,"dewloosh-math" -131589,"pyobjc-framework-avfoundation" -131580,"dynamic-yaml" -131577,"dagster-docker" -131572,"progiter" -131558,"scriptconfig" -131534,"fastnumbers" -131527,"whylabs-textstat" -131516,"edk2-pytool-library" -131497,"pysqlite3" -131482,"mailchimp-transactional" -131471,"pyobjc-framework-screensaver" -131236,"pyobjc-framework-syncservices" -131224,"bolton-eris" -131218,"bolton-metaman" -131210,"bolton-typist" -131202,"bolton-ion" -131145,"ursina" -131092,"selenium-stealth" -131066,"together" -131046,"ulid-transform" -131041,"pyobjc-framework-searchkit" -130978,"markdownlit" -130936,"proto-google-cloud-datastore-v1" -130905,"awslogs" -130867,"business-duration" -130825,"ascvd" -130752,"bertopic" -130715,"pycld2" -130711,"aspy-yaml" -130700,"bolton-logrus" -130687,"gcloud-rest-datastore" -130645,"pyobjc-framework-coreml" -130621,"airflow-provider-hightouch" -130607,"flock" -130555,"streamlit-toggle-switch" -130465,"ssh2-python" -130458,"pyobjc-framework-colorsync" -130432,"magodo" -130317,"flake8-no-implicit-concat" -130285,"patchwork" -130278,"wxpython" -130207,"neo" -130164,"ftputil" -130149,"pyobjc-framework-servicemanagement" -130093,"potoroo" -130087,"lumigo-opentelemetry" -130077,"vprof" -130029,"cloudsmith-cli" -129930,"git-filter-repo" -129901,"langchain-postgres" -129825,"flake8-blind-except" -129811,"sample-helper-aws-appconfig" -129804,"ipyanchorviz" -129654,"dewloosh" -129627,"dewloosh-geom" -129413,"gamma-pytools" -129404,"asciichartpy" -129294,"pyobjc-framework-corewlan" -129278,"apache-airflow-providers-hashicorp" -129271,"brainstem" -129267,"os-sys" -129261,"azureml-designer-serving" -129258,"bleak-retry-connector" -129256,"flexmock" -129209,"pyobjc-framework-eventkit" -129150,"zhinst-core" -129116,"pyobjc-framework-accounts" -129111,"pybboxes" -129085,"py-sr25519-bindings" -129037,"pyannotating" -129011,"aiortc" -128918,"pyobjc-framework-dictionaryservices" -128879,"django-annoying" -128852,"molotov" -128795,"pyobjc-framework-netfs" -128792,"streamlit-faker" -128790,"pyobjc-framework-instantmessage" -128784,"pymobiledetect" -128780,"pep562" -128770,"pyobjc-framework-coremediaio" -128763,"chainer" -128741,"pystac-client" -128740,"pyobjc-framework-avkit" -128737,"pyobjc-framework-notificationcenter" -128698,"pyobjc-framework-multipeerconnectivity" -128687,"django-cte" -128673,"opencensus-ext-flask" -128658,"django-cacheops" -128633,"cbitstruct" -128629,"moment" -128621,"ipython-sql" -128610,"pyobjc-framework-findersync" -128610,"openseespy" -128585,"pinocchio" -128579,"streamlit-camera-input-live" -128556,"gcloud-rest-bigquery" -128540,"click-aliases" -128514,"ronkyuu" -128509,"stdiomask" -128492,"python-magic-bin" -128408,"django-dotenv" -128408,"fastnlp" -128386,"fitz" -128378,"pyobjc-framework-network" -128359,"frida-tools" -128352,"django-admin-list-filter-dropdown" -128346,"pydantic-openapi-schema" -128320,"pyobjc-framework-naturallanguage" -128265,"streamlit-embedcode" -128242,"sklearndf" -128216,"starlite" -128171,"css-inline" -128149,"pytest-flakefinder" -127967,"pansi" -127929,"torch-optimizer" -127816,"pyobjc-framework-spritekit" -127804,"gcloud-aio-taskqueue" -127783,"final-class" -127658,"bolton-proctor" -127657,"pyutilib" -127613,"vimala" -127605,"uri" -127583,"django-ordered-model" -127580,"broadbean" -127579,"darts" -127568,"pystaticconfiguration" -127524,"streamlit-vertical-slider" -127464,"axe-selenium-python" -127389,"qcodes" -127366,"pyobjc-framework-securityfoundation" -127364,"proselint" -127347,"drgn" -127326,"unidic-lite" -127290,"appier" -127182,"pyobjc-framework-applescriptobjc" -127152,"sdcclient" -127097,"ptable" -127090,"great-tables" -127080,"tuspy" -127067,"pyobjc-framework-securityinterface" -127024,"pyobjc-framework-vision" -127009,"pyobjc-framework-corelocation" -126993,"cardboardlint" -126987,"threaded" -126941,"django-rest-passwordreset" -126784,"llama-index-embeddings-huggingface" -126675,"distogram" -126557,"aws-cdk-aws-batch" -126554,"pyobjc-framework-scriptingbridge" -126526,"pyobjc-framework-localauthentication" -126502,"singlestoredb" -126489,"gherkin-official" -126379,"pypcd4" -126373,"pydantic-avro" -126355,"gcloud-rest-taskqueue" -126329,"uptime" -126275,"ophyd" -126043,"ipyleaflet" -125922,"pyobjc-framework-contacts" -125917,"pyobjc-framework-photos" -125866,"lazr-uri" -125856,"pymavlink" -125740,"pyobjc-framework-opendirectory" -125667,"c7n-mailer" -125605,"snakebite-py3" -125603,"dbt-artifacts-parser" -125494,"emails" -125490,"filehash" -125422,"meilisearch" -125382,"python-mecab-ko" -125349,"arelle-release" -125198,"pyobjc-framework-social" -125179,"ldap" -125176,"pyobjc-framework-inputmethodkit" -125136,"html-to-json" -125109,"pyobjc-framework-imagecapturecore" -125029,"pyobjc-framework-gamekit" -125011,"pyobjc-framework-gamecenter" -124999,"pyobjc-framework-storekit" -124982,"pyobjc-framework-cryptotokenkit" -124969,"pyobjc-framework-scenekit" -124964,"pyobjc-framework-gamecontroller" -124947,"flake8-use-pathlib" -124937,"pyobjc-framework-mapkit" -124914,"pyobjc-framework-contactsui" -124913,"dbf" -124901,"pyobjc-framework-iosurface" -124899,"pyobjc-framework-ituneslibrary" -124885,"pyobjc-framework-modelio" -124880,"youtube-search-python" -124879,"pyobjc-framework-collaboration" -124877,"pyobjc-framework-corespotlight" -124876,"clyent" -124866,"evo" -124859,"pyobjc-framework-mediatoolbox" -124853,"pyobjc-framework-networkextension" -124850,"pyobjc-framework-videotoolbox" -124838,"pyobjc-framework-safariservices" -124838,"pyobjc-framework-gameplaykit" -124836,"pyobjc-framework-intents" -124834,"rocketchat-api" -124816,"pyobjc-framework-photosui" -124793,"pyobjc-framework-externalaccessory" -124770,"pyobjc-framework-mediaplayer" -124755,"flake8-unused-arguments" -124752,"pyobjc-framework-medialibrary" -124744,"pyobjc-framework-cloudkit" -124711,"zip-files" -124687,"aiooui" -124682,"pyobjc-framework-mediaaccessibility" -124672,"pyobjc-framework-usernotifications" -124668,"interchange" -124656,"celluloid" -124614,"ipranger" -124533,"python-mecab-ko-dic" -124526,"databricksapi" -124502,"pyobjc-framework-calendarstore" -124460,"pyobjc-framework-businesschat" -124432,"typer-slim" -124391,"cssmin" -124357,"curtsies" -124338,"pyobjc-framework-adsupport" -124327,"apispec-oneofschema" -124270,"pyobjc-framework-videosubscriberaccount" -124227,"cacheout" -124210,"cmreshandler" -124080,"softlayer" -123951,"pretty-midi" -123915,"fuzzy" -123884,"callee" -123799,"rfc5424-logging-handler" -123774,"jupyterlab-git" -123733,"fava" -123636,"pytest-recording" -123608,"cron-validator" -123593,"types-geoip2" -123562,"sphinx-markdown-tables" -123514,"usb-devices" -123501,"unsloth" -123470,"historydict" -123456,"veracode-api-signing" -123449,"conda" -123442,"julia" -123422,"pyts" -123276,"dartsclone" -123252,"mixer" -123140,"methoddispatch" -123104,"flake8-formatter-junit-xml" -123091,"docx2pdf" -123067,"findiff" -122976,"pyjokes" -122955,"aioice" -122876,"flake8-annotations-complexity" -122849,"sanic-testing" -122835,"apache-airflow-providers-samba" -122830,"meross-iot" -122823,"mlforecast" -122797,"pyatlan" -122784,"syne-tune" -122768,"mtcnn" -122637,"ml-base" -122627,"bluesky" -122572,"pytutils" -122544,"zhinst-toolkit" -122538,"unicode-slugify" -122495,"pywebpush" -122406,"zhinst-utils" -122295,"flupy" -122250,"sauceclient" -122214,"nbqa" -122191,"pyldavis" -122172,"urnparse" -122164,"pylibsrtp" -122070,"sseclient" -122052,"django-pipeline" -121898,"django-utils-six" -121828,"django-bootstrap5" -121818,"astro-sdk-python" -121754,"loralib" -121731,"pyros-genmsg" -121726,"aioconsole" -121649,"requests-ntlm2" -121620,"streamlit-authenticator" -121616,"test-results-parser" -121464,"proxy-py" -121377,"random2" -121372,"ansimarkup" -121346,"price-parser" -121310,"onnx-graphsurgeon" -121234,"openseespylinux" -121232,"css-html-js-minify" -121226,"flask-sock" -121214,"qiskit-ibm-runtime" -121191,"pottery" -121190,"google-events" -121159,"panda3d" -121122,"llama-index-vector-stores-azureaisearch" -121037,"phonetics" -121027,"genbadge" -120917,"wiremock" -120912,"google-api" -120912,"django-pgtrigger" -120755,"dbnd-spark" -120692,"srt" -120426,"phpserialize" -120407,"oslo-policy" -120392,"crc" -120382,"openunmix" -120334,"macaddress" -120307,"flake8-pie" -120280,"highspy" -120220,"wslink" -120182,"airbyte-protocol-models-pdv2" -120158,"tach" -120056,"allpairspy" -120047,"mm" -120000,"pytest-faker" -119893,"pysnmpcrypto" -119887,"hcloud" -119845,"waiter" -119777,"pgmpy" -119756,"prodigyopt" -119753,"dvc-s3" -119719,"mixbox" -119666,"apache-flink-libraries" -119589,"whatever" -119554,"verlib2" -119541,"kerberos" -119503,"pulumi-oci" -119496,"censys" -119446,"qh3" -119413,"contextily" -119391,"case-converter" -119374,"cybox" -119164,"matrix" -119157,"napalm" -119029,"eth-bloom" -119006,"simple-slurm" -118980,"dlint" -118903,"jump-consistent-hash" -118860,"markdown-include" -118858,"argparse-manpage" -118842,"text-generation" -118823,"django-bootstrap3" -118739,"red-black-tree-mod" -118718,"dagster-azure" -118710,"airflow-code-editor" -118664,"sahi" -118643,"tts" -118557,"osprofiler" -118519,"appdirs-stubs" -118393,"stix" -118361,"fifolock" -118307,"pydivert" -118300,"django-rosetta" -118270,"json-ref-dict" -118161,"splinter" -118149,"prefect-slack" -118125,"seedir" -118027,"junit-xml-2" -117987,"pykafka" -117763,"django-activity-stream" -117697,"pytest-cpp" -117595,"xpinyin" -117553,"liccheck" -117531,"uart-devices" -117480,"tap-py" -117406,"password-strength" -117349,"dirty-equals" -117132,"can-isotp" -117123,"aws-sso-lib" -117080,"typing-validation" -117067,"amazon-textract-caller" -117048,"mcap-ros2-support" -117004,"zipcodes" -116980,"types-google-cloud-ndb" -116889,"spython" -116882,"home-assistant-bluetooth" -116801,"aiodocker" -116795,"sqlalchemy-mixins" -116781,"daal" -116694,"alembic-utils" -116661,"python-quickbooks" -116632,"memory-tempfile" -116573,"azureml" -116561,"expects" -116558,"swebench" -116538,"yalafi" -116498,"galois" -116456,"pandasai" -116410,"django-dbbackup" -116371,"financepy" -116361,"parquet" -116327,"types-pycurl" -116291,"parallel-ssh" -116283,"django-split-settings" -116221,"style" -116015,"types-typed-ast" -115941,"dagster-pagerduty" -115889,"pipe" -115881,"locust-plugins" -115857,"dm-env" -115828,"forbiddenfruit" -115722,"chainlit" -115656,"betacal" -115597,"earthengine-api" -115567,"clvm-tools-rs" -115529,"unleashclient" -115459,"ppscore" -115396,"emmet-core" -115291,"ipynbname" -115220,"deepeval" -115214,"dawg-python" -115188,"pytest-tornasync" -115176,"oslo-db" -115150,"cognite-sdk" -115111,"flex" -115064,"iso-639" -114975,"pwntools" -114926,"django-simple-captcha" -114833,"httpx-cache" -114833,"stream-zip" -114818,"b2sdk" -114813,"coqpit" -114803,"buildkite-test-collector" -114749,"maison" -114718,"python-irodsclient" -114718,"openapi-python-client" -114639,"django-safedelete" -114620,"pdfminer2" -114609,"pyrad" -114598,"sparse-dot-topn" -114483,"unlzw3" -114455,"subprocess-run" -114453,"spacy-curated-transformers" -114439,"colorhash" -114426,"tgi" -114340,"wsaccel" -114337,"subprocrunner" -114316,"django-cache-memoize" -114213,"fastembed" -114135,"pyglove" -114103,"pyepics" -114101,"clip-interrogator" -114092,"panphon" -113998,"types-enum34" -113985,"gpsoauth" -113959,"cwcwidth" -113948,"azure-communication-sms" -113911,"kiwipiepy" -113891,"subgrounds" -113865,"pyqt5-tools" -113784,"logstash-formatter" -113740,"databricks-labs-blueprint" -113734,"aiogoogle" -113734,"phx-class-registry" -113720,"oslo-messaging" -113700,"ssh-python" -113673,"mlzlog" -113628,"onnxoptimizer" -113610,"airflow-mcd" -113601,"apache-airflow-providers-presto" -113591,"pyjson5" -113517,"django-vite" -113423,"nvtx" -113391,"transparent-background" -113321,"hunspell" -113078,"nlpaug" -113020,"eciespy" -112926,"editdistpy" -112873,"llama-index-llms-ibm" -112768,"ale-py" -112651,"intel-cmplr-lib-ur" -112627,"autogluon-core" -112627,"torchlibrosa" -112567,"curated-transformers" -112494,"libarchive" -112417,"sagemaker-containers" -112415,"bloom-filter2" -112322,"ropgadget" -112242,"awkward0" -112165,"llama-index-embeddings-ibm" -111991,"flask-pydantic" -111935,"geonamescache" -111887,"dictances" -111876,"wagon" -111863,"opentracing-utils" -111858,"django-sass-processor" -111856,"k-diffusion" -111830,"uproot3" -111828,"uproot3-methods" -111700,"oslo-service" -111650,"schema-salad" -111620,"pywatchman" -111618,"django-hosts" -111567,"python-math" -111554,"opencensus-ext-stackdriver" -111524,"curated-tokenizers" -111464,"saxonche" -111428,"timg" -111412,"codacy-coverage" -111374,"getschema" -111363,"fds-sdk-utils" -111305,"squarify" -111251,"otel-extensions" -111192,"readthedocs-sphinx-ext" -111179,"st-theme" -111161,"databricks-sql" -111139,"undecorated" -111057,"sceptre" -111029,"django-haystack" -110988,"oslo-middleware" -110984,"paver" -110878,"pycron" -110827,"cwltool" -110810,"fonts" -110742,"sanic-cors" -110738,"logfury" -110696,"sqlacodegen" -110633,"python-hosts" -110517,"hubspot" -110451,"brewer2mpl" -110401,"pytest-shutil" -110345,"types-aioboto3" -110322,"xvfbwrapper" -110289,"duplocloud-client" -110284,"schedulefree" -110232,"minijinja" -110183,"skolemizer" -110164,"pyarabic" -110109,"snakes" -110104,"secweb" -110059,"simplejpeg" -110023,"rpm" -110009,"yamlfix" -109959,"types-stripe" -109922,"stestr" -109887,"cycode" -109874,"colored-traceback" -109753,"pyyml" -109640,"datapackage" -109631,"jsun" -109595,"dtw-python" -109442,"dspy-ai" -109423,"redislite" -109414,"collectfast" -109393,"setuptools-dso" -109343,"periodictable" -109328,"chomsky" -109283,"datashader" -109282,"sudachidict-full" -109263,"keyphrase-vectorizers" -109259,"yolov5" -109246,"python-vlc" -109246,"autogluon-features" -109199,"locales" -109139,"python-heatclient" -109118,"dash-auth" -109074,"click-completion" -109068,"serverlessrepo" -109068,"icu" -109063,"bullet" -109054,"pot" -109027,"types-mysqlclient" -108973,"rcon" -108925,"tap-aftership" -108917,"tap-gladly" -108900,"cpymad" -108897,"pytest-reporter-html1" -108818,"dol" -108776,"django-jsonfield" -108742,"minrpc" -108734,"luhn" -108732,"autogluon-tabular" -108732,"huggingface" -108708,"supervisely" -108599,"smartlingapisdk" -108594,"async-exit-stack" -108593,"sas7bdat" -108570,"tls-client" -108537,"django-heroku" -108439,"lumigo-core" -108310,"django-timestampable" -108260,"devpi-common" -108215,"dm-control" -108178,"owlrl" -108166,"git-url-parse" -108127,"distinctipy" -108124,"pgi" -108097,"dearpygui" -108093,"pyqt-builder" -108076,"streamlit-profiler" -107995,"sarif-tools" -107921,"datetime-truncate" -107912,"eth-tester" -107866,"fast-curator" -107863,"mrjob" -107801,"ggplot" -107799,"hive-metastore-client" -107798,"pymsalruntime" -107768,"rst2pdf" -107692,"notifications-python-client" -107663,"nassl" -107624,"reno" -107589,"nvgpu" -107530,"slugid" -107496,"asyncua" -107435,"ccimport" -107382,"ansible-pylibssh" -107373,"bpython" -107312,"alibabacloud-tea" -107309,"flake8-mutable" -107286,"py-cord" -107256,"is-disposable-email" -107215,"exrex" -107060,"gmr" -107052,"pccm" -106997,"scikit-learn-intelex" -106897,"pdfreader" -106799,"pylint-junit" -106690,"ansible-builder" -106676,"pystyle" -106651,"xdis" -106630,"daal4py" -106622,"fabric3" -106615,"pyrender" -106530,"python-consul2" -106519,"unix-ar" -106518,"pytest-insta" -106501,"google-cloud-retail" -106455,"ilock" -106451,"wtforms-validators" -106404,"awscli-plugin-s3-proxy" -106404,"koheesio" -106349,"csv23" -106279,"django-encrypted-model-fields" -106260,"libtmux" -106223,"types-jmespath" -106190,"pypugjs" -106102,"dj-stripe" -106087,"csaps" -106084,"ruamel-base" -105992,"dash-daq" -105989,"llama-index-llms-watsonx" -105977,"update" -105964,"unittest-data-provider" -105947,"ansible-vault" -105860,"vabene" -105782,"pafy" -105665,"luaparser" -105644,"pgspecial" -105501,"dctorch" -105491,"mt-940" -105470,"django-parler" -105454,"bnunicodenormalizer" -105450,"oslo-cache" -105437,"g2pkk" -105422,"ultimate-hosts-blacklist-helpers" -105410,"reretry" -105378,"flask-openapi3" -105341,"nemo-text-processing" -105279,"seeq" -105250,"persist-queue" -105200,"snaptime" -105110,"devpi-client" -104996,"pyangbind" -104935,"doublemetaphone" -104879,"tushare" -104779,"mwclient" -104713,"cqlsh" -104666,"jupyter-dash" -104574,"flake8-typing-imports" -104506,"pygtrans" -104457,"kagglehub" -104437,"zxing-cpp" -104405,"cython-bbox" -104340,"mutf8" -104298,"fds-protobuf-stach-v2" -104294,"fds-protobuf-stach" -104292,"shipyard-templates" -104286,"fds-protobuf-stach-extensions" -104270,"iterators" -104218,"flask-celery" -104192,"azure-databricks-api" -104190,"playsound" -104186,"pip-compile-multi" -104156,"flask-json" -104111,"plexapi" -104108,"keystonemiddleware" -104090,"font-roboto" -104085,"dumb-init" -104075,"rasterstats" -104063,"spark-parser" -104046,"vokativ" -104011,"google-cloud-alloydb-connector" -103943,"contexttimer" -103911,"tavily-python" -103861,"lastversion" -103815,"fds-sdk-paengine" -103763,"githubpy" -103742,"simpleparse" -103740,"django-statici18n" -103670,"fds-sdk-sparengine" -103666,"django-postgres-extra" -103485,"loky" -103467,"netutils" -103447,"djangorestframework-recursive" -103427,"strsim" -103396,"sqlalchemy-pytds" -103395,"geolib" -103369,"sshfs" -103319,"compose" -103283,"shodan" -103273,"tensorflow-ranking" -103203,"api4jenkins" -103199,"knnimpute" -103195,"pyexcel-xls" -103006,"dataframe-image" -102974,"parameters-validation" -102960,"seeq-spy" -102938,"recurrent" -102934,"mozlog" -102909,"punch-py" -102887,"2to3" -102887,"taskcluster-urls" -102814,"dagster-prometheus" -102814,"dataclasses-jsonschema" -102750,"yamlpath" -102742,"lesscpy" -102696,"torchvinecopulib" -102689,"sphinxcontrib-apidoc" -102682,"stop-words" -102676,"mindsdb-sql" -102650,"cloudscale-sdk" -102649,"zodb3" -102644,"aspy-refactor-imports" -102522,"hangul-romanize" -102493,"asdf" -102448,"neptune" -102418,"basemap" -102378,"scikit-surprise" -102372,"dynamodb-encryption-sdk" -102336,"pip-upgrader" -102274,"stytch" -102273,"django-browser-reload" -102259,"pyroma" -102257,"fastapi-users" -102256,"jupyter-leaflet" -102235,"pycln" -102218,"edge-tts" -102198,"htag" -102177,"mkdocs-include-dir-to-nav" -102111,"pytest-freezer" -102106,"pyarmor-cli-core" -102077,"flask-log-request-id" -102049,"scalecodec" -102018,"contrast-agent-lib" -101878,"htmllistparse" -101839,"google-cloud-billing" -101807,"pybind11-stubgen" -101787,"svgelements" -101783,"horovod" -101772,"pyhdfe" -101765,"opencensus-ext-threading" -101653,"lakefs-client" -101601,"sockio" -101578,"ultimate-hosts-blacklist-test-launcher" -101563,"ema-pytorch" -101500,"taskcluster" -101499,"serialio" -101484,"trufflehogregexes" -101458,"django-pandas" -101454,"ax-platform" -101439,"connio" -101383,"asyncmock" -101344,"labmaze" -101310,"alt-profanity-check" -101308,"cyvcf2" -101250,"datasetsforecast" -101211,"skyfield-data" -101144,"sphinx-external-toc" -101060,"fluids" -100995,"uuid-utils" -100970,"quantulum3" -100958,"fal-client" -100899,"aws-lambda-context" -100876,"check-wheel-contents" -100834,"compressed-tensors" -100806,"botbuilder-schema" -100803,"axiom-py" -100780,"auto-py-to-exe" -100768,"pyone" -100739,"sumologic-sdk" -100693,"fireblocks-sdk" -100670,"flake8-django" -100598,"islpy" -100598,"stream-inflate" -100440,"numpyencoder" -100403,"openvpn-status" -100389,"epitran" -100365,"codefind" -100338,"pyspelling" -100306,"tensorly" -100268,"launchpadlib" -100256,"ipyevents" -100242,"datashape" -100235,"python-facebook-api" -100201,"airportsdata" -100194,"blockdiag" -100187,"exhale" -100187,"inference-cli" -100170,"pystow" -100076,"noiseprotocol" -100014,"traceback-with-variables" -99992,"pytest-cache" -99942,"pytest-grpc" -99824,"copulas" -99814,"juju" -99801,"dsdobjects" -99682,"sinethesizer" -99581,"ahocorapy" -99543,"pypi-json" -99540,"read" -99495,"types-backports" -99426,"flask-security-too" -99409,"jsoncsv" -99386,"python-barbicanclient" -99352,"fissix" -99345,"ara" -99249,"pytest-mpl" -99209,"assemblyai" -99195,"pandas-access" -99191,"tensorrt-cu12" -99146,"unsloth-zoo" -99129,"aws-sso-util" -99113,"qualname" -99007,"pykalman" -98979,"pyro5" -98970,"deprecation-alias" -98924,"vessl" -98872,"fontawesome-markdown" -98856,"python-gdcm" -98809,"dtreeviz" -98808,"edk2-pytool-extensions" -98802,"mgzip" -98796,"pycld3" -98773,"wavefront-sdk-python" -98748,"pystemmer" -98639,"dsnparse" -98514,"google-cloud-bigquery-connection" -98406,"colcon-core" -98293,"pytest-explicit" -98286,"paramz" -98271,"oslo-metrics" -98267,"shimmy" -98173,"drf-standardized-errors" -98132,"envsubst" -98127,"cruft" -98080,"consolekit" -98075,"sceptre-cmd-resolver" -98017,"flake8-pyi" -97997,"asdf-standard" -97981,"panda3d-gltf" -97930,"asdf-transform-schemas" -97883,"oslo-upgradecheck" -97877,"flake8-colors" -97813,"sphinx-issues" -97806,"colcon-devtools" -97751,"sslyze" -97731,"kodi-addon-checker" -97731,"sceptre-file-resolver" -97723,"panda3d-simplepbr" -97710,"laces" -97695,"globus-sdk" -97646,"aesara" -97539,"dtaidistance" -97530,"bangla" -97529,"django-graphql-jwt" -97500,"pytest-cover" -97387,"poster3" -97332,"onigurumacffi" -97304,"dagster-snowflake-pandas" -97295,"hdmf" -97233,"gluonnlp" -97211,"endesive" -97200,"python-libsbml" -97198,"mda-xdrlib" -97182,"argostranslate" -97158,"mmcv" -97139,"aiojobs" -97135,"dedupe-variable-datetime" -97096,"sexpdata" -97081,"aioodbc" -97074,"gpyreg" -97074,"django-rest-polymorphic" -97068,"slackweb" -97055,"pycadf" -97011,"python-i18n" -97009,"pytest-depends" -96915,"onnx-simplifier" -96902,"pypsexec" -96887,"fancyimpute" -96863,"gruut-lang-en" -96816,"django-better-admin-arrayfield" -96804,"ultimate-hosts-blacklist-whitelist" -96789,"pytest-isort" -96775,"dash-mantine-components" -96736,"sacred" -96714,"dask-ml" -96707,"json-e" -96693,"legacy-api-wrap" -96693,"opentelemetry-instrumentation-sklearn" -96689,"habluetooth" -96650,"snakemake" -96647,"enmerkar" -96606,"pyap" -96601,"apache-airflow-providers-apache-pinot" -96588,"pyinvoke" -96571,"alibabacloud-tea-openapi" -96533,"gruut-ipa" -96517,"flair" -96477,"aiohttp-session" -96461,"functools" -96250,"lazr-restfulclient" -96249,"tensorflow-cpu-aws" -96194,"g2pk" -96142,"ucimlrepo" -96136,"flake8-import-restrictions" -96135,"django-jsonform" -96112,"botframework-connector" -96085,"bridgecrew" -96074,"hdijupyterutils" -96053,"sphinxemoji" -96012,"vat-utils" -95907,"passwordgenerator" -95903,"flask-sso" -95815,"thoth-common" -95776,"pyduktape" -95771,"pymcubes" -95724,"bagit" -95674,"pytest-tap" -95666,"pyuwsgi" -95649,"thoth-python" -95615,"django-push-notifications" -95610,"mailer" -95593,"sphinx-immaterial" -95525,"ezodf" -95515,"thoth-analyzer" -95512,"virustotal3" -95509,"urllib3-future" -95456,"ncnn" -95451,"plan-tools" -95444,"flake8-markdown" -95387,"django-rest-framework" -95345,"python-osc" -95305,"nemo-toolkit" -95295,"traceml" -95285,"recurly" -95245,"colcon-python-setup-py" -95241,"pysrt" -95183,"arize" -95072,"eql" -95045,"leval" -95025,"autovizwidget" -95010,"spacy-pkuseg" -94987,"qiskit-terra" -94960,"frappe-bench" -94950,"spyne" -94903,"colcon-test-result" -94898,"compel" -94894,"pyclean" -94834,"samsungtvws" -94826,"tkmacosx" -94789,"autogluon-common" -94784,"aws-cdk-aws-events-targets" -94761,"colcon-cmake" -94760,"colcon-ros" -94735,"polygon-geohasher" -94710,"firebase-functions" -94689,"hass-nabucasa" -94573,"django-q" -94563,"colcon-recursive-crawl" -94515,"simdkalman" -94442,"basemap-data" -94441,"mozilla-version" -94420,"colcon-library-path" -94413,"simsimd" -94410,"gidgethub" -94383,"curies" -94340,"pbkdf2" -94334,"ytmusicapi" -94310,"rapidocr-onnxruntime" -94289,"mlserver-mlflow" -94271,"kodistubs" -94165,"pyroscope-io" -94154,"stream-unzip" -94034,"epicscorelibs" -94028,"windows-curses" -93986,"colcon-common-extensions" -93977,"edx-django-utils" -93970,"clamd" -93940,"bleach-allowlist" -93938,"dbt-trino" -93868,"fold-to-ascii" -93864,"skypilot" -93858,"pyinputplus" -93837,"validated-dc" -93769,"pysimplevalidate" -93722,"sortednp" -93707,"rjieba" -93617,"dash-extensions" -93582,"enum-tools" -93551,"colcon-notification" -93541,"gruut-lang-de" -93521,"torch-stoi" -93486,"aws-cdk-aws-imagebuilder" -93462,"colcon-package-information" -93426,"colcon-powershell" -93415,"more-click" -93409,"colcon-defaults" -93400,"colcon-parallel-executor" -93395,"colcon-output" -93366,"whois" -93348,"anymarkup-core" -93347,"aristaproto" -93297,"sphinx-lint" -93289,"colcon-pkg-config" -93271,"cornice" -93249,"growthbook" -93235,"colcon-package-selection" -93215,"json-flatten" -93204,"str2bool" -93194,"colcon-metadata" -93081,"gruut-lang-es" -93008,"vici" -92969,"anymarkup" -92957,"gruut" -92934,"spconv-cu120" -92933,"pastescript" -92923,"manifestoo-core" -92916,"dash-renderer" -92874,"ttp-templates" -92849,"logtail-python" -92800,"pytrec-eval-terrier" -92784,"ebooklib" -92738,"kivy-deps-sdl2" -92622,"trainer" -92581,"iniparse" -92518,"kappa" -92512,"cgroupspy" -92503,"transformers-stream-generator" -92456,"azureml-automl-runtime" -92447,"multiurl" -92428,"docdata" -92254,"flask-opentracing" -92237,"pdqhash" -92205,"nuscenes-devkit" -92199,"pedalboard" -92146,"supermorecado" -92080,"types-filelock" -92073,"jupyter-book" -91948,"pylatex" -91875,"aqtp" -91857,"auto-gptq" -91818,"wait-for-it" -91807,"docopts" -91805,"ipyslickgrid" -91779,"elabjournal" -91745,"zhon" -91714,"niquests" -91677,"djangoql" -91670,"rigelcore" -91660,"desert" -91649,"snitun" -91626,"redmail" -91604,"proxy-tools" -91599,"pylsl" -91534,"httpsig" -91482,"fastapi-azure-auth" -91453,"colorspacious" -91407,"soundcard" -91398,"adbc-driver-manager" -91398,"django-bootstrap-form" -91377,"bluetooth-data-tools" -91359,"codecov-cli" -91354,"ipyfilechooser" -91323,"gruut-lang-fr" -91278,"abacusai" -91275,"openupgradelib" -91242,"pyflux" -91226,"vaex-core" -91224,"wassima" -91214,"iyzipay" -91211,"rigel-hpl" -91197,"notify-py" -91193,"basepair" -91179,"wikipedia-api" -91146,"iminuit" -91134,"pytest-coverage" -91118,"pulp-glue" -91105,"no-implicit-optional" -91099,"sparkpost" -91085,"cumm-cu120" -90999,"sshconf" -90925,"django-apscheduler" -90907,"bluetooth-auto-recovery" -90843,"pvxslibs" -90818,"tflite-support" -90799,"plette" -90783,"opentelemetry-exporter-gcp-monitoring" -90783,"globre" -90736,"retina-face" -90736,"azureml-train" -90604,"opensearch-logger" -90589,"instructorembedding" -90534,"pandas-redshift" -90495,"databricks-mosaic" -90438,"ps-mem" -90430,"bigtree" -90411,"graphene-file-upload" -90368,"pynwb" -90348,"pymupdf4llm" -90316,"pynmeagps" -90268,"quaternion" -90259,"selenium-screenshot" -90228,"pilgram" -90177,"packed" -90095,"aioprometheus" -90087,"nlopt" -90082,"allure-combine" -90039,"wadllib" -89995,"datadogpy" -89950,"dtale" -89933,"btsocket" -89870,"gkeepapi" -89854,"aioftp" -89836,"pygeoif" -89835,"botbuilder-core" -89815,"pgdb" -89735,"pytest-embedded" -89716,"rdflib-jsonld" -89715,"config-parser" -89660,"aider-chat" -89603,"punpy" -89564,"comet-maths" -89557,"civis" -89553,"fs-sshfs" -89531,"django-filer" -89513,"ipadic" -89447,"momepy" -89434,"django-datadog-logger" -89432,"pytorch-msssim" -89408,"pyproject-toml" -89391,"flagembedding" -89362,"stldecompose" -89312,"rtry" -89302,"pyink" -89250,"plotext" -89245,"pydateinfer" -89180,"thoth-storages" -89175,"flask-misaka" -89146,"thoth-license-solver" -89115,"datatile" -89063,"owslib" -89021,"dagster-databricks" -89015,"unicode" -88959,"retry-requests" -88892,"flake8-pydocstyle" -88855,"reacton" -88837,"sphinx-toggleprompt" -88821,"pysed" -88814,"mypy-boto3-ds-data" -88798,"substrate-interface" -88781,"ai21" -88777,"ta-lib" -88734,"transformer-smaller-training-vocab" -88733,"pubnub" -88733,"p4p" -88732,"runtests" -88700,"pycalverter" -88699,"zulip" -88678,"graphql-server-core" -88674,"sqlalchemy-utc" -88558,"jose" -88554,"homebase" -88506,"alibabacloud-tea-util" -88460,"aws-cdk-aws-fsx" -88392,"python-documentcloud" -88391,"alibabacloud-credentials" -88389,"pyctcdecode" -88372,"listcrunch" -88316,"docstr-coverage" -88141,"code-annotations" -88140,"spark-testing-base" -88105,"ydf" -88062,"odoo-test-helper" -88039,"graphframes-latest" -88028,"modelcards" -88013,"trame" -87989,"geckodriver-autoinstaller" -87980,"mypy-boto3-marketplace-reporting" -87979,"kivy-deps-angle" -87958,"df2gspread" -87942,"pytest-test-groups" -87941,"dbt-sqlserver" -87937,"pytest-describe" -87904,"pyfftw" -87900,"bioregistry" -87884,"storable" -87874,"arcgis2geojson" -87873,"typesystem" -87854,"astatine" -87803,"jhi-databricksenvironment" -87663,"pyddq" -87591,"cosmospy-protobuf" -87588,"msgpack-types" -87576,"mediate" -87561,"roster" -87557,"haystack-pydoc-tools" -87550,"ebaysdk" -87549,"kivy-deps-glew" -87526,"pandas-summary" -87525,"sphinx-thebe" -87453,"py-dmidecode" -87437,"pytest-embedded-serial" -87399,"dictknife" -87378,"asdf-astropy" -87324,"mcap-ros1-support" -87316,"types-pywin32" -87316,"tlslite-ng" -87315,"browser-cookie3" -87311,"fastremap" -87210,"pycel" -87176,"notify2" -87152,"aws-parallelcluster" -87142,"vonage" -87098,"geometry3d" -87095,"pypeln" -87090,"proxy-db" -87090,"alpinepkgs" -87078,"equinox" -87066,"alibabacloud-openapi-util" -86973,"llama-index-embeddings-bedrock" -86891,"django-types" -86855,"ghstack" -86828,"python-sonarqube-api" -86786,"asdf-coordinates-schemas" -86726,"blowfish" -86688,"django-linear-migrations" -86680,"pyplexity" -86639,"nostradamus" -86625,"rwslib" -86623,"theano" -86612,"ipydatawidgets" -86574,"openmetadata-ingestion" -86568,"dataclasses-json-speakeasy" -86509,"torchfcpe" -86489,"bumpver" -86485,"xclim" -86472,"datalab" -86460,"ctgan" -86382,"optimum-quanto" -86330,"fastapi-restful" -86262,"typos" -86176,"qbittorrent-api" -86172,"datacorecommon" -86169,"nevergrad" -86121,"nplusone" -86087,"dask-glm" -86085,"dython" -86073,"lexid" -86041,"pytest-embedded-idf" -85997,"pyspark-extension" -85988,"appdynamics" -85987,"databricks-labs-lsql" -85985,"s3urls" -85958,"vcstool" -85838,"linearmodels" -85809,"httpx-oauth" -85791,"tiktokapi" -85775,"prophecy-libs" -85760,"linetools" -85760,"awxkit" -85752,"telegram" -85655,"pan-os-python" -85577,"jh2" -85570,"urlpath" -85546,"pymantic" -85505,"dash-ag-grid" -85504,"flake8-block-comment" -85492,"grnhse-api" -85476,"pureport-python" -85467,"petname" -85464,"django-tenants" -85395,"giddy" -85393,"botframework-streaming" -85370,"sagemaker-pyspark" -85348,"bincopy" -85346,"pytest-embedded-serial-esp" -85338,"playwright-stealth" -85318,"ordered-enum" -85317,"sphinx-multitoc-numbering" -85317,"trio-chrome-devtools-protocol" -85283,"swagger-ui-py" -85251,"pylti1p3" -85251,"pyscard" -85240,"r7insight-python" -85237,"customerio" -85186,"ddddocr" -85177,"trufflehog" -85172,"amazon-textract-textractor" -85117,"flask-unittest" -85087,"siphon" -85069,"demjson" -85038,"sty" -85035,"pyinstrument-cext" -85024,"e2b" -84942,"onnx2tf" -84939,"alibabacloud-endpoint-util" -84938,"django-jinja" -84935,"skforecast" -84911,"py-bip39-bindings" -84816,"flake8-executable" -84790,"openqa-client" -84779,"flake8-picky-parentheses" -84702,"telnetlib3" -84700,"robotpy-wpiutil" -84675,"pypandoc-binary" -84665,"jdatetime" -84643,"pyad" -84642,"cwl-utils" -84599,"simhash" -84594,"schemathesis" -84552,"transformcl" -84532,"exponent-server-sdk" -84519,"promptflow-tools" -84452,"xarray-datatree" -84452,"djangorestframework-jsonapi" -84409,"py-ed25519-zebra-bindings" -84385,"python-gerrit-api" -84360,"mkdocs-git-authors-plugin" -84342,"keras-core" -84311,"face-recognition-models" -84309,"ai21-tokenizer" -84305,"shutilwhich" -84304,"edlib" -84293,"simple-tornado" -84282,"environ" -84263,"adafruit-blinka" -84249,"humbug" -84227,"mapply" -84223,"solara" -84221,"keras-cv" -84127,"sweetener" -84111,"pymqi" -84084,"datasketches" -84066,"mediapy" -84045,"pytest-redis" -84031,"django-redis-cache" -84021,"python-nmap" -84019,"logging-json" -83994,"spyder-kernels" -83940,"strawberry-graphql-django" -83936,"neologism" -83916,"python-designateclient" -83908,"pytest-embedded-qemu" -83894,"apache-airflow-providers-asana" -83888,"aws-cdk-aws-codepipeline" -83861,"json2table" -83850,"file-read-backwards" -83848,"ec2instanceconnectcli" -83840,"pytkdocs" -83840,"azdev" -83836,"reverse-geocode" -83720,"robotpy-wpimath" -83580,"django-etc" -83536,"pypg" -83468,"wslwinreg" -83396,"business-rules" -83393,"burger" -83390,"django-upgrade" -83261,"nicknames" -83250,"taskflow" -83224,"defcon" -83221,"affinegap" -83164,"openqasm3" -83154,"higlass-schema" -83137,"load-dotenv" -83127,"mparticle" -83119,"datadog-cdk-constructs-v2" -83082,"advertools" -83015,"scout-apm" -83006,"elasticecshandler" -82969,"aws-cdk-aws-kinesisfirehose-destinations-alpha" -82951,"pyscf" -82923,"hexdump" -82849,"grpcio-opentracing" -82821,"sailthru-client" -82809,"pygad" -82804,"torcheval" -82784,"requests-async" -82774,"magicalimport" -82721,"matplotlib-venn" -82712,"sure" -82675,"pyplugs" -82672,"george" -82665,"pythreejs" -82651,"pickle-mixin" -82643,"gpy" -82603,"logdna" -82558,"contentful" -82526,"markdown-strings" -82512,"ibmcloudant" -82508,"whisper-normalizer" -82495,"chemicals" -82407,"logutils" -82338,"hatch-jupyter-builder" -82338,"qutip" -82334,"azure-appconfiguration-provider" -82319,"fbscribelogger" -82311,"frontend" -82299,"servir" -82296,"idf-build-apps" -82214,"localconfig" -82206,"tryingsnake" -82064,"chromedriver-py" -82055,"chacha20poly1305-reuseable" -82054,"sphinx-jupyterbook-latex" -82022,"uwsgitop" -81970,"aws-cdk-aws-kinesisfirehose-alpha" -81914,"sng4onnx" -81825,"validate-docbr" -81798,"molecule-docker" -81765,"zhdate" -81750,"efficientnet" -81724,"mkdocs-jupyter" -81700,"mwtextextractor" -81669,"django-sequences" -81628,"bash" -81621,"multiversx-sdk-core" -81599,"drf-flex-fields" -81498,"edx-drf-extensions" -81470,"datetype" -81442,"phaxio" -81400,"interruptingcow" -81394,"onnx2torch" -81377,"eight" -81373,"jedi-language-server" -81352,"ctadirac" -81322,"pyntcore" -81277,"libipld" -81203,"xmlsig" -81188,"google-gax" -81161,"abnf" -81160,"skqulacs" -81154,"robotpy-wpinet" -81091,"aws-cdk-aws-kinesisfirehose" -81073,"numpy-stl" -81059,"xminds" -81031,"pydeps" -80978,"ffmpegio" -80917,"pythonpsi" -80915,"cronex" -80907,"wpilib" -80894,"alibabacloud-gateway-spi" -80875,"ffmpegio-core" -80831,"sphinx-comments" -80825,"import-ipynb" -80785,"sdnotify" -80784,"robotpy-cli" -80761,"spur" -80734,"hyperleaup" -80709,"akshare" -80702,"py-healthcheck" -80700,"couchdb" -80688,"sarge" -80666,"psd-tools" -80663,"photutils" -80629,"inform" -80625,"eip712" -80617,"cufflinks" -80614,"zope-index" -80599,"pytest-emoji" -80595,"jarowinkler" -80591,"kiwipiepy-model" -80576,"toolium" -80505,"pytubefix" -80460,"ahrs" -80451,"pyrofork" -80439,"mscerts" -80355,"atproto" -80308,"mitogen" -80282,"robotpy-hal" -80232,"pyshortcuts" -80205,"htmltools" -80198,"b2" -80180,"requests-auth" -80139,"pyrsmq" -80074,"aggdraw" -80044,"google-colab-shell" -80026,"pykd" -80022,"alibabacloud-tea-xml" -80005,"python-dxf" -79992,"github-action-utils" -79954,"py-securestring" -79947,"identity" -79940,"opencensus-ext-sqlalchemy" -79934,"ical" -79908,"webdavclient3" -79872,"apache-airflow-providers-apache-cassandra" -79858,"flask-api" -79852,"vk-api" -79771,"ascii-magic" -79680,"asn1ate" -79673,"pytest-pretty" -79655,"iden" -79629,"multiline-log-formatter" -79612,"fontawesomefree" -79589,"pycuda" -79564,"pynini" -79554,"tf-agents" -79550,"ipinfo" -79528,"minify-html" -79481,"automaton" -79422,"deptry" -79390,"public" -79378,"edx-rest-api-client" -79371,"sagemaker-feature-store-pyspark" -79331,"butterfree" -79243,"fslpy" -79228,"scrapingbee" -79228,"aplr" -79218,"iterfzf" -79218,"adafruit-pureio" -79215,"ocrmypdf" -79191,"farm-haystack" -79179,"httplib2shim" -79162,"daemonize" -79160,"kiss-headers" -79115,"hype-html" -79088,"thermo" -79075,"mozdebug" -79031,"pytest-json" -78947,"generic-etl" -78932,"prefect-azure" -78846,"expiring-dict" -78841,"clize" -78837,"pylibiio" -78835,"trame-client" -78821,"django-deprecate-fields" -78807,"rasa-sdk" -78779,"pyasn" -78771,"normality" -78763,"pulumi-kubernetes" -78759,"caproto" -78743,"fhirclient" -78723,"musicbrainzngs" -78719,"http-ece" -78707,"cdktf" -78662,"pytest-timeouts" -78655,"magika" -78566,"asv" -78562,"wkhtmltopdf" -78560,"azure-storage-logging" -78558,"baby-steps" -78532,"odo" -78528,"django-tailwind" -78513,"pybigquery" -78476,"esda" -78475,"einx" -78431,"argparse-logging" -78419,"aiocsv" -78404,"mteb" -78400,"dashscope" -78366,"spyder" -78329,"unfoldnd" -78315,"py115j" -78296,"pyshacl" -78282,"sqlmesh" -78250,"pglast" -78247,"vininfo" -78167,"pecan" -78158,"django-cachalot" -78087,"nose-xunitmp" -78071,"pgcli" -78059,"plantuml" -78041,"aws-cdk-aws-s3-notifications" -78030,"django-add-default-value" -77976,"pybufrkit" -77973,"tarsafe" -77950,"pyrfc" -77947,"huey" -77945,"metpy" -77908,"jsonable" -77898,"heroku3" -77878,"blaze" -77858,"autogluon" -77847,"session-info" -77832,"dbt-exasol" -77825,"filigran-sseclient" -77813,"sdmetrics" -77797,"pytest-harvest" -77792,"ttach" -77712,"color-matcher" -77710,"pymonetdb" -77639,"dbutils-typehint" -77621,"vosk" -77614,"swiftsimio" -77613,"streamlit-option-menu" -77610,"autogluon-timeseries" -77514,"spacy-lookups-data" -77508,"seqio" -77418,"sigmatools" -77413,"csv2md" -77405,"pcapy-ng" -77400,"django-guid" -77308,"reg" -77282,"mkdocstrings-python-legacy" -77273,"semantic-link-sempy" -77256,"pytorch-revgrad" -77209,"properties" -77189,"velociraptor" -77160,"django-staff-sso-client" -77079,"pymorphy2" -77045,"voila" -77008,"hier-config" -76998,"py-vapid" -76990,"pip-review" -76894,"colcon-bash" -76889,"argparse2" -76885,"tox-gh" -76882,"apache-airflow-providers-cloudant" -76846,"od" -76801,"colcon-cd" -76753,"django-ckeditor-5" -76728,"lunr" -76719,"rlpycairo" -76675,"ovh" -76628,"google-cloud-quotas" -76581,"kerchunk" -76581,"mwtypes" -76560,"fastapi-sso" -76534,"uptrace" -76484,"piecewise-regression" -76482,"colcon-zsh" -76474,"hypothesis-graphql" -76449,"enforce-typing" -76449,"aiohttp-middlewares" -76373,"jupyter-telemetry" -76344,"sib-api-v3-sdk" -76254,"optimum-neuron" -76216,"mpire" -76121,"saucebindings" -76092,"instaloader" -76078,"chart-studio" -76042,"deepecho" -76037,"django-log-formatter-asim" -76027,"dbt-copilot-python" -76011,"ofxparse" -75966,"nestedtext" -75962,"devicetree" -75938,"bigdl-nano" -75864,"laboratory" -75851,"pyastronomy" -75813,"keystone-engine" -75803,"mcrcon" -75800,"tonyg-rfc3339" -75799,"etcd3" -75783,"conda-pack" -75782,"flask-paginate" -75763,"morfessor" -75762,"typesense" -75745,"interpret" -75723,"dependencies" -75680,"pigar" -75673,"pypmml" -75673,"pypac" -75668,"findimports" -75626,"pysolar" -75596,"pytils" -75577,"gen-wrappers" -75577,"nptdms" -75539,"asv-runner" -75503,"mode-streaming" -75477,"confusable-homoglyphs" -75424,"mlpiper" -75409,"adafruit-circuitpython-busdevice" -75391,"sphinxcontrib-openapi" -75302,"jenkspy" -75291,"flask-authz" -75285,"pbs4py" -75265,"database-sanitizer" -75256,"sqlalchemy-dremio" -75246,"geotext" -75230,"foca" -75175,"requests-negotiate-sspi" -75168,"flup" -75135,"panda" -75115,"sift" -75099,"descript-audio-codec" -75084,"libhoney" -75058,"autogluon-multimodal" -75025,"pysodium" -75017,"django-cms" -75013,"pyjanitor" -74999,"fastapi-slim" -74992,"pymediainfo-pyrofork" -74956,"arcgis" -74940,"colcon-argcomplete" -74927,"sanic-jwt" -74922,"pysigma" -74882,"grin" -74873,"blurb" -74839,"pure-python-adb" -74822,"pyion2json" -74821,"flox" -74819,"onnxruntime-extensions" -74757,"texterrors" -74710,"pysnowflake" -74682,"peewee-migrate" -74639,"py-expression-eval" -74633,"tacacs-plus" -74624,"depinfo" -74617,"tooz" -74612,"disposable-email-domains" -74611,"pynetdicom" -74608,"asset" -74555,"qtawesome" -74533,"kaldi-python-io" -74518,"redo" -74499,"apache-airflow-providers-telegram" -74488,"pydoop" -74434,"fauxfactory" -74424,"scikit-posthocs" -74406,"snakemake-interface-common" -74389,"appdynamics-proxysupport-linux-x64" -74388,"keyrings-envvars" -74368,"redfish" -74364,"typer-config" -74353,"bag" -74328,"ansible-tower-cli" -74303,"dynamo-json" -74289,"flask-shell-ipython" -74254,"pvfactors" -74157,"azure-ai-contentsafety" -74139,"dom-toml" -74138,"fastapi-jwt-auth" -74128,"streamlit-cookies-controller" -74021,"snakemake-interface-storage-plugins" -73998,"flask-graphql" -73995,"oauthenticator" -73993,"edx-toggles" -73990,"swiglpk" -73919,"django-permissions-policy" -73904,"django-cache-url" -73871,"pyspc" -73810,"adafruit-platformdetect" -73799,"django-slack" -73785,"gpio" -73772,"edx-lint" -73769,"runpod" -73731,"pytiled-parser" -73726,"fsc-export" -73715,"slackbot" -73691,"domino-code-assist" -73685,"click-pathlib" -73685,"tidyexc" -73675,"asyncgui" -73665,"adafruit-circuitpython-typing" -73651,"gower" -73615,"compas" -73608,"mailosaur" -73587,"oslo-reports" -73586,"parametrize-from-file" -73544,"avro-validator" -73528,"solace-pubsubplus" -73518,"pyxlsx" -73488,"flake8-breakpoint" -73477,"django-weasyprint" -73473,"djangocms-admin-style" -73469,"crc16" -73469,"hdrhistogram" -73466,"symmetry-representation" -73459,"giving" -73449,"testinfra" -73433,"pdm-pep517" -73409,"numbagg" -73375,"demoji" -73367,"django-multi-email-field" -73363,"simpledbf" -73279,"django-ranged-response" -73266,"django-cprofile-middleware" -73226,"django-fernet-fields-v2" -73200,"mudata" -73193,"unihandecode" -73189,"py-manga" -73185,"pysmartdl" -73170,"asciimatics" -73159,"tensorflow-model-analysis" -73152,"ixnetwork-restpy" -73127,"xraylib" -73116,"niltype" -73096,"azure-cli-diff-tool" -73087,"gpt4all" -73085,"google-cloud-alloydb" -73075,"qpsolvers" -73074,"cobra" -73058,"data-prep-toolkit" -73034,"pythtb" -73002,"types-typing-extensions" -72994,"py-algorand-sdk" -72988,"unavailable-object" -72983,"airtable" -72975,"pylbfgs" -72926,"pyarrowfs-adlgen2" -72817,"databricks-automl-runtime" -72778,"dataclass-csv" -72744,"markyp" -72741,"cwl-upgrader" -72737,"g4f" -72735,"diff-pdf-visually" -72699,"django-enumfields" -72646,"google-cloud-bigquery-datapolicies" -72643,"nvidia-stub" -72627,"pyhacrf-datamade" -72621,"openedx-events" -72591,"aws-cdk-aws-batch-alpha" -72589,"jujubundlelib" -72583,"wechaty-puppet" -72564,"markyp-html" -72528,"pyadi-iio" -72486,"theblues" -72477,"pyclamd" +1524424909,"boto3" +723535841,"botocore" +669567184,"urllib3" +572923467,"setuptools" +569832883,"requests" +522318360,"certifi" +516338990,"charset-normalizer" +515119853,"idna" +493933210,"packaging" +479733428,"typing-extensions" +458419757,"python-dateutil" +451882547,"aiobotocore" +425799712,"s3transfer" +419156985,"grpcio-status" +382543314,"pyyaml" +378342158,"six" +361788085,"fsspec" +353134683,"s3fs" +340373155,"numpy" +333074719,"pip" +311939810,"wheel" +310137004,"cryptography" +299348525,"awscli" +298527556,"pydantic" +278794136,"cffi" +275222126,"attrs" +269837676,"pycparser" +268367132,"google-api-core" +268260875,"pandas" +266927491,"importlib-metadata" +257555136,"jmespath" +254429455,"click" +251781720,"rsa" +249463990,"zipp" +247839989,"pyasn1" +244790382,"markupsafe" +238473266,"pytz" +234603693,"colorama" +234415433,"protobuf" +228326164,"platformdirs" +227628315,"jinja2" +214090196,"rich" +212915063,"tomli" +201707527,"pytest" +200416540,"pydantic-core" +198459247,"pluggy" +196360067,"pyjwt" +189917017,"aiohttp" +187429396,"jsonschema" +180062563,"googleapis-common-protos" +179523222,"virtualenv" +177681715,"cachetools" +175851653,"google-auth" +174153899,"filelock" +171421039,"wrapt" +165772817,"sqlalchemy" +164291449,"docutils" +159246171,"pyasn1-modules" +157870770,"pyarrow" +155577216,"iniconfig" +153638766,"pygments" +153394963,"greenlet" +147174513,"yarl" +145309334,"annotated-types" +144887397,"psutil" +144152744,"requests-oauthlib" +143438146,"tzdata" +141314490,"exceptiongroup" +141265541,"multidict" +140379403,"pyparsing" +140208074,"requests-toolbelt" +137583397,"soupsieve" +136834028,"werkzeug" +134573380,"oauthlib" +134243722,"beautifulsoup4" +132830533,"frozenlist" +129453026,"more-itertools" +126327213,"tomlkit" +125159075,"distlib" +124856059,"aiosignal" +124601669,"grpcio" +122873563,"scipy" +122312044,"tqdm" +122231218,"pathspec" +119938931,"async-timeout" +119917665,"pillow" +119782099,"isodate" +118381743,"decorator" +118155766,"anyio" +115469601,"deprecated" +114272063,"sniffio" +112360325,"sortedcontainers" +111962076,"httpx" +111499110,"markdown-it-py" +110197498,"coverage" +109718928,"pyopenssl" +109086054,"openpyxl" +108872239,"mypy-extensions" +108529087,"et-xmlfile" +108403579,"rpds-py" +107723005,"h11" +106920152,"flask" +105345151,"httpcore" +105314328,"lxml" +103174197,"jsonschema-specifications" +102332012,"proto-plus" +101644622,"mdurl" +99002908,"python-dotenv" +97027686,"referencing" +96651316,"propcache" +95945273,"dill" +94803170,"ptyprocess" +94761769,"google-cloud-storage" +94421876,"msgpack" +94403508,"poetry-core" +94209053,"pexpect" +93917281,"asn1crypto" +93768551,"opentelemetry-sdk" +92260819,"azure-core" +92121820,"gitpython" +91816084,"pynacl" +91596290,"aiohappyeyeballs" +90483828,"websocket-client" +89962445,"tenacity" +89162596,"itsdangerous" +86275692,"grpcio-tools" +84535306,"google-cloud-core" +84385460,"importlib-resources" +83502963,"smmap" +83385560,"gitdb" +82608739,"psycopg2-binary" +81652652,"asgiref" +80215078,"scikit-learn" +79447150,"msal" +79423256,"wcwidth" +79422943,"alembic" +79249319,"google-resumable-media" +78880248,"keyring" +78614675,"trove-classifiers" +77041365,"chardet" +75956518,"regex" +75633021,"shellingham" +74652406,"mccabe" +74597957,"blinker" +74464833,"opentelemetry-api" +73530936,"backoff" +73283241,"snowflake-connector-python" +73206620,"bcrypt" +72870017,"pytest-cov" +72269843,"build" +72227293,"ruamel-yaml" +71597791,"jaraco-classes" +71353387,"pyproject-hooks" +70953342,"pkginfo" +70709263,"fastapi" +70175076,"jeepney" +69982800,"secretstorage" +69899730,"google-crc32c" +69893776,"tabulate" +69024058,"matplotlib" +68345665,"pycodestyle" +67980101,"fastjsonschema" +67879634,"paramiko" +67669258,"py" +67398241,"threadpoolctl" +67269074,"gunicorn" +67104764,"poetry-plugin-export" +66978587,"sqlparse" +66716617,"dnspython" +66044584,"networkx" +65439173,"google-cloud-bigquery" +65348499,"prompt-toolkit" +65263336,"google-api-python-client" +64340070,"marshmallow" +63831887,"azure-storage-blob" +62987422,"rapidfuzz" +62864078,"py4j" +62353947,"mock" +62322310,"isort" +62015149,"joblib" +61811990,"portalocker" +61578397,"ipython" +61191401,"typedload" +60790096,"xmltodict" +59847510,"kiwisolver" +59232745,"docker" +59217133,"azure-identity" +58920026,"redis" +58485576,"babel" +58479065,"black" +58352252,"google-auth-oauthlib" +58132004,"ruamel-yaml-clib" +58055790,"defusedxml" +57902787,"nest-asyncio" +57523036,"termcolor" +57410354,"fonttools" +57187020,"starlette" +56820610,"sentry-sdk" +56725232,"cloudpickle" +56229478,"nodeenv" +55870976,"cycler" +55662291,"ply" +55347841,"awswrangler" +55227591,"mako" +55113281,"msal-extensions" +55036047,"httplib2" +54347656,"uritemplate" +54294520,"tzlocal" +54220194,"cython" +53910253,"traitlets" +53518386,"types-requests" +53227393,"opentelemetry-semantic-conventions" +52530518,"pyflakes" +52331750,"tornado" +52132314,"pymysql" +51938957,"markdown" +51913387,"setuptools-scm" +51736099,"jedi" +51600036,"pyrsistent" +51191430,"toml" +50995447,"cachecontrol" +50656800,"google-auth-httplib2" +50549981,"prometheus-client" +50443702,"distro" +50044678,"uvicorn" +49816736,"argcomplete" +49272749,"pendulum" +48709519,"installer" +48199153,"flake8" +48133856,"parso" +47949465,"pyzmq" +47628414,"debugpy" +47253031,"openai" +46837153,"poetry" +46823972,"matplotlib-inline" +46613886,"dulwich" +46138604,"contourpy" +46066504,"huggingface-hub" +45658609,"webencodings" +45585881,"kubernetes" +45509159,"websockets" +45250727,"crashtest" +44658999,"jsonpointer" +44443003,"grpc-google-iam-v1" +44254488,"typer" +44225990,"mypy" +44072736,"scramp" +43648998,"stack-data" +43353755,"orjson" +42978257,"croniter" +42802051,"cleo" +42603105,"transformers" +42442570,"asttokens" +42358183,"executing" +42028069,"pycryptodome" +41589294,"pycryptodomex" +41533711,"pymongo" +41450363,"python-json-logger" +41039653,"pytest-mock" +40941937,"ipykernel" +40546300,"multiprocess" +40338683,"requests-aws4auth" +40301704,"pure-eval" +40198892,"typing-inspect" +40122763,"arrow" +39703290,"python-slugify" +39424564,"zope-interface" +39424518,"types-python-dateutil" +39413194,"sphinx" +39130084,"pre-commit" +39112447,"jupyter-core" +38689189,"jupyter-client" +38396708,"aiofiles" +37995587,"opentelemetry-proto" +37840868,"future" +37819348,"identify" +37732122,"astroid" +37677770,"loguru" +37124427,"pytzdata" +36727711,"datadog" +36313319,"lazy-object-proxy" +36296819,"redshift-connector" +35942407,"elasticsearch" +35820813,"aioitertools" +35812649,"rfc3339-validator" +35807157,"cfgv" +35481993,"bs4" +35325564,"jupyterlab" +35296368,"nbconvert" +35242099,"hatchling" +35011053,"pylint" +35007442,"pygithub" +34972549,"msrest" +34769678,"colorlog" +34701541,"comm" +34633683,"nbformat" +34541462,"retry" +34520226,"pytest-runner" +34351437,"azure-common" +34109224,"smart-open" +33942717,"bleach" +33630636,"ruff" +33563151,"torch" +33522875,"setproctitle" +33365883,"shapely" +33304738,"pg8000" +33136833,"nbclient" +33076671,"tokenizers" +33071872,"responses" +33007133,"pydantic-settings" +32960259,"jupyter-server" +32835152,"hypothesis" +32779177,"opentelemetry-exporter-otlp-proto-http" +32575323,"opentelemetry-exporter-otlp-proto-grpc" +32517689,"ordered-set" +32412754,"apache-airflow" +32239556,"tinycss2" +32164707,"appdirs" +32012493,"jsonpath-ng" +31998440,"google-cloud-secret-manager" +31991259,"mistune" +31805120,"google-cloud-pubsub" +31599172,"mysql-connector-python" +31565544,"jsonpatch" +31272613,"snowballstemmer" +31072713,"pkgutil-resolve-name" +30927046,"requests-file" +30919584,"sympy" +30855473,"slack-sdk" +30758226,"notebook" +30699414,"pyspark" +30597653,"watchdog" +30353753,"jaraco-functools" +30260807,"pytest-xdist" +30251220,"jupyterlab-server" +30209638,"snowflake-sqlalchemy" +29901498,"opentelemetry-exporter-otlp" +29897390,"django" +29848969,"google-pasta" +29532015,"opensearch-py" +29399705,"oscrypto" +29139385,"toolz" +28948095,"typeguard" +28638141,"humanfriendly" +28476303,"tox" +28321693,"execnet" +28190776,"mdit-py-plugins" +28172626,"email-validator" +28129250,"jaraco-context" +28060479,"aenum" +27871167,"ipywidgets" +27836124,"text-unidecode" +27782251,"xlrd" +27779771,"cattrs" +27761285,"google-cloud-aiplatform" +27691017,"overrides" +27676011,"imagesize" +27529305,"absl-py" +27494468,"uvloop" +27422471,"argon2-cffi" +27280776,"lz4" +27265683,"json5" +27262919,"langchain-core" +27246576,"alabaster" +27196306,"jupyterlab-pygments" +27111784,"opentelemetry-exporter-otlp-proto-common" +27089942,"pandocfilters" +27013491,"pysocks" +26966580,"widgetsnbextension" +26796419,"flask-caching" +26711946,"jupyterlab-widgets" +26637399,"xgboost" +26627184,"sphinxcontrib-serializinghtml" +26616214,"sphinxcontrib-htmlhelp" +26462739,"argon2-cffi-bindings" +26430029,"send2trash" +26422968,"sphinxcontrib-applehelp" +26406365,"sphinxcontrib-qthelp" +26368543,"rfc3986" +26266285,"apache-airflow-providers-common-sql" +26253976,"sphinxcontrib-devhelp" +26218305,"httptools" +26092035,"pbr" +26011667,"pyodbc" +25982371,"pytest-asyncio" +25843228,"mpmath" +25749351,"schema" +25633314,"xlsxwriter" +25567868,"db-dtypes" +25502663,"selenium" +25403136,"python-multipart" +25373150,"dataclasses-json" +25315807,"sphinxcontrib-jsmath" +25199289,"webcolors" +25174658,"simplejson" +25159380,"sagemaker" +25105478,"tb-nightly" +25064974,"terminado" +24984511,"semver" +24895341,"inflection" +24872769,"progressbar2" +24708685,"flask-wtf" +24693723,"structlog" +24543848,"grpcio-health-checking" +24478244,"altair" +24409614,"langchain" +24264274,"google-cloud-appengine-logging" +24006235,"notebook-shim" +23862225,"async-lru" +23846869,"fqdn" +23801334,"python-utils" +23669841,"uri-template" +23627134,"isoduration" +23591462,"tensorboard" +23460504,"pandas-gbq" +23445196,"rfc3986-validator" +23422043,"graphql-core" +23336494,"google-cloud-resource-manager" +23102449,"jupyter-events" +23048813,"azure-storage-file-datalake" +22930084,"databricks-sql-connector" +22899602,"watchfiles" +22686197,"nltk" +22602557,"backports-tarfile" +22524321,"python-daemon" +22428258,"trio" +22285555,"pathos" +22225689,"h5py" +22224492,"tiktoken" +22221783,"jupyter-server-terminals" +22071800,"asynctest" +22032380,"ujson" +21984870,"google-cloud-logging" +21964747,"click-man" +21911676,"jiter" +21892444,"pox" +21864767,"sentencepiece" +21837145,"ppft" +21695896,"prettytable" +21450498,"jupyter-lsp" +21336984,"gcsfs" +21303111,"pyright" +21303015,"flatbuffers" +21183420,"coloredlogs" +21128473,"hvac" +20989812,"freezegun" +20988627,"adal" +20826079,"types-pyyaml" +20802907,"aws-requests-auth" +20751713,"outcome" +20739754,"plotly" +20717370,"lockfile" +20677629,"linkify-it-py" +20508192,"durationpy" +20432190,"dbt-core" +20350288,"docstring-parser" +20341806,"google-cloud-bigquery-storage" +20225302,"oauth2client" +20214850,"connexion" +20139269,"faker" +20136560,"rich-argparse" +20022314,"confluent-kafka" +19941688,"imageio" +19936731,"safetensors" +19843272,"docker-pycreds" +19756748,"tensorflow" +19438875,"frozendict" +19422840,"smdebug-rulesconfig" +19320967,"seaborn" +19299191,"numba" +19290043,"opentelemetry-instrumentation" +19252049,"uv" +19209460,"readme-renderer" +19206335,"tblib" +19186458,"parameterized" +19131959,"wsproto" +19122104,"wandb" +19029972,"dataclasses" +18975780,"twine" +18904754,"nose" +18765842,"deepdiff" +18756658,"gremlinpython" +18681898,"entrypoints" +18658531,"llvmlite" +18642232,"langchain-community" +18576446,"fastavro" +18520670,"google-cloud-dataproc" +18493362,"semantic-version" +18480053,"time-machine" +18419265,"monotonic" +18394846,"mlflow" +18354260,"databricks-sdk" +18288127,"xxhash" +18231845,"universal-pathlib" +18196017,"marshmallow-oneofschema" +18188577,"nh3" +18128668,"deprecation" +18119923,"pydeequ" +18100572,"gast" +18089081,"graphviz" +18019353,"requests-mock" +17988049,"great-expectations" +17975978,"pydata-google-auth" +17862962,"trio-websocket" +17703587,"cached-property" +17678892,"zeep" +17671922,"editables" +17641030,"apache-airflow-providers-cncf-kubernetes" +17596893,"psycopg2" +17543412,"retrying" +17516437,"azure-keyvault-secrets" +17513907,"flask-sqlalchemy" +17385479,"html5lib" +17380613,"flask-appbuilder" +17347934,"datasets" +17248915,"thrift" +17207176,"docopt" +17172043,"apispec" +17168401,"gevent" +17100960,"imbalanced-learn" +17084175,"google-cloud-audit-log" +17005524,"flask-session" +16772706,"azure-mgmt-core" +16754215,"click-plugins" +16640139,"flask-login" +16618290,"zope-event" +16609451,"pyproject-api" +16499689,"sshtunnel" +16402184,"zstandard" +16394263,"statsmodels" +16352751,"amqp" +16265298,"torchvision" +16259000,"pymssql" +16170991,"looker-sdk" +16099877,"antlr4-python3-runtime" +16049035,"nvidia-nccl-cu12" +16016185,"authlib" +15869113,"pickleshare" +15824684,"google-re2" +15638579,"google-cloud-monitoring" +15601385,"google-cloud-kms" +15498724,"opentelemetry-util-http" +15494892,"nodejs-wheel-binaries" +15493274,"kafka-python" +15437867,"triton" +15426353,"kombu" +15422217,"delta-spark" +15403927,"unidecode" +15401390,"libcst" +15337373,"google-cloud-vision" +15320827,"wtforms" +15302202,"google-cloud-container" +15299604,"backcall" +15297381,"dask" +15277684,"pybind11" +15129398,"vine" +15095850,"google-cloud-spanner" +15094765,"celery" +15091000,"ecdsa" +15086801,"patsy" +15013673,"argparse" +14993584,"opencv-python" +14835439,"sqlalchemy-utils" +14786223,"google-cloud-bigquery-datatransfer" +14729727,"humanize" +14698218,"google-cloud-tasks" +14690649,"google-cloud-datacatalog" +14615459,"google-cloud-dlp" +14550883,"makefun" +14547574,"moto" +14546712,"simple-salesforce" +14506459,"tensorboard-data-server" +14401254,"pip-tools" +14387813,"keras" +14386846,"cachelib" +14376580,"billiard" +14334629,"mlflow-skinny" +14270525,"mypy-boto3-s3" +14168514,"yapf" +14165126,"nvidia-cublas-cu12" +14156295,"google-ads" +14141313,"google-cloud-bigtable" +14117612,"apache-airflow-providers-snowflake" +14068645,"azure-datalake-store" +14012816,"watchtower" +14009934,"pyserial" +13973531,"spacy" +13919363,"configupdater" +13869600,"flask-cors" +13842929,"pytimeparse" +13830020,"boto3-stubs" +13817626,"ijson" +13803916,"nvidia-cusparse-cu12" +13737010,"google-cloud-build" +13730791,"pyroaring" +13713908,"nvidia-nvjitlink-cu12" +13662086,"google-cloud-workflows" +13632336,"bitarray" +13625654,"langsmith" +13605224,"google-cloud-redis" +13587491,"opt-einsum" +13568748,"mashumaro" +13565981,"lark" +13564149,"astunparse" +13563564,"nvidia-cuda-runtime-cu12" +13551903,"google-cloud-firestore" +13532728,"nvidia-cuda-cupti-cu12" +13522167,"nvidia-cufft-cu12" +13521018,"jupyter-console" +13505183,"google-cloud-automl" +13498448,"google-cloud-dataplex" +13491464,"datetime" +13446847,"funcsigs" +13437660,"hpack" +13434488,"nvidia-cudnn-cu12" +13430987,"tensorflow-estimator" +13426069,"h2" +13357637,"nvidia-cuda-nvrtc-cu12" +13336661,"apache-airflow-providers-ssh" +13310420,"databricks-cli" +13280502,"azure-mgmt-resource" +13279873,"nvidia-curand-cu12" +13261182,"hyperframe" +13259954,"nvidia-cusolver-cu12" +13251349,"pytest-metadata" +13250410,"google-cloud-os-login" +13231420,"apache-airflow-providers-google" +13213335,"jupyter" +13210840,"google-cloud-videointelligence" +13180083,"google-cloud-language" +13175780,"pipenv" +13172365,"brotli" +13132856,"types-pytz" +13120748,"sqlalchemy-jsonfield" +13101142,"commonmark" +13081191,"nvidia-nvtx-cu12" +13043815,"graphene" +12954381,"google-cloud-memcache" +12886381,"mypy-boto3-rds" +12773536,"botocore-stubs" +12771629,"google-cloud-translate" +12724775,"narwhals" +12653167,"google-cloud-dataproc-metastore" +12650212,"click-repl" +12643435,"sqlalchemy-bigquery" +12625875,"google-cloud-orchestration-airflow" +12625290,"click-didyoumean" +12583254,"analytics-python" +12546944,"apache-airflow-providers-databricks" +12537474,"graphql-relay" +12505871,"agate" +12459180,"types-protobuf" +12419591,"google-cloud-compute" +12325422,"omegaconf" +12317657,"tldextract" +12309039,"thinc" +12308273,"gspread" +12245826,"google-cloud-speech" +12178355,"gcloud-aio-storage" +12124737,"msrestazure" +12103832,"gcloud-aio-auth" +12067712,"blis" +12061108,"apache-beam" +12057075,"google-cloud-texttospeech" +12018418,"pywin32" +11974182,"google-cloud-dataform" +11955514,"configparser" +11948923,"apache-airflow-providers-mysql" +11941649,"uc-micro-py" +11914067,"djangorestframework" +11898344,"jira" +11883859,"scikit-image" +11872873,"types-awscrt" +11827006,"levenshtein" +11811624,"astor" +11796909,"python-jose" +11757257,"ddtrace" +11754748,"fasteners" +11674778,"jsonpickle" +11640578,"catalogue" +11603748,"preshed" +11597799,"sphinx-rtd-theme" +11596447,"types-setuptools" +11549928,"cymem" +11534657,"pycountry" +11525093,"murmurhash" +11482001,"hyperlink" +11461791,"astronomer-cosmos" +11436086,"gcloud-aio-bigquery" +11428807,"sh" +11420532,"srsly" +11401253,"marshmallow-sqlalchemy" +11396773,"pytest-html" +11387704,"wasabi" +11368005,"parsedatetime" +11351119,"types-s3transfer" +11258838,"pkce" +11200168,"python-magic" +11192099,"stevedore" +11174290,"langcodes" +11150071,"flask-jwt-extended" +11123676,"mysqlclient" +11056080,"evergreen-py" +11003879,"ninja" +10996482,"apache-airflow-providers-http" +10917611,"avro-python3" +10907445,"python-gitlab" +10890008,"pytest-timeout" +10862255,"opentelemetry-instrumentation-requests" +10847292,"pypdf2" +10836815,"texttable" +10799242,"partd" +10667799,"backports-zoneinfo" +10646860,"validators" +10630513,"lightgbm" +10629441,"flask-limiter" +10582948,"pytest-rerunfailures" +10569832,"libclang" +10549036,"locket" +10531066,"dacite" +10527151,"limits" +10524714,"spacy-legacy" +10520863,"apscheduler" +10498058,"cron-descriptor" +10436878,"psycopg" +10432027,"spacy-loggers" +10415572,"grpcio-gcp" +10388194,"python-gnupg" +10384087,"pysftp" +10356514,"iso8601" +10350102,"opencensus" +10337942,"elastic-transport" +10328164,"ml-dtypes" +10326121,"aniso8601" +10295389,"incremental" +10271653,"cramjam" +10264745,"pycrypto" +10243263,"langchain-text-splitters" +10233774,"db-contrib-tool" +10217536,"mergedeep" +10198601,"gsutil" +10146979,"bytecode" +10145438,"confection" +10142685,"envier" +10099648,"langchain-google-vertexai" +10030452,"polars" +10018088,"onnxruntime" +10007629,"pyathena" +9955963,"parse" +9954706,"opencensus-context" +9951916,"tensorflow-io-gcs-filesystem" +9840505,"jpype1" +9831605,"sendgrid" +9830635,"azure-mgmt-storage" +9826897,"azure-kusto-data" +9811335,"asyncpg" +9771589,"cfn-lint" +9719701,"leather" +9682479,"dbt-extractor" +9589150,"parsimonious" +9584641,"tensorflow-serving-api" +9583474,"dateparser" +9535845,"azure-storage-queue" +9529767,"ratelimit" +9527020,"avro" +9514171,"types-urllib3" +9511437,"fastapi-cli" +9461663,"dbt-common" +9405939,"twisted" +9289104,"cssselect" +9258673,"pyproj" +9160170,"python-http-client" +9156484,"cytoolz" +9130207,"azure-mgmt-datafactory" +9095787,"office365-rest-python-client" +9050050,"inflect" +9041949,"aliyun-python-sdk-core" +9009841,"dbt-semantic-interfaces" +8996022,"boto" +8975053,"yamllint" +8972826,"azure-servicebus" +8971977,"constantly" +8969683,"automat" +8930195,"google-cloud-dataflow-client" +8922397,"clickclick" +8880163,"pathlib" +8867444,"kubernetes-asyncio" +8847411,"flask-babel" +8775747,"openapi-spec-validator" +8771388,"sphinxcontrib-jquery" +8761743,"invoke" +8753686,"contextlib2" +8735976,"py-cpuinfo" +8718284,"methodtools" +8691247,"pyspnego" +8671432,"typing" +8666285,"holidays" +8652182,"accelerate" +8644464,"azure-cosmos" +8622213,"enum34" +8595132,"waitress" +8585830,"eth-utils" +8584798,"eth-hash" +8578740,"apache-airflow-providers-ftp" +8538045,"cmake" +8517306,"netaddr" +8483460,"immutabledict" +8455128,"phonenumbers" +8450170,"wirerope" +8428257,"oracledb" +8416386,"webob" +8401677,"azure-storage-file-share" +8352170,"opencensus-ext-azure" +8312384,"opentelemetry-instrumentation-asgi" +8299738,"resolvelib" +8256359,"eth-typing" +8244913,"aws-xray-sdk" +8237630,"pypdf" +8157099,"pyee" +8128565,"apache-airflow-providers-sqlite" +8086179,"mypy-boto3-appflow" +8073890,"protobuf3-to-dict" +8053397,"pywavelets" +8032190,"apache-airflow-providers-fab" +8030843,"mmh3" +8006846,"bidict" +8003655,"jaydebeapi" +7982278,"pydash" +7975013,"google-cloud-storage-transfer" +7962737,"google-cloud-run" +7936363,"streamlit" +7923620,"google-cloud-batch" +7919341,"opentelemetry-instrumentation-fastapi" +7916212,"dbt-adapters" +7912171,"autopep8" +7892209,"prison" +7881315,"tableauserverclient" +7798139,"diskcache" +7792109,"bracex" +7782365,"cfn-flip" +7766791,"duckdb" +7762832,"cloudpathlib" +7742179,"logbook" +7709820,"langchain-openai" +7626244,"fuzzywuzzy" +7623204,"python-docx" +7595448,"natsort" +7569137,"python-levenshtein" +7561622,"tifffile" +7544077,"playwright" +7510898,"aiosqlite" +7463815,"azure-nspkg" +7444651,"ipython-genutils" +7412818,"pytest-django" +7410037,"types-redis" +7389375,"fire" +7380241,"factory-boy" +7356977,"azure-mgmt-containerregistry" +7343836,"pydot" +7299696,"lazy-loader" +7292105,"torchmetrics" +7277722,"msgspec" +7273280,"gql" +7266960,"configargparse" +7241964,"fastparquet" +7184467,"psycopg-binary" +7169170,"geopandas" +7168614,"passlib" +7151519,"pytorch-lightning" +7052873,"datadog-api-client" +6963912,"azure-storage-common" +6951208,"marisa-trie" +6928227,"pydeck" +6916466,"sqlalchemy-spanner" +6898150,"opencv-python-headless" +6891879,"tensorflow-text" +6878458,"pep517" +6852799,"unicodecsv" +6842660,"cligj" +6839715,"pymdown-extensions" +6827650,"openapi-schema-validator" +6802348,"weaviate-client" +6799956,"azure-mgmt-cosmosdb" +6797518,"typed-ast" +6787661,"gradio" +6783800,"bottle" +6781150,"apache-airflow-providers-imap" +6773188,"language-data" +6772416,"pydub" +6768397,"sentence-transformers" +6764223,"django-cors-headers" +6746011,"shap" +6740077,"eth-abi" +6710628,"kfp" +6692150,"events" +6682237,"xarray" +6668513,"azure-keyvault-keys" +6659828,"ansible" +6644514,"slicer" +6630146,"pytest-random-order" +6624598,"ansible-core" +6600052,"aws-sam-translator" +6583400,"querystring-parser" +6546025,"iso3166" +6544785,"apache-airflow-providers-slack" +6523010,"statsd" +6515099,"keyrings-google-artifactregistry-auth" +6504995,"awscrt" +6496856,"ua-parser" +6482251,"astropy" +6446750,"trino" +6406997,"starkbank-ecdsa" +6394152,"django-filter" +6391234,"sqlglot" +6383044,"applicationinsights" +6353805,"pyqt5" +6347295,"yappi" +6345776,"onnx" +6339257,"mypy-boto3-redshift-data" +6335074,"google" +6326997,"boltons" +6325045,"jellyfish" +6324217,"wcmatch" +6303016,"ray" +6302917,"nvidia-cublas-cu11" +6287213,"eval-type-backport" +6237671,"voluptuous" +6195595,"mkdocs-material" +6161424,"nvidia-cudnn-cu11" +6154272,"crcmod" +6132930,"minimal-snowplow-tracker" +6119158,"slackclient" +6115354,"magicattr" +6114669,"timm" +6105505,"torchaudio" +6103575,"azure-keyvault" +6102758,"junitparser" +6065887,"pyerfa" +6059799,"lightning-utilities" +6040908,"setuptools-rust" +6023943,"azure-batch" +6022948,"fs" +6016547,"pika" +6008273,"grpc-interceptor" +5971141,"nvidia-cuda-runtime-cu11" +5957834,"types-dataclasses" +5956333,"geographiclib" +5941382,"peewee" +5938951,"marshmallow-enum" +5935143,"requests-ntlm" +5933489,"geopy" +5931037,"nvidia-cuda-nvrtc-cu11" +5930645,"azure-mgmt-compute" +5919911,"inject" +5898694,"pyotp" +5890819,"geoip2" +5883658,"emoji" +5879668,"keras-applications" +5873765,"jsonlines" +5871827,"pint" +5870895,"pathy" +5870753,"junit-xml" +5862711,"pytest-localserver" +5852115,"azure-mgmt-containerinstance" +5841007,"eth-account" +5810689,"pyhcl" +5808618,"pyqt5-sip" +5806552,"ultralytics" +5788322,"tokenize-rt" +5781417,"adlfs" +5768510,"weasel" +5758810,"reportlab" +5752031,"jsondiff" +5742435,"flask-restful" +5722309,"jsonref" +5720409,"immutables" +5708566,"pandas-stubs" +5701597,"tomli-w" +5694562,"aws-lambda-powertools" +5691989,"zope-deprecation" +5686811,"textual" +5679508,"apache-airflow-providers-amazon" +5661908,"pywin32-ctypes" +5659972,"maxminddb" +5644642,"elementpath" +5623895,"ciso8601" +5621609,"webdriver-manager" +5615313,"azure-graphrbac" +5614365,"pycares" +5604707,"faiss-cpu" +5583660,"apache-airflow-providers-smtp" +5578261,"asyncio" +5565586,"cohere" +5562187,"feedparser" +5557556,"bandit" +5544112,"aiodns" +5533252,"cloudformation-cli" +5524450,"flit-core" +5519177,"h3" +5516452,"pastedeploy" +5514337,"python-nvd3" +5513116,"ftfy" +5504984,"pdfminer-six" +5502852,"apache-airflow-providers-common-io" +5498948,"cloudformation-cli-java-plugin" +5497870,"cloudformation-cli-python-plugin" +5496344,"cloudformation-cli-go-plugin" +5494251,"cloudformation-cli-typescript-plugin" +5488228,"astropy-iers-data" +5469680,"rdflib" +5465349,"swagger-ui-bundle" +5460413,"einops" +5439083,"distributed" +5418902,"service-identity" +5380048,"google-analytics-admin" +5378518,"pyqt5-qt5" +5355797,"zc-lockfile" +5349527,"autograd" +5348837,"deltalake" +5321640,"paho-mqtt" +5314244,"mkdocs" +5307906,"aioresponses" +5288292,"stripe" +5284352,"orderly-set" +5265463,"filterpy" +5260945,"json-merge-patch" +5248996,"azure-mgmt-authorization" +5248727,"checkov" +5242610,"futures" +5239760,"azure-mgmt-network" +5216760,"blessed" +5216090,"opentelemetry-instrumentation-wsgi" +5214456,"ldap3" +5198666,"multimethod" +5186786,"azure-mgmt-keyvault" +5178988,"teradatasql" +5178541,"hiredis" +5161510,"python-telegram-bot" +5155171,"scp" +5145812,"pulp" +5142503,"flexparser" +5127908,"pymupdf" +5126057,"cssselect2" +5125163,"pydocstyle" +5120677,"apache-airflow-providers-docker" +5110584,"elasticsearch-dsl" +5106956,"pyperclip" +5088196,"flexcache" +5086428,"ndg-httpsclient" +5082663,"pytest-forked" +5068791,"dpath" +5063825,"azure-keyvault-certificates" +5051593,"microsoft-kiota-http" +5048196,"pyaml" +5048156,"google-cloud" +5031902,"meson" +5030967,"snowflake-snowpark-python" +4996095,"albumentations" +4993470,"async-generator" +4989596,"sanic" +4983759,"prefect" +4971645,"aiohttp-retry" +4967034,"readchar" +4966132,"pathlib2" +4950264,"twilio" +4935024,"sphinx-autodoc-typehints" +4933086,"pygame" +4903261,"addict" +4898367,"pytz-deprecation-shim" +4887802,"posthog" +4862028,"fiona" +4857690,"fabric" +4844894,"strictyaml" +4838350,"lark-parser" +4837274,"pyinstrument" +4822717,"types-paramiko" +4816421,"falcon" +4812411,"strenum" +4804394,"userpath" +4792325,"gradio-client" +4787974,"apache-airflow-providers-common-compat" +4787564,"mongomock" +4765126,"azure-eventhub" +4755839,"sanic-routing" +4748492,"asyncssh" +4746827,"httpx-sse" +4734450,"constructs" +4732019,"mixpanel" +4730586,"influxdb-client" +4730052,"ghp-import" +4722801,"xmlschema" +4722261,"ddsketch" +4716002,"qtpy" +4699957,"dask-expr" +4699235,"azure-kusto-ingest" +4688752,"oldest-supported-numpy" +4686912,"toposort" +4670019,"stringcase" +4653780,"filetype" +4643282,"xyzservices" +4641466,"atlassian-python-api" +4618674,"uuid6" +4612240,"pyyaml-env-tag" +4611325,"mypy-boto3-sqs" +4609471,"atomicwrites" +4607111,"cerberus" +4606703,"formulaic" +4593953,"sklearn" +4584846,"optree" +4581071,"pytest-env" +4578306,"mypy-boto3-dynamodb" +4572342,"binaryornot" +4548317,"webtest" +4532057,"pyelftools" +4530914,"parse-type" +4525478,"firebase-admin" +4510346,"openlineage-integration-common" +4507363,"pgpy" +4507118,"eventlet" +4501346,"sqlalchemy-redshift" +4494965,"qrcode" +4489110,"schedule" +4484975,"jax" +4470931,"chroma-hnswlib" +4455958,"mypy-boto3-glue" +4445887,"pandera" +4444138,"anthropic" +4419167,"html5tagger" +4417656,"nbclassic" +4417224,"tracerite" +4415948,"mypy-protobuf" +4411558,"azure-devops" +4409343,"bokeh" +4407562,"construct" +4406092,"click-option-group" +4377725,"acryl-datahub" +4373870,"face" +4342707,"python-engineio" +4339112,"pytest-randomly" +4330953,"glom" +4329708,"python-socketio" +4324456,"transaction" +4321658,"tensorboardx" +4312629,"smbprotocol" +4309656,"gensim" +4307537,"pyarrow-hotfix" +4307391,"ipaddress" +4305163,"convertdate" +4280694,"kfp-pipeline-spec" +4268557,"meson-python" +4262476,"django-extensions" +4258244,"apprise" +4256374,"mkdocs-material-extensions" +4254489,"python-jenkins" +4252992,"opentelemetry-instrumentation-flask" +4251279,"cloudevents" +4244976,"mypy-boto3-secretsmanager" +4244043,"grpcio-reflection" +4242192,"orderedmultidict" +4240748,"pyrfc3339" +4238147,"gym-notices" +4236748,"pipx" +4236111,"azure-mgmt-datalake-store" +4235593,"types-toml" +4233970,"langdetect" +4218657,"numexpr" +4214929,"ipdb" +4204480,"uncertainties" +4200883,"flask-migrate" +4198383,"pyproject-metadata" +4188924,"cookiecutter" +4185327,"url-normalize" +4176283,"azure-data-tables" +4175649,"geventhttpclient" +4172302,"namex" +4170517,"types-pyopenssl" +4165903,"rich-click" +4160262,"interface-meta" +4159791,"mypy-boto3-lambda" +4152468,"python-editor" +4149001,"pytest-split" +4146196,"py-partiql-parser" +4144305,"azure-mgmt-containerservice" +4121991,"yfinance" +4113141,"btrees" +4088938,"furl" +4079481,"keras-preprocessing" +4070130,"zope-proxy" +4069877,"llama-parse" +4062078,"persistent" +4058518,"hatch-vcs" +4057617,"optuna" +4056992,"pytest-benchmark" +4051226,"yandexcloud" +4049933,"hdfs" +4049005,"opentelemetry-instrumentation-dbapi" +4046760,"dbt-snowflake" +4038472,"dash" +4029013,"spark-nlp" +4027354,"zope-deferredimport" +4025264,"jaxlib" +4024550,"daff" +4017545,"multipart" +4005866,"nox" +4001815,"tensorboard-plugin-wit" +3995705,"diff-cover" +3987332,"azure-mgmt-monitor" +3974337,"recordlinkage" +3973393,"prometheus-flask-exporter" +3971822,"minio" +3970735,"facebook-business" +3963810,"w3lib" +3963146,"simple-websocket" +3956288,"xlwt" +3950043,"zodbpickle" +3949353,"pdfplumber" +3949319,"flask-httpauth" +3945607,"pydantic-extra-types" +3928417,"django-storages" +3924314,"zconfig" +3923086,"cog" +3920598,"zodb" +3920416,"korean-lunar-calendar" +3915004,"altgraph" +3903162,"cx-oracle" +3898679,"microsoft-kiota-abstractions" +3891489,"azure-mgmt-sql" +3886908,"hexbytes" +3871497,"azure-mgmt-redis" +3861647,"asteval" +3855293,"opentelemetry-instrumentation-urllib3" +3845514,"javaproperties" +3836600,"pympler" +3834684,"eth-rlp" +3832418,"python-decouple" +3820464,"jwcrypto" +3808883,"azure-mgmt-managementgroups" +3804895,"openlineage-python" +3800043,"shortuuid" +3799610,"singer-python" +3794528,"roman" +3790092,"aiohttp-cors" +3789289,"azure-mgmt-web" +3788859,"coveralls" +3764662,"griffe" +3762620,"tensorflow-metadata" +3761849,"pathable" +3757847,"terminaltables" +3745405,"pipdeptree" +3743335,"pytest-sugar" +3735774,"hydra-core" +3734034,"azure-mgmt-servicebus" +3734004,"fakeredis" +3728498,"rdkit" +3727845,"catboost" +3725567,"biopython" +3718174,"types-six" +3716472,"pyfakefs" +3713820,"opentelemetry-instrumentation-urllib" +3707273,"aioboto3" +3695224,"py-spy" +3693264,"python3-saml" +3692173,"pyinstaller" +3681129,"azure-mgmt-nspkg" +3673784,"ffmpy" +3666807,"tweepy" +3665190,"flower" +3657370,"pooch" +3657183,"dbt-postgres" +3637501,"openxlab" +3621587,"logzero" +3621151,"azure-synapse-artifacts" +3614774,"qdrant-client" +3614580,"marshmallow-dataclass" +3612508,"llama-index-core" +3609735,"azure-mgmt-msi" +3597079,"pypika" +3595711,"uamqp" +3593375,"web3" +3588059,"azure-mgmt-rdbms" +3588052,"singer-sdk" +3578200,"types-tabulate" +3577144,"moreorless" +3575406,"django-cleanup" +3551490,"litellm" +3548036,"rasterio" +3546700,"soundfile" +3535330,"eth-keys" +3526729,"proglog" +3526162,"opentelemetry-instrumentation-psycopg2" +3522876,"python3-openid" +3522261,"azure-mgmt-dns" +3521186,"azure-mgmt-datalake-nspkg" +3520946,"robotframework" +3520436,"functions-framework" +3511872,"pyinstaller-hooks-contrib" +3508207,"clickhouse-connect" +3502094,"whitenoise" +3499060,"questionary" +3495759,"myst-parser" +3488680,"zict" +3484394,"deepmerge" +3481770,"qtconsole" +3462242,"enum-compat" +3461042,"netcdf4" +3458963,"discord-py" +3456967,"configobj" +3449882,"beartype" +3444477,"colorful" +3444184,"mypy-boto3-cloudformation" +3427901,"appnope" +3418834,"azure-mgmt-eventhub" +3415833,"lxml-html-clean" +3406092,"opentelemetry-instrumentation-django" +3404860,"dbt-bigquery" +3403556,"ddt" +3398729,"mypy-boto3-ec2" +3397049,"pymeeus" +3391341,"user-agents" +3387525,"jsii" +3386000,"kfp-server-api" +3380867,"azure-monitor-opentelemetry-exporter" +3377658,"multitasking" +3375980,"azure-mgmt-advisor" +3374958,"unittest-xml-reporting" +3372996,"types-cachetools" +3369678,"shopifyapi" +3367053,"trailrunner" +3362908,"azure-mgmt-batch" +3358950,"knack" +3355476,"sagemaker-core" +3354780,"requests-cache" +3354187,"mkdocs-get-deps" +3350526,"fastcore" +3347888,"pyactiveresource" +3341864,"azure-mgmt-loganalytics" +3337694,"pymsteams" +3323008,"sphinx-copybutton" +3321222,"cftime" +3316890,"pdf2image" +3316600,"pyphen" +3311524,"dynaconf" +3308024,"azure-mgmt-cdn" +3297484,"uuid" +3291335,"django-redis" +3287301,"restrictedpython" +3283541,"click-default-group" +3279609,"kaleido" +3275762,"azure-mgmt-search" +3275517,"pathvalidate" +3273465,"speechbrain" +3270763,"patchelf" +3267567,"llama-index" +3266463,"pyhumps" +3262616,"hyperpyyaml" +3262302,"fake-useragent" +3256535,"azure-mgmt-cognitiveservices" +3256524,"autoflake" +3254376,"affine" +3249280,"geojson" +3248699,"azure-mgmt-recoveryservices" +3247887,"azure-mgmt-trafficmanager" +3242388,"apache-airflow-providers-sftp" +3239731,"azure-mgmt-marketplaceordering" +3239309,"azure-mgmt-iothub" +3236268,"pinecone-client" +3236267,"types-docutils" +3235101,"codecov" +3230583,"azure-mgmt-recoveryservicesbackup" +3228509,"azure-mgmt-eventgrid" +3227804,"cmdstanpy" +3226379,"zope-i18nmessageid" +3225478,"opentelemetry-instrumentation-logging" +3222930,"azure-mgmt-devtestlabs" +3219634,"azure-cosmosdb-table" +3209955,"pgvector" +3209042,"pathlib-abc" +3206973,"kazoo" +3205620,"bitstring" +3197952,"pyhamcrest" +3196505,"plotnine" +3185739,"azure-appconfiguration" +3173333,"azure-cosmosdb-nspkg" +3170029,"paginate" +3169256,"motor" +3167819,"zope-tal" +3167487,"azure-mgmt-applicationinsights" +3158206,"cassandra-driver" +3157515,"python-snappy" +3153516,"opentelemetry-distro" +3147648,"fpdf" +3138969,"flake8-bugbear" +3130449,"colour" +3128093,"azureml-core" +3126620,"dash-core-components" +3124404,"types-cffi" +3123860,"django-debug-toolbar" +3117834,"dash-html-components" +3117463,"pep8" +3109840,"dash-table" +3106829,"pycocotools" +3098024,"publication" +3096038,"azure-mgmt-servicefabric" +3091965,"chameleon" +3088609,"azure-mgmt-signalr" +3087416,"asana" +3086872,"azure-mgmt-billing" +3085389,"python-box" +3082820,"azure-mgmt-media" +3081097,"msgraph-core" +3077320,"fixedint" +3076580,"plumbum" +3076201,"stdlibs" +3076070,"azure-mgmt-policyinsights" +3074291,"azure-mgmt-iothubprovisioningservices" +3073349,"azure-mgmt-batchai" +3064903,"usort" +3063155,"venusian" +3059006,"locust" +3057036,"microsoft-kiota-authentication-azure" +3056138,"unstructured-client" +3049907,"pyfiglet" +3046743,"azure-mgmt-datamigration" +3046320,"influxdb" +3046131,"prophet" +3045258,"sql-metadata" +3043220,"accesscontrol" +3042339,"azure-mgmt-maps" +3040927,"azure-mgmt-iotcentral" +3039782,"ufmt" +3039170,"azure-functions" +3035040,"pyhocon" +3030982,"dunamai" +3030159,"mypy-boto3-sts" +3024626,"hatch-fancy-pypi-readme" +3022776,"nested-lookup" +3020419,"python-arango" +3019203,"jsonschema-path" +3017562,"lightning" +3013519,"expiringdict" +3010145,"sphinx-autoapi" +3009761,"objsize" +3007421,"acquisition" +2998991,"memray" +2992720,"maturin" +2981598,"uritools" +2975664,"pytest-messenger" +2966827,"webargs" +2962435,"sgmllib3k" +2954613,"netifaces" +2952534,"reactivex" +2941606,"zope-hookable" +2937594,"lru-dict" +2934030,"azure-monitor-query" +2929323,"numcodecs" +2928023,"pyxlsb" +2927749,"zope-component" +2927336,"yq" +2924885,"injector" +2923450,"aws-cdk-integ-tests-alpha" +2918358,"zope-schema" +2915156,"vcrpy" +2914304,"pypandoc" +2913578,"librosa" +2898933,"imageio-ffmpeg" +2895191,"cbor2" +2893926,"osqp" +2892709,"simpleeval" +2890568,"unidiff" +2886500,"zope-security" +2886329,"html2text" +2883843,"python-gettext" +2882996,"mizani" +2882141,"zope-exceptions" +2881229,"cssutils" +2880657,"environs" +2879724,"pydata-sphinx-theme" +2871163,"extensionclass" +2863055,"dm-tree" +2859430,"launchdarkly-server-sdk" +2856921,"itypes" +2856093,"zope-i18n" +2856061,"zope-publisher" +2854628,"zope-configuration" +2854252,"persistence" +2853795,"azure-storage-file" +2852768,"zope-container" +2852168,"zope-testing" +2851803,"jdcal" +2850780,"translationstring" +2849614,"zope-lifecycleevent" +2848890,"zope-location" +2846475,"zope-browser" +2846170,"zope-contenttype" +2840505,"rlp" +2837647,"zope-cachedescriptors" +2837513,"zope-dottedname" +2835624,"zope-traversing" +2835526,"av" +2835241,"google-cloud-datastore" +2834539,"wsgiproxy2" +2831360,"astral" +2831061,"zope-size" +2830861,"zope-filerepresentation" +2830857,"zope-annotation" +2829970,"zope-site" +2829654,"bump2version" +2828841,"zope" +2828627,"inquirer" +2828120,"papermill" +2827650,"zope-processlifetime" +2826818,"authencoding" +2826699,"django-environ" +2826420,"zexceptions" +2826202,"zope-datetime" +2824763,"djangorestframework-simplejwt" +2823127,"documenttemplate" +2822214,"zope-tales" +2821925,"zope-pagetemplate" +2821920,"nose2" +2819760,"zope-contentprovider" +2819705,"zope-structuredtext" +2819459,"zope-browserpage" +2819308,"zope-testbrowser" +2819109,"zope-sequencesort" +2818928,"z3c-pt" +2818915,"zope-browserresource" +2817939,"zope-ptresource" +2817204,"zope-viewlet" +2817185,"zope-browsermenu" +2815559,"multimapping" +2813654,"zope-globalrequest" +2805992,"num2words" +2798890,"pyusb" +2792134,"fasttext-wheel" +2788930,"olefile" +2787403,"allure-python-commons" +2783721,"sphinx-design" +2781823,"aiokafka" +2780767,"diffusers" +2775659,"pynamodb" +2771611,"behave" +2770945,"amazon-ion" +2764729,"zipfile38" +2752116,"flaky" +2745286,"datasketch" +2741765,"python-pptx" +2736337,"pastel" +2732350,"sqlmodel" +2730431,"types-markdown" +2730359,"pyppeteer" +2730021,"opentelemetry-exporter-prometheus" +2729897,"rx" +2725907,"sseclient-py" +2721330,"ortools" +2719871,"types-croniter" +2712878,"sagemaker-mlflow" +2706654,"bitstruct" +2704978,"hupper" +2700840,"dynamodb-json" +2694399,"pypng" +2689873,"testpath" +2689519,"dictdiffer" +2682603,"eth-keyfile" +2679200,"azure-eventgrid" +2669922,"appium-python-client" +2667561,"testcontainers" +2666444,"semgrep" +2666248,"multipledispatch" +2665801,"python-rapidjson" +2663314,"hijri-converter" +2660161,"apache-flink" +2660132,"pep8-naming" +2654804,"zarr" +2652712,"apache-airflow-providers-microsoft-mssql" +2651542,"respx" +2649135,"repoze-lru" +2647439,"unearth" +2645271,"pefile" +2644357,"pystache" +2641026,"types-deprecated" +2638400,"pyhive" +2635810,"pemja" +2632260,"pyogrio" +2630296,"evaluate" +2624796,"azure-synapse-spark" +2624048,"geomet" +2623762,"memory-profiler" +2616601,"bitsandbytes" +2615432,"python-crontab" +2610223,"peft" +2609480,"pytest-repeat" +2608981,"aws-cdk-asset-awscli-v1" +2607756,"apache-flink-libraries" +2605117,"microsoft-kiota-serialization-json" +2594856,"scandir" +2592177,"google-cloud-pubsublite" +2591663,"xmlsec" +2591587,"elementary-data" +2585163,"mkdocstrings-python" +2581000,"opencensus-ext-logging" +2569369,"quicktions" +2568452,"timezonefinder" +2567565,"sqlfluff" +2564269,"drf-spectacular" +2563824,"pmdarima" +2562470,"hatch" +2560899,"nvidia-ml-py" +2560445,"flask-restx" +2559405,"pyramid" +2558187,"promise" +2556436,"avro-gen3" +2550492,"python-consul" +2550229,"testfixtures" +2549913,"google-generativeai" +2544613,"sentinels" +2536539,"click-spinner" +2536453,"apache-airflow-providers-postgres" +2532675,"openlineage-sql" +2528852,"concurrent-log-handler" +2527581,"click-log" +2523865,"pytesseract" +2522478,"pyhanko" +2520542,"databricks-api" +2520093,"newrelic" +2518187,"igraph" +2512928,"aiomqtt" +2506809,"kivy" +2502980,"hyperopt" +2501175,"langchain-google-community" +2487432,"plaster" +2487402,"plaster-pastedeploy" +2482734,"wget" +2481984,"trimesh" +2476950,"airbyte-api" +2470907,"ultralytics-thop" +2468455,"oss2" +2467842,"scikit-build-core" +2466249,"pprintpp" +2463586,"sacrebleu" +2463502,"genson" +2460911,"lifelines" +2450431,"mmcif" +2448912,"scs" +2445331,"scapy" +2442282,"chromadb" +2440406,"rtree" +2438656,"easyconfig" +2437469,"cheroot" +2435064,"types-pymysql" +2434656,"packageurl-python" +2433289,"gym" +2431580,"thefuzz" +2425974,"aws-psycopg2" +2423007,"expandvars" +2416008,"django-stubs" +2413728,"pypdfium2" +2411111,"clickhouse-driver" +2410360,"weasyprint" +2404878,"poetry-dynamic-versioning" +2404156,"yt-dlp" +2397835,"s3path" +2397205,"pex" +2396617,"mbstrdecoder" +2394668,"alibabacloud-adb20211201" +2392693,"pytest-ordering" +2390230,"flake8-isort" +2385452,"django-timezone-field" +2384142,"google-apitools" +2383496,"aiohttp-sse-client" +2380846,"awkward-cpp" +2378545,"cvxpy" +2375896,"datefinder" +2372243,"lit" +2370649,"nibabel" +2357760,"license-expression" +2355418,"sudachidict-core" +2354800,"autobahn" +2353667,"pinotdb" +2350828,"boolean-py" +2349178,"typepy" +2348887,"types-aiofiles" +2345074,"stanio" +2340753,"thrift-sasl" +2340192,"psycopg-pool" +2333901,"latexcodec" +2332417,"pygit2" +2332192,"awkward" +2329097,"allure-pytest" +2328545,"txaio" +2317980,"qdldl" +2316075,"bashlex" +2309233,"django-stubs-ext" +2307329,"teradatasqlalchemy" +2299832,"pybtex" +2287139,"azure-mgmt-datalake-analytics" +2282570,"biotite" +2280713,"chevron" +2279275,"umap-learn" +2278410,"pyzstd" +2276602,"dropbox" +2271369,"sacremoses" +2271018,"svgwrite" +2268880,"azure-cli-core" +2263727,"cleanco" +2260495,"coreapi" +2259566,"ffmpeg-python" +2258713,"azure-mgmt-reservations" +2256452,"eascheduler" +2251386,"pyzipper" +2248654,"boxsdk" +2244492,"opentelemetry-instrumentation-grpc" +2239446,"jwt" +2239446,"ifaddr" +2235949,"google-ai-generativelanguage" +2229922,"findspark" +2227967,"cyclonedx-python-lib" +2223175,"ckzg" +2217795,"pypiwin32" +2217469,"pyquery" +2214880,"dependency-injector" +2213686,"pytest-order" +2209278,"blobfile" +2207693,"biotraj" +2206884,"pytd" +2206881,"pikepdf" +2198607,"pycurl" +2191967,"dbutils" +2190775,"jsonpath-python" +2189495,"pynndescent" +2187487,"ephem" +2186262,"flask-bcrypt" +2184975,"soxr" +2181370,"pymupdfb" +2179162,"opencv-contrib-python" +2165169,"drf-yasg" +2155225,"rply" +2154791,"azure-mgmt-consumption" +2154279,"pyiceberg" +2150108,"markdownify" +2147761,"pytest-custom-exit-code" +2146536,"vertica-python" +2144726,"python-bidi" +2142782,"aws-cdk-lib" +2137593,"yamale" +2136768,"pytest-check" +2135341,"datamodel-code-generator" +2133641,"python-pam" +2129196,"supervisor" +2123625,"pytest-base-url" +2117285,"path" +2115736,"tmtools" +2114858,"markdown2" +2113532,"base58" +2110874,"iopath" +2110323,"azure-loganalytics" +2109185,"zopfli" +2099260,"anytree" +2098933,"neo4j" +2098056,"pkgconfig" +2097987,"o365" +2096940,"py7zr" +2096513,"furo" +2089812,"ec2-metadata" +2086614,"salesforce-bulk" +2083964,"tree-sitter" +2077834,"rollbar" +2074934,"pyunormalize" +2074302,"robotframework-pythonlibcore" +2070003,"azure-mgmt-relay" +2069218,"tablib" +2067445,"notion-client" +2066624,"diagrams" +2065888,"audioread" +2064682,"haversine" +2064315,"commentjson" +2060648,"strip-hints" +2060409,"tritonclient" +2060241,"aws-cdk-asset-kubectl-v20" +2060139,"pynvml" +2059395,"atpublic" +2058462,"unstructured" +2054471,"rfc3987" +2054251,"comtypes" +2053837,"pdpyras" +2053146,"mkdocstrings" +2051885,"ansible-compat" +2051822,"azure" +2051664,"socksio" +2050072,"json-log-formatter" +2047694,"requests-futures" +2046264,"azure-mgmt-subscription" +2043808,"pykwalify" +2042848,"microsoft-kiota-serialization-text" +2039199,"sqlglotrs" +2038702,"yaspin" +2031535,"multi-key-dict" +2026955,"llama-index-indices-managed-llama-cloud" +2020356,"psygnal" +2020231,"joserfc" +2015952,"flask-openid" +2014723,"aliyun-python-sdk-kms" +2008191,"yacs" +2001963,"language-tags" +2000227,"bumpversion" +1998411,"grimp" +1995830,"pyexasol" +1995693,"pygsheets" +1995403,"kornia" +1994658,"django-celery-beat" +1994335,"portpicker" +1991578,"pyppmd" +1990081,"pyaes" +1989105,"llama-index-llms-openai" +1985869,"curlify" +1984131,"jaconv" +1980346,"pyreadline3" +1978986,"diff-match-patch" +1973861,"torchsde" +1973585,"std-uritemplate" +1968036,"tensorflow-hub" +1966212,"pybcj" +1959990,"graphframes" +1959428,"python-string-utils" +1952263,"json-repair" +1944737,"pydispatcher" +1937203,"shtab" +1936295,"dj-database-url" +1936071,"py-serializable" +1934865,"kivy-garden" +1933694,"polling" +1931163,"cloud-sql-python-connector" +1928197,"azure-core-tracing-opentelemetry" +1927566,"trampoline" +1926648,"pytest-httpx" +1923124,"tensorflow-datasets" +1919326,"contextvars" +1918433,"multivolumefile" +1917648,"tld" +1910912,"subprocess-tee" +1910840,"singledispatch" +1901140,"hologram" +1900933,"azure-search-documents" +1899667,"lmfit" +1899136,"opsgenie-sdk" +1898920,"databricks-connect" +1897766,"requirements-parser" +1896267,"cloudformation-cli-python-lib" +1892649,"sudachipy" +1892367,"azure-monitor-opentelemetry" +1892309,"rustworkx" +1891112,"dominate" +1889842,"prometheus-fastapi-instrumentator" +1887759,"python-ldap" +1886134,"mysql-connector" +1884983,"flake8-docstrings" +1884474,"funcy" +1882077,"signalfx" +1881983,"gdown" +1880722,"sounddevice" +1880659,"pytest-json-report" +1880108,"stone" +1878714,"aiofile" +1874716,"snuggs" +1874171,"google-analytics-data" +1873784,"pydicom" +1869726,"pygeohash" +1862094,"hjson" +1861462,"azure-cli-telemetry" +1860463,"flatten-json" +1859826,"channels" +1859313,"tzfpy" +1858076,"mkdocs-autorefs" +1857059,"edgegrid-python" +1854806,"mockito" +1852024,"opentelemetry-instrumentation-redis" +1851544,"chispa" +1848499,"pyluach" +1848014,"pytest-aiohttp" +1847070,"pynvim" +1846632,"pytest-subtests" +1845360,"shareplum" +1843889,"sqlalchemy2-stubs" +1842621,"lasio" +1841992,"pymemcache" +1840440,"types-jsonschema" +1839863,"azure-ai-ml" +1834208,"aioredis" +1833675,"docker-compose" +1828270,"accessible-pygments" +1825115,"numpydoc" +1824635,"pypyp" +1821167,"syrupy" +1820531,"truststore" +1817565,"json-delta" +1817434,"pyramid-jinja2" +1816060,"memoization" +1815767,"types-pillow" +1813922,"colored" +1813591,"dagster-docker" +1812943,"pycairo" +1809068,"urwid" +1808577,"opentracing" +1808332,"azure-mgmt-notificationhubs" +1806214,"schematics" +1805431,"django-oauth-toolkit" +1805285,"aws-cdk-asset-node-proxy-agent-v6" +1805197,"polib" +1803364,"pyudev" +1802628,"coreschema" +1798503,"rq" +1796985,"towncrier" +1795829,"opentelemetry-instrumentation-sqlalchemy" +1791866,"intervaltree" +1791185,"boa-str" +1790426,"pydyf" +1789719,"f90nml" +1787374,"undetected-chromedriver" +1787132,"jproperties" +1786878,"timeout-decorator" +1782904,"tf-keras" +1781158,"opentelemetry-resource-detector-azure" +1778471,"insight-cli" +1773711,"pytest-instafail" +1767231,"virtualenv-clone" +1765908,"azure-mgmt-logic" +1765873,"google-cloud-recommendations-ai" +1764615,"langgraph" +1762926,"sphinx-basic-ng" +1760083,"etils" +1758693,"urllib3-secure-extra" +1754849,"pure-sasl" +1752093,"fasttext" +1750736,"caio" +1747244,"jq" +1744672,"apache-sedona" +1744473,"onnxruntime-gpu" +1744142,"setuptools-scm-git-archive" +1740576,"backports-functools-lru-cache" +1740473,"sqlparams" +1732988,"quart" +1732116,"munch" +1728500,"boostedblob" +1728185,"azure-mgmt-apimanagement" +1721539,"pylint-plugin-utils" +1718086,"sarif-om" +1710311,"azure-servicefabric" +1708273,"bottleneck" +1708257,"checksumdir" +1706274,"types-certifi" +1705729,"easydict" +1705092,"jsonconversion" +1703574,"wordcloud" +1703568,"robotframework-seleniumlibrary" +1703314,"dirtyjson" +1703199,"xformers" +1702557,"requests-aws-sign" +1702324,"pdm" +1701274,"pywinauto" +1700462,"codeowners" +1698947,"azure-mgmt" +1698736,"inflate64" +1698193,"clarabel" +1697849,"ecos" +1695683,"azure-mgmt-scheduler" +1694095,"numdifftools" +1692204,"opentelemetry-instrumentation-aiohttp-client" +1691672,"pyserial-asyncio" +1690460,"fpdf2" +1689219,"mypy-boto3-athena" +1688279,"slotted" +1686688,"tlparse" +1686518,"pamqp" +1684699,"azure-mgmt-commerce" +1684222,"parsel" +1684087,"soda-core" +1683517,"azure-mgmt-powerbiembedded" +1682742,"nptyping" +1682481,"tk" +1682195,"flask-socketio" +1682112,"gpxpy" +1680274,"decopatch" +1678980,"dagster" +1678866,"azure-servicemanagement-legacy" +1678052,"azure-mgmt-hanaonazure" +1677172,"rpyc" +1675512,"azure-mgmt-machinelearningcompute" +1674700,"pyramid-debugtoolbar" +1674200,"azure-mgmt-managementpartner" +1674126,"jschema-to-python" +1672628,"folium" +1671729,"llama-index-agent-openai" +1671244,"dockerfile-parse" +1671160,"serial" +1669366,"dbt-redshift" +1665156,"databricks-pypi1" +1663593,"vulture" +1662142,"riot" +1661835,"jieba" +1658155,"hishel" +1656740,"azure-schemaregistry" +1656401,"pyclipper" +1655371,"uwsgi" +1655279,"editdistance" +1653576,"pyramid-mako" +1653307,"flashtext" +1652454,"branca" +1652443,"types-html5lib" +1652386,"python-crfsuite" +1649510,"azure-mgmt-devspaces" +1642992,"casefy" +1640291,"pytest-playwright" +1638816,"findpython" +1636861,"queuelib" +1635691,"mongoengine" +1635209,"moviepy" +1634051,"lmdb" +1633620,"mutagen" +1631454,"azure-applicationinsights" +1630947,"azure-cli" +1630071,"dagster-pipes" +1629851,"zstd" +1625941,"pywinrm" +1623578,"setuptools-git-versioning" +1623064,"langchain-experimental" +1622911,"llama-index-readers-llama-parse" +1621226,"aws-secretsmanager-caching" +1619505,"opentelemetry-instrumentation-httpx" +1619174,"dataclasses-avroschema" +1617636,"ws4py" +1616438,"striprtf" +1611761,"temporalio" +1609436,"boto3-type-annotations" +1608845,"mypy-boto3-iam" +1608586,"types-ujson" +1606640,"llama-index-readers-file" +1606488,"dep-logic" +1601125,"anyascii" +1598794,"azure-mgmt-privatedns" +1597836,"django-appconf" +1597461,"aiogram" +1597274,"backports-weakref" +1597155,"pandas-datareader" +1596560,"redis-py-cluster" +1595834,"pywinpty" +1591143,"prefect-aws" +1590423,"pbs-installer" +1585505,"daphne" +1584856,"itemadapter" +1584732,"tableauhyperapi" +1582631,"safety" +1582359,"codespell" +1578750,"pipelinewise-singer-python" +1578660,"django-model-utils" +1576410,"opentelemetry-propagator-aws-xray" +1575389,"github-heatmap" +1572930,"types-cryptography" +1572481,"pybuildkite" +1571984,"imagehash" +1571237,"fixtures" +1570747,"autograd-gamma" +1568069,"python-xlib" +1567576,"pdfkit" +1566105,"azure-mgmt-hdinsight" +1564384,"cairocffi" +1563303,"youtube-transcript-api" +1562301,"alive-progress" +1561561,"flametree" +1558563,"jsonpath-rw" +1556382,"pyopengl" +1555764,"modin" +1554648,"ansible-lint" +1554418,"protego" +1553368,"palettable" +1551850,"boto3-stubs-lite" +1551114,"scrapy" +1549634,"types-psycopg2" +1549397,"typeid-python" +1548183,"types-mock" +1545131,"types-python-slugify" +1544539,"python-codon-tables" +1544144,"dnachisel" +1542704,"pysnmp" +1539631,"install-jdk" +1536612,"hdbcli" +1534510,"google-cloud-trace" +1534306,"asgi-lifespan" +1533876,"pandasql" +1533259,"mando" +1531014,"nvidia-cusolver-cu11" +1529922,"gprof2dot" +1528404,"pulumi" +1525974,"nbsphinx" +1525863,"azure-mgmt-synapse" +1522300,"nvidia-cufft-cu11" +1521669,"azure-mgmt-security" +1521503,"arpeggio" +1521220,"cairosvg" +1521052,"pytimeparse2" +1520810,"radon" +1519514,"conan" +1517944,"nvidia-cuda-cupti-cu11" +1515806,"nvidia-cusparse-cu11" +1514979,"antlr4-tools" +1513248,"opentelemetry-instrumentation-botocore" +1513200,"types-simplejson" +1512382,"category-encoders" +1509221,"dnslib" +1508767,"nvidia-curand-cu11" +1507523,"spglib" +1507488,"dpkt" +1504340,"node-semver" +1503739,"oci" +1503021,"pysmi" +1502844,"robotframework-requests" +1500599,"pyandoc" +1500189,"geoalchemy2" +1500038,"gs-quant" +1498023,"tox-uv" +1497993,"hatch-requirements-txt" +1496637,"ansicolors" +1495057,"smartsheet-python-sdk" +1491634,"jupytext" +1490788,"llama-index-cli" +1488622,"intelhex" +1488148,"premailer" +1487837,"grpclib" +1486679,"open-clip-torch" +1486065,"nvidia-nvtx-cu11" +1485830,"simsimd" +1485806,"linecache2" +1482835,"priority" +1481947,"strawberry-graphql" +1479756,"dbus-fast" +1479108,"slack-bolt" +1478650,"asciitree" +1476491,"traceback2" +1476016,"nvidia-nccl-cu11" +1471694,"dbt-spark" +1469574,"python-hcl2" +1468188,"freetype-py" +1466204,"mypy-boto3-ssm" +1465287,"itemloaders" +1464335,"optimum" +1464071,"pyformance" +1462835,"click-help-colors" +1462610,"about-time" +1462494,"certbot-dns-cloudflare" +1460048,"tempora" +1459568,"extras" +1457852,"tensorflow-intel" +1456141,"dicttoxml" +1453160,"azure-multiapi-storage" +1451894,"mypy-boto3-stepfunctions" +1450843,"typish" +1450248,"future-fstrings" +1448238,"logging-azure-rest" +1448090,"mypy-boto3-ecr" +1445850,"apache-airflow-providers-mongo" +1445313,"llama-index-embeddings-openai" +1444775,"braceexpand" +1444329,"cmd2" +1443155,"ecs-logging" +1441326,"requests-unixsocket" +1439197,"aws-encryption-sdk" +1436419,"discord" +1433603,"uproot" +1432272,"tecton" +1429224,"pytube" +1428999,"colorclass" +1428988,"stdlib-list" +1428354,"orbax-checkpoint" +1427882,"djangorestframework-stubs" +1427041,"clang-format" +1426054,"azure-mgmt-appconfiguration" +1425112,"llama-index-program-openai" +1424209,"azure-mgmt-sqlvirtualmachine" +1421316,"pyclothoids" +1420572,"sphinx-argparse" +1420395,"azure-mgmt-redhatopenshift" +1417509,"soda-core-spark-df" +1416591,"azure-mgmt-netapp" +1413343,"pytest-bdd" +1412367,"azure-synapse-accesscontrol" +1411353,"treelib" +1410979,"types-aiobotocore" +1410505,"python-stdnum" +1410477,"python-iso639" +1410265,"openshift" +1409815,"azure-keyvault-administration" +1404991,"sphinx-autobuild" +1404864,"pyvirtualdisplay" +1404822,"django-phonenumber-field" +1403709,"flit" +1400265,"django-celery-results" +1398685,"find-libpython" +1396772,"bazel-runfiles" +1396232,"azure-mgmt-botservice" +1392838,"bc-detect-secrets" +1392045,"pylance" +1390697,"sse-starlette" +1390607,"azure-mgmt-imagebuilder" +1390471,"launchdarkly-eventsource" +1390398,"mypy-boto3-kinesis" +1388790,"dparse" +1386608,"llama-index-multi-modal-llms-openai" +1385664,"speechrecognition" +1385301,"gspread-dataframe" +1384223,"azure-mgmt-databoxedge" +1382206,"openvino" +1380846,"arabic-reshaper" +1380733,"azure-synapse-managedprivateendpoints" +1380143,"databricks" +1380043,"troposphere" +1379764,"pylint-django" +1379638,"azure-mgmt-servicelinker" +1379056,"mypy-boto3-ecs" +1378516,"azure-mgmt-extendedlocation" +1378376,"flake8-comprehensions" +1377448,"tcolorpy" +1377275,"ydb" +1377245,"pytest-icdiff" +1375024,"mleap" +1374115,"backports-tempfile" +1373233,"koalas" +1372331,"azure-mgmt-servicefabricmanagedclusters" +1371279,"sphinxcontrib-spelling" +1370847,"ghapi" +1370745,"tensorflow-probability" +1370218,"cuda-python" +1369381,"dbt-databricks" +1369308,"apache-airflow-providers-dbt-cloud" +1368007,"llama-index-legacy" +1365631,"coolname" +1365257,"poethepoet" +1363289,"aiolimiter" +1362152,"gotrue" +1361726,"emcee" +1361297,"country-converter" +1360872,"presto-python-client" +1359969,"j2cli" +1359822,"curl-cffi" +1359339,"supabase" +1355997,"aws-cdk-cloud-assembly-schema" +1355298,"langchain-aws" +1354152,"azureml-dataprep" +1353925,"httpretty" +1353085,"mediapipe" +1352257,"spdx-tools" +1350330,"llama-index-question-gen-openai" +1348674,"pathlib-mate" +1348321,"fugue" +1347784,"update-checker" +1346742,"hypercorn" +1346431,"github3-py" +1345754,"apache-airflow-providers-jdbc" +1345448,"patch-ng" +1344772,"icalendar" +1344682,"databricks-pypi2" +1343956,"types-tqdm" +1339946,"realtime" +1338561,"ladybug-core" +1338471,"types-psutil" +1338325,"giturlparse" +1337813,"simple-gcp-object-downloader" +1335663,"aio-pika" +1334703,"azure-mgmt-kusto" +1334563,"htmldate" +1332625,"ladybug-geometry" +1332042,"jaraco-text" +1331595,"ip3country" +1331490,"cinemagoer" +1331431,"honeybee-core" +1330598,"postgrest" +1328254,"supafunc" +1328244,"django-crispy-forms" +1327094,"heapdict" +1326825,"tensorflow-io" +1326079,"mangum" +1325366,"openlineage-airflow" +1321653,"sphinxcontrib-mermaid" +1321166,"requests-sigv4" +1319432,"icdiff" +1319199,"bson" +1318889,"kornia-rs" +1318788,"django-ipware" +1318503,"xmldiff" +1317258,"storage3" +1314985,"imdbpy" +1313979,"line-profiler" +1313259,"aiormq" +1312879,"htmlmin" +1312832,"jiwer" +1312439,"zeroconf" +1310216,"svglib" +1310101,"ladybug-geometry-polyskel" +1309941,"simpy" +1309773,"c7n" +1309428,"soda-core-spark" +1307264,"pytest-freezegun" +1307175,"honeybee-schema" +1305542,"lizard" +1304307,"onnxconverter-common" +1303593,"autocommand" +1302495,"pyhanko-certvalidator" +1299914,"social-auth-core" +1299427,"segment-analytics-python" +1298785,"honeybee-standards" +1298700,"pydantic-openapi-helper" +1296317,"requests-html" +1294585,"googlemaps" +1293476,"cliff" +1293241,"plac" +1293039,"requests-kerberos" +1292795,"types-pygments" +1292408,"gcovr" +1291049,"types-beautifulsoup4" +1290981,"aiostream" +1288637,"aiocache" +1288254,"tensorstore" +1287649,"aws-lambda-builders" +1283291,"notifiers" +1281884,"idna-ssl" +1280827,"aiomultiprocess" +1279889,"pyvisa" +1279059,"pdm-backend" +1278903,"ansi2html" +1278636,"attrdict" +1276811,"unittest2" +1274178,"python-can" +1274040,"prance" +1272521,"metaflow" +1272245,"rstr" +1272179,"textblob" +1271869,"xhtml2pdf" +1271853,"in-n-out" +1270685,"json-stream-rs-tokenizer" +1270270,"jaraco-collections" +1268815,"html-testrunner" +1268008,"cdk-nag" +1267201,"backports-cached-property" +1266819,"polyfactory" +1265003,"log-symbols" +1264281,"django-simple-history" +1263923,"param" +1263764,"spinners" +1261674,"azureml-dataprep-rslex" +1260103,"openvino-telemetry" +1258142,"jsonschema-spec" +1257502,"coremltools" +1257211,"pytest-httpserver" +1256891,"pylev" +1256603,"pymilvus" +1254100,"circuitbreaker" +1252069,"zenpy" +1250608,"dogpile-cache" +1248527,"bc-python-hcl2" +1248130,"arviz" +1247127,"ibm-db" +1241575,"oslo-utils" +1239959,"blosc2" +1239705,"cerberus-python-client" +1239026,"rembg" +1238632,"ulid-py" +1238624,"pycomposefile" +1238053,"sqlfluff-templater-dbt" +1236885,"auth0-python" +1236417,"channels-redis" +1235808,"more-executors" +1234327,"mypy-boto3-apigateway" +1233852,"dbl-tempo" +1232228,"kaitaistruct" +1228959,"port-for" +1226200,"pymatting" +1224786,"flask-testing" +1224784,"supervision" +1224771,"policy-sentry" +1222652,"opentelemetry-exporter-gcp-trace" +1221409,"pycep-parser" +1220751,"flask-mail" +1218681,"json-stream" +1218429,"xmod" +1218344,"selenium-wire" +1218009,"cloudflare" +1216780,"pymatgen" +1215451,"plyvel" +1214542,"pytest-dotenv" +1211942,"albucore" +1210796,"editor" +1207657,"fastpurge" +1207594,"cloudsplaining" +1207473,"checkdigit" +1206118,"tables" +1204027,"flask-compress" +1203775,"langgraph-checkpoint" +1201863,"ibm-cloud-sdk-core" +1200919,"langchain-anthropic" +1200008,"runs" +1198184,"pytest-flask" +1195850,"langfuse" +1195624,"pretty-html-table" +1195047,"msoffcrypto-tool" +1194814,"opentelemetry-resourcedetector-gcp" +1193973,"async-property" +1192624,"dohq-artifactory" +1192112,"odfpy" +1189342,"livereload" +1189134,"django-import-export" +1188506,"flake8-builtins" +1188440,"mss" +1187501,"ndjson" +1186194,"rouge-score" +1185942,"z3-solver" +1185581,"mypy-boto3-emr" +1182897,"gymnasium" +1181212,"hubspot-api-client" +1181144,"pony" +1180583,"python-keycloak" +1179598,"betterproto" +1179588,"opentelemetry-sdk-extension-aws" +1178331,"symengine" +1176531,"panel" +1175366,"polling2" +1174713,"python-subunit" +1174613,"pygtrie" +1174033,"lunardate" +1171839,"piexif" +1171459,"apsw" +1170285,"lunarcalendar" +1169999,"jupyter-ydoc" +1169667,"impyla" +1169419,"ruptures" +1166361,"social-auth-app-django" +1165026,"tensorflow-addons" +1163878,"llama-cloud" +1163265,"jupyter-server-ydoc" +1162755,"exchangelib" +1162651,"signxml" +1161773,"argparse-addons" +1161564,"pytest-mypy" +1161350,"schemdraw" +1159340,"hmmlearn" +1156167,"bc-jsonpath-ng" +1154816,"autopage" +1154519,"databases" +1154076,"mygene" +1152148,"python-igraph" +1151803,"biothings-client" +1150598,"cherrypy" +1147412,"glob2" +1146535,"statsforecast" +1146291,"ccxt" +1146027,"mirakuru" +1143783,"sphinx-book-theme" +1142174,"brotlicffi" +1142072,"pytest-cases" +1141572,"awesomeversion" +1141519,"dockerpty" +1141154,"oyaml" +1140673,"torchtext" +1139523,"dagster-pandas" +1135962,"bio" +1135313,"flake8-polyfill" +1131725,"oslo-config" +1130757,"pip-requirements-parser" +1128720,"dagster-aws" +1128473,"sphinxcontrib-bibtex" +1127884,"gitdb2" +1127816,"ydata-profiling" +1127303,"gprofiler-official" +1126491,"janus" +1125949,"honeybee-energy" +1125717,"apache-airflow-providers-microsoft-azure" +1125526,"html-text" +1124584,"xdoctest" +1123823,"watchgod" +1123819,"google-cloud-artifact-registry" +1123522,"xattr" +1123215,"apache-airflow-providers-odbc" +1121091,"jinja2-simple-tags" +1121088,"pymongo-auth-aws" +1119202,"testtools" +1118122,"verboselogs" +1117123,"django-js-asset" +1115980,"ntlm-auth" +1115729,"dagster-graphql" +1115008,"thop" +1112954,"webdataset" +1112835,"pysbd" +1112362,"paste" +1111796,"elastic-apm" +1111770,"y-py" +1110917,"triad" +1109836,"resampy" +1109766,"oslo-i18n" +1108672,"mypy-boto3-sns" +1107725,"tinydb" +1106520,"puremagic" +1106487,"pybase64" +1106240,"skl2onnx" +1103398,"pybytebuffer" +1103125,"descartes" +1102570,"vtk" +1098864,"portend" +1098584,"s3cmd" +1097844,"flake8-black" +1097801,"geocoder" +1097711,"aws-sam-cli" +1096692,"pyquaternion" +1096118,"p4python" +1095613,"dash-bootstrap-components" +1095389,"requests-auth-aws-sigv4" +1095312,"ladybug-display" +1094678,"salib" +1092389,"mypy-boto3-xray" +1091875,"opencv-contrib-python-headless" +1091755,"ctranslate2" +1091741,"gcs-oauth2-boto-plugin" +1090308,"jaxtyping" +1089547,"docx2txt" +1087266,"inquirerpy" +1086111,"msgraph-sdk" +1085364,"click-shell" +1084894,"mypy-boto3-schemas" +1084738,"mypy-boto3-signer" +1084469,"ladybug-rhino" +1083699,"seleniumbase" +1082248,"pfzy" +1082143,"backports-datetime-fromisoformat" +1081894,"gmpy2" +1081745,"adagio" +1080517,"model-bakery" +1077766,"pyvis" +1077726,"sshpubkeys" +1077498,"stringzilla" +1075823,"jupyter-server-fileid" +1075699,"edx-opaque-keys" +1075649,"dagster-postgres" +1075376,"azure-mgmt-appcontainers" +1075276,"grpc-stubs" +1073300,"phik" +1071483,"sgqlc" +1071207,"pybloom-live" +1070640,"oslo-serialization" +1068384,"textwrap3" +1068238,"transitions" +1067609,"types-aiobotocore-s3" +1065356,"pytorch-metric-learning" +1064470,"debtcollector" +1063036,"inflector" +1062921,"dagster-spark" +1062766,"ph-units" +1062406,"pybtex-docutils" +1061942,"hashids" +1061216,"pinecone-plugin-inference" +1059521,"ypy-websocket" +1059459,"setuptools-git" +1058661,"prawcore" +1057579,"mido" +1056484,"trafilatura" +1055735,"jinja2-humanize-extension" +1055302,"cloudscraper" +1054722,"napari-plugin-engine" +1052403,"ratelim" +1051961,"azure-storage" +1051926,"shiboken6" +1051059,"simple-ddl-parser" +1050783,"monty" +1050307,"web-fragments" +1049066,"pydevd" +1047939,"boost-histogram" +1047137,"c7n-org" +1046429,"ansiwrap" +1044285,"flatten-dict" +1042995,"phonenumberslite" +1041668,"flake8-quotes" +1041351,"uhashring" +1040902,"probableparsing" +1039837,"gnureadline" +1037832,"pypsrp" +1036687,"pyside6" +1032858,"pinecone-plugin-interface" +1032435,"httmock" +1032199,"workalendar" +1032143,"js2py" +1031082,"pyside6-essentials" +1031021,"devtools" +1029179,"stestr" +1027295,"progress" +1026856,"neatest" +1026169,"chkpkg" +1025921,"swifter" +1025008,"pytest-socket" +1024958,"editorconfig" +1024630,"clang" +1023957,"usaddress" +1023448,"azure-ai-formrecognizer" +1023405,"dataproperty" +1023255,"types-freezegun" +1020332,"chex" +1019527,"tyro" +1019046,"pyside6-addons" +1018058,"aiomysql" +1016831,"objgraph" +1016822,"azureml-dataprep-native" +1015324,"praw" +1014603,"safehttpx" +1014147,"pylru" +1013659,"pyglet" +1012601,"instructor" +1012364,"crccheck" +1011319,"property-manager" +1008846,"ebcdic" +1008671,"django-allauth" +1008206,"google-cloud-bigquery-biglake" +1007566,"sasl" +1007311,"dirty-equals" +1003183,"segment-anything" +1002781,"wand" +1002581,"singleton-decorator" +1002340,"types-markupsafe" +999685,"func-timeout" +997890,"visions" +997554,"wmi" +997231,"kgb" +997092,"snowflake" +995582,"jsonmerge" +995282,"google-cloud-discoveryengine" +994371,"correctionlib" +994322,"mypy-boto3-emr-serverless" +992785,"raven" +991495,"graypy" +990367,"flake8-pyproject" +989895,"types-jinja2" +989568,"jsbeautifier" +987284,"decli" +986779,"artifacts-keyring" +985846,"scikit-optimize" +982955,"intervals" +980528,"dagster-webserver" +980102,"pyvmomi" +978572,"python-ulid" +978442,"hist" +978417,"mplhep" +978109,"openapi-schema-pydantic" +976156,"pcpp" +974916,"python-on-whales" +973883,"pyairtable" +973732,"aws-cdk-aws-lambda-python-alpha" +972813,"protoc-gen-openapiv2" +972725,"annoy" +971749,"uhi" +971715,"hsluv" +971626,"types-decorator" +970967,"msgpack-numpy" +970341,"python-baseconv" +969389,"histoprint" +968713,"tensorflow-cpu" +968688,"jsons" +968566,"sphinx-tabs" +967444,"yarg" +966549,"tabledata" +966293,"vector" +966165,"django-otp" +965681,"mimesis" +965161,"pytest-assume" +964897,"openstackdocstheme" +963067,"dlt" +962682,"flask-smorest" +958384,"colorcet" +958242,"dask-awkward" +958086,"aiorwlock" +957030,"nanoid" +956740,"zigpy" +956131,"oslotest" +955786,"mplhep-data" +955662,"dask-histogram" +954292,"funcparserlib" +954253,"pyld" +954240,"coffea" +953482,"wtforms-components" +951766,"open3d" +951497,"farama-notifications" +951462,"versioneer" +950894,"suds-community" +950040,"isoweek" +948434,"pluginbase" +948117,"mecab-python3" +946658,"pytest-postgresql" +945932,"corner" +945894,"grapheme" +945720,"livy" +943760,"fsspec-xrootd" +943252,"lxml-stubs" +941782,"pyviz-comms" +941730,"flatdict" +941717,"wtforms-alchemy" +941283,"pyupgrade" +941003,"os-api-ref" +940725,"zdaemon" +940659,"retry2" +940402,"ruyaml" +939491,"pretend" +938836,"google-cloud-pipeline-components" +938470,"dateformat" +938280,"ndindex" +938012,"bz2file" +938006,"rope" +937676,"azureml-mlflow" +936852,"ptpython" +936334,"tdqm" +935572,"safety-schemas" +935380,"logzio-python-handler" +935056,"magic-filter" +934494,"pytablewriter" +934190,"peppercorn" +932753,"credstash" +931582,"xmljson" +930684,"types-termcolor" +929374,"prisma" +928182,"apache-airflow-providers-pagerduty" +927785,"keystoneauth1" +925231,"utilsforecast" +924555,"quantlib" +924114,"lupa" +922525,"shellescape" +921635,"vispy" +920380,"returns" +919952,"types-retry" +918782,"rfc3339" +918382,"jupyter-packaging" +917704,"facexlib" +917330,"pyqt6" +917260,"apache-airflow-providers-tableau" +915986,"datacompy" +915197,"mammoth" +913330,"justext" +913030,"optax" +912730,"subprocess32" +911426,"astpretty" +910753,"argh" +910295,"snowflake-core" +908799,"odict" +908733,"flax" +908432,"torchdiffeq" +907684,"h5netcdf" +907649,"pyrate-limiter" +905776,"gguf" +905215,"mercantile" +905194,"cobble" +904633,"crc32c" +904167,"types-click" +903236,"config" +902499,"pyahocorasick" +900869,"plumber" +900339,"noise" +899868,"smmap2" +899851,"naked" +898021,"imblearn" +897518,"django-countries" +897081,"ase" +897016,"types-pyserial" +895945,"array-record" +893721,"pipreqs" +891702,"parce" +891479,"flask-marshmallow" +890300,"sktime" +890081,"commitizen" +890077,"sqlite-utils" +889984,"camel-converter" +889157,"cachy" +888272,"torchdata" +887283,"pillow-heif" +887191,"poetry-plugin-pypi-mirror" +886697,"mypy-boto3-sagemaker" +886604,"textparser" +882541,"langgraph-sdk" +882514,"pyside2" +881626,"buildkite-test-collector" +880927,"pip-api" +880458,"marshmallow-jsonschema" +879499,"dictances" +879291,"ollama" +878418,"hnswlib" +878132,"tableau-api-lib" +877403,"exchange-calendars" +877170,"cached-path" +876487,"pyqt6-qt6" +875256,"shiboken2" +874706,"pytelegrambotapi" +873704,"pytest-dependency" +873604,"mypy-boto3-kms" +872935,"flake8-print" +871894,"opentelemetry-instrumentation-jinja2" +871549,"microsoft-security-utilities-secret-masker" +871275,"gevent-websocket" +870645,"datumaro" +870381,"pyemd" +869939,"microsoft-kiota-serialization-form" +869091,"doit" +868658,"cfile" +868063,"pyenchant" +867417,"fasttext-langdetect" +866552,"dotty-dict" +866218,"frida" +864716,"seqio-nightly" +863197,"microsoft-kiota-serialization-multipart" +862664,"flasgger" +862339,"pytest-trio" +862235,"flask-admin" +860505,"awslambdaric" +860343,"trl" +859964,"pydriller" +859187,"pyqt6-sip" +858424,"traittypes" +854749,"jamo" +854302,"pylatexenc" +853881,"asgi-correlation-id" +853642,"apache-airflow-providers-airbyte" +853558,"types-colorama" +853496,"k8" +852108,"ovmsclient" +851931,"icecream" +851340,"apache-airflow-providers-salesforce" +851053,"docformatter" +850918,"python3-logstash" +850905,"nulltype" +850311,"vlsir" +850201,"statsig" +850143,"vlsirtools" +848768,"recommonmark" +847392,"kaldiio" +846744,"openinference-semantic-conventions" +846732,"yarn-api-client" +846585,"pysam" +846482,"halo" +846148,"breathe" +844585,"hmsclient" +843907,"scrypt" +841249,"sphinxcontrib-httpdomain" +839606,"import-linter" +838771,"dict2xml" +838658,"custom-inherit" +837248,"advent-of-code" +836790,"opentelemetry-instrumentation-sqlite3" +835890,"textdistance" +835736,"fastprogress" +834661,"azure-mgmt-resourcegraph" +833084,"cppy" +833056,"shyaml" +833023,"pyscreeze" +832354,"kconfiglib" +829960,"pygam" +829609,"scikit-build" +827986,"python-oxmsg" +827965,"gssapi" +827644,"sampleproject" +826849,"pyshp" +825209,"pysmb" +825167,"eyes-selenium" +825156,"python-ipware" +825067,"clickhouse-sqlalchemy" +824858,"spandrel" +822579,"mlxtend" +822524,"eralchemy2" +820688,"eyes-common" +820487,"django-csp" +819818,"pytest-alembic" +819494,"coreforecast" +819447,"pulsar-client" +819268,"rjsmin" +818449,"sharepy" +818140,"superqt" +817800,"fvcore" +817661,"apache-airflow-providers-datadog" +816396,"natto-py" +815688,"untokenize" +814238,"parsley" +813717,"sqlite-fts4" +812826,"pdbr" +812668,"pytest-recording" +812640,"fastapi-pagination" +812574,"blake3" +812537,"cibuildwheel" +811367,"cmaes" +811281,"histlite" +810986,"mypy-boto3-appconfig" +808836,"gluonts" +808155,"pydantic-compat" +807875,"torch-model-archiver" +806869,"aiosmtplib" +806624,"table-meta" +806385,"vertexai" +806268,"versioneer-518" +805979,"lancedb" +805396,"flake8-import-order" +805208,"pyspellchecker" +804308,"apache-airflow-providers-celery" +803038,"youtube-dl" +802633,"pysaml2" +801581,"strict-rfc3339" +800717,"apache-airflow-providers-apache-spark" +800324,"starlette-context" +800048,"eradicate" +799005,"backports-entry-points-selectable" +798944,"generalimport" +798927,"mypy-boto3-lakeformation" +798424,"casadi" +797490,"a2wsgi" +797342,"flake8-eradicate" +797206,"pydruid" +797178,"py-models-parser" +796663,"elasticsearch7" +796494,"easyprocess" +795699,"pyxdg" +795591,"groq" +795447,"prefect-gcp" +793706,"python-geohash" +793693,"pandas-market-calendars" +791575,"blessings" +791556,"imath" +791488,"django-prometheus" +789886,"jinja2-time" +789014,"dotmap" +788312,"parsy" +787545,"fluent-logger" +787482,"pytest-snapshot" +787079,"core-universal" +786742,"lief" +785970,"mypy-boto3-dataexchange" +785858,"starlette-exporter" +785696,"django-health-check" +784007,"clean-fid" +783806,"django-silk" +783727,"wurlitzer" +783083,"dicomweb-client" +782949,"pyu2f" +782637,"courlan" +779860,"apache-airflow-microsoft-fabric-plugin" +777814,"arch" +777711,"pytest-azurepipelines" +777628,"wasmtime" +776850,"banal" +776366,"opentelemetry-instrumentation-celery" +775846,"xarray-einstats" +775828,"josepy" +775456,"python-semantic-release" +775169,"snowflake-legacy" +774925,"avro-gen" +774680,"littleutils" +774159,"magicgui" +773814,"os-service-types" +773765,"pykakasi" +773638,"keyrings-alt" +773306,"cchardet" +773045,"parver" +772511,"app-model" +772018,"djlint" +770904,"mypy-boto3-events" +770569,"cachey" +770299,"pyconify" +769358,"flask-talisman" +769170,"shrub-py" +769006,"mypy-boto3-logs" +768248,"publish-event-sns" +768025,"collections-extended" +767344,"napari-console" +767068,"npe2" +766828,"napari" +766773,"crayons" +766501,"jsonargparse" +765946,"napari-svg" +765266,"google-reauth" +764973,"tfds-nightly" +764296,"dataclass-wizard" +764129,"cheetah3" +763567,"google-cloud-error-reporting" +763298,"git-remote-codecommit" +762936,"modelscope" +762704,"crypto" +761320,"stim" +760960,"netmiko" +760222,"pyfunctional" +760094,"nbtlib" +758752,"backports-csv" +758668,"pathtools" +755298,"pudb" +753847,"hdbscan" +753834,"mapbox-earcut" +752547,"sphinx-jinja" +751999,"akshare" +751369,"azureml-dataset-runtime" +750511,"openturns" +750460,"pygraphviz" +750083,"ibm-platform-services" +750035,"multiset" +749718,"apache-airflow-providers-oracle" +749219,"django-anymail" +747459,"pynput" +747379,"streamerate" +747299,"flask-oidc" +747249,"names" +747229,"throttlex" +747066,"tsx" +747061,"faster-whisper" +746102,"ntplib" +745872,"zthreading" +745800,"connectorx" +744619,"openapi-core" +744607,"sparkorm" +744568,"libsass" +742292,"flaml" +741869,"detect-secrets" +739376,"rpaframework" +738823,"galvani" +738288,"domdf-python-tools" +737978,"dagster-k8s" +737657,"frictionless" +737452,"jupyter-cache" +736038,"openstacksdk" +735975,"modal" +734942,"python-lsp-jsonrpc" +734772,"httpbin" +734408,"jsmin" +734401,"azure-mgmt-managedservices" +734221,"okta" +733496,"pyautogui" +732341,"schwifty" +731785,"jetblack-iso8601" +731062,"sqlalchemy-stubs" +729366,"python-memcached" +728658,"pytweening" +728450,"presidio-analyzer" +728438,"pytest-flake8" +727967,"fastapi-utils" +727832,"beancount" +727606,"pyloudnorm" +726604,"azure-mgmt-hybridcompute" +726290,"win32-setctime" +724034,"awscliv2" +722119,"tensorflow-model-optimization" +721021,"tfx-bsl" +719906,"pystan" +719680,"looseversion" +719680,"pynose" +719400,"slacker" +719395,"django-taggit" +719211,"acme" +719184,"mypy-boto3-elbv2" +718431,"drf-nested-routers" +718047,"dataset" +717410,"uplink" +715908,"graphlib-backport" +715692,"simple-parsing" +715314,"dagster-dbt" +715250,"pvlib" +714302,"textfsm" +713446,"pyrect" +713266,"langchain-google-genai" +711755,"xlutils" +711378,"django-formtools" +711239,"sphinx-automodapi" +711202,"gender-guesser" +710853,"feedgen" +710681,"pygetwindow" +708798,"stable-baselines3" +708085,"sqllineage" +708025,"dateutils" +707770,"regress" +707213,"suds-py3" +706860,"tbats" +706703,"leb128" +703737,"vllm" +703037,"flake8-debugger" +702901,"rcssmin" +702592,"interegular" +701924,"logz" +701845,"azureml-defaults" +701594,"pytest-factoryboy" +701239,"argo-workflows" +701170,"python-miio" +701130,"pytoolconfig" +700878,"dagster-cloud" +700867,"hpgeom" +700315,"sly" +699828,"fancycompleter" +699302,"wikitextparser" +699286,"pre-commit-uv" +699003,"boto-session-manager" +698475,"fastrlock" +698458,"pyomo" +697798,"macholib" +697712,"ratelimiter" +697220,"beautifultable" +697198,"opentelemetry-instrumentation-asyncpg" +697080,"asynch" +696936,"tbb" +696805,"awacs" +696753,"backports-shutil-get-terminal-size" +696658,"confuse" +695703,"transforms3d" +694815,"azure-storage-nspkg" +694468,"pytest-parallel" +693760,"mouseinfo" +692982,"varname" +692837,"pymisp" +692542,"pypinyin" +692217,"pymatching" +691686,"django-picklefield" +691618,"opentelemetry-instrumentation-system-metrics" +691488,"bibtexparser" +691053,"pyod" +690234,"bezier" +690098,"opentelemetry-instrumentation-aws-lambda" +689538,"ldaptor" +689444,"django-compressor" +689208,"swagger-spec-validator" +688891,"duckduckgo-search" +688625,"morefs" +688237,"executor" +686491,"homeassistant" +685360,"pdbpp" +684976,"wmctrl" +684802,"pip-audit" +684230,"inotify" +683876,"pip-system-certs" +683560,"gnupg" +683391,"bleak" +683194,"pyte" +683124,"django-mptt" +682684,"arnparse" +682352,"anybadge" +681939,"docopt-ng" +681751,"ariadne" +681564,"pytest-httpbin" +681480,"jinjasql" +681436,"evergreen-lint" +680687,"infinity" +680251,"flytekit" +679264,"curatorbin" +678936,"pymsgbox" +678931,"distribute" +678389,"ocspbuilder" +678388,"marko" +678368,"pusher" +678190,"property-cached" +677499,"pantab" +677212,"structlog-sentry" +676600,"fusepy" +675905,"darglint" +675896,"ocspresponder" +675875,"azure-ai-documentintelligence" +675865,"safer" +675585,"python-keystoneclient" +675496,"htmldocx" +675455,"netsuitesdk" +675327,"proxy-protocol" +675295,"meshio" +674099,"ping3" +673759,"injectool" +673660,"spython" +672955,"mypy-boto3-ses" +671543,"datadog-logger" +671115,"quinn" +671045,"opentelemetry-instrumentation-pymongo" +670845,"clipboard" +670456,"outlines" +670407,"click-default-group-wheel" +670286,"quart-cors" +670227,"retry-decorator" +669625,"nats-py" +668895,"ajsonrpc" +668035,"flyteidl" +667928,"lm-format-enforcer" +667826,"coincurve" +667774,"clikit" +666438,"pebble" +666354,"libusb1" +666263,"mistletoe" +664651,"pdoc" +664330,"html-tag-names" +664077,"nameparser" +663844,"html-void-elements" +662869,"datadog-lambda" +662085,"cvxopt" +661543,"p4p" +661072,"scikit-base" +659497,"envs" +657931,"ipyvuetify" +656964,"requestsexceptions" +656938,"s3pathlib" +655981,"music21" +655333,"envyaml" +654835,"iterproxy" +654555,"docker-image-py" +654444,"ragas" +653450,"enrich" +653057,"validate-email" +652334,"typing-utils" +652256,"slowapi" +651974,"python-frontmatter" +651944,"opensimplex" +651574,"fido2" +651489,"googleads" +651465,"epicscorelibs" +650769,"patool" +650363,"ipyvue" +649751,"tcod" +649422,"pvxslibs" +649382,"zipfile36" +649036,"pyannote-core" +648463,"pythonnet" +648107,"pykmip" +647980,"numpy-financial" +647772,"spark-sklearn" +647426,"msgpack-python" +647333,"random-password-generator" +647104,"outdated" +646572,"pyannote-database" +646520,"path-dict" +645864,"oauth2" +645671,"minidump" +645343,"pip-licenses" +644944,"ipyparallel" +644274,"types-dateparser" +643994,"nanobind" +641770,"xatlas" +641684,"setuptools-dso" +640770,"geomdl" +640457,"misaka" +640342,"requests-oauth" +639658,"scons" +638964,"json2html" +638767,"llm-dialog-manager" +638350,"pyrtf3" +638279,"pyjsparser" +638109,"pre-commit-hooks" +638096,"autodocsumm" +637884,"pyroute2" +637769,"google-cloud-iam" +637666,"asyncache" +637308,"json-logging" +636812,"wordfreq" +635796,"rpaframework-core" +635686,"dictlib" +634407,"myst-nb" +634320,"beniget" +634034,"mxnet" +632768,"pytest-lazy-fixture" +632659,"manifold3d" +631806,"webassets" +631595,"easyocr" +631400,"simplegeneric" +631349,"pyannote-metrics" +631073,"healpy" +631058,"yellowbrick" +630984,"easing-functions" +630606,"gpustat" +630557,"mypy-boto3-batch" +630470,"clldutils" +630069,"types-openpyxl" +630044,"assertpy" +628326,"deepl" +628305,"pyevtk" +628297,"fastai" +628131,"pdbp" +627325,"bands-inspect" +627090,"fsc-hdf5-io" +626842,"opentelemetry-instrumentation-threading" +626780,"tbmodels" +626482,"luigi" +626156,"cursor" +626068,"mistral-common" +625415,"polyline" +625097,"munkres" +624745,"aim" +623870,"escapism" +623473,"roundrobin" +622972,"java-manifest" +622956,"tangled-up-in-unicode" +622684,"pythran-openblas" +622444,"pyston" +622127,"locate" +621674,"stepfunctions" +621053,"svg-path" +620874,"pyston-autoload" +620412,"vhacdx" +620326,"django-ses" +619936,"jstyleson" +619495,"opentelemetry-propagator-b3" +619009,"algoliasearch" +617217,"baron" +616986,"hdf5plugin" +616907,"tabcompleter" +616746,"qudida" +616234,"sphinx-airflow-theme" +616109,"perlin-noise" +614655,"redbaron" +614544,"bitmath" +612397,"slugify" +612101,"us" +611517,"xsdata" +611476,"pytest-ansible" +611381,"rpaframework-pdf" +611255,"databricks-feature-store" +611246,"apache-airflow-providers-atlassian-jira" +611238,"gcloud" +611203,"csvw" +610755,"webrtcvad-wheels" +610233,"codetiming" +609975,"stups-tokens" +609763,"azure-mgmt-quota" +609442,"fastcluster" +608378,"pytest-djangoapp" +607879,"feu" +607768,"sqlalchemy-hana" +607311,"apipkg" +607197,"drissionpage" +606586,"robotframework-seleniumtestability" +606502,"jinja2-cli" +605414,"deep-translator" +605169,"pytest-github-actions-annotate-failures" +604885,"acryl-datahub-airflow-plugin" +603563,"torch-complex" +603411,"flask-basicauth" +602930,"imagecodecs" +602801,"milvus-lite" +601878,"func-args" +601683,"pentapy" +600583,"apache-airflow-providers-redis" +600490,"geckodriver-autoinstaller" +600323,"requests-pkcs12" +599853,"snakeviz" +599486,"inputimeout" +599102,"robocorp-storage" +599071,"restructuredtext-lint" +598599,"django-waffle" +598577,"clr-loader" +597561,"azureml-pipeline-core" +597403,"telethon" +597091,"red-discordbot" +597031,"chalice" +595744,"mypy-boto3-cloudwatch" +595656,"textstat" +595594,"pydrive2" +595456,"formic2" +595427,"pyapacheatlas" +595407,"pillow-avif-plugin" +595180,"dotenv" +594147,"splunk-sdk" +594109,"types-stripe" +593996,"opentelemetry-exporter-prometheus-remote-write" +593655,"sgp4" +593551,"pygobject" +593218,"sphinx-prompt" +593069,"azure-containerregistry" +592767,"opentelemetry-instrumentation-starlette" +592274,"gtts" +591551,"case-conversion" +591537,"pyre-extensions" +591338,"molecule" +590944,"google-cloud-recaptcha-enterprise" +590748,"betamax" +590607,"pytest-nunit" +590589,"publicsuffix2" +590523,"databind-core" +590416,"snowplow-tracker" +590188,"py-ecc" +589209,"stups-zign" +588925,"ntc-templates" +588560,"stups-cli-support" +588075,"django-widget-tweaks" +587969,"databind-json" +587328,"prefect-docker" +586945,"funasr" +586905,"ubelt" +585288,"webvtt-py" +584976,"versioningit" +584409,"xdg" +583828,"sparqlwrapper" +583814,"aiodataloader" +583706,"delta" +583302,"codefind" +583152,"newrelic-telemetry-sdk" +583092,"colorzero" +582824,"httpie" +582667,"pycognito" +582438,"vobject" +582343,"simpleitk" +582048,"pyawscron" +581878,"python-certifi-win32" +581186,"gpiozero" +580140,"ably" +579481,"pyfzf" +578564,"spanishconjugator" +578491,"plaid-python" +578030,"hstspreload" +577934,"pyjarowinkler" +577751,"bugsnag" +577627,"mplfinance" +576748,"luqum" +576602,"lagom" +576408,"pyrepl" +576026,"extract-msg" +575875,"resize-right" +575685,"flask-swagger-ui" +575214,"sphinxcontrib-websupport" +574632,"pytest-profiling" +574583,"java-access-bridge-wrapper" +574448,"libretranslatepy" +574423,"numpy-groupies" +573780,"mypy-boto3-cognito-idp" +573688,"pyyaml-include" +573539,"gputil" +573235,"robocorp-vault" +573058,"types-werkzeug" +572582,"pytorch-wpe" +572032,"mistralai" +571635,"sbvirtualdisplay" +571618,"pynput-robocorp-fork" +571117,"rank-bm25" +570938,"mypy-boto3-bedrock-runtime" +570580,"deepspeed" +570488,"apache-airflow-providers-apache-kafka" +570425,"pyorc" +569779,"translate" +569253,"tensorflow-gpu" +568539,"pyairports" +567733,"dbfread" +567145,"locustio" +567053,"newspaper3k" +566747,"opentelemetry-instrumentation-boto3sqs" +566588,"asteroid-filterbanks" +566054,"daiquiri" +565538,"jsonfield" +565399,"mwparserfromhell" +565182,"apeye-core" +565033,"mdx-truly-sane-lists" +564001,"grpc-gateway-protoc-gen-openapiv2" +563879,"screeninfo" +563559,"jplephem" +562867,"dvc" +562802,"xinspect" +562466,"asyncclick" +562104,"flake8-bandit" +561804,"tensorflowonspark" +560315,"west" +560154,"office365" +558637,"pyexcel-io" +558074,"cvdupdate" +557420,"openinference-instrumentation" +557365,"tentaclio" +556608,"opentelemetry-instrumentation-pika" +556184,"yapsy" +555772,"clvm-rs" +555769,"django-polymorphic" +555318,"torch-audiomentations" +555188,"chomsky" +554740,"get-reader" +554587,"imapclient" +554383,"dgl" +554174,"tinysegmenter" +554047,"primepy" +554024,"braintree" +553892,"pytest-deadfixtures" +553642,"pyannote-audio" +553484,"torch-pitch-shift" +553360,"fcm-django" +552874,"azureml-telemetry" +552663,"airbyte-cdk" +551962,"mongo-tooling-metrics" +551441,"prometheus-api-client" +551266,"mltable" +550856,"tentaclio-s3" +550717,"pytest-clarity" +550600,"tatsu" +550294,"uuid-utils" +549648,"flask-assets" +549521,"mongo-ninja-python" +548828,"quadprog" +548179,"tensorflow-transform" +547985,"localstack-core" +547801,"lml" +547148,"s2sphere" +546432,"adjusttext" +546047,"opentelemetry-test-utils" +546020,"junit2html" +545544,"duckdb-engine" +545530,"opentelemetry-instrumentation-asyncio" +544644,"imgaug" +544558,"types-xmltodict" +544336,"pyspark-dist-explore" +544207,"docker-py" +544094,"python-fsutil" +544023,"python-redis-lock" +543816,"ncclient" +543450,"infi-systray" +543174,"cssbeautifier" +542864,"maybe-else" +542800,"python-logging-loki" +542493,"pymiscutils" +542151,"pyxray" +541959,"scooby" +541906,"pyiotools" +541799,"iterative-telemetry" +541265,"sparkmeasure" +541229,"django-axes" +541192,"pysubtypes" +540951,"pathmagic" +540802,"prettierfier" +540579,"neptune-client" +540531,"pyannote-pipeline" +540310,"pytest-qt" +540270,"yamlordereddictloader" +540029,"types-chardet" +539755,"nagiosplugin" +539398,"sortednp" +539379,"ufal-udpipe" +539341,"hbutils" +538727,"blosc" +538722,"sparse" +538493,"memepy" +538261,"embedchain" +537644,"tldrwl" +537545,"types-flask" +536976,"cbor" +536677,"types-tzlocal" +536333,"dagster-slack" +535617,"google-cloud-os-config" +534866,"publicsuffixlist" +534623,"ibm-db-sa" +534329,"matrix" +533938,"darkdetect" +533796,"pytest-watch" +533453,"mypy-boto3-route53" +532360,"partial-json-parser" +532026,"django-admin-rangefilter" +531925,"glfw" +531603,"krb5" +531368,"apache-airflow-providers-github" +531227,"osc-lib" +530793,"neologism" +530131,"policyuniverse" +529708,"mkdocs-macros-plugin" +529185,"helpers" +528644,"pyqtgraph" +528541,"apeye" +528346,"apache-airflow-providers-openlineage" +528100,"getmac" +528071,"xrft" +527870,"qiskit" +527797,"app-store-scraper" +525968,"gurobipy" +525590,"django-ratelimit" +525537,"rangehttpserver" +525530,"dagster-cloud-cli" +525472,"mf2py" +524993,"jschon" +524396,"pymannkendall" +523741,"crewai" +522941,"pytest-celery" +522716,"functools32" +522472,"xmodem" +522232,"extruct" +521717,"importlib" +521359,"python-openstackclient" +521279,"pyrdfa3" +520882,"pydantic-yaml" +520699,"readerwriterlock" +520360,"python-cinderclient" +520347,"ruamel-yaml-jinja2" +520339,"mkdocs-git-revision-date-localized-plugin" +520194,"pattern" +520004,"lime" +519123,"tink" +518710,"scriptconfig" +518635,"event-model" +518087,"splunk-handler" +517792,"json-spec" +517589,"flask-script" +516958,"teradataml" +516854,"skyfield" +516815,"tempita" +516810,"opencc-python-reimplemented" +516708,"progiter" +516631,"isal" +516588,"casbin" +516397,"coolprop" +516286,"pulumi-aws" +515601,"unstructured-inference" +515579,"decord" +515562,"elasticsearch8" +514449,"aws-cdk-aws-glue-alpha" +514214,"skolemizer" +513985,"flake8-tidy-imports" +513722,"jenkinsapi" +513602,"autofaker" +513565,"google-python-cloud-debugger" +512546,"lorem" +512263,"icontract" +512216,"cma" +511808,"primp" +511464,"flash-attn" +511435,"caproto" +511287,"hf-transfer" +511259,"expecttest" +510565,"flask-pymongo" +510338,"stringparser" +510130,"check-jsonschema" +509354,"keyboard" +509248,"google-cloud-org-policy" +508844,"routes" +508613,"pybase62" +507376,"jinja2-pluralize" +507140,"transformations" +506657,"kedro" +506630,"objprint" +506229,"flask-apscheduler" +506210,"rouge" +506127,"customtkinter" +506108,"fhir-resources" +506022,"guppy3" +505813,"pytest-docker" +505141,"picu" +505001,"munidata" +504572,"sodapy" +504547,"fava" +504069,"tippo" +503958,"delegator-py" +503770,"blendmodes" +503199,"python-coveralls" +502975,"sk-dist" +502709,"brotlipy" +502499,"wasmer" +502467,"backports-ssl-match-hostname" +502112,"weread2notionpro" +502046,"cantools" +502024,"gdbmongo" +501438,"sigtools" +501415,"dbt-fabric" +501199,"rpy2" +500386,"capstone" +500274,"rauth" +500077,"acryl-sqlglot" +499826,"shandy-sqlfmt" +499605,"openmim" +498944,"cement" +498892,"bsdiff4" +498776,"zipfile-deflate64" +498673,"pyminizip" +498584,"flask-oauthlib" +498365,"mysql" +497767,"mypy-boto3-eks" +497284,"ess-streaming-data-types" +497099,"yattag" +496888,"colander" +496785,"localstack-ext" +496620,"elasticsearch-dbapi" +496107,"django-treebeard" +495980,"pydoe" +495671,"coola" +495196,"apache-airflow-providers-apache-hive" +495147,"rarfile" +494998,"suds" +494810,"scikeras" +494797,"docstring-to-markdown" +493819,"alexapy" +493717,"optbinning" +493668,"tomesd" +493093,"types-pyasn1" +492913,"lkml" +492679,"sqlalchemy-mate" +492189,"easygui" +491493,"requirements-detector" +491434,"entsoe-py" +491433,"apispec-webframeworks" +491014,"scrapbook" +490892,"scikit-plot" +490791,"cookies" +490773,"unyt" +490701,"keras-tuner" +490683,"seqeval" +489952,"asyncstdlib" +489064,"apache-airflow-providers-opsgenie" +488960,"simple-settings" +488796,"submitit" +488790,"miscreant" +488724,"types-aiobotocore-sqs" +488366,"evidently" +487924,"stomp-py" +487689,"ipympl" +487664,"ibmcloudant" +487621,"flake8-plugin-utils" +487399,"cron-schedule-triggers" +487300,"celery-types" +486822,"flake8-broken-line" +485678,"dimod" +485128,"javaobj-py3" +485003,"graphene-django" +484959,"mypy-boto3" +484939,"langchain-cohere" +484384,"mkdocs-redirects" +484320,"pymodbus" +484239,"django-ninja" +484073,"lpips" +484060,"jupyter-server-proxy" +483373,"httpx-ws" +483359,"jsonpath-rw-ext" +483303,"dag-factory" +483142,"pathfinding" +482681,"opentelemetry-exporter-jaeger-thrift" +482342,"assisted-service-client" +481781,"proxy-db" +481476,"markuppy" +481176,"mlserver" +480842,"holoviews" +480833,"tox-gh-actions" +479803,"azure-eventhub-checkpointstoreblob-aio" +479288,"dbt-athena-community" +478989,"dbt-duckdb" +478760,"sqlitedict" +478674,"ml-collections" +477636,"pygerduty" +477580,"xtgeo" +477388,"django-ckeditor" +477353,"mypy-boto3-config" +477059,"azureml-inference-server-http" +477020,"effdet" +476835,"tableschema" +476788,"neovim" +476743,"rfc5424-logging-handler" +476684,"segments" +475471,"bearlibterminal" +474704,"django-webpack-loader" +474156,"comet-ml" +473478,"azure-cognitiveservices-speech" +473173,"cmarkgfm" +472689,"mlforecast" +472499,"wasmer-compiler-cranelift" +472494,"import-deps" +472458,"cli-helpers" +472388,"types-aioboto3" +472212,"plotly-resampler" +471841,"copier" +471839,"flogging" +471505,"tdigest" +471450,"flask-executor" +471305,"grequests" +471115,"google-cloud-dns" +471107,"psycogreen" +470504,"fragile" +469701,"pbs4py" +469614,"judo" +469435,"bravado" +469429,"localstack" +469378,"grandalf" +469362,"google-cloud-asset" +469355,"pip-check" +469288,"pyngrok" +469113,"deptry" +468843,"ibm-cos-sdk-core" +468770,"importlab" +468662,"matrix-client" +468660,"mpi4py" +468468,"bridgecrew" +468178,"zha-quirks" +467896,"antlr-denter" +467732,"currencyconverter" +467478,"tinyhtml5" +467474,"mkdocs-monorepo-plugin" +466998,"pytest-flakefinder" +466702,"ibm-cos-sdk-s3transfer" +466112,"zigpy-znp" +466040,"zigpy-deconz" +465602,"cupy-cuda12x" +465521,"tree-sitter-python" +465380,"mkdocs-gen-files" +465206,"dvc-data" +465138,"flake8-commas" +464151,"bellows" +464120,"zigpy-xbee" +464015,"ibm-cos-sdk" +463999,"types-boto" +463830,"opencensus-ext-requests" +463802,"sphinx-sitemap" +462961,"mpyc" +462675,"crispy-bootstrap5" +462414,"sobol-seq" +462161,"docxtpl" +461893,"hacking" +461888,"graphitesend" +461664,"azure-monitor-ingestion" +461525,"nudged" +461302,"sttable" +460452,"pyvim" +459966,"mypy-boto3-pinpoint-sms-voice-v2" +459892,"embreex" +459427,"pyzbar" +459280,"final-class" +459018,"openinference-instrumentation-langchain" +458946,"google-cloud-access-context-manager" +458668,"pandas-flavor" +457949,"general-functions" +457654,"pytest-retry" +457340,"aws-embedded-metrics" +457187,"langchain-chroma" +456820,"presidio-anonymizer" +456114,"treq" +455718,"mlog-arithmetic-runner" +455626,"azureml-automl-core" +455032,"azure-schemaregistry-avroserializer" +454857,"types-bleach" +454840,"azureml-train-core" +454290,"webhelpers2" +453951,"extension-helpers" +453886,"alibabacloud-tea" +453682,"pycparserext-gnuc" +453336,"pynetbox" +453309,"pismosendlogs" +453191,"argparse-dataclass" +453109,"django-coverage-plugin" +452695,"pi-heif" +452597,"python-socks" +452501,"flufl-lock" +452172,"robotframework-stacktrace" +452139,"pytest-datadir" +452054,"thoth-common" +451828,"openai-whisper" +451474,"patch" +451337,"django-structlog" +450939,"window-ops" +450867,"word2number" +450853,"titlecase" +450259,"pyxirr" +449493,"django-reversion" +449492,"libusb-package" +449415,"flask-sso" +449259,"sqlalchemy-migrate" +448495,"jsoncomment" +448331,"pydantic-xml" +448188,"flask-swagger" +447517,"pysimdjson" +447457,"pythonping" +447040,"tensorflowjs" +446473,"opentelemetry-instrumentation-tortoiseorm" +446424,"mypy-boto3-sagemaker-runtime" +446342,"thoth-python" +446247,"codegen" +446002,"azure-mgmt-postgresqlflexibleservers" +445804,"turbopuffer" +445772,"aresponses" +445291,"thoth-storages" +445187,"thoth-analyzer" +444693,"xmlrunner" +444464,"types-aiobotocore-dynamodb" +444039,"tencentcloud-sdk-python" +443896,"pyct" +443560,"patterns" +443339,"urwid-readline" +443225,"pyrogram" +442881,"uszipcode" +442577,"anyconfig" +442351,"graphyte" +442057,"sqlean-py" +441321,"line-bot-sdk" +441042,"nlpaug" +441010,"simpervisor" +440416,"pretty-errors" +440283,"synchronicity" +440224,"azure-mgmt-mysqlflexibleservers" +440060,"asyncio-throttle" +439836,"opentelemetry-instrumentation-boto" +439719,"dictio" +439719,"kt-legacy" +438966,"pytype" +438651,"umodbus" +438374,"glances" +438207,"missingpy" +437404,"mypy-boto3-firehose" +437253,"mujoco" +437249,"feast" +437193,"openmath" +436903,"gpyreg" +436718,"mypy-boto3-sso" +436465,"mike" +436229,"waiting" +436202,"sphinx-favicon" +436194,"bayesian-optimization" +434671,"opentelemetry-exporter-jaeger-proto-grpc" +434467,"python-whois" +434447,"pytest-testinfra" +433832,"thoth-license-solver" +433476,"quantities" +433368,"simple-term-menu" +433309,"layoutparser" +433116,"proselint" +432745,"opencc" +432337,"distogram" +432187,"telebot" +432153,"honcho" +432134,"groundingdino-py" +432046,"pytest-pythonpath" +432012,"testing-common-database" +431831,"pandas-profiling" +431760,"mypy-boto3-efs" +431473,"kafka" +431446,"target-hotglue" +431179,"deap" +431019,"utm" +430977,"mypy-boto3-dms" +430673,"python-benedict" +430648,"bounded-pool-executor" +430543,"verspec" +430406,"teamcity-messages" +430066,"mdformat" +429922,"python-barcode" +429894,"uuid7" +429876,"itables" +429527,"formencode" +429481,"ospx" +429267,"tabula-py" +429198,"thriftpy2" +429190,"pyserde" +429012,"recurring-ical-events" +428418,"ulid-transform" +428412,"pylint-celery" +428043,"aioquic" +427688,"cirq-core" +427164,"types-aiobotocore-lambda" +426295,"dataengineeringutils3" +426096,"forex-python" +426034,"imutils" +425757,"dvclive" +425569,"xopen" +425559,"jsonformatter" +425388,"azureml-train-restclients-hyperdrive" +425282,"torch-geometric" +424904,"voluptuous-serialize" +424679,"bzt" +424460,"ttp" +424279,"mojap-metadata" +424245,"dodgy" +423379,"django-modeltranslation" +423204,"async-modbus" +423035,"python-logstash" +423030,"pyagrum-nightly" +422793,"localstack-client" +421974,"hurry-filesize" +421762,"pyqrcode" +421661,"attr" +421512,"pytest-vcr" +421157,"fredapi" +421124,"django-localflavor" +420885,"python-json-config" +420876,"python-lsp-server" +420858,"result" +420428,"backports-abc" +420191,"atomicwrites-homeassistant" +419999,"django-two-factor-auth" +419854,"clvm-tools-rs" +419328,"autobean-refactor" +418929,"appengine-python-standard" +418767,"numpy-quaternion" +418743,"ldapdomaindump" +418732,"yalafi" +418490,"uptime-kuma-api" +418017,"python-swiftclient" +417896,"selinux" +417746,"prospector" +417725,"autogluon-core" +417710,"google-play-scraper" +417395,"python-calamine" +417221,"dvc-render" +416605,"segno" +416521,"types-docopt" +416154,"tox-ansible" +416098,"b2sdk" +415962,"stamina" +415835,"djangorestframework-api-key" +415517,"googletrans" +415508,"autogluon-tabular" +415503,"gspread-formatting" +415182,"celluloid" +414941,"lsprotocol" +414714,"u-msgpack-python" +414265,"sphinx-toolbox" +414243,"apache-airflow-client" +413471,"x-wr-timezone" +413295,"appier" +413255,"fairscale" +413229,"petname" +413124,"pem" +413015,"spandrel-extra-arches" +412734,"certbot" +412642,"halp" +412425,"azure-mgmt-costmanagement" +412274,"chromedriver-autoinstaller" +411471,"bravado-core" +411276,"burger" +411154,"pykube" +411118,"nmslib" +410621,"pymunk" +410605,"ansible-runner" +410474,"dvc-objects" +410300,"types-aiobotocore-dataexchange" +410007,"testing-postgresql" +409581,"missingno" +409470,"fastdiff" +409293,"wincertstore" +409048,"codeguru-profiler-agent" +408531,"nvidia-nvcomp-cu12" +408519,"ansible-base" +408432,"databricks-pypi-extras" +408359,"petl" +408304,"pan-python" +408088,"ordereddict" +408087,"plum-dispatch" +408024,"logfury" +407831,"catkin-pkg" +407361,"marshmallow-jsonapi" +407150,"atomlite" +407085,"pdfrw" +407002,"stk" +406825,"sqltrie" +406437,"click-configfile" +406362,"cmakelang" +406092,"pyexcel" +405984,"sphinx-gallery" +405856,"python-novaclient" +405839,"unstructured-pytesseract" +405520,"robotframework-pabot" +405467,"ropwr" +405305,"faiss-gpu" +405218,"wslwinreg" +405216,"pysqlite3-binary" +405043,"platformio" +404201,"spindry" +404143,"pyaudio" +404053,"types-python-jose" +403978,"mchammer" +403909,"rmsd" +403843,"espaloma-charge" +403783,"typing-validation" +403543,"lazy-imports" +403522,"jupyter-highlight-selected-word" +403314,"azureml-train-automl-client" +403095,"tach" +402748,"cron-converter" +402747,"imap-tools" +402724,"stko" +402632,"pystrict" +402510,"shellcheck-py" +402510,"intuit-oauth" +402412,"torchbiggraph" +402175,"always-updates" +401858,"django-rest-enumfield" +401759,"opentelemetry-instrumentation-kafka-python" +401751,"segyio" +401100,"rdt" +401023,"pytools" +400820,"tsdownsample" +400754,"python-liquid" +400706,"email-reply-parser" +400171,"aiopg" +399811,"arthurai" +399802,"pyscaffold" +399788,"prettyprinter" +399656,"lucopy" +399565,"django-tables2" +399415,"snapshottest" +399070,"oslo-log" +399028,"autogluon-features" +398610,"flask-authz" +398575,"opentelemetry-propagator-gcp" +398539,"types-aiobotocore-ec2" +398264,"mypy-boto3-cloudfront" +398154,"langid" +398113,"foca" +397877,"brickflows" +397791,"cartopy" +397585,"click-config-file" +397338,"pyfunceble-dev" +397303,"python-amazon-sp-api" +397007,"drf-spectacular-sidecar" +396640,"autogluon" +396066,"scmrepo" +396016,"wikipedia" +395616,"julius" +395585,"types-ipaddress" +395560,"oslo-context" +395314,"google-search-results" +395243,"kopf" +395232,"qcelemental" +395143,"blackduck" +394942,"psycopg-c" +394098,"junos-eznc" +393914,"lakefs-sdk" +393553,"pycaret" +393449,"dvc-studio-client" +393353,"google-cloud-scheduler" +393285,"solders" +392892,"flake8-variables-names" +392634,"celery-redbeat" +392478,"awkward0" +392309,"mkdocs-awesome-pages-plugin" +392197,"yara-python" +392091,"jupyter-nbextensions-configurator" +392082,"py-range-parse" +391884,"george" +391241,"uproot3" +391044,"uproot3-methods" +390906,"pyjnius" +390873,"progressbar" +390478,"pylint-pydantic" +390454,"pythran" +390339,"pytest-subprocess" +390309,"autodoc-pydantic" +389844,"tslearn" +389580,"distance" +389399,"pyobjc-core" +389159,"cf-xarray" +388897,"pygls" +388521,"mypy-boto3-cloudtrail" +388172,"azureml-pipeline-steps" +387871,"dict2css" +387742,"nvidia-cuda-nvcc-cu12" +387229,"sphinx-jinja2-compat" +387108,"moderngl" +386785,"plux" +386700,"pretty-midi" +386509,"mojimoji" +386205,"usd-core" +386191,"paramiko-expect" +386006,"django-auditlog" +385906,"intel-openmp" +385752,"mypy-boto3-route53domains" +385500,"azureml-featurestore" +385498,"fast-curator" +385465,"pid" +385261,"opentelemetry-instrumentation-pymysql" +384950,"roboflow" +384744,"types-aiobotocore-rds" +384475,"lomond" +384414,"flask-dance" +384403,"pyathenajdbc" +384242,"gfpgan" +384225,"pandarallel" +384169,"sqlalchemy-trino" +383985,"databind" +383906,"selectolax" +383859,"sphinx-reredirects" +383646,"clint" +383619,"hidapi" +383612,"mypy-boto3-autoscaling" +383159,"pycarlo" +382975,"flexmock" +382863,"nvidia-ml-py3" +382755,"ipython-autotime" +382405,"vprof" +382373,"img2pdf" +382361,"monkeytype" +381852,"pyfarmhash" +381633,"markyp" +381478,"markyp-html" +381422,"pytest-memray" +381352,"types-futures" +381207,"python-graphql-client" +381076,"flask-shell-ipython" +380846,"cpymad" +380716,"allure-behave" +379870,"pylightxl" +379860,"dm-control" +379830,"mailjet-rest" +379759,"pyjks" +379677,"azureml-pipeline" +379647,"pqdm" +379371,"pyhdb" +379179,"ipyanchorviz" +379055,"aplr" +378900,"tensorflow-recommenders" +378865,"google-cloud-documentai" +378819,"fastdownload" +378390,"django-colorfield" +378229,"flake8-pep3101" +378144,"smartystreets-python-sdk" +378027,"jsonpath" +378010,"pgeocode" +377963,"accumulation-tree" +377940,"fastapi-slim" +377914,"pydotplus" +377823,"array-api-compat" +377503,"whoosh" +377404,"spotipy" +377267,"pyvalid" +376983,"cloudsmith-api" +376918,"pdfminer" +376694,"flake8-annotations" +376520,"django-mysql" +376349,"authcaptureproxy" +376222,"usearch" +376217,"reportportal-client" +375301,"check-manifest" +375237,"mypy-boto3-opensearch" +374764,"json-rpc" +374403,"awsiotsdk" +374049,"pluralizer" +373807,"fixit" +373527,"curio" +373445,"great-expectations-experimental" +373367,"wpilib" +372871,"mypy-boto3-textract" +372870,"phonemizer" +372621,"delegator" +372600,"apache-airflow-providers-elasticsearch" +372255,"databricks-feature-engineering" +372248,"osmium" +372021,"pinecone" +371955,"testresources" +371928,"giving" +371888,"pyvista" +371869,"tf2onnx" +371849,"tika" +371496,"mechanicalsoup" +371137,"unicorn" +370963,"pyntcore" +370820,"chainer" +370808,"sqlalchemy-json" +370801,"flake8-deprecated" +370654,"nose-parameterized" +370634,"android-backup" +370628,"pigpio" +370409,"mock-alchemy" +370401,"sphinx-notfound-page" +370252,"capsolver" +370052,"unittest-data-provider" +369795,"pytrends" +369776,"cloudwatch" +369190,"feedfinder2" +369145,"codacy-coverage" +369046,"oletools" +369034,"langchain-groq" +368755,"kneed" +368736,"jieba3k" +368724,"dewloosh-core" +368469,"apiclient" +368318,"pymediainfo" +368211,"fugashi" +367459,"dewloosh-math" +367338,"fastapi-mail" +367303,"opentelemetry-instrumentation-openai" +367283,"langchain-huggingface" +367193,"dewloosh-geom" +367013,"grpcio-testing" +367006,"ciscoconfparse" +366860,"filecheck" +366739,"dewloosh" +366713,"timeago" +366257,"taskgroup" +365948,"logging" +365922,"pydomo" +365912,"robotpy-wpiutil" +365702,"pyqtwebengine" +365651,"py-moneyed" +365349,"apache-airflow-providers-apache-druid" +364995,"bootstrap-flask" +364868,"yandex-query-client" +364797,"libarchive-c" +364743,"lameenc" +364725,"whylogs" +364601,"swiftsimio" +364525,"types-appdirs" +363946,"pymeta3" +363767,"robotpy-hal" +363608,"pydeprecate" +363557,"ragged-buffer" +363339,"pyrr" +363216,"hass-client" +363203,"aerospike" +363126,"aws-assume-role-lib" +362947,"docstring-parser-fork" +362840,"clickhouse-toolset" +362679,"alembic-postgresql-enum" +362637,"simplefix" +362320,"opentelemetry-instrumentation-elasticsearch" +362230,"velociraptor" +362141,"crowdstrike-falconpy" +361732,"py-backwards" +361725,"django-auth-ldap" +361613,"pcodedmp" +361569,"sip" +361521,"pyicu-binary" +361450,"mmhash3" +361383,"py-backwards-astunparse" +361342,"poetry-plugin-tweak-dependencies-version" +361273,"python-interface" +361256,"python-louvain" +361009,"dlinfo" +360904,"mypy-boto3-elasticache" +360738,"fastapi-users" +360737,"typeshed-client" +360542,"qulacs" +360516,"robotpy-wpimath" +360430,"random-user-agent" +360215,"flask-sock" +360124,"types-aiobotocore-cloudformation" +359924,"onnxsim" +359908,"ytmusicapi" +359865,"reprint" +359271,"azureml-sdk" +359208,"urlextract" +359186,"visitor" +359009,"django-nested-admin" +358669,"mailchimp-marketing" +358367,"spotinst-agent" +358334,"grafanalib" +358294,"robotpy-wpinet" +358280,"opentelemetry-instrumentation-mysql" +358159,"dm-env" +357863,"domain2idna" +357333,"dvc-task" +356522,"nutter" +356442,"labmaze" +356372,"tf-estimator-nightly" +356071,"fluids" +355672,"vadersentiment" +355296,"pymacaroons" +355229,"tqdm-multiprocess" +355091,"xxtea" +354827,"rdrobust" +354445,"langchainhub" +354213,"pynrrd" +354084,"kafka-python-ng" +353754,"docarray" +353490,"simplejpeg" +353423,"pyfume" +353409,"types-httplib2" +353265,"pulp-glue" +353100,"multiaddr" +352908,"everett" +352775,"py2md" +351889,"sumy" +351767,"pytest-testmon" +351574,"cognitojwt" +351493,"plyfile" +351263,"crontab" +351206,"agilicus" +350231,"aws-cdk-core" +350024,"compressed-tensors" +349788,"pyobjc-framework-cocoa" +349628,"python-jsonschema-objects" +349389,"g2p-en" +349361,"swig" +349157,"asammdf" +348855,"plantuml-markdown" +348484,"dvc-http" +348462,"pystac" +348281,"controlnet-aux" +348014,"opentelemetry-instrumentation-tornado" +347992,"crochet" +347516,"qiskit-aer" +347329,"compressed-rtf" +347298,"robotpy-cli" +347230,"vk-api" +346855,"pydevd-pycharm" +346842,"types-regex" +346592,"treelite" +346258,"m2crypto" +346230,"fs-s3fs" +345735,"morecantile" +345630,"kerberos" +345587,"apache-airflow-providers-trino" +345504,"workos" +345485,"glcontext" +345441,"chiapos" +345399,"elasticmock" +345375,"djangorestframework-csv" +345372,"llama-index-llms-azure-openai" +345235,"flake8-html" +345042,"pyspark-pandas" +344958,"mypy-boto3-redshift" +344814,"asn1" +344807,"fernet" +344732,"jupyterhub" +344649,"aws-cdk-asset-node-proxy-agent-v5" +344531,"argilla" +344492,"pycnite" +344427,"google-api-python-client-stubs" +344176,"humanreadable" +343996,"apache-airflow-providers-sendgrid" +343805,"anndata" +342959,"rake-nltk" +342810,"sphinx-markdown-builder" +342753,"setoptconf-tmp" +342399,"2captcha-python" +342313,"model-index" +341683,"pycollada" +341583,"django-object-actions" +341447,"lazy" +340861,"strsimpy" +340854,"django-guardian" +340720,"mypy-boto3-codepipeline" +340687,"meteostat" +340533,"statistics" +340244,"wechaty" +340070,"powerlaw" +339752,"oci-cli" +339732,"mpld3" +339627,"compose" +339610,"evdev" +339585,"discord-webhook" +339374,"django-user-agents" +339318,"apache-airflow-providers-jenkins" +338864,"draftjs-exporter" +338831,"h3-pyspark" +338593,"robotframework-jsonlibrary" +338343,"td-client" +338238,"jinja2-ansible-filters" +338094,"pydrive" +337937,"openapi3" +337833,"pulp-cli" +337754,"chia-rs" +337610,"drf-extensions" +337600,"dagster-pyspark" +337464,"aws-cdk-cx-api" +337440,"wechaty-puppet" +337061,"repoze-who" +337061,"sql-formatter" +336981,"delayed-assert" +336600,"pylink-square" +336390,"table-logger" +336294,"mendeleev" +336032,"poyo" +335987,"pyftpdlib" +335891,"llama-index-embeddings-azure-openai" +335703,"oras" +335687,"python-gflags" +335674,"sphinx-click" +335624,"gdal" +335547,"suds-jurko" +335518,"kr8s" +335504,"genbadge" +335481,"sacred" +335036,"detect-delimiter" +334746,"django-fsm" +334689,"django-etc" +334471,"simple-azure-blob-downloader" +334467,"flake8-simplify" +334355,"kedro-datasets" +334088,"ada-url" +333953,"doc8" +333663,"anyscale" +333643,"pdfminer2" +333514,"django-json-widget" +333434,"nox-poetry" +333428,"pockets" +333392,"pylama" +333343,"gitlint-core" +333271,"flupy" +333223,"flake8-string-format" +333188,"periodictable" +333120,"gitlint" +332980,"mypy-boto3-es" +332922,"multiprocessing-logging" +332808,"chargebee" +332741,"aiosmtpd" +332625,"jsun" +332586,"paddlepaddle" +332485,"rdkit-pypi" +332457,"gto" +332452,"scenedetect" +332375,"ibm-watsonx-ai" +332346,"tree-sitter-languages" +332177,"aws-kinesis-agg" +332142,"python-dynamodb-lock" +332053,"pyannotating" +331859,"asyncio-mqtt" +331726,"dwave-networkx" +331717,"enum" +331447,"delocate" +331264,"mypy-boto3-quicksight" +331150,"pylsqpack" +331059,"mypy-boto3-codedeploy" +330959,"mitmproxy" +330908,"chemicals" +330865,"fuzzytm" +330651,"mypy-boto3-organizations" +330418,"csaps" +330264,"iso4217" +329957,"whatever" +329897,"clearml" +329793,"python-osc" +329696,"coiled" +329573,"simpful" +329374,"delighted" +329216,"onigurumacffi" +328939,"flake8-rst-docstrings" +328806,"djangorestframework-dataclasses" +328717,"pylint-flask" +328651,"asyncer" +328619,"mlzlog" +328466,"rioxarray" +328459,"tgcrypto" +328432,"pytest-isort" +328425,"pytest-variables" +328365,"mypy-boto3-application-autoscaling" +328260,"chiavdf" +328054,"sphinxcontrib-napoleon" +328031,"stopit" +328002,"aws-lambda-typing" +327944,"minrpc" +327654,"stytch" +327622,"mypy-boto3-mq" +327610,"ezdxf" +327559,"types-flask-cors" +327513,"jsonslicer" +327314,"rule-engine" +327313,"robotframework-browser" +327293,"mypy-boto3-kafka" +327022,"mypy-boto3-cognito-identity" +326997,"dagit" +326977,"easy-logs" +326839,"qcodes" +326821,"rich-rst" +326740,"aliyun-python-sdk-vpc" +326610,"hydra-colorlog" +326544,"jsonalias" +326453,"types-boto3" +326335,"aiogoogle" +326252,"mypy-boto3-workspaces" +326096,"cli-exit-tools" +326077,"gpsoauth" +326048,"azure-communication-email" +325981,"py-sr25519-bindings" +325884,"metaphone" +325603,"ffmpegio" +325421,"ophyd" +325252,"prefixed" +325046,"thermo" +324986,"gin-config" +324837,"dagster-shell" +324662,"bluesky" +324420,"coverage-badge" +324406,"python-monkey-business" +324186,"ffmpegio-core" +324088,"asyncmy" +323918,"pyshark" +323616,"django-rq" +323606,"wechaty-grpc" +323424,"tree-sitter-javascript" +323400,"transliterate" +323386,"asyncgui" +323342,"pick" +323275,"kubernetes-client" +322990,"whatthepatch" +322986,"autogluon-common" +322881,"duet" +322829,"mypy-boto3-ds" +322770,"secure" +322454,"mcap" +322354,"webexteamssdk" +322269,"lib-detect-testenv" +322173,"streamlit-aggrid" +321839,"pymoo" +321758,"aws-cdk-aws-iam" +321518,"wechaty-puppet-service" +321500,"preggy" +321438,"alembic-utils" +321300,"mypy-boto3-ce" +321177,"cdktf" +321167,"itchat-uos" +320883,"bioregistry" +320878,"cxxfilt" +320839,"aws-cdk-region-info" +320626,"mypy-boto3-identitystore" +320460,"paddleocr" +320426,"dynamo-pandas" +320361,"pegen" +320339,"clickhouse-cityhash" +320273,"path-py" +320199,"django-tinymce" +319944,"hierarchicalforecast" +319937,"aws-logging-handlers" +319891,"awscli-local" +319491,"pyepics" +319489,"json-encoder" +319476,"sspilib" +319466,"r2pipe" +319418,"subprocrunner" +319075,"idf-component-manager" +319011,"mypy-boto3-docdb" +318948,"django-constance" +318691,"mkdocs-techdocs-core" +318658,"keras-nightly" +318649,"historydict" +318612,"bolton-clack" +318351,"nagisa" +318347,"mkl" +318229,"eccodes" +317918,"ansible-pylibssh" +317578,"pytest-unordered" +317523,"rstcheck" +317518,"rtfde" +317516,"dbx" +317419,"djangorestframework-camel-case" +317357,"fiscalyear" +316918,"basicsr" +316571,"azure-digitaltwins-core" +316302,"zake" +316182,"nbstripout" +316159,"mypy-boto3-dax" +316079,"mypy-boto3-dynamodbstreams" +316043,"bolton-eris" +316023,"magodo" +316023,"jsonseq" +316005,"wiki-fetch" +315999,"mypy-boto3-wafv2" +315941,"jupyter-contrib-core" +315939,"faust-cchardet" +315897,"utils" +315650,"bolton-typist" +315621,"bolton-logrus" +315533,"bolton-metaman" +315482,"aws-msk-iam-sasl-signer-python" +315427,"entrypoint2" +315393,"opentelemetry-semantic-conventions-ai" +315347,"python-mimeparse" +315257,"bolton-ion" +315048,"httpie-edgegrid" +315023,"potoroo" +314917,"varint" +314779,"mygeotab" +314767,"python3-xlib" +314238,"django-rest-swagger" +314138,"janome" +313898,"mypy-boto3-iot-data" +313894,"azure-mgmt-deploymentmanager" +313842,"ascii-magic" +313835,"pythtb" +313804,"dissect-target" +313767,"tzwhere" +313714,"opendatalab" +313706,"mail-parser" +313655,"mkdocs-literate-nav" +313629,"fsc-export" +313616,"rq-dashboard" +313592,"django-configurations" +313538,"maya" +313524,"pyudorandom" +313492,"mypy-boto3-acm" +313444,"symmetry-representation" +313332,"git-python" +313267,"camelot-py" +313161,"quandl" +312986,"sphinx-togglebutton" +312846,"anywidget" +312750,"rlbot" +312676,"home-assistant-bluetooth" +312666,"certvalidator" +312642,"sphinxcontrib-plantuml" +312611,"deepeval" +312551,"beaker" +312532,"broadbean" +312225,"django-multiselectfield" +312169,"urlobject" +311849,"mypy-boto3-resourcegroupstaggingapi" +311748,"pyglove" +311669,"pysolr" +311565,"macaroonbakery" +311523,"nbqa" +311287,"mypy-boto3-rds-data" +310768,"opentelemetry-instrumentation-confluent-kafka" +310668,"wmill" +310611,"fds-sdk-utils" +310474,"ete3" +310354,"alacorder" +310282,"haystack-experimental" +310278,"cosmotech-api" +310231,"ansimarkup" +310058,"expects" +309721,"redisgraph-bulk-loader" +309655,"ipfshttpclient" +309612,"undecorated" +309566,"bolton-proctor" +309494,"mypy-boto3-iot" +309450,"httpx-cache" +309404,"ast-grep-py" +309402,"robotframework-assertion-engine" +309335,"pypd" +309218,"vimala" +308945,"mdutils" +308907,"mypy-boto3-sesv2" +308648,"asciichartpy" +308053,"unicodedata2" +307978,"aws-error-utils" +307932,"plotly-express" +307601,"ptvsd" +307598,"latex2mathml" +307547,"flask-redis" +307530,"mrcfile" +307342,"fuzzyset2" +307241,"types-orjson" +306830,"prefect-shell" +306826,"luaparser" +306803,"nbmake" +306739,"couchbase" +306661,"xlsx2csv" +306629,"mkdocs-include-markdown-plugin" +306586,"pwdlib" +306510,"sorl-thumbnail" +306471,"aiohttp-socks" +306452,"apache-airflow-providers-papermill" +306437,"awsebcli" +306288,"fastly" +306085,"opentelemetry-exporter-jaeger" +305779,"airflow-exporter" +305640,"mypy-boto3-transcribe" +305541,"persist-queue" +305403,"starrocks" +305208,"pyproject-flake8" +305203,"jupyter-contrib-nbextensions" +305121,"redis-sentinel-url" +304807,"python-etcd" +304589,"ml-base" +304119,"mypy-boto3-transfer" +304084,"prometheus-async" +303780,"pygmo" +303572,"soda-core-snowflake" +303233,"mypy-boto3-codebuild" +303056,"mypy-boto3-translate" +302965,"gherkin-official" +302954,"dotnetcore2" +302903,"pyreadline" +302765,"mypy-boto3-apigatewayv2" +302664,"py-grpc-prometheus" +302342,"starlark-pyo3" +302197,"dragonfly-core" +302174,"ibis-framework" +302083,"slack" +302013,"lightfm" +301926,"httptest" +301796,"pybars3" +301756,"trafaret" +301679,"dj-rest-auth" +301464,"python-tds" +301141,"whylogs-sketching" +301137,"odxtools" +301127,"mindsdb-sql" +301053,"mypy-boto3-bedrock" +300926,"flask-apispec" +300861,"mypy-boto3-apigatewaymanagementapi" +300558,"pyautogen" +300496,"inference-schema" +300455,"abnf" +300439,"mypy-boto3-mwaa" +300425,"mypy-boto3-securityhub" +300320,"fastdtw" +299926,"django-jazzmin" +299693,"apache-airflow-providers-apache-beam" +299535,"robocorp-log" +299289,"art" +299160,"pbspark" +299145,"robotframework-robocop" +299035,"pulp-cli-deb" +298858,"opentelemetry-instrumentation-falcon" +298850,"mypy-boto3-ec2-instance-connect" +298802,"apache-airflow-providers-vertica" +298786,"mypy-boto3-sso-oidc" +298736,"mypy-boto3-mediaconvert" +298444,"pulp-glue-deb" +298400,"whylabs-client" +298342,"pybacklogpy" +298143,"molecule-plugins" +298037,"objectory" +298011,"docxcompose" +297921,"mypy-boto3-synthetics" +297796,"aiortc" +297755,"dockerfile" +297750,"kodi-addon-checker" +297684,"djangorestframework-jwt" +297626,"pylibmc" +297571,"uvicorn-worker" +297545,"bitvector" +297535,"pandoc" +297461,"mypy-boto3-servicediscovery" +297259,"mypy-boto3-ram" +297052,"binpacking" +296975,"pyang" +296956,"aws-cdk-aws-ec2" +296955,"qds-sdk" +296931,"click-aliases" +296817,"pyvcd" +296766,"virtme-ng" +296634,"django-money" +296527,"mypy-boto3-pinpoint" +296374,"arize-phoenix" +296158,"mypy-boto3-directconnect" +295997,"flask-security-too" +295977,"simple-slurm" +295960,"docrepr" +295767,"spacy-wordnet" +295759,"sqlalchemy-drill" +295630,"fds-sdk-paengine" +295595,"dsdobjects" +295556,"mypy-boto3-marketplace-entitlement" +295521,"ormsgpack" +295512,"mypy-boto3-location" +295240,"pyinstaller-versionfile" +295213,"tensorboard-plugin-profile" +295179,"fds-sdk-sparengine" +295166,"pyvoronoi" +295147,"airbyte" +295101,"murmurhash2" +294838,"fds-protobuf-stach-extensions" +294816,"kodistubs" +294804,"mode" +294746,"sqlalchemy-databricks" +294579,"onnxmltools" +294568,"fds-protobuf-stach-v2" +294559,"mypy-boto3-elb" +294556,"dynet" +294552,"mypy-boto3-s3control" +294443,"fds-protobuf-stach" +294266,"cloudinary" +294261,"opentelemetry-propagator-jaeger" +294089,"mypy-boto3-connect" +293971,"aws-cdk-aws-s3" +293718,"aliyun-python-sdk-r-kvstore" +293555,"opentelemetry-instrumentation-aio-pika" +293380,"highspy" +293265,"keplergl" +293059,"solana" +292985,"dbt-artifacts-parser" +292781,"construct-typing" +292755,"onnxscript" +292703,"mypy-boto3-codeartifact" +292702,"mypy-boto3-ebs" +292625,"mypy-boto3-scheduler" +292558,"dagster-celery" +292440,"mypy-boto3-support" +292433,"django-log-request-id" +292365,"googlesearch-python" +292305,"mypy-boto3-servicecatalog" +292288,"pulumi-command" +292225,"caldav" +292064,"mypy-boto3-service-quotas" +291823,"mypy-boto3-route53resolver" +291807,"napalm" +291665,"configcrunch" +291589,"django-migration-linter" +291446,"pygeos" +291282,"pyarmor" +291095,"sqlalchemy-cockroachdb" +290713,"pydoc-markdown" +290304,"mypy-boto3-polly" +290207,"amqpstorm" +289950,"ordered-enum" +289739,"empy" +289726,"sphinxext-opengraph" +289689,"synapseml" +289608,"mypy-boto3-dlm" +289528,"fcache" +289476,"pylatex" +289431,"mypy-boto3-medialive" +289402,"mypy-boto3-comprehend" +289399,"mypy-boto3-meteringmarketplace" +289335,"docspec-python" +289307,"bce-python-sdk" +289208,"torchinfo" +289189,"chiabip158" +289146,"mypy-boto3-pricing" +289012,"huaweicloudsdkcore" +288970,"mypy-boto3-imagebuilder" +288915,"datatest" +288849,"ibm-watson-machine-learning" +288834,"django-braces" +288701,"mypy-boto3-neptune" +288667,"opentelemetry-instrumentation-pyramid" +288476,"opentelemetry-instrumentation-mysqlclient" +288075,"mypy-boto3-budgets" +287967,"pyrs" +287842,"svgelements" +287752,"mypy-boto3-amplify" +287724,"csr" +287676,"linode-cli" +287575,"dagster-gcp" +287552,"nr-stream" +287537,"mypy-boto3-guardduty" +287516,"pytest-docker-tools" +287494,"awscurl" +287409,"vt-py" +287281,"dm-haiku" +287124,"mypy-boto3-networkmanager" +286966,"mkdocs-glightbox" +286915,"mypy-boto3-mturk" +286853,"pymc" +286832,"salesforce-fuelsdk-sans" +286726,"mypy-boto3-mediatailor" +286718,"mypy-boto3-acm-pca" +286667,"mypy-boto3-appsync" +286663,"lightstep" +286608,"elasticsearch6" +286516,"mypy-boto3-fsx" +286453,"nr-util" +286415,"mypy-boto3-discovery" +286336,"mypy-boto3-personalize" +286236,"langchain-ibm" +286193,"mypy-boto3-datasync" +286167,"mypy-boto3-outposts" +286134,"aws-cdk-aws-kms" +285902,"mypy-boto3-mediastore" +285871,"mypy-boto3-mediaconnect" +285818,"mypy-boto3-forecastquery" +285799,"geohash2" +285741,"mypy-boto3-mediapackage" +285725,"mypy-boto3-serverlessrepo" +285509,"mypy-boto3-pinpoint-email" +285435,"mypy-boto3-storagegateway" +285430,"mypy-boto3-license-manager" +285399,"mypy-boto3-inspector" +285331,"mypy-boto3-mgh" +285162,"pytrie" +285153,"sanitize-filename" +285152,"mypy-boto3-personalize-runtime" +285121,"google-cloud-dialogflow-cx" +285114,"tflite-model-maker-nightly" +285100,"docspec" +285084,"mypy-boto3-mediastore-data" +285072,"neotime" +285059,"cx-freeze" +285035,"mypy-boto3-health" +284960,"extra-streamlit-components" +284952,"async-asgi-testclient" +284832,"python-jsonpath" +284809,"viztracer" +284709,"mypy-boto3-iot-jobs-data" +284693,"mypy-boto3-compute-optimizer" +284621,"mypy-boto3-accessanalyzer" +284584,"enlighten" +284536,"dagster-snowflake" +284452,"mypy-boto3-emr-containers" +284428,"yoyo-migrations" +284427,"chalkpy" +284415,"mypy-boto3-shield" +284410,"portion" +284400,"pytensor" +284394,"mypy-boto3-marketplace-catalog" +284354,"mypy-boto3-marketplacecommerceanalytics" +284353,"mypy-boto3-pi" +284306,"m3u8" +284285,"mypy-boto3-managedblockchain" +284282,"haystack-ai" +284276,"mypy-boto3-opsworks" +284184,"mypy-boto3-iotsecuretunneling" +284172,"mypy-boto3-machinelearning" +284127,"mypy-boto3-iot1click-devices" +284076,"mypy-boto3-cloudsearchdomain" +284026,"django-select2" +284004,"mypy-boto3-timestream-query" +283942,"robocorp-tasks" +283925,"mypy-boto3-personalize-events" +283916,"micloud" +283896,"mypy-boto3-gamelift" +283852,"pyvisa-py" +283761,"mypy-boto3-waf" +283728,"mypy-boto3-forecast" +283724,"mypy-boto3-cloudsearch" +283613,"mypy-boto3-fms" +283565,"mypy-boto3-rekognition" +283473,"mypy-boto3-iotevents-data" +283472,"tabcmd" +283457,"pybaselines" +283428,"mypy-boto3-importexport" +283405,"moepy" +283370,"mem0ai" +283358,"mypy-boto3-backup" +283283,"mypy-boto3-migrationhub-config" +283212,"ansicon" +283150,"mypy-boto3-neptunedata" +283075,"streamlit-keyup" +283033,"mypy-boto3-devicefarm" +282981,"mypy-boto3-ecr-public" +282977,"mypy-boto3-elasticbeanstalk" +282931,"mypy-boto3-sdb" +282928,"ffmpeg" +282924,"mypy-boto3-mediapackage-vod" +282917,"mypy-boto3-groundstation" +282831,"elevenlabs" +282771,"types-oauthlib" +282761,"pytest-selenium" +282646,"single-source" +282573,"cowsay" +282557,"amplitude-analytics" +282554,"mypy-boto3-comprehendmedical" +282532,"mypy-boto3-globalaccelerator" +282508,"mypy-boto3-frauddetector" +282415,"mypy-boto3-snowball" +282406,"mypy-boto3-elastictranscoder" +282256,"opentelemetry-instrumentation-aiopg" +282242,"mypy-boto3-lex-runtime" +282241,"mypy-boto3-glacier" +282215,"webapp2" +282166,"scalecodec" +282166,"mypy-boto3-kendra" +282150,"mnemonic" +282115,"mypy-boto3-iot1click-projects" +282102,"mypy-boto3-workmail" +282072,"mypy-boto3-kinesis-video-archived-media" +282041,"mypy-boto3-elastic-inference" +281989,"mypy-boto3-kinesis-video-signaling" +281906,"pennylane-lightning" +281904,"mypy-boto3-waf-regional" +281904,"mypy-boto3-appmesh" +281849,"mypy-boto3-kinesisvideo" +281844,"mypy-boto3-lex-models" +281841,"mypy-boto3-greengrass" +281839,"mypy-boto3-appstream" +281755,"prov" +281689,"netutils" +281680,"mypy-boto3-iotevents" +281662,"mypy-boto3-timestream-write" +281608,"prefect-github" +281515,"pickle5" +281488,"gviz-api" +281436,"supermercado" +281375,"mypy-boto3-lightsail" +281371,"beancount-import" +281366,"pystow" +281365,"mypy-boto3-codecommit" +281349,"mypy-boto3-workdocs" +281250,"honeybee-radiance" +281221,"mypy-boto3-kinesisanalytics" +281210,"mypy-boto3-iotanalytics" +281127,"mypy-boto3-kinesis-video-media" +281099,"mypy-boto3-sms-voice" +281085,"mypy-boto3-qldb-session" +281071,"mypy-boto3-pinpoint-sms-voice" +281034,"pythainlp" +280989,"mozilla-django-oidc" +280980,"mypy-boto3-datapipeline" +280965,"mypy-boto3-connectparticipant" +280963,"wagtail" +280958,"mypy-boto3-iotthingsgraph" +280902,"mypy-boto3-swf" +280841,"magika" +280840,"mypy-boto3-opsworkscm" +280837,"einops-exts" +280799,"robocorp-workitems" +280791,"aws-cdk-aws-events" +280791,"mypy-boto3-kinesisanalyticsv2" +280788,"mypy-boto3-cur" +280737,"mypy-boto3-workmailmessageflow" +280647,"smart-importer" +280623,"xraydb" +280492,"mypy-boto3-detective" +280464,"amundsen-databuilder" +280459,"nbsphinx-link" +280451,"mypy-boto3-sms" +280365,"mypy-boto3-savingsplans" +280333,"robocorp" +280314,"redlock-py" +280224,"elasticsearch-curator" +280091,"mypy-boto3-qldb" +280082,"mypy-boto3-chime" +279992,"interpret-core" +279982,"prefect-sqlalchemy" +279906,"mypy-boto3-cloudhsm" +279873,"mypy-boto3-sagemaker-a2i-runtime" +279751,"mypy-boto3-cloudhsmv2" +279745,"awslimitchecker" +279691,"cognite-sdk" +279560,"mypy-boto3-application-insights" +279531,"stix2-patterns" +279376,"h3ronpy" +279367,"pandas-ta" +279306,"mypy-boto3-codestar-notifications" +279296,"drf-jwt" +279151,"mypy-boto3-autoscaling-plans" +279093,"mypy-boto3-cognito-sync" +279064,"mock-serial" +279058,"mypy-boto3-network-firewall" +279013,"google-cloud-private-ca" +278963,"stackprinter" +278954,"rtry" +278691,"langchain-pinecone" +278660,"cpplint" +278658,"mypy-boto3-macie2" +278614,"mypy-boto3-sso-admin" +278571,"dbt-clickhouse" +278532,"packed" +278500,"wheel-filename" +278479,"mypy-boto3-iotsitewise" +278408,"mypy-boto3-resource-groups" +278388,"mypy-boto3-codeguru-reviewer" +278376,"django-elasticsearch-dsl" +278306,"pytmc" +278239,"mypy-boto3-codestar-connections" +278202,"mypy-boto3-clouddirectory" +278154,"spacy-transformers" +278057,"linode-metadata" +278005,"mypy-boto3-robomaker" +277966,"mypy-boto3-codeguruprofiler" +277959,"mypy-boto3-cloud9" +277952,"typeapi" +277799,"apache-airflow-providers-hashicorp" +277414,"abqpy" +277413,"delta-sharing" +277373,"langchain-postgres" +277293,"jmp" +277278,"together" +277179,"sphinx-data-viewer" +277117,"mypy-boto3-ivs-realtime" +276989,"pytest-pylint" +276983,"python-binance" +276875,"neptune" +276766,"httpstan" +276766,"amundsen-common" +276724,"inform" +276586,"pip-install-test" +276450,"lifetimes" +276289,"mypy-boto3-ivs" +276183,"faust" +276034,"sqlalchemy-continuum" +275905,"galois" +275893,"xraylib" +275873,"django-hijack" +275812,"certipy" +275697,"pyscipopt" +275565,"rejson" +275496,"pulumi-tls" +275306,"pyro-ppl" +275278,"opentelemetry-instrumentation-pymemcache" +275162,"bert-score" +275101,"captum" +274996,"reverse-geocoder" +274880,"pylint-gitlab" +274870,"serpent" +274795,"aws-cdk-aws-cloudwatch" +274670,"cssmin" +274639,"pymarshaler" +274586,"nr-date" +274502,"futurist" +274496,"django-htmx" +274430,"runtests" +274289,"toml-sort" +274249,"deepface" +273964,"pyreadstat" +273831,"django-autocomplete-light" +273768,"pylogbeat" +273624,"stream-inflate" +273401,"willow" +273313,"tailer" +273248,"django-recaptcha" +272841,"versionfinder" +272792,"py-consul" +272709,"robinhood-aiokafka" +272506,"webauthn" +272460,"mypy-boto3-braket" +272328,"tf-models-nightly" +272321,"oslash" +272280,"feature-engine" +272213,"tm1py" +271987,"osmnx" +271974,"tinybird-cli" +271783,"mwtypes" +271736,"backports-strenum" +271474,"sparkaid" +271457,"happi" +271395,"pcdsutils" +271392,"sphinx-needs" +271368,"callee" +270999,"pcdsdevices" +270916,"pytest-parametrization" +270894,"mypy-boto3-amp" +270889,"py-bip39-bindings" +270882,"py-algorand-sdk" +270871,"qtpyinheritance" +270549,"segmentation-models-pytorch" +270528,"mypy-boto3-devops-guru" +270494,"pcdscalc" +270395,"dagster-celery-k8s" +270391,"mobly" +270366,"lightpath" +270357,"mypy-boto3-iotwireless" +270351,"mypy-boto3-greengrassv2" +270294,"polars-lts-cpu" +270090,"nestedtext" +269939,"nncf" +269898,"canopen" +269839,"tortoise-orm" +269656,"mypy-boto3-wellarchitected" +269572,"mypy-boto3-sagemaker-featurestore-runtime" +269565,"python-schema-registry-client" +269565,"cityhash" +269398,"mypy-boto3-amplifybackend" +269386,"super-collections" +269367,"mypy-boto3-lookoutvision" +269340,"mypy-boto3-customer-profiles" +269300,"geojson-pydantic" +269277,"cmsis-pack-manager" +269257,"markdown-to-json" +269123,"mypy-boto3-iotfleethub" +269051,"autoray" +268981,"mypy-boto3-healthlake" +268968,"mypy-boto3-databrew" +268926,"mypy-boto3-iotdeviceadvisor" +268824,"mypy-boto3-appintegrations" +268773,"opentracing-utils" +268744,"lingua-language-detector" +268658,"mypy-boto3-sagemaker-edge" +268614,"jsonable" +268449,"shillelagh" +268406,"more-click" +268384,"aws-cdk-aws-lambda" +268383,"mypy-boto3-s3outposts" +268325,"ipaddr" +268302,"launchable" +268288,"py-ed25519-zebra-bindings" +268227,"mmengine" +268197,"mypy-boto3-auditmanager" +268179,"mdxpy" +268132,"aliyun-python-sdk-ecs" +268042,"secure-smtplib" +268042,"amazon-textract-response-parser" +267999,"py-markdown-table" +267990,"aws-cdk-aws-logs" +267952,"warcio" +267917,"mypy-boto3-servicecatalog-appregistry" +267911,"mypy-boto3-lexv2-runtime" +267869,"mypy-boto3-lexv2-models" +267840,"pytest-mpl" +267735,"kedro-telemetry" +267712,"os-client-config" +267615,"mypy-boto3-connect-contact-lens" +267364,"autologging" +267236,"sanic-ext" +266814,"qpd" +266710,"cvss" +266613,"pyjson5" +266353,"simplekml" +266300,"mapclassify" +266036,"pact-python" +265738,"easy-thumbnails" +265590,"nbimporter" +265508,"mypy-boto3-mgn" +265363,"types-pkg-resources" +265353,"zmq" +265329,"docstr-coverage" +265260,"aws-cdk-aws-s3-assets" +265188,"deb-pkg-tools" +265182,"flake8-return" +265174,"parametrize-from-file" +265165,"mypy-boto3-fis" +265161,"files-com" +265155,"types-fpdf2" +265049,"inline-snapshot" +265045,"username" +265000,"google-api" +264968,"replicate" +264914,"sty" +264843,"filesplit" +264806,"tf-nightly" +264626,"mariadb" +264490,"ttp-templates" +264259,"kaggle" +264245,"mypy-boto3-lookoutmetrics" +264053,"tidyexc" +264013,"mypy-boto3-lookoutequipment" +263805,"ailever" +263784,"storops" +263460,"mypy-boto3-ssm-incidents" +263379,"elasticquery" +263286,"mypy-boto3-finspace-data" +263266,"tensorflow-decision-forests" +263222,"traits" +263195,"treelite-runtime" +263181,"jinxed" +263179,"mypy-boto3-finspace" +263109,"chess" +263094,"crewai-tools" +263032,"rio-cogeo" +262964,"panda3d" +262952,"instructorembedding" +262935,"spirack" +262844,"mypy-boto3-apprunner" +262650,"tensorly" +262572,"aws-cdk-aws-ecr" +262552,"esp-idf-nvs-partition-gen" +262516,"lazy-model" +262428,"lalsuite" +262362,"wavefront-cli" +262224,"feather-format" +262200,"aws-cdk-aws-ssm" +262199,"ccard" +262064,"azure-iot-device" +262048,"mypy-boto3-ssm-contacts" +262033,"pamela" +261933,"pytest-wake" +261825,"vector-quantize-pytorch" +261706,"django-templated-mail" +261675,"dataflows-tabulator" +261613,"pyocd" +261569,"retryz" +261558,"python-jwt" +261447,"pyqtwebengine-qt5" +261426,"python-redmine" +261368,"pytest-doctestplus" +261358,"mypy-boto3-applicationcostprofiler" +261267,"types-google-cloud-ndb" +261198,"slicerator" +261144,"autogluon-timeseries" +261122,"virtualenvwrapper" +261118,"dramatiq" +261093,"gcloud-aio-pubsub" +261090,"django-admin-autocomplete-filter" +261069,"substrate-interface" +260993,"openexr" +260984,"cachez" +260906,"mypy-boto3-appconfigdata" +260881,"mypy-boto3-grafana" +260799,"untangle" +260781,"flask-principal" +260731,"splink" +260710,"pyroscope-io" +260650,"mypy-boto3-bedrock-agent-runtime" +260613,"whichcraft" +260529,"sklearn-crfsuite" +260509,"types-maxminddb" +260471,"mypy-boto3-proton" +260430,"scrubadub" +260404,"marshmallow3-annotations" +260300,"mypy-boto3-bedrock-agent" +260105,"ytsaurus-client" +260036,"drf-writable-nested" +259969,"djangorestframework-xml" +259929,"fastexcel" +259832,"abstra" +259668,"mypy-boto3-inspector2" +259667,"stanza" +259662,"times" +259662,"mypy-boto3-redshift-serverless" +259644,"mailchimp-transactional" +259597,"allennlp-pvt-nightly" +259518,"mypy-boto3-account" +259478,"in-place" +259277,"google-cloud-ndb" +259141,"opensearch-dsl" +259051,"mypy-boto3-memorydb" +258876,"sphinxcontrib-drawio" +258874,"streamlit-extras" +258758,"pyarrow-stubs" +258733,"vintage" +258352,"beanie" +258089,"pwlf" +258067,"mypy-boto3-route53-recovery-control-config" +258042,"mypy-boto3-chime-sdk-messaging" +258037,"mypy-boto3-snow-device-management" +257996,"stix2" +257941,"first" +257862,"equinox" +257802,"ahocorapy" +257784,"mypy-boto3-chime-sdk-identity" +257753,"pyjwkest" +257679,"mypy-boto3-cloudcontrol" +257568,"mypy-boto3-keyspaces" +257517,"huaweicloudsdkdns" +257444,"insightface" +257332,"zxcvbn" +257293,"sliceline" +257220,"pycobertura" +257147,"mypy-boto3-wisdom" +257096,"ipy" +257096,"mypy-boto3-route53-recovery-cluster" +257001,"mypy-boto3-route53-recovery-readiness" +256950,"mypy-boto3-kafkaconnect" +256767,"pyiso8583" +256710,"mypy-boto3-voice-id" +256646,"oic" +256643,"mcap-protobuf-support" +256629,"bech32" +256566,"mypy-boto3-omics" +256438,"pydantic-factories" +256418,"xmltojson" +256336,"aiodogstatsd" +256317,"rospkg" +256303,"mypy-boto3-workspaces-web" +256158,"django-modelcluster" +256132,"pyinotify" +256010,"flask-accepts" +255993,"ibm-secrets-manager-sdk" +255865,"mypy-boto3-iotfleetwise" +255855,"mypy-boto3-cleanrooms" +255843,"mypy-boto3-opensearchserverless" +255767,"aiodocker" +255733,"airflow-dbt" +255685,"jinjanator" +255666,"argparse2" +255507,"jinjanator-plugins" +255464,"mypy-boto3-panorama" +255358,"mypy-boto3-verifiedpermissions" +255309,"mypy-boto3-resiliencehub" +255288,"unleashclient" +255270,"zlib-ng" +255209,"mypy-boto3-ivschat" +255183,"mypy-boto3-chime-sdk-media-pipelines" +255158,"apache-libcloud" +255095,"mypy-boto3-chime-sdk-meetings" +255012,"mypy-boto3-amplifyuibuilder" +255008,"mypy-boto3-evidently" +254910,"mypy-boto3-controltower" +254817,"pyttsx3" +254770,"mypy-boto3-drs" +254744,"recordclass" +254720,"pytest-reportlog" +254667,"ytsaurus-yson" +254658,"mypy-boto3-backup-gateway" +254618,"mypy-boto3-qbusiness" +254562,"dragnet" +254484,"mypy-boto3-migrationhubstrategy" +254457,"mypy-boto3-iottwinmaker" +254453,"mypy-boto3-billingconductor" +254438,"stream-unzip" +254430,"mypy-boto3-migration-hub-refactor-spaces" +254368,"postmarker" +254361,"mypy-boto3-datazone" +254336,"mypy-boto3-mediapackagev2" +254260,"mypy-boto3-rbin" +254212,"xlwings" +254206,"mypy-boto3-m2" +254169,"bluetooth-adapters" +254051,"mypy-boto3-internetmonitor" +254039,"mypy-boto3-payment-cryptography" +254006,"autogluon-multimodal" +253928,"mypy-boto3-b2bi" +253897,"mypy-boto3-pipes" +253810,"mypy-boto3-docdb-elastic" +253792,"mypy-boto3-rum" +253776,"mkdocs-section-index" +253774,"mypy-boto3-payment-cryptography-data" +253722,"sqlakeyset" +253665,"mypy-boto3-osis" +253655,"jsonschema-rs" +253646,"mypy-boto3-chime-sdk-voice" +253582,"pyro-api" +253573,"mypy-boto3-resource-explorer-2" +253453,"mypy-boto3-support-app" +253402,"mypy-boto3-ssm-sap" +253391,"mypy-boto3-connectcases" +253356,"alibabacloud-credentials" +253348,"mypy-boto3-securitylake" +253346,"mypy-boto3-workspaces-thin-client" +253292,"mypy-boto3-cleanroomsml" +253287,"mypy-boto3-connectcampaigns" +253269,"mypy-boto3-simspaceweaver" +253261,"mypy-boto3-supplychain" +253204,"mypy-boto3-timestream-influxdb" +253020,"mypy-boto3-taxsettings" +253014,"opentelemetry-instrumentation-cassandra" +253003,"mypy-boto3-sagemaker-metrics" +252990,"mypy-boto3-vpc-lattice" +252962,"mypy-boto3-tnb" +252932,"docusign-esign" +252884,"mypy-boto3-license-manager-user-subscriptions" +252851,"sqlalchemy-mixins" +252844,"flutils" +252843,"mypy-boto3-rolesanywhere" +252777,"mypy-boto3-arc-zonal-shift" +252766,"opentelemetry-instrumentation-remoulade" +252724,"mypy-boto3-migrationhuborchestrator" +252712,"pypika-tortoise" +252706,"mypy-boto3-qapps" +252701,"mypy-boto3-neptune-graph" +252684,"mypy-boto3-codecatalyst" +252631,"exifread" +252591,"mypy-boto3-medical-imaging" +252567,"mypy-boto3-application-signals" +252537,"mypy-boto3-cloudtrail-data" +252527,"mypy-boto3-appfabric" +252446,"mypy-boto3-launch-wizard" +252423,"mypy-boto3-trustedadvisor" +252399,"mypy-boto3-kinesis-video-webrtc-storage" +252362,"mypy-boto3-codeguru-security" +252350,"mypy-boto3-privatenetworks" +252342,"mypy-boto3-cost-optimization-hub" +252309,"mypy-boto3-chatbot" +252278,"mypy-boto3-mailmanager" +252263,"mypy-boto3-kendra-ranking" +252233,"mypy-boto3-bcm-data-exports" +252230,"pyodps" +252223,"mypy-boto3-qconnect" +252218,"mypy-boto3-controlcatalog" +252176,"mypy-boto3-entityresolution" +252159,"mypy-boto3-deadline" +252132,"mypy-boto3-repostspace" +252117,"mypy-boto3-oam" +252092,"mypy-boto3-sagemaker-geospatial" +252031,"a-bigelow-cdk-eventbridge-partner-processors" +251944,"django-test-migrations" +251920,"mypy-boto3-artifact" +251912,"robotframework-retryfailed" +251889,"mypy-boto3-managedblockchain-query" +251847,"wrapt-timeout-decorator" +251828,"pyliquibase" +251796,"mypy-boto3-eks-auth" +251778,"mypy-boto3-cloudfront-keyvaluestore" +251762,"mypy-boto3-license-manager-linux-subscriptions" +251679,"mypy-boto3-codeconnections" +251646,"mypy-boto3-freetier" +251607,"mypy-boto3-apptest" +251591,"mypy-boto3-marketplace-agreement" +251559,"catboost-dev" +251463,"mypy-boto3-pca-connector-ad" +251462,"pysnooper" +251454,"google-cloud-common" +251423,"mypy-boto3-marketplace-deployment" +251396,"beautifulsoup" +251194,"mypy-boto3-inspector-scan" +251099,"apify-client" +251001,"mypy-boto3-networkmonitor" +250972,"robotframework-appiumlibrary" +250956,"mypy-boto3-route53profiles" +250895,"pytest-reportportal" +250880,"jc" +250866,"google-cloud-filestore" +250748,"mypy-boto3-pca-connector-scep" +250704,"mypy-boto3-ssm-quicksetup" +250685,"namedentities" +250674,"watchdog-gevent" +250432,"langchain-ollama" +250424,"mypy-boto3-pcs" +250246,"cdk8s" +250226,"stumpy" +250204,"django-allow-cidr" +250152,"pyftdi" +250134,"google-cloud-profiler" +250085,"mypy-boto3-marketplace-reporting" +249878,"aws-cdk-aws-applicationautoscaling" +249864,"alibabacloud-tea-openapi" +249795,"arxiv" +249789,"aioesphomeapi" +249705,"jsonnet" +249671,"circus" +249631,"types-lxml" +249604,"mypy-boto3-ds-data" +249458,"apache-airflow-providers-apache-livy" +249154,"cfgrib" +248712,"h2o" +248679,"litestar" +248556,"sphinx-bootstrap-theme" +248498,"duo-client" +248487,"robotframework-excellib" +248424,"aws-cdk-aws-sqs" +248385,"json-schema-for-humans" +248324,"mo-future" +248193,"urllib3-mock" +248157,"pytorch-ignite" +248156,"aws-cdk-aws-logs-destinations" +248065,"lhotse" +247958,"macresources" +247954,"pyutilib" +247896,"fastapi-cache2" +247765,"databricks-utils" +247723,"pytest-spark" +247714,"nbdime" +247530,"apache-airflow-providers-presto" +247220,"reedsolo" +247040,"aws-cdk-aws-ecr-assets" +246893,"bingads" +246890,"wordninja" +246764,"gspread-pandas" +246601,"django-admin-sortable2" +246487,"comet-maths" +246327,"bigquery-schema-generator" +246218,"sagemaker-experiments" +246143,"alibabacloud-tea-util" +246133,"python-status" +246044,"easydev" +246037,"yagmail" +245880,"punpy" +245713,"bindep" +245584,"arelle-release" +245503,"canmatrix" +245455,"roslibpy" +245280,"openapi-codec" +245192,"lilcom" +245019,"pymc3" +244819,"konlpy" +244586,"pydoe2" +244586,"pyobjc-framework-quartz" +244314,"djoser" +244286,"anycrc" +244265,"types-passlib" +244171,"pymel" +244054,"dragonfly-schema" +243991,"joblibspark" +243920,"cybox" +243888,"ci-info" +243650,"syne-tune" +243413,"rules" +243374,"aws-cdk-aws-sns" +243308,"pytest-timestamper" +242893,"mixbox" +242893,"aws-cdk-aws-efs" +242606,"azure-messaging-webpubsubservice" +242244,"amundsen-rds" +242240,"stix" +242236,"azure-cognitiveservices-vision-computervision" +242205,"etelemetry" +242186,"humiolib" +242051,"websocket" +241994,"pypi-simple" +241992,"mitmproxy-rs" +241963,"adtk" +241890,"biscuit-python" +241821,"alibabacloud-openapi-util" +241784,"gptcache" +241717,"rcon" +241629,"pyicu" +241619,"pykml" +241538,"python-logstash-async" +241471,"businesstimedelta" +241290,"testrail-api" +241262,"patchwork" +241161,"kmodes" +240822,"warlock" +240717,"py-manga" +240685,"unitypy" +240444,"aiotools" +240412,"jax-cuda12-plugin" +240362,"better-exceptions" +240343,"bleak-retry-connector" +240303,"assemblyai" +240265,"setuptools-download" +240264,"yeelight" +240260,"tinsel" +240236,"pypubsub" +240199,"hahomematic" +240147,"pytest-freezer" +240083,"python-markdown-math" +239997,"pandas-schema" +239925,"dead-hosts-launcher" +239858,"calver" +239720,"hdrpy" +239672,"newick" +239641,"amplpy" +239611,"gitignore-parser" +239572,"aws-cdk-aws-certificatemanager" +239506,"aws-cdk-aws-secretsmanager" +239471,"nameof" +239347,"aiomoex" +239342,"dh-utils" +239275,"cdk-gitlab-runner" +239237,"pygal" +238827,"arize-phoenix-evals" +238782,"tdda" +238494,"pyxll" +238430,"pysqlite3" +238208,"types-enum34" +238092,"zigpy-zigate" +238079,"rpm" +238019,"bump-my-version" +237763,"datarobot" +237669,"pyutils-hep" +237544,"patchy" +237411,"pytest-remotedata" +237329,"zope-sqlalchemy" +237277,"tapipy" +237276,"bidsschematools" +236910,"labelbox" +236794,"google-cloud-functions" +236620,"tavern" +236413,"disposable-email-domains" +236375,"flake8-use-fstring" +236361,"generic-iterative-stemmer" +236316,"python-quickbooks" +236216,"llama-cpp-python" +236100,"types-aiobotocore-elbv2" +235965,"alchemy-mock" +235902,"sox" +235815,"saxonche" +235773,"databricks-vectorsearch" +235718,"pyarmor-cli-core" +235647,"pglast" +235643,"qcodes-contrib-drivers" +235541,"fsd" +235523,"htmltools" +235415,"teamhack-nmap" +235360,"logger" +235312,"timedelta" +235239,"async-interrupt" +235121,"langserve" +234791,"jupyter-server-mathjax" +234747,"aiooui" +234653,"link" +234645,"pystac-client" +234597,"python-glanceclient" +234560,"aimmo" +234510,"llamaindex-py-client" +234451,"deepgram-sdk" +234400,"textsearch" +234352,"timing-asgi" +234295,"ipyleaflet" +234264,"conllu" +234039,"alibabacloud-gateway-spi" +233824,"svix" +233709,"django-dirtyfields" +233670,"jax-cuda12-pjrt" +233639,"alchemlyb" +233614,"aws-cdk-aws-autoscaling-common" +233473,"ipwhois" +233429,"pyspark-test" +233427,"pyramid-tm" +233361,"twofish" +233042,"pure-pcapy3" +232992,"aws-cdk-aws-codeguruprofiler" +232951,"great-tables" +232934,"l18n" +232888,"aws-cdk-aws-route53" +232858,"ast-grep-cli" +232835,"mwclient" +232787,"aws-cdk-assets" +232483,"propka" +232424,"google-cloud-certificate-manager" +232310,"honeybee-radiance-folder" +232294,"alibabacloud-endpoint-util" +232293,"alibabacloud-tea-xml" +232285,"airflow-provider-fivetran-async" +232266,"honeybee-radiance-command" +232018,"pandas-read-xml" +231917,"optparse-pretty" +231895,"mmcif-pdbx" +231705,"springserve" +231573,"datetype" +231512,"python-debian" +231432,"impacket" +231311,"adbc-driver-manager" +231262,"sphinx-mdinclude" +231177,"aiohttp-jinja2" +231137,"observable" +231084,"sortedcollections" +230999,"libify" +230948,"markdown-inline-graphviz-extension" +230935,"yasoo" +230868,"sphinxcontrib-apidoc" +230778,"cons" +230675,"cdk-aurora-globaldatabase" +230534,"higlass-schema" +230519,"pafy" +230419,"stdiomask" +230277,"etuples" +230184,"bluetooth-data-tools" +230116,"ceja" +230107,"pdb2pqr" +230051,"openapi-pydantic" +230047,"servir" +229951,"tsfresh" +229943,"aws-cdk-aws-cloudformation" +229933,"pytorch" +229881,"logical-unification" +229776,"brewer2mpl" +229479,"readability-lxml" +229288,"aiven-client" +229079,"pyvo" +228990,"ggplot" +228938,"bqplot" +228878,"pyeapi" +228821,"requests-ntlm3" +228807,"habluetooth" +228676,"kestra" +228601,"argparse-helper" +228587,"logging-formatter-anticrlf" +228405,"iteration-utilities" +228392,"config-dir" +228391,"pyzipcode" +228349,"aws-cdk-custom-resources" +228297,"args" +228189,"rq-scheduler" +228146,"findiff" +228011,"contractions" +227963,"depthai" +227847,"langchain-mistralai" +227769,"pyroma" +227715,"defcon" +227592,"cmake-format" +227560,"trustme" +227523,"google-compute-engine" +227515,"tkmacosx" +227491,"segtok" +227276,"posix-ipc" +227264,"dask-cuda" +227163,"opentelemetry-instrumentation-psycopg" +227121,"gpytorch" +226974,"azureml-fsspec" +226968,"pyaml-env" +226956,"case-class" +226882,"minikanren" +226869,"tqdm-loggable" +226857,"curies" +226828,"types-backports" +226813,"solc-select" +226718,"llama-index-vector-stores-postgres" +226709,"lbt-dragonfly" +226701,"aws-cdk-aws-elasticloadbalancingv2" +226598,"apache-airflow-providers-grpc" +226336,"zeo" +226282,"deprecat" +226070,"flake8-blind-except" +226033,"auditwheel" +225928,"python-statemachine" +225889,"liccheck" +225855,"invisible-watermark" +225840,"plan-tools" +225656,"opencensus-proto" +225581,"cdk-events-notify" +225420,"unidic" +225392,"opentelemetry-instrumentation-aiohttp-server" +225253,"flask-restplus" +224996,"hypothesis-jsonschema" +224982,"mxnet-mkl" +224882,"mo-dots" +224765,"sinethesizer" +224755,"types-aiobotocore-acm" +224720,"pdm-pep517" +224595,"cdktf-cdktf-provider-aws" +224538,"pgspecial" +224335,"django-classy-tags" +224283,"telepath" +224058,"types-aiobotocore-iam" +223713,"pytest-incremental" +223697,"remote-pdb" +223685,"actions-toolkit" +223619,"types-aiobotocore-route53" +223492,"pydynamodb" +223486,"ipylab" +223219,"flake8-logging-format" +223215,"browserstack-local" +223194,"skqulacs" +223136,"nipype" +223047,"python-vagrant" +222890,"flet" +222867,"astronomer-providers" +222851,"fauxfactory" +222793,"icalevents" +222680,"twython" +222646,"pgsanity" +222640,"typed-argument-parser" +222588,"bigdl-nano" +222492,"django-solo" +222304,"datarecorder" +222269,"tickforge-client" +222229,"pyteomics" +222205,"usb-devices" +222165,"hausdorff" +221693,"favicon" +221665,"atlassian-jwt-auth" +221584,"lapx" +221521,"esprima" +221445,"emr-notebooks-magics" +221433,"daal" +221393,"pylsl" +221375,"presto-client" +221250,"envparse" +221197,"arize-phoenix-otel" +221080,"maison" +221040,"fugue-sql-antlr" +220988,"serverless-wsgi" +220866,"downloadkit" +220564,"prefect-dbt" +220519,"pycosat" +220467,"aioice" +220370,"baby-steps" +220263,"mergepythonclient" +220257,"widdy" +220194,"praat-parselmouth" +220186,"basicauth" +219988,"multi-model-server" +219971,"bids-validator" +219940,"cybrid-api-organization-python" +219934,"pycron" +219918,"mo-imports" +219897,"fortifyapi" +219830,"json2xml" +219763,"piccolo" +219602,"algokit-utils" +219581,"motifcluster" +219473,"keras-nlp" +219434,"emails" +219337,"aws-cdk-aws-codestarnotifications" +219197,"prowler" +219157,"fast-query-parsers" +219095,"nacos-sdk-python" +219086,"airflow-provider-great-expectations" +218667,"efficientnet-pytorch" +218552,"aws-cdk-aws-ecs" +218360,"mypy-boto3-nimble" +218341,"mkdocs-mermaid2-plugin" +218334,"apache-airflow-providers-samba" +218216,"pyfcm" +218189,"selenium-stealth" +218171,"wakeonlan" +217984,"scanpy" +217922,"mechanize" +217886,"aws-cdk-aws-sam" +217826,"python-hosts" +217772,"slipcover" +217771,"testscenarios" +217707,"smbus2" +217706,"aws-cdk-aws-cognito" +217560,"pylibsrtp" +217386,"ovld" +217326,"growthbook" +217270,"represent" +217168,"pook" +216925,"cybrid-api-id-python" +216903,"xml-python" +216898,"csscompressor" +216641,"handpick" +216634,"async-stripe" +216563,"pygrib" +216519,"rotary-embedding-torch" +216433,"allpairspy" +216397,"brazilnum" +216275,"scylla-driver" +216249,"torchsummary" +216164,"wtforms-json" +216113,"valid8" +216084,"aws-cdk-aws-stepfunctions" +215899,"apysc" +215835,"azure-cognitiveservices-knowledge-qnamaker" +215820,"clearml-agent" +215535,"bumpver" +215440,"fairlearn" +215427,"aws-cdk-aws-signer" +215412,"astroquery" +215411,"tdparser" +215233,"pytest-codspeed" +215160,"py3rijndael" +214950,"price-parser" +214909,"theano-pymc" +214895,"iden" +214880,"records" +214836,"mdformat-tables" +214816,"dagster-datadog" +214763,"jurigged" +214582,"swimbundle-utils" +214576,"gggdtparser" +214481,"scikit-learn-intelex" +214448,"graphene-sqlalchemy" +214379,"azure-ai-language-questionanswering" +214305,"pyfields" +214167,"autofaiss" +214120,"aws-cdk-aws-sns-subscriptions" +214081,"rosbags" +214074,"simpleparse" +213986,"azure-ai-language-conversations" +213845,"cloup" +213753,"spotpy" +213733,"nicegui" +213704,"pygresql" +213361,"uart-devices" +213356,"niltype" +213196,"pytest-black" +213189,"ursina" +213166,"cloudsearch" +213118,"rlpycairo" +213118,"sockio" +212982,"cpuset-py3" +212933,"pycoingecko" +212906,"tavily-python" +212894,"htmlmin2" +212793,"cdifflib" +212783,"embedding-reader" +212730,"unicode-slugify" +212721,"sunshine-conversations-client" +212716,"dspy-ai" +212660,"ip2location" +212658,"pymap3d" +212604,"robotframework-databaselibrary" +212426,"django-pgtrigger" +212412,"serialio" +212374,"swapper" +212305,"json-ref-dict" +212292,"html2image" +212282,"pytest-timeouts" +212120,"robotframework-tidy" +212020,"connio" +211985,"covdefaults" +211570,"mohawk" +211464,"crossplane" +211388,"doc-warden" +211275,"nbval" +211146,"aws-cdk-aws-apigateway" +211059,"colorist" +210923,"certifi-linux" +210899,"streamlit-image-coordinates" +210839,"phpserialize" +210814,"linear-operator" +210793,"ecpy" +210690,"multiprocessing" +210687,"aws-cdk-aws-kinesis" +210560,"pykerberos" +210477,"lm-eval" +210453,"linetools" +210411,"better-profanity" +210361,"cybrid-api-bank-python" +210295,"linear-tsv" +210282,"geoip2-tools" +210276,"yaml-config" +210128,"httpagentparser" +210124,"yamlfix" +210067,"streamlit-card" +210063,"google-benchmark" +210049,"flachtex" +210024,"pymonet" +210004,"kcli" +209827,"pot" +209818,"neo4j-driver" +209770,"hvplot" +209586,"robotframework-sshlibrary" +209514,"pybids" +209438,"cdk-certbot-dns-route53" +209362,"snowflake-telemetry-python" +209299,"pyplugs" +209196,"opacus" +209191,"qdarkstyle" +209175,"hass-nabucasa" +209035,"fuzzysearch" +208815,"boruta" +208691,"django-permissionedforms" +208665,"stanfordcorenlp" +208661,"fbprophet" +208580,"airflow-mcd" +208478,"smllib" +208436,"py-meta-utils" +208362,"async-exit-stack" +208343,"abacusai" +208175,"aws-cdk-aws-autoscaling" +207906,"clarifai" +207891,"agate-sql" +207886,"linetable" +207806,"sagemaker-data-insights" +207800,"certbot-dns-route53" +207748,"pydocumentdb" +207745,"stempeg" +207737,"littlefs-python" +207728,"usaddress-scourgify" +207621,"musdb" +207618,"grpc-requests" +207617,"st-annotated-text" +207595,"base64io" +207552,"ddapm-test-agent" +207289,"xbbg" +207168,"flask-unittest" +206836,"restfly" +206813,"esptool" +206733,"dukpy" +206681,"museval" +206664,"pybreaker" +206657,"lazr-uri" +206637,"keybert" +206632,"cupy-cuda11x" +206567,"x-transformers" +206518,"julia" +206498,"docdata" +206378,"openqa-client" +206294,"acryl-datahub-classify" +206130,"textract" +206122,"css-inline" +206106,"jaeger-client" +205964,"ics" +205690,"flake8-expression-complexity" +205669,"meross-iot" +205644,"sccache" +205529,"esp-idf-kconfig" +205459,"coralogix-logger" +205441,"assemblyline-core" +205440,"saspy" +205316,"demjson3" +205213,"optimizely-sdk" +205166,"actfast" +205099,"scanf" +205095,"m2r2" +204857,"docx" +204661,"healpix" +204635,"cachebox" +204362,"vininfo" +204316,"panda3d-simplepbr" +204275,"lintrunner" +204234,"aliyun-python-sdk-rds" +204127,"pywebpush" +204053,"markdownlit" +204012,"aws-cdk-aws-elasticloadbalancing" +203928,"lcov-cobertura" +203823,"panda3d-gltf" +203587,"crispy-bootstrap4" +203479,"tensorflow-model-analysis" +203445,"zipcodes" +203361,"prefect-snowflake" +203306,"pyecharts" +202775,"pysimplevalidate" +202759,"dagster-azure" +202725,"livekit-api" +202643,"aws-cdk-aws-route53-targets" +202639,"pdblp" +202636,"mwtextextractor" +202626,"airtable" +202617,"pyinputplus" +202551,"mkdocs-minify-plugin" +202524,"trcli" +202509,"threadloop" +202320,"megatron-core" +202297,"kuzu" +202273,"justbases" +202203,"mdformat-frontmatter" +202051,"namedlist" +201985,"pymcubes" +201916,"pandavro" +201862,"ds2" +201744,"agate-excel" +201728,"pyexcelerate" +201715,"apache-airflow-providers-apache-pinot" +201678,"vabene" +201660,"streamlit-embedcode" +201601,"zcbor" +201555,"hl7" +201511,"metricspaces" +201478,"qpsolvers" +201380,"bluetooth-auto-recovery" +201362,"pytest-filter-subpackage" +201220,"rstcheck-core" +201152,"autowrapt" +201065,"flpc" +201061,"tensorrt" +200993,"pgcli" +200952,"django-webtest" +200928,"streamlit-toggle-switch" +200921,"pymonetdb" +200907,"paypalrestsdk" +200863,"dbnd" +200844,"lexid" +200807,"pyzabbix" +200740,"mmdet" +200704,"htbuilder" +200604,"flask-debugtoolbar" +200589,"blinker-herald" +200516,"libhoney" +200511,"model-archiver" +200468,"jaro-winkler" +200430,"girth" +200245,"snakes" +200173,"hl7apy" +200128,"azure-iot-hub" +200126,"assemblyline-ui" +200007,"implicit" +199931,"aws-cdk-aws-cloudfront" +199853,"django-deprecate-fields" +199846,"aws-cdk-aws-servicediscovery" +199752,"ical" +199612,"streamlit-camera-input-live" +199586,"streamlit-faker" +199578,"airflow-provider-fivetran" +199516,"image" +199485,"cyclonedx-bom" +199350,"pytest-mock-resources" +199314,"granian" +199300,"django-autoslug" +199240,"llama-index-embeddings-huggingface" +199146,"pyresidfp" +199146,"yamlloader" +199095,"livekit-protocol" +199063,"slackweb" +198946,"flet-core" +198930,"pyxnat" +198794,"django-admin-list-filter-dropdown" +198787,"simple-rest-client" +198743,"aqtinstall" +198716,"onepasswordconnectsdk" +198707,"django-crum" +198646,"pinterest-api-sdk" +198608,"pinterest-generated-client" +198590,"aws-cdk-aws-autoscaling-hooktargets" +198584,"conda-package-streaming" +198554,"compress-pickle" +198527,"filechunkio" +198461,"pip-upgrader" +198312,"pyinquirer" +198271,"streamlit-vertical-slider" +198203,"securesystemslib" +198096,"rocksdict" +198027,"az-cli" +197862,"aws-cdk-aws-codecommit" +197856,"blowfish" +197855,"ops" +197855,"delorean" +197800,"aws-cdk-aws-codebuild" +197573,"types-emoji" +197569,"mapz" +197471,"ormar" +197379,"scrapfly-sdk" +197368,"toolium" +197272,"ptable" +197259,"django-linear-migrations" +197084,"econml" +197046,"flt" +196859,"drawille" +196809,"business-duration" +196744,"python-sat" +196677,"flet-runtime" +196547,"para" +196440,"pylint-pytest" +196395,"eli5" +196372,"bapy" +196311,"axiom-py" +196279,"visualdl" +196213,"slackbot" +196117,"btsocket" +195997,"asn1ate" +195932,"soda-core-duckdb" +195609,"rasa" +195560,"fabric3" +195366,"gravis" +195259,"aiounittest" +195080,"httpx-oauth" +194951,"validator-collection" +194880,"crhelper" +194819,"torch-fidelity" +194760,"oslo-concurrency" +194720,"monai" +194719,"azure-eventhub-checkpointstoreblob" +194626,"agate-dbf" +194606,"dbt" +194601,"django-imagekit" +194498,"mwcli" +194391,"kitchen" +194390,"bioframe" +194183,"mwxml" +194011,"gaussiancl" +193987,"kubernetes-stubs" +193982,"apify-shared" +193930,"arize" +193908,"sqlvalidator" +193892,"daal4py" +193871,"tkinterdnd2" +193693,"flake8-cognitive-complexity" +193554,"aikif" +193455,"hierarchical-conf" +193425,"aws-cdk-aws-dynamodb" +193422,"findlibs" +193298,"vllm-flash-attn" +193255,"iterative-ensemble-smoother" +193243,"nemo-toolkit" +193065,"dol" +192951,"tonyg-rfc3339" +192738,"django-grappelli" +192731,"hydra-zen" +192700,"pyobjc-framework-applicationservices" +192680,"sklearn2pmml" +192656,"snitun" +192591,"cognitive-complexity" +192382,"apache-airflow-providers-microsoft-winrm" +192377,"django-bootstrap5" +192289,"pyobjc" +192228,"pyobjc-framework-coretext" +192070,"django-sekizai" +191941,"email-to" +191870,"acryl-pyhive" +191827,"emojis" +191814,"airtable-python-wrapper" +191805,"asn1tools" +191767,"requests-gssapi" +191759,"unidic-lite" +191740,"mixer" +191689,"kazurator" +191684,"wemake-python-styleguide" +191520,"breadability" +191463,"azureml-train-automl" +191324,"fab-classic" +191290,"pybit" +191274,"id" +191261,"higher" +191174,"targ" +191127,"cloudscale-sdk" +191111,"pyglm" +190960,"sphinxcontrib-svg2pdfconverter" +190838,"cloudant" +190807,"graphql-server-core" +190765,"pyspark-stubs" +190647,"flask-pydantic" +190599,"indexed" +190598,"python-irodsclient" +190376,"aioconsole" +190316,"nosexcover" +190294,"repath" +190251,"drgn" +190228,"fast-depends" +190145,"abstract-ai" +190018,"llama-index-embeddings-bedrock" +190015,"pycrdt" +189974,"assemblyline" +189933,"pilkit" +189812,"junit-xml-2" +189811,"mtmlib" +189791,"ftputil" +189745,"requests-unixsocket2" +189708,"pyhpke" +189696,"python-documentcloud" +189657,"djangosaml2" +189470,"cysignals" +189465,"rerun-sdk" +189416,"sqlalchemy-pytds" +189338,"unsloth-zoo" +189334,"hyper" +189308,"bencode2" +189276,"mux-python" +189150,"fastembed" +189136,"sphinxcontrib-confluencebuilder" +189122,"robocorp-browser" +189030,"abcli" +189017,"aws-cdk-aws-acmpca" +188953,"yaql" +188864,"azure-schemaregistry-avroencoder" +188845,"assemblyline-service-server" +188832,"inscriptis" +188698,"ale-py" +188696,"pygad" +188647,"typesystem" +188572,"collate-sqllineage" +188527,"dvc-s3" +188499,"setuptools-odoo" +188349,"spotdl" +188197,"aiotieba" +188062,"databricks-labs-blueprint" +188062,"gcloud-rest-auth" +188026,"django-sendgrid-v5" +187930,"mmtf-python" +187781,"ghostscript" +187771,"beam-nuggets" +187752,"dall-e" +187707,"single-version" +187651,"mdformat-gfm" +187641,"pycolab" +187597,"wiremock" +187555,"mtmai" +187554,"compynator" +187418,"realesrgan" +187394,"typos" +187348,"taskipy" +187334,"siphon" +187177,"aider-chat" +187125,"crazy-thursday" +186838,"arraykit" +186782,"aliyun-python-sdk-core-v3" +186746,"gorilla" +186606,"evilunit" +186511,"flake8-mutable" +186442,"schemathesis" +186392,"pybel" +186381,"robotframework-datadriver" +186300,"langchainplus-sdk" +186237,"types-sqlalchemy" +186080,"imgtool" +186076,"clvm-tools" +186044,"python-libsbml" +186012,"ziglang" +185883,"google-cloud-billing" +185872,"aioextensions" +185843,"django-lifecycle" +185725,"facebook-wda" +185719,"clvm" +185630,"django-cte" +185620,"listcrunch" +185605,"meraki" +185555,"pygount" +185521,"pyexecjs" +185517,"py-dateutil" +185487,"django-cacheops" +185463,"djangorestframework-gis" +185422,"django-yaa-settings" +185253,"pypylon" +185115,"advertools" +185096,"cg" +185066,"pyrealsense2" +185017,"gkeepapi" +184825,"gradio-rangeslider" +184751,"django-cryptography" +184666,"class-registry" +184630,"mailchimp3" +184600,"cobra" +184248,"httpx-auth" +184232,"wait-for" +184229,"pyro4" +184226,"pytest-pretty" +184156,"opentelemetry-resourcedetector-kubernetes" +184029,"django-sortedm2m" +184014,"moz-sql-parser" +183986,"msgpack-types" +183937,"django-rest-knox" +183827,"cwcwidth" +183727,"mne" +183588,"kaldi-io" +183533,"workadays" +183463,"fuzzy" +183450,"prefect-kubernetes" +183416,"pretrainedmodels" +183374,"dspy" +183372,"kiwipiepy" +183336,"torch-tb-profiler" +183244,"cpe" +183188,"django-nose" +183187,"python-helpscout-v2" +183142,"javalang" +183063,"bertopic" +183024,"mysql-python" +182971,"pykcs11" +182971,"fslpy" +182906,"flake8-noqa" +182785,"pytest-shard" +182757,"pedalboard" +182754,"pypugjs" +182695,"bel-resources" +182660,"aggdraw" +182636,"adafruit-blinka" +182622,"mip" +182614,"runez" +182609,"xenon" +182566,"st-theme" +182544,"jupyterlab-git" +182468,"cwrap" +182350,"tcmlib" +182287,"opentelemetry-resourcedetector-docker" +182284,"py3langid" +182279,"apache-airflow-providers-exasol" +182229,"llama-index-vector-stores-azureaisearch" +182224,"multisplitby" +182221,"pytest-structlog" +182177,"google-oauth2-tool" +182125,"flake8-functions" +182093,"starlite" +182036,"html-sanitizer" +181843,"snaptime" +181818,"kedro-viz" +181803,"measurement" +181727,"flask-gravatar" +181677,"inotify-simple" +181657,"xmltodict3" +181624,"jeedomdaemon" +181572,"local-attention" +181546,"tryingsnake" +181530,"assemblyline-v4-service" +181474,"openinference-instrumentation-openai" +181450,"humps" +181417,"py-expression-eval" +181346,"prefect-dask" +181321,"ta" +181246,"cdk-secret-manager-wrapper-layer" +181076,"azure-mgmt-automation" +181059,"pylint-junit" +180957,"tf-models-official" +180865,"cdsapi" +180844,"tushare" +180822,"grain-nightly" +180732,"loky" +180725,"rpmfile" +180513,"fastnumbers" +180385,"aws-cdk-aws-globalaccelerator" +180244,"iniparse" +180173,"geffnet" +180062,"pingouin" +180050,"numpyro" +179971,"google-cloud-bigquery-reservation" +179788,"unicode" +179718,"django-bulk-update" +179644,"os-sys" +179622,"neobolt" +179583,"coredis" +179571,"radish-bdd" +179567,"ssh2-python" +179548,"inference-gpu" +179540,"sanelogging" +179514,"curtsies" +179428,"dash-mantine-components" +179227,"terraform-compliance" +179135,"basictracer" +179132,"salt-lint" +179103,"dbldatagen" +178963,"pureport-python" +178925,"tag-expressions" +178878,"lusid-sdk" +178841,"pybluez" +178814,"pixelmatch" +178768,"libpysal" +178735,"cfnresponse" +178689,"hsms" +178508,"fst-pso" +178432,"kagglehub" +178359,"iterators" +178251,"soundcloud-v2" +178177,"apache-airflow-providers-apprise" +178167,"cacheout" +178055,"dbf" +178009,"sphinx-inline-tabs" +177873,"systemd-python" +177731,"columnar" +177648,"pygdbmi" +177415,"requests-ratelimiter" +177395,"bigquery" +177345,"flask-graphql" +177250,"py-mini-racer" +177234,"csvkit" +177233,"azure-functions-durable" +177210,"configcat-client" +177173,"tuf" +176913,"bincopy" +176827,"ais-dom" +176776,"google-cloud-notebooks" +176748,"mtmtrain" +176635,"retry-requests" +176629,"assemblyline-service-client" +176589,"airflow-dbt-python" +176545,"motmetrics" +176540,"syncedlyrics" +176530,"red-black-tree-mod" +176419,"pycountry-convert" +176386,"hier-config" +176338,"s3m" +176304,"pyatlan" +176269,"adjust-precision-for-schema" +176237,"miniful" +176193,"mr-proper" +176077,"devicecheck" +176009,"libarchive" +175874,"apache-airflow-providers-asana" +175781,"cads-api-client" +175750,"pytest-watcher" +175741,"aiocsv" +175719,"sigstore" +175701,"sphinxcontrib-datatemplates" +175571,"tox-py" +175561,"types-defusedxml" +175495,"pyobjc-framework-systemconfiguration" +175471,"django-sslserver" +175447,"pydantic-openapi-schema" +175429,"hunspell" +175396,"unsloth" +175333,"nglview" +175314,"validate-docbr" +175301,"opentelemetry-exporter-gcp-monitoring" +175265,"openvisus" +175248,"paypalhttp" +175149,"acachecontrol" +175121,"jupyter-book" +175088,"pdoc3" +175075,"imgkit" +174992,"pyperform" +174917,"pytoml" +174910,"faststream" +174726,"django-types" +174714,"antsibull-changelog" +174662,"sphinx-external-toc" +174538,"sagemaker-feature-store-pyspark-3-1" +174514,"pysimplegui" +174508,"python-heatclient" +174402,"venv-pack" +174169,"aliyun-python-sdk-alidns" +174067,"django-mathfilters" +174030,"e2b" +173926,"vowpalwabbit" +173865,"nemo-text-processing" +173861,"pyheif" +173739,"pytenable" +173562,"interrogate" +173537,"apache-airflow-providers-telegram" +173422,"openinference-instrumentation-llama-index" +173378,"edx-enterprise" +173362,"text-generation" +173254,"jsonrpcclient" +173192,"jbxapi" +172963,"cloudml-hypertune" +172917,"openapi-python-client" +172796,"dlib" +172739,"okta-jwt-verifier" +172648,"ropt" +172580,"apache-airflow-providers-influxdb" +172358,"azure-ai-textanalytics" +172328,"cityseer" +172293,"drf-extra-fields" +172236,"jsonify" +172160,"python-neutronclient" +172151,"facebook-sdk" +172142,"abstract-singleton" +172105,"apache-superset" +172076,"teradata" +172072,"schemachange" +172039,"botorch" +172029,"typer-slim" +171932,"opennsfw2" +171914,"trufflehog" +171781,"pytest-csv" +171737,"pgzip" +171711,"amazon-textract-caller" +171544,"flake8-class-attributes-order" +171478,"acquire" +171403,"fhirclient" +171354,"lbt-honeybee" +171307,"mailchecker" +171219,"elabjournal" +171174,"swiglpk" +171111,"pytorch-ranger" +171073,"django-annoying" +171051,"ff3" +171029,"rigelcore" +170908,"apache-airflow-providers-facebook" +170769,"qsharp" +170734,"cgroupspy" +170650,"mode-streaming" +170649,"rigel-hpl" +170623,"botbuilder-schema" +170547,"jpholiday" +170417,"conda-package-handling" +170389,"target-jsonl" +170380,"kolo" +170351,"pydeps" +170307,"tensorrt-cu12" +170276,"pulumi-kubernetes" +170272,"logging-json" +170248,"vpype" +170215,"pip-autoremove" +170186,"ipyevents" +170168,"robotframework-faker" +170068,"aws" +170067,"owlrl" +170063,"torch-optimizer" +170059,"dagster-prometheus" +170016,"scikit-survival" +169970,"pyobjc-framework-libdispatch" +169935,"hachoir" +169928,"chia-base" +169908,"urnparse" +169858,"json-logic" +169833,"timeflux" +169797,"juju" +169736,"pygelf" +169699,"chialisp-loader" +169676,"sparkdantic" +169656,"pydantic-avro" +169643,"chialisp-builder" +169618,"runtime-builder" +169589,"chialisp-puzzles" +169572,"linopy" +169555,"pnoise" +169554,"chialisp-stdlib" +169516,"onnxslim" +169367,"reno" +169203,"sagemaker-datawrangler" +169090,"mlflow-watsonml" +169048,"mkdocs-exclude" +169036,"timg" +168936,"firecrawl-py" +168823,"vsketch" +168774,"interpret-community" +168697,"breakword" +168492,"crytic-compile" +168433,"tensordict-nightly" +168383,"py3dmol" +168338,"spark-expectations" +168282,"flask-bootstrap" +168179,"sqlmesh" +168059,"auto-gpt-plugin-template" +168003,"treetable" +167876,"fs-sshfs" +167874,"pyobjc-framework-coreservices" +167772,"pytdigest" +167704,"slack-webhook" +167700,"music-tag" +167511,"pycocoevalcap" +167411,"ncls" +167367,"apache-airflow-providers-openai" +167353,"spaces" +167315,"pyunpack" +167308,"chainlit" +167246,"hexdump" +167112,"typer-cli" +167099,"bpython" +166920,"nerfacc" +166847,"flake8-pytest-style" +166826,"easypost" +166773,"cdk-lambda-layer-curl" +166643,"fastremap" +166586,"nevergrad" +166561,"yapps" +166549,"locust-plugins" +166521,"clevercsv" +166415,"salesforce-fuelsdk" +166222,"mo-logs" +166147,"keyrings-cryptfile" +166045,"ocrmypdf" +165965,"methoddispatch" +165851,"snakebite-py3" +165832,"qh3" +165799,"emmet-core" +165785,"azure-messaging-webpubsubclient" +165740,"ib3" +165670,"django-nine" +165616,"mo-kwargs" +165472,"netapp-ontap" +165450,"pangu" +165434,"macaddress" +165320,"pyaescrypt" +165296,"tensorflow-data-validation" +165251,"bcdoc" +165160,"botframework-connector" +165084,"purecloudplatformclientv2" +165079,"pygltflib" +165036,"arcade" +164901,"pystaticconfiguration" +164840,"opengraph-py3" +164808,"tendo" +164719,"pyobjc-framework-coreaudio" +164640,"types-pycurl" +164632,"google-cloud-appengine-admin" +164615,"cnvrg" +164609,"cloudsmith-cli" +164579,"paypal-checkout-serversdk" +164578,"raiutils" +164510,"nvidia-nvimgcodec-cu12" +164356,"ggshield" +164353,"mkdocs-jupyter" +164347,"monthdelta" +164171,"hatch-nodejs-version" +164131,"psd-tools" +164026,"ocviapy" +163952,"ml-wrappers" +163898,"openvpn-status" +163785,"pydot-ng" +163759,"promptflow-tracing" +163755,"dawg-python" +163698,"textile" +163667,"types-pywin32" +163661,"py-vapid" +163581,"a9x-webstatistics" +163512,"krippendorff" +163480,"types-geoip2" +163369,"click-pathlib" +163362,"qiskit-terra" +163335,"pyobjc-framework-corebluetooth" +163325,"databricks-labs-lsql" +163323,"conda-forge-metadata" +163297,"datasette" +163287,"pylebedev" +163215,"colorlover" +163211,"pypsexec" +163186,"django-ordered-model" +163168,"py-healthcheck" +163154,"djangoql" +163122,"lob" +163073,"pyclean" +162950,"sagemaker-training" +162944,"jina" +162930,"dagster-pagerduty" +162903,"dtlpymetrics" +162813,"pinocchio" +162756,"datetimerange" +162741,"pytkdocs" +162665,"gpy" +162556,"django-loginas" +162517,"abstract-solcatcher" +162383,"pyobjc-framework-launchservices" +162363,"speedtest-cli" +162357,"solara" +162348,"pysnow" +162309,"pytest-mongodb" +162247,"openai-messages-token-helper" +162228,"pytest-testrail" +162178,"wslink" +162151,"pytutils" +162110,"pyranges" +162075,"anyjson" +162053,"aiocontextvars" +161946,"aliyun-python-sdk-cdn" +161895,"encodec" +161808,"fixturefilehandler" +161774,"langgraph-checkpoint-postgres" +161734,"types-babel" +161689,"pypcap" +161655,"oauth2-client" +161506,"pytest-md" +161297,"promptflow-devkit" +161277,"gradio-imageslider" +161257,"poppler-utils" +161207,"fixture" +161180,"mssql-django" +161139,"aimrocks" +161138,"promptflow-core" +161077,"blacken-docs" +160958,"union" +160952,"meilisearch" +160947,"sphinx-thebe" +160887,"django-split-settings" +160820,"classify-imports" +160820,"django-hosts" +160798,"django-better-admin-arrayfield" +160696,"datasketches" +160669,"runpod" +160667,"nplusone" +160662,"ga4gh-testbed-lib" +160605,"japanize-matplotlib" +160580,"pyobjc-framework-addressbook" +160532,"randomname" +160508,"pytest-helpers-namespace" +160457,"azure-ai-inference" +160390,"prefect-azure" +160301,"dtw-python" +160298,"pyobjc-framework-exceptionhandling" +160207,"python3-ldap" +160195,"numpy-indexed" +160192,"flask-misaka" +160191,"nvtx" +160111,"awsiotpythonsdk" +160110,"pypinyin-dict" +160095,"pyobjc-framework-cfnetwork" +160008,"sorted-nearest" +159992,"http-ece" +159971,"fissix" +159938,"aws-cdk-aws-batch" +159873,"django-bootstrap4" +159868,"xtgeoviz" +159859,"types-typed-ast" +159798,"pymysqllock" +159774,"earthengine-api" +159727,"cirq" +159586,"mediapy" +159490,"graphene-file-upload" +159479,"badapted" +159400,"pyobjc-framework-security" +159388,"grafana-client" +159320,"twarc" +159288,"test-results-parser" +159274,"intel-cmplr-lib-ur" +159172,"autogluon-vision" +159114,"pymavlink" +159066,"dragonfly2" +159034,"aliyun-python-sdk-cms" +158981,"sshkeyboard" +158871,"olefileio-pl" +158802,"pyobjc-framework-automator" +158770,"aws-lambda-context" +158752,"python-chess" +158709,"aliyun-python-sdk-slb" +158702,"robotframework-selenium2library" +158691,"commonregex" +158666,"aliyundrive-webdav" +158606,"llama-index-embeddings-langchain" +158566,"vanna" +158558,"pystemmer" +158382,"nordpool" +158328,"resdata" +158228,"validated-dc" +158207,"pyobjc-framework-fsevents" +158170,"nfoursid" +158163,"petastorm" +158103,"datashader" +158005,"api4jenkins" +157933,"autogluon-text" +157870,"pottery" +157796,"django-admin-interface" +157726,"bamboolib" +157671,"icmplib" +157547,"pyobjc-framework-applescriptkit" +157538,"seedir" +157494,"flask-bootstrap4" +157451,"mjml-python" +157321,"parallel-ssh" +157214,"pyobjc-framework-coredata" +157196,"aws-cdk-aws-redshift-alpha" +157050,"qiskit-ibm-runtime" +157047,"cdk-ecr-deployment" +157017,"apache-airflow-providers-cloudant" +156973,"botbuilder-core" +156910,"crc" +156820,"requests-credssp" +156819,"pangres" +156804,"django-safedelete" +156799,"pysnyk" +156744,"googleauthentication" +156727,"schema-salad" +156632,"pyobjc-framework-coremedia" +156604,"punch-py" +156430,"django-vite" +156359,"hkdf" +156191,"glocaltokens" +156189,"lorem-text" +156162,"types-jmespath" +156103,"pyobjc-framework-osakit" +156060,"dagster-snowflake-pandas" +156003,"hypothesis-graphql" +155969,"cosmospy-protobuf" +155827,"fastapi-better-logger" +155797,"sigstore-protobuf-specs" +155769,"dash-ag-grid" +155756,"pyobjc-framework-diskarbitration" +155752,"pddlgym" +155701,"airflow-provider-hightouch" +155685,"rocketchat-api" +155684,"python-levenshtein-wheels" +155613,"curated-tokenizers" +155609,"apache-airflow-providers-jira" +155603,"zoomus" +155540,"psycopg2-pool" +155512,"pyuwsgi" +155493,"paramz" +155487,"lpc-checksum" +155462,"google-cloud-datacatalog-lineage" +155352,"sphinx-markdown-tables" +155324,"pylint-exit" +155231,"legacy-api-wrap" +155224,"tabpfn" +155207,"sample-helper-aws-appconfig" +155182,"libsast" +155181,"envd" +155168,"choreographer" +155157,"cirq-google" +155089,"dearpygui" +155033,"hcloud" +154979,"tf-slim" +154966,"coqpit" +154961,"colorhash" +154736,"yorm" +154723,"aspy-yaml" +154712,"pyobjc-framework-discrecording" +154676,"pyobjc-framework-coreaudiokit" +154674,"protoc-gen-validate" +154344,"apache-airflow-providers-apache-cassandra" +154279,"progressbar33" +154277,"python-statsd" +154238,"user-agent" +154217,"pyjq" +154209,"fatamorgana" +154187,"argparse-manpage" +154175,"pyobjc-framework-installerplugins" +154162,"pyobjc-framework-preferencepanes" +154147,"pyobjc-framework-latentsemanticmapping" +154069,"git-filter-repo" +154068,"pyobjc-framework-webkit" +154022,"pysodium" +153988,"pyscreenshot" +153932,"pulumi-gcp" +153897,"tuspy" +153885,"python-digitalocean" +153885,"cron-validator" +153846,"r7insight-python" +153767,"pyviews" +153755,"dagster-databricks" +153749,"tf-keras-nightly" +153745,"rodi" +153719,"flex" +153619,"fitz" +153614,"optlang" +153602,"speedtest" +153470,"pywatchman" +153462,"pdf2docx" +153357,"sphinx-jupyterbook-latex" +153328,"jupyter-latex-envs" +153318,"proxy-py" +153223,"bloom-filter2" +153216,"django-revproxy" +153156,"mozprocess" +153000,"django-elasticsearch-dsl-drf" +152976,"pytapo" +152918,"sqloxide" +152870,"axe-selenium-python" +152822,"python-openid" +152817,"voila" +152777,"json-tricks" +152760,"apache-airflow-providers-alibaba" +152649,"sumologic-sdk" +152601,"flexget" +152598,"faust-streaming" +152594,"pyobjc-framework-dvdplayback" +152584,"eth-tester" +152571,"pyobjc-framework-discrecordingui" +152544,"benchling-api-client" +152514,"dynamixel-sdk" +152440,"genshi" +152401,"pynliner" +152348,"pytest-cpp" +152298,"shiny" +152269,"dynamicprompts" +152201,"depinfo" +152179,"pyobjc-framework-avfoundation" +152088,"python-terraform" +152081,"scann" +152068,"mat4py" +152024,"datetime-quarter" +151993,"sphinx-multitoc-numbering" +151985,"unlzw3" +151943,"optuna-integration" +151931,"password-strength" +151836,"cdktf-cdktf-provider-newrelic" +151827,"threaded" +151792,"cornice" +151786,"types-toposort" +151780,"pyartifactory" +151659,"psqlpy" +151620,"sweeps" +151603,"imodels" +151598,"artifactory" +151582,"django-rosetta" +151581,"asgi-tools" +151571,"pyobjc-framework-screensaver" +151556,"alibabacloud-dingtalk" +151552,"sklearn-pandas" +151533,"pyexcel-xlsx" +151524,"streamlit-folium" +151509,"pyobjc-framework-syncservices" +151444,"bullet" +151437,"scout-apm" +151376,"pytest-insta" +151334,"enum-tools" +151271,"sure" +151252,"openvino-dev" +151220,"markdown-include" +151177,"sseclient" +151177,"pyobjc-framework-coreml" +151164,"pypeg2" +151160,"mozfile" +151128,"alien" +151047,"robotframework-debuglibrary" +150984,"databricks-test" +150937,"torchcrepe" +150891,"ruamel-base" +150877,"pytubefix" +150777,"aiosonos" +150679,"pyobjc-framework-spritekit" +150634,"django-pipeline" +150570,"qcg-pilotjob" +150503,"asyncpg-stubs" +150499,"marrow-util" +150491,"pystoi" +150474,"resend" +150345,"python-gdcm" +150321,"libipld" +150310,"cdk-common" +150272,"meshtastic" +150263,"osfclient" +150243,"openunmix" +150123,"grizz" +150087,"astro-sdk-python" +150031,"sigstore-rekor-types" +149985,"py-cord" +149969,"ai-flow-nightly" +149905,"pims" +149828,"shot-scraper" +149781,"flake8-formatter-junit-xml" +149672,"esdbclient" +149658,"dbnd-spark" +149618,"exponent-server-sdk" +149613,"sagemaker-inference" +149574,"python-magic-bin" +149499,"marrow-mailer" +149492,"pycdlib" +149478,"clu" +149417,"msg-parser" +149370,"case-converter" +149322,"django-rest-passwordreset" +149311,"django-sesame" +149289,"pydes" +149230,"pybboxes" +149230,"rapidocr-onnxruntime" +149181,"pyobjc-framework-corewlan" +149167,"sahi" +149132,"pypeln" +149109,"hdmf" +149064,"pyobjc-framework-avkit" +149060,"packaging-legacy" +149057,"pyobjc-framework-searchkit" +149021,"symspellpy" +149015,"ipcqueue" +148985,"apache-airflow-providers-apache-flink" +148969,"perpetual" +148942,"contexttimer" +148913,"types-factory-boy" +148824,"pyobjc-framework-notificationcenter" +148788,"streamlit-option-menu" +148741,"dbstream" +148678,"pyobjc-framework-multipeerconnectivity" +148594,"awslogs" +148552,"sshfs" +148549,"opentelemetry-propagator-ot-trace" +148454,"no-manylinux" +148443,"apache-airflow-providers-zendesk" +148424,"aliyun-python-sdk-cs" +148334,"ngram" +148305,"hsaudiotag3k" +148301,"botframework-streaming" +148301,"pykdtree" +148285,"objectpath" +148211,"pyobjc-framework-servicemanagement" +148175,"attrs-mate" +147987,"skorch" +147974,"pyqt5-tools" +147960,"setfit" +147959,"schedulefree" +147937,"llama-index-vector-stores-milvus" +147841,"tts" +147760,"curated-transformers" +147759,"tls-client" +147751,"pyobjc-framework-corelocation" +147738,"apache-airflow-providers-discord" +147571,"spacy-curated-transformers" +147564,"control" +147555,"pyobjc-framework-coremediaio" +147512,"django-rest-auth" +147475,"colour-science" +147425,"fontbakery" +147322,"fuc" +147316,"vonage" +147199,"sphinx-comments" +147188,"mosek" +147177,"quantconnect-stubs" +147159,"face-recognition" +147144,"pyobjc-framework-vision" +147116,"captcha" +147105,"ur-rtde" +147038,"flake8-json" +147020,"pyobjc-framework-accounts" +146970,"hype-html" +146914,"pyobjc-framework-eventkit" +146906,"cycode" +146880,"llama-index-postprocessor-cohere-rerank" +146862,"fastapi-azure-auth" +146853,"prince" +146842,"pyobjc-framework-securityinterface" +146803,"pydevicetree" +146724,"pyobjc-framework-colorsync" +146711,"pyobjc-framework-contacts" +146641,"pyobjc-framework-network" +146628,"pyobjc-framework-applescriptobjc" +146540,"pysingleton" +146527,"linearmodels" +146523,"badx12" +146518,"llama-index-llms-langchain" +146513,"multiping" +146505,"reg" +146500,"mssql-cli" +146463,"pyobjc-framework-photos" +146457,"pytest-reporter" +146423,"flake8-annotations-complexity" +146399,"pyobjc-framework-netfs" +146380,"glpk" +146347,"pypsa" +146296,"pyobjc-framework-findersync" +146194,"starlette-testclient" +146071,"traceback-with-variables" +146053,"testbook" +146041,"unionai-actor" +146031,"collective-checkdocs" +146013,"pandasai" +146001,"apache-airflow-providers-neo4j" +145964,"cython-bbox" +145944,"phidata" +145916,"azureml-contrib-services" +145746,"telegraph" +145663,"pyobjc-framework-imagecapturecore" +145652,"mozinfo" +145633,"deep-merge" +145572,"pyobjc-framework-scenekit" +145561,"pyobjc-framework-mapkit" +145458,"aiohttp-middlewares" +145448,"flake8-literal" +145395,"pyobjc-framework-gamecenter" +145388,"meutils" +145385,"pyworld" +145352,"pyobjc-framework-storekit" +145344,"pyobjc-framework-naturallanguage" +145323,"tflite-runtime-nightly" +145282,"pyobjc-framework-intents" +145272,"pyuca" +145219,"fairseq" +145212,"pyobjc-framework-networkextension" +145197,"pyobjc-framework-cryptotokenkit" +145188,"pyobjc-framework-contactsui" +145172,"pyobjc-framework-photosui" +145160,"pyobjc-framework-safariservices" +145147,"sanic-testing" +145133,"pyobjc-framework-gamekit" +145131,"airbyte-protocol-models-pdv2" +145100,"pyobjc-framework-modelio" +145087,"sweetener" +145079,"rels" +145042,"stringbender" +144992,"pyobjc-framework-corespotlight" +144889,"python-mecab-ko" +144885,"pyobjc-framework-localauthentication" +144819,"pyobjc-framework-gameplaykit" +144769,"voyageai" +144763,"pyobjc-framework-externalaccessory" +144718,"openvds" +144653,"mcrcon" +144605,"pyodata" +144599,"pyobjc-framework-securityfoundation" +144586,"orb-billing" +144573,"jupyter-leaflet" +144559,"pybind11-stubgen" +144513,"ipyfilechooser" +144473,"cirq-ionq" +144381,"pyrender" +144367,"pymupdf4llm" +144353,"icu" +144321,"bag" +144315,"uptime" +144299,"tabulator" +144299,"hookery" +144279,"django-browser-reload" +144084,"uharfbuzz" +144058,"jose" +144014,"pyobjc-framework-mediatoolbox" +143990,"flytekitplugins-ray" +143969,"pyobjc-framework-opendirectory" +143924,"pyobjc-framework-scriptingbridge" +143879,"loess" +143836,"pyobjc-framework-gamecontroller" +143811,"flytekitplugins-envd" +143800,"pyobjc-framework-videotoolbox" +143791,"pytest-test-groups" +143763,"selenium-page-factory" +143704,"apiflask" +143687,"sfsimodels" +143651,"iminuit" +143529,"spur" +143517,"wxpython" +143511,"boilerpy3" +143491,"bpyutils" +143459,"exrex" +143395,"pyobjc-framework-social" +143365,"pyhdfe" +143332,"pytest-describe" +143326,"apache-airflow-providers-apache-drill" +143321,"singlestoredb" +143314,"pyobjc-framework-usernotifications" +143198,"plotbin" +143196,"pyuegc" +143185,"rtoml" +143159,"taming-transformers" +143076,"marrow-interface" +143009,"blackfire" +142944,"bentoml" +142861,"pyobjc-framework-mediaplayer" +142858,"pyobjc-framework-medialibrary" +142856,"meltanolabs-target-snowflake" +142840,"pyobjc-framework-dictionaryservices" +142823,"datetime-truncate" +142811,"pyobjc-framework-cloudkit" +142805,"airflow-clickhouse-plugin" +142786,"pyobjc-framework-mediaaccessibility" +142786,"pyobjc-framework-instantmessage" +142774,"pyobjc-framework-iosurface" +142763,"dacktool" +142751,"hiyapyco" +142740,"azure-mgmt-databricks" +142739,"pyobjc-framework-ituneslibrary" +142714,"aceye" +142556,"power-grid-model" +142472,"tskit" +142386,"razorpay" +142380,"pysnmpcrypto" +142343,"plugp100" +142338,"mondrian" +142305,"aiohttp-fast-url-dispatcher" +142290,"print-color" +142266,"django-jsonform" +142260,"drug-named-entity-recognition" +142217,"lion-pytorch" +142180,"html5lib-modern" +142144,"roffio" +142141,"ebooklib" +142089,"geode-background" +142070,"pypandoc-binary" +142064,"phonetics" +142038,"trufflehog3" +142033,"aiojobs" +142026,"pyobjc-framework-businesschat" +141993,"firebolt-sdk" +141869,"types-aiobotocore-sns" +141836,"g2pkk" +141793,"pyobjc-framework-adsupport" +141767,"pyobjc-framework-inputmethodkit" +141703,"pyobjc-framework-videosubscriberaccount" +141596,"xdis" +141584,"moment" +141435,"pytest-markdown-docs" +141419,"postgres" +141391,"pypi-timemachine" +141348,"veracode-api-signing" +141346,"seeq" +141288,"mtcnn" +141226,"rtp" +141192,"python-nmap" +141123,"robyn" +141060,"ssh-python" +141052,"pyppeteer2" +140943,"mrjob" +140858,"whistle" +140760,"pybind11-global" +140759,"flask-flatpages" +140721,"flake8-tuple" +140682,"dash-daq" +140664,"mozterm" +140635,"lockattrs" +140609,"pytest-embedded" +140584,"pyldavis" +140580,"minify-html" +140541,"pscript" +140512,"chromedriver-binary" +140508,"langkit" +140449,"pysparkip" +140443,"randomwords" +140400,"telegram" +140357,"django-haystack" +140314,"epics-pypdb" +140269,"edit-distance" +140187,"cwltool" +140093,"sparkpost" +140079,"pyresample" +140044,"salesforce-api" +139927,"config-formatter" +139909,"ascvd" +139899,"apache-airflow-providers-microsoft-psrp" +139877,"colorspacious" +139827,"pyfftw" +139820,"salesforce-cdp-connector" +139809,"pyre-check" +139736,"dedupe" +139702,"donfig" +139697,"spacy-alignments" +139664,"google-gax" +139657,"foxglove-schemas-protobuf" +139645,"colormath" +139620,"kylinpy" +139538,"simpleruleengine" +139450,"pynwb" +139346,"contextily" +139272,"sqlacodegen" +139249,"mongomock-motor" +139220,"oslo-messaging" +139197,"pyobjc-framework-collaboration" +139179,"pypcd4" +139165,"nvidia-nvjpeg-cu12" +139158,"pansi" +139095,"cloud-volume" +139093,"basemap" +139017,"python-i18n" +138924,"pyobjc-framework-calendarstore" +138923,"adbutils" +138905,"rapids-dependency-file-generator" +138818,"angr" +138795,"syllapy" +138770,"aiotask-context" +138768,"types-reportlab" +138752,"zappa" +138723,"hatch-cython" +138723,"wassima" +138719,"esp-idf-monitor" +138638,"rockset" +138593,"pytest-embedded-serial" +138547,"sudachidict-full" +138535,"tfa-nightly" +138486,"visdom" +138398,"apache-airflow-providers-teradata" +138323,"paradime-io" +138318,"dracopy" +138311,"amazon-textract-textractor" +138305,"flask-mongoengine" +138291,"pip-with-requires-python" +138227,"django-dbbackup" +138197,"luhn" +138158,"swagger-ui-py" +138155,"edge-tts" +138151,"apache-airflow-providers-openfaas" +138117,"cirq-aqt" +138088,"ruff-lsp" +138042,"owslib" +138003,"cirq-rigetti" +137941,"dataengine" +137774,"pydlt" +137773,"collectfast" +137768,"lap" +137685,"www-authenticate" +137640,"pymobiledetect" +137609,"msprime" +137562,"arcticdb" +137561,"pymongocrypt" +137541,"drf-standardized-errors" +137412,"adafruit-platformdetect" +137360,"dlint" +137311,"nvidia-nvjpeg2k-cu12" +137303,"atlasclient" +137262,"splinter" +137238,"py-money" +137191,"azure-ai-contentsafety" +137143,"flake8-use-pathlib" +137097,"dataclass-csv" +136975,"mink" +136879,"proto-google-cloud-datastore-v1" +136802,"ecmwflibs" +136796,"cmreshandler" +136780,"stream-zip" +136746,"grep-ast" +136714,"pluginlib" +136673,"pytest-embedded-serial-esp" +136479,"pytest-embedded-idf" +136448,"atomic-bomb-engine" +136351,"ncnn" +136321,"django-crontab" +136236,"cirq-web" +136232,"pydivert" +136204,"lusid-sdk-preview" +136188,"func-argparse" +136126,"angreal" +136110,"pulumi-random" +136026,"laces" +135981,"surpyval" +135947,"texterrors" +135931,"django-rest-polymorphic" +135927,"oslo-db" +135923,"logfire" +135922,"pygtail" +135920,"pygeoif" +135902,"c2cciutils" +135891,"aiohttp-zlib-ng" +135874,"pgmpy" +135859,"arq" +135748,"htpasswd" +135745,"kml2geojson" +135740,"cogapp" +135732,"google-events" +135678,"waiter" +135580,"ai-edge-litert-nightly" +135568,"django-postgres-extra" +135555,"antsibull-docs-parser" +135181,"hubspot" +135165,"augmax" +135161,"aeppl-nightly" +135104,"transformers-stream-generator" +135058,"dash-extensions" +135030,"cdo-sdk-python" +134999,"range-key-dict" +134955,"english" +134898,"azureml" +134894,"pybullet" +134874,"pyap" +134844,"expiring-dict" +134807,"aioblescan" +134796,"devpi-common" +134773,"numpy-stl" +134741,"databricksapi" +134710,"clamd" +134616,"resfo" +134522,"dagstermill" +134493,"pytest-regressions" +134475,"otel-extensions" +134433,"gekko" +134394,"smartypants" +134367,"mycdp" +134339,"vonage-jwt" +134327,"pytest-embedded-qemu" +134177,"apache-airflow-providers-yandex" +134139,"pymsalruntime" +134123,"setupmeta" +134102,"dataclass-type-validator" +134084,"cnvrgv2" +134074,"scikit-rf" +134073,"interchange" +134055,"demes" +134029,"datawrapper" +134004,"trame" +133911,"fs-azureblob" +133908,"airflow-code-editor" +133866,"pysra" +133864,"reacton" +133840,"oslo-policy" +133835,"powersimdata" +133649,"jarowinkler" +133572,"asr-evaluation" +133552,"dane" +133386,"mkdocs-git-authors-plugin" +133383,"whylabs-textstat" +133265,"py-machineid" +133263,"connected-components-3d" +133238,"types-pysftp" +133228,"ghome-foyer-api" +133223,"web-py" +133180,"django-dotenv" +133166,"geode-common" +133137,"linuxpy" +133105,"pytest-cover" +133071,"pulumi-oci" +133066,"khanaa" +133048,"savepagenow" +133025,"deltachat" +133021,"fal-client" +132986,"apache-airflow-providers-apache-hdfs" +132967,"pyfaidx" +132955,"dj-stripe" +132952,"c7n-mailer" +132898,"weakrefmethod" +132835,"apispec-oneofschema" +132718,"disba" +132675,"cirq-pasqal" +132653,"sphinx-intl" +132618,"redis-om" +132587,"levanter" +132464,"pyclickup" +132386,"placebo" +132360,"mosaicml-streaming" +132344,"pytiled-parser" +132288,"pytest-tinybird" +132213,"django-sass-processor" +132158,"asciimatics" +132153,"forbiddenfruit" +132147,"pip-compile-multi" +132014,"testix" +131951,"autovizwidget" +131899,"fs-gcsfs" +131890,"pulpcore-client" +131889,"editdistpy" +131847,"pytest-redis" +131829,"pygitguardian" +131826,"jump-consistent-hash" +131766,"kaldi-python-io" +131743,"mysql-connector-python-rf" +131694,"bnunicodenormalizer" +131693,"flask-cloudflared" +131644,"mlserver-mlflow" +131565,"duplocloud-client" +131559,"hug" +131551,"py2neo-history" +131547,"ipytree" +131512,"wells" +131453,"types-click-spinner" +131438,"onnx-graphsurgeon" +131438,"sas7bdat" +131410,"jupyter-dash" +131389,"secweb" +131305,"python-bitcoinlib" +131272,"fuzzyfinder" +131218,"gplearn" +131166,"throttler" +131140,"jax-jumpy" +131135,"cdk-serverless-clamscan" +131129,"loadimg" +131088,"setoptconf" +131074,"dirhash" +131055,"allennlp" +131044,"pyone" +131027,"ipadic" +130992,"trogon" +130986,"tinynetrc" +130978,"pyop" +130934,"ldap" +130920,"pdb-attach" +130836,"fastwarc" +130779,"customerio" +130709,"aws-cdk-aws-kinesisfirehose-destinations-alpha" +130656,"pytest-shutil" +130643,"bed-reader" +130573,"ropt-dakota" +130535,"devpi-client" +130513,"srt" +130479,"hail" +130459,"darts" +130418,"jh2" +130303,"openmetadata-ingestion" +130296,"python-magnumclient" +130282,"str2bool" +130219,"pyjavaproperties3" +130146,"betacal" +130133,"pytest-lazy-fixtures" +130125,"nuitka" +130118,"zi-api-auth-client" +129981,"telnetlib3" +129937,"zhinst-timing-models" +129928,"pystrata" +129841,"lumigo-core" +129815,"bio-grumpy" +129648,"vbuild" +129523,"cachier" +129475,"django-pandas" +129442,"tgi" +129393,"httpsig" +129386,"elasticsearch5" +129345,"xvfbwrapper" +129182,"sphinxcontrib-redoc" +129156,"snakemake" +129093,"wired" +129059,"styleframe" +129010,"abess" +129002,"pi" +128983,"oslo-service" +128935,"openpyxl-stubs" +128882,"cypari2" +128874,"intake" +128846,"pytest-coverage" +128831,"yolov5" +128802,"pyrad" +128711,"chacha20poly1305-reuseable" +128650,"apngasm-python" +128648,"molotov" +128580,"cocotb" +128547,"flake8-todo" +128527,"pdfreader" +128498,"pyzed" +128493,"amazon-braket-sdk" +128413,"twisted-iocpsupport" +128295,"rasterstats" +128259,"paragami" +128225,"rsconnect-python" +128143,"django-cache-memoize" +128139,"stochopy" +128139,"translators" +128006,"verlib2" +127985,"unionmeta-byoc" +127962,"types-aws-xray-sdk" +127941,"bigdl-chronos" +127867,"aws-cdk-aws-fsx" +127796,"airportsdata" +127789,"python-math" +127780,"scantree" +127697,"usercloudssdk" +127687,"colpali-engine" +127682,"aws-packages" +127628,"pytest-slack" +127617,"jaraco-logging" +127374,"datadiff" +127287,"aws-cdk-aws-neptune-alpha" +127260,"aws-cdk-aws-kinesisfirehose-alpha" +127224,"soda-core-bigquery" +127218,"python-must" +127171,"tkintermapview" +127126,"python-mecab-ko-dic" +127125,"trio-typing" +127014,"rethinkdb" +126998,"types-mysqlclient" +126986,"percy" +126982,"zhinst-core" +126951,"hdijupyterutils" +126909,"streamlit-authenticator" +126890,"django-utils-six" +126868,"tensorflow-macos" +126864,"flatpack" +126856,"pytest-logger" +126783,"pytest-reraise" +126710,"gluoncv" +126608,"pyproject-toml" +126587,"umf" +126572,"copulas" +126463,"django-simple-captcha" +126437,"edk2-pytool-library" +126406,"oschmod" +126367,"datastreampy" +126310,"pylas" +126246,"sagemaker-scikit-learn-extension" +126239,"cruft" +126199,"basedpyright" +126097,"accelerator-toolbox" +126069,"pytest-grpc" +126042,"bangla" +126020,"mteb" +125908,"docplex" +125862,"opencensus-ext-flask" +125809,"islpy" +125799,"typesense" +125785,"vermin" +125784,"conda" +125777,"domaintools-api" +125760,"sanic-cors" +125668,"climb" +125409,"git-pylint-commit-hook" +125406,"findimports" +125294,"apache-airflow-providers-apache-kylin" +125262,"openseespy" +125255,"libtmux" +125211,"opendatasets" +125093,"html-to-json" +125084,"docling" +125063,"homebase" +125031,"onnxoptimizer" +124998,"ghastoolkit" +124983,"sarif-tools" +124886,"apache-airflow-providers-dingding" +124886,"censys" +124852,"nvgpu" +124825,"zodb3" +124747,"email" +124728,"phx-class-registry" +124683,"pylibiio" +124676,"django-bootstrap3" +124640,"alphafold3-pytorch" +124617,"auto-py-to-exe" +124561,"ochre" +124400,"tbxi" +124359,"sdcclient" +124340,"unsync" +124300,"ipinfo" +124269,"ops-scenario" +124236,"prefect-slack" +124230,"gcloud-aio-datastore" +124176,"yt" +124160,"streamlit-antd-components" +124008,"hangul-romanize" +124003,"transparent-background" +124000,"taskcluster" +123946,"pytest-explicit" +123941,"clip-anytorch" +123667,"apache-airflow-providers-apache-pig" +123628,"azureml-contrib-notebook" +123619,"plexapi" +123597,"accelerator" +123530,"avalara" +123484,"frontend" +123484,"oslo-middleware" +123480,"irc" +123465,"pycld2" +123425,"css-html-js-minify" +123424,"hyundai-kia-connect-api" +123417,"pyad" +123349,"apache-airflow-providers-apache-impala" +123263,"pycln" +123249,"boto3-stubs-full" +123230,"rook" +123217,"apache-airflow-providers-singularity" +122835,"pwntools" +122763,"frida-tools" +122755,"mkdocs-d2-plugin" +122705,"rfc8785" +122638,"unavailable-object" +122604,"dash-auth" +122590,"uwsgitop" +122538,"bioutils" +122518,"urllib3-future" +122517,"aind-data-schema" +122494,"tencentcloud-sdk-python-common" +122488,"codecov-cli" +122478,"asyncio-atexit" +122470,"aioregistry" +122464,"django-tenants" +122416,"ydb-dbapi" +122228,"docx2pdf" +122203,"apache-airflow-providers-segment" +122171,"htag" +122121,"rush" +122092,"flask-cognito" +122051,"pystyle" +122031,"pyyml" +122015,"yake" +122013,"django-sequences" +121954,"django-parler" +121907,"sexpdata" +121885,"cloud-files" +121873,"flake8-unused-arguments" +121867,"mmcv" +121861,"pynetdicom" +121855,"playsound" +121846,"types-aiobotocore-secretsmanager" +121807,"djangorestframework-recursive" +121778,"databricks-sql" +121749,"datashape" +121712,"pytest-arraydiff" +121669,"colored-traceback" +121619,"colcon-core" +121606,"aspy-refactor-imports" +121591,"obsarray" +121580,"fqfa" +121529,"bytechomp" +121513,"flake8-fixme" +121449,"paver" +121431,"pandas-td" +121368,"ownercredit" +121341,"apache-airflow-providers-qdrant" +121300,"check-wheel-contents" +121253,"logtail-python" +121230,"gruut-ipa" +121217,"token-bucket" +121191,"flake8-no-implicit-concat" +121173,"cyvcf2" +121108,"autotrain-advanced" +121004,"pyangbind" +120983,"openqasm3" +120913,"pysml" +120838,"mt-940" +120823,"django-encrypted-model-fields" +120809,"pytest-tornasync" +120780,"peewee-migrate" +120754,"bowler" +120716,"opencensus-ext-stackdriver" +120679,"arro3-compute" +120627,"trufflehogregexes" +120583,"interpret" +120447,"ewah-bool-utils" +120444,"vaex-core" +120388,"minijinja" +120275,"fifolock" +120270,"hive-metastore-client" +120269,"asdf" +120265,"compressed-segmentation" +120253,"arro3-core" +120251,"lmdeploy" +120233,"gamma-pytools" +120220,"appdirs-stubs" +120205,"asyncmock" +120176,"pyts" +120175,"dataframe-image" +120157,"shimmy" +120156,"pyadi-iio" +120128,"grnhse-api" +120094,"sagemaker-pyspark" +120080,"tinybird-cdk" +120030,"gpio" +119981,"pyjokes" +119970,"pipe" +119929,"honeycomb-opentelemetry" +119929,"aws-cdk-aws-imagebuilder" +119926,"eciespy" +119758,"azure-databricks-api" +119681,"uptrace" +119647,"rookiepy" +119604,"getschema" +119601,"burr" +119597,"doublemetaphone" +119592,"vl-convert-python" +119568,"youtokentome" +119562,"oslo-cache" +119432,"pytest-json" +119431,"chromedriver-py" +119424,"python-periphery" +119404,"subprocess-run" +119399,"google-cloud-alloydb" +119352,"portage" +119343,"asyncua" +119338,"spacy-pkuseg" +119338,"types-qrcode" +119317,"aioodbc" +119315,"shodan" +119255,"rio-tiler" +119237,"scim2-filter-parser" +119216,"scikit-surprise" +119210,"jaraco-stream" +119061,"wmill-pg" +118964,"llama-index-llms-watsonx" +118936,"pythonpsi" +118871,"pyhs2" +118859,"fastapi-sso" +118828,"strawberry-graphql-django" +118821,"zxing-cpp" +118798,"sphinxemoji" +118796,"argostranslate" +118795,"datasetsforecast" +118785,"azure-mgmt-kubernetesconfiguration" +118757,"keystonemiddleware" +118745,"python-lzf" +118742,"environ" +118734,"ipapy" +118692,"panphon" +118606,"dsnparse" +118578,"onnx2tf" +118523,"lseg-data" +118514,"samsungtvws" +118496,"dtaidistance" +118458,"deflate" +118446,"koheesio" +118416,"zip-files" +118348,"afeng-py-tools" +118273,"pygwalker" +118250,"dragonfly-energy" +118164,"google-cloud-retail" +118090,"jupyterlab-lsp" +118088,"arro3-io" +118066,"gcloud-aio-taskqueue" +118042,"clickhouse-pool" +118036,"unpaddedbase64" +118032,"promptflow" +118020,"llama-index-llms-ibm" +117943,"django-htmlmin" +117936,"mpire" +117910,"ppscore" +117754,"playwright-stealth" +117749,"llama-index-embeddings-ibm" +117672,"prodigyopt" +117663,"django-activity-stream" +117662,"aspidites" +117585,"snscrape" +117582,"flake8-pie" +117570,"aesara" +117570,"aws-sso-lib" +117522,"dumb-init" +117520,"tensorflow-io-nightly" +117499,"ttkbootstrap" +117496,"dapr" +117482,"sklearndf" +117462,"apache-airflow-providers-arangodb" +117444,"dtreeviz" +117436,"reuters-style" +117403,"ipsos-credibility-interval" +117391,"creosote" +117386,"pyqt-builder" +117352,"atcf-data-parser" +117293,"gcloud-rest-datastore" +117269,"flake8-requirements" +117209,"pytest-fixture-config" +117199,"gruut-lang-en" +117197,"mplcursors" +117187,"runstats" +117174,"deepchem" +117136,"finbourne-access-sdk" +117035,"yt-dlp-youtube-accesstoken" +117014,"pyscf" +116968,"rawpy" +116925,"django-admin-inline-paginator" +116890,"brainstem" +116858,"style" +116737,"simple-tornado" +116693,"onnx-simplifier" +116666,"einx" +116664,"aws-wsgi" +116660,"wsaccel" +116631,"milvus" +116618,"anymarkup-core" +116581,"django-upgrade" +116561,"pybaseconv" +116538,"aspose-cells" +116504,"pygrok" +116481,"openseespylinux" +116478,"mosaicml-cli" +116453,"contentful" +116398,"softlayer" +116386,"mda-xdrlib" +116379,"paddle" +116357,"tap-gladly" +116356,"mdanalysis" +116310,"dxpy" +116309,"aichar" +116296,"tap-aftership" +116284,"fillpdf" +116273,"gruut" +116216,"tiledb" +116180,"redo" +116170,"rwlock" +116108,"ropgadget" +116072,"pysigma" +116063,"azure-communication-sms" +116062,"squarify" +116002,"django-permissions-policy" +115997,"trame-client" +115996,"autoprotocol" +115996,"markovify" +115917,"boddle" +115895,"lastversion" +115892,"lookml" +115806,"ipython-sql" +115741,"ansible-vault" +115725,"aws-cdk-aws-kinesisanalytics-flink-alpha" +115707,"pytest-md-report" +115698,"gcloud-rest-bigquery" +115605,"logstash-formatter" +115537,"types-pyrfc3339" +115522,"dbt-trino" +115516,"cel-python" +115512,"sparse-dot-topn" +115469,"ai21" +115463,"get-video-properties" +115265,"jaxopt" +115264,"flask-openapi3" +115264,"uuid-shortener-py" +115181,"trie" +115127,"apache-airflow-providers-opensearch" +115116,"ara" +115082,"sqladmin" +115062,"fastapi-restful" +115057,"keyphrase-vectorizers" +114976,"pypyr" +114938,"yeref" +114919,"serialize" +114821,"laspy" +114775,"impall" +114743,"dynamic-yaml" +114736,"loralib" +114726,"anymarkup" +114668,"osprofiler" +114638,"pytest-cache" +114587,"flask-log-request-id" +114555,"benchling-sdk" +114547,"dbus-python" +114543,"exitstatus" +114532,"honeycomb-beeline" +114507,"hyperleaup" +114498,"iterfzf" +114497,"mypy-baseline" +114395,"pytextrank" +114342,"rebound" +114342,"compel" +114269,"scholarly" +114240,"recurly" diff --git a/top-pypi-packages-30-days.json b/top-pypi-packages-30-days.json index 76ccf23..56dc747 100644 --- a/top-pypi-packages-30-days.json +++ b/top-pypi-packages-30-days.json @@ -1,32011 +1,32011 @@ { -"last_update": "2024-11-01 12:27:36", +"last_update": "2024-11-26 15:27:36", "query": { -"bytes_billed": 1376442646528, -"bytes_processed": 1376442377548, +"bytes_billed": 1093117411328, +"bytes_processed": 1093117178583, "cached": false, -"estimated_cost": "6.26" +"estimated_cost": "4.98" }, "rows": [ { -"download_count": 1406890837, +"download_count": 1524424909, "project": "boto3" }, { -"download_count": 623625562, -"project": "urllib3" +"download_count": 723535841, +"project": "botocore" }, { -"download_count": 571612167, -"project": "botocore" +"download_count": 669567184, +"project": "urllib3" }, { -"download_count": 526406633, -"project": "requests" +"download_count": 572923467, +"project": "setuptools" }, { -"download_count": 483292792, -"project": "aiobotocore" +"download_count": 569832883, +"project": "requests" }, { -"download_count": 467827660, +"download_count": 522318360, "project": "certifi" }, { -"download_count": 465932571, -"project": "idna" +"download_count": 516338990, +"project": "charset-normalizer" }, { -"download_count": 463912826, -"project": "charset-normalizer" +"download_count": 515119853, +"project": "idna" }, { -"download_count": 458283677, -"project": "setuptools" +"download_count": 493933210, +"project": "packaging" }, { -"download_count": 436657303, +"download_count": 479733428, "project": "typing-extensions" }, { -"download_count": 416626158, +"download_count": 458419757, "project": "python-dateutil" }, { -"download_count": 404331402, +"download_count": 451882547, +"project": "aiobotocore" +}, +{ +"download_count": 425799712, "project": "s3transfer" }, { -"download_count": 394528713, -"project": "packaging" +"download_count": 419156985, +"project": "grpcio-status" }, { -"download_count": 378703571, -"project": "s3fs" +"download_count": 382543314, +"project": "pyyaml" }, { -"download_count": 377119298, -"project": "grpcio-status" +"download_count": 378342158, +"project": "six" }, { -"download_count": 358362073, +"download_count": 361788085, "project": "fsspec" }, { -"download_count": 351861928, -"project": "six" +"download_count": 353134683, +"project": "s3fs" }, { -"download_count": 337600486, -"project": "pyyaml" +"download_count": 340373155, +"project": "numpy" }, { -"download_count": 299651319, -"project": "numpy" +"download_count": 333074719, +"project": "pip" +}, +{ +"download_count": 311939810, +"project": "wheel" }, { -"download_count": 276323074, +"download_count": 310137004, "project": "cryptography" }, { -"download_count": 263816880, -"project": "pip" +"download_count": 299348525, +"project": "awscli" }, { -"download_count": 256976898, -"project": "importlib-metadata" +"download_count": 298527556, +"project": "pydantic" }, { -"download_count": 254217751, +"download_count": 278794136, "project": "cffi" }, { -"download_count": 248680573, -"project": "wheel" +"download_count": 275222126, +"project": "attrs" }, { -"download_count": 246935672, +"download_count": 269837676, "project": "pycparser" }, { -"download_count": 246157394, -"project": "pydantic" -}, -{ -"download_count": 244572029, +"download_count": 268367132, "project": "google-api-core" }, { -"download_count": 242521801, +"download_count": 268260875, "project": "pandas" }, { -"download_count": 241664482, -"project": "zipp" +"download_count": 266927491, +"project": "importlib-metadata" }, { -"download_count": 233829412, +"download_count": 257555136, "project": "jmespath" }, { -"download_count": 230776467, -"project": "rsa" +"download_count": 254429455, +"project": "click" }, { -"download_count": 228505410, -"project": "attrs" +"download_count": 251781720, +"project": "rsa" }, { -"download_count": 225760196, -"project": "pyasn1" +"download_count": 249463990, +"project": "zipp" }, { -"download_count": 213132959, -"project": "protobuf" +"download_count": 247839989, +"project": "pyasn1" }, { -"download_count": 203440975, -"project": "platformdirs" +"download_count": 244790382, +"project": "markupsafe" }, { -"download_count": 203405699, -"project": "click" +"download_count": 238473266, +"project": "pytz" }, { -"download_count": 192419956, +"download_count": 234603693, "project": "colorama" }, { -"download_count": 189473844, -"project": "awscli" -}, -{ -"download_count": 187737124, -"project": "pytz" +"download_count": 234415433, +"project": "protobuf" }, { -"download_count": 184491788, -"project": "markupsafe" +"download_count": 228326164, +"project": "platformdirs" }, { -"download_count": 175841151, +"download_count": 227628315, "project": "jinja2" }, { -"download_count": 171887448, -"project": "tomli" -}, -{ -"download_count": 158215643, -"project": "pyjwt" +"download_count": 214090196, +"project": "rich" }, { -"download_count": 158128052, -"project": "googleapis-common-protos" +"download_count": 212915063, +"project": "tomli" }, { -"download_count": 155321982, -"project": "cachetools" +"download_count": 201707527, +"project": "pytest" }, { -"download_count": 154191627, -"project": "filelock" +"download_count": 200416540, +"project": "pydantic-core" }, { -"download_count": 153288646, +"download_count": 198459247, "project": "pluggy" }, { -"download_count": 153225886, -"project": "wrapt" +"download_count": 196360067, +"project": "pyjwt" }, { -"download_count": 152866576, -"project": "virtualenv" +"download_count": 189917017, +"project": "aiohttp" }, { -"download_count": 152703147, -"project": "google-auth" +"download_count": 187429396, +"project": "jsonschema" }, { -"download_count": 151845509, -"project": "pydantic-core" +"download_count": 180062563, +"project": "googleapis-common-protos" }, { -"download_count": 144634863, -"project": "pytest" +"download_count": 179523222, +"project": "virtualenv" }, { -"download_count": 138228484, -"project": "pyarrow" +"download_count": 177681715, +"project": "cachetools" }, { -"download_count": 138093830, -"project": "pyasn1-modules" +"download_count": 175851653, +"project": "google-auth" }, { -"download_count": 136272082, -"project": "docutils" +"download_count": 174153899, +"project": "filelock" }, { -"download_count": 135428720, -"project": "pyparsing" +"download_count": 171421039, +"project": "wrapt" }, { -"download_count": 132719716, -"project": "jsonschema" +"download_count": 165772817, +"project": "sqlalchemy" }, { -"download_count": 131249504, -"project": "requests-oauthlib" +"download_count": 164291449, +"project": "docutils" }, { -"download_count": 130790934, -"project": "aiohttp" +"download_count": 159246171, +"project": "pyasn1-modules" }, { -"download_count": 127060186, -"project": "iniconfig" +"download_count": 157870770, +"project": "pyarrow" }, { -"download_count": 123985833, -"project": "psutil" +"download_count": 155577216, +"project": "iniconfig" }, { -"download_count": 123014434, -"project": "exceptiongroup" +"download_count": 153638766, +"project": "pygments" }, { -"download_count": 121488844, -"project": "sqlalchemy" +"download_count": 153394963, +"project": "greenlet" }, { -"download_count": 121383362, +"download_count": 147174513, "project": "yarl" }, { -"download_count": 121146330, -"project": "oauthlib" +"download_count": 145309334, +"project": "annotated-types" }, { -"download_count": 120429619, -"project": "scipy" +"download_count": 144887397, +"project": "psutil" }, { -"download_count": 118619018, -"project": "soupsieve" +"download_count": 144152744, +"project": "requests-oauthlib" }, { -"download_count": 116474158, +"download_count": 143438146, "project": "tzdata" }, { -"download_count": 116018483, +"download_count": 141314490, +"project": "exceptiongroup" +}, +{ +"download_count": 141265541, "project": "multidict" }, { -"download_count": 115472681, -"project": "annotated-types" +"download_count": 140379403, +"project": "pyparsing" }, { -"download_count": 114951582, -"project": "isodate" +"download_count": 140208074, +"project": "requests-toolbelt" }, { -"download_count": 114470949, -"project": "pygments" +"download_count": 137583397, +"project": "soupsieve" }, { -"download_count": 114412827, -"project": "beautifulsoup4" +"download_count": 136834028, +"project": "werkzeug" }, { -"download_count": 113489128, -"project": "decorator" +"download_count": 134573380, +"project": "oauthlib" }, { -"download_count": 111536179, -"project": "pillow" +"download_count": 134243722, +"project": "beautifulsoup4" }, { -"download_count": 110830120, -"project": "requests-toolbelt" +"download_count": 132830533, +"project": "frozenlist" }, { -"download_count": 108437974, -"project": "greenlet" +"download_count": 129453026, +"project": "more-itertools" }, { -"download_count": 108305815, -"project": "frozenlist" +"download_count": 126327213, +"project": "tomlkit" }, { -"download_count": 107049503, -"project": "pyopenssl" +"download_count": 125159075, +"project": "distlib" }, { -"download_count": 105701625, +"download_count": 124856059, "project": "aiosignal" }, { -"download_count": 105591716, -"project": "tomlkit" +"download_count": 124601669, +"project": "grpcio" }, { -"download_count": 101437858, -"project": "distlib" +"download_count": 122873563, +"project": "scipy" }, { -"download_count": 100194808, -"project": "openpyxl" +"download_count": 122312044, +"project": "tqdm" }, { -"download_count": 99970047, +"download_count": 122231218, +"project": "pathspec" +}, +{ +"download_count": 119938931, "project": "async-timeout" }, { -"download_count": 99201092, -"project": "et-xmlfile" +"download_count": 119917665, +"project": "pillow" }, { -"download_count": 98399797, -"project": "grpcio" +"download_count": 119782099, +"project": "isodate" }, { -"download_count": 97407722, -"project": "tqdm" +"download_count": 118381743, +"project": "decorator" }, { -"download_count": 95014557, -"project": "more-itertools" +"download_count": 118155766, +"project": "anyio" }, { -"download_count": 94922293, +"download_count": 115469601, "project": "deprecated" }, { -"download_count": 90015229, -"project": "pynacl" +"download_count": 114272063, +"project": "sniffio" }, { -"download_count": 89114819, -"project": "proto-plus" +"download_count": 112360325, +"project": "sortedcontainers" }, { -"download_count": 88233970, -"project": "lxml" +"download_count": 111962076, +"project": "httpx" }, { -"download_count": 87362874, -"project": "azure-core" +"download_count": 111499110, +"project": "markdown-it-py" }, { -"download_count": 86787591, -"project": "werkzeug" +"download_count": 110197498, +"project": "coverage" }, { -"download_count": 86253304, -"project": "anyio" +"download_count": 109718928, +"project": "pyopenssl" }, { -"download_count": 86188445, -"project": "google-cloud-storage" +"download_count": 109086054, +"project": "openpyxl" }, { -"download_count": 86067474, -"project": "asn1crypto" +"download_count": 108872239, +"project": "mypy-extensions" }, { -"download_count": 84772021, -"project": "coverage" +"download_count": 108529087, +"project": "et-xmlfile" }, { -"download_count": 84051231, -"project": "websocket-client" +"download_count": 108403579, +"project": "rpds-py" }, { -"download_count": 84025579, +"download_count": 107723005, "project": "h11" }, { -"download_count": 83502596, -"project": "pexpect" +"download_count": 106920152, +"project": "flask" }, { -"download_count": 82737941, -"project": "ptyprocess" +"download_count": 105345151, +"project": "httpcore" }, { -"download_count": 82394515, -"project": "msgpack" +"download_count": 105314328, +"project": "lxml" }, { -"download_count": 82191879, -"project": "sniffio" +"download_count": 103174197, +"project": "jsonschema-specifications" }, { -"download_count": 82104651, -"project": "grpcio-tools" +"download_count": 102332012, +"project": "proto-plus" }, { -"download_count": 79909351, -"project": "rich" +"download_count": 101644622, +"project": "mdurl" }, { -"download_count": 79821881, -"project": "rpds-py" +"download_count": 99002908, +"project": "python-dotenv" }, { -"download_count": 79460401, -"project": "sortedcontainers" +"download_count": 97027686, +"project": "referencing" }, { -"download_count": 79176070, -"project": "jsonschema-specifications" +"download_count": 96651316, +"project": "propcache" }, { -"download_count": 78043133, +"download_count": 95945273, "project": "dill" }, { -"download_count": 77481078, -"project": "httpcore" +"download_count": 94803170, +"project": "ptyprocess" }, { -"download_count": 77126139, -"project": "importlib-resources" +"download_count": 94761769, +"project": "google-cloud-storage" }, { -"download_count": 76415324, -"project": "httpx" +"download_count": 94421876, +"project": "msgpack" }, { -"download_count": 76050557, -"project": "aiohappyeyeballs" +"download_count": 94403508, +"project": "poetry-core" }, { -"download_count": 75892023, -"project": "referencing" +"download_count": 94209053, +"project": "pexpect" }, { -"download_count": 74500528, -"project": "flask" +"download_count": 93917281, +"project": "asn1crypto" }, { -"download_count": 74042990, -"project": "python-dotenv" +"download_count": 93768551, +"project": "opentelemetry-sdk" }, { -"download_count": 74030564, -"project": "scikit-learn" +"download_count": 92260819, +"project": "azure-core" }, { -"download_count": 73814682, -"project": "google-cloud-core" +"download_count": 92121820, +"project": "gitpython" }, { -"download_count": 71915578, -"project": "chardet" +"download_count": 91816084, +"project": "pynacl" }, { -"download_count": 71400022, -"project": "bcrypt" +"download_count": 91596290, +"project": "aiohappyeyeballs" }, { -"download_count": 71382248, -"project": "mypy-extensions" +"download_count": 90483828, +"project": "websocket-client" }, { -"download_count": 71281934, -"project": "poetry-core" +"download_count": 89962445, +"project": "tenacity" }, { -"download_count": 71121887, -"project": "msal" +"download_count": 89162596, +"project": "itsdangerous" }, { -"download_count": 70316114, -"project": "keyring" +"download_count": 86275692, +"project": "grpcio-tools" }, { -"download_count": 70236680, -"project": "google-resumable-media" +"download_count": 84535306, +"project": "google-cloud-core" }, { -"download_count": 69777556, -"project": "paramiko" +"download_count": 84385460, +"project": "importlib-resources" }, { -"download_count": 69642522, -"project": "matplotlib" +"download_count": 83502963, +"project": "smmap" }, { -"download_count": 69323531, -"project": "pkginfo" +"download_count": 83385560, +"project": "gitdb" }, { -"download_count": 69249656, +"download_count": 82608739, "project": "psycopg2-binary" }, { -"download_count": 69077193, -"project": "gitpython" +"download_count": 81652652, +"project": "asgiref" }, { -"download_count": 68822507, -"project": "markdown-it-py" +"download_count": 80215078, +"project": "scikit-learn" +}, +{ +"download_count": 79447150, +"project": "msal" }, { -"download_count": 68325723, +"download_count": 79423256, "project": "wcwidth" }, { -"download_count": 68095790, -"project": "pathspec" +"download_count": 79422943, +"project": "alembic" }, { -"download_count": 67649349, -"project": "mdurl" +"download_count": 79249319, +"project": "google-resumable-media" }, { -"download_count": 67160724, -"project": "poetry-plugin-export" +"download_count": 78880248, +"project": "keyring" }, { -"download_count": 66313812, -"project": "snowflake-connector-python" +"download_count": 78614675, +"project": "trove-classifiers" }, { -"download_count": 66234114, -"project": "networkx" +"download_count": 77041365, +"project": "chardet" }, { -"download_count": 65985255, -"project": "smmap" +"download_count": 75956518, +"project": "regex" }, { -"download_count": 65580590, -"project": "gitdb" +"download_count": 75633021, +"project": "shellingham" }, { -"download_count": 64257827, -"project": "propcache" +"download_count": 74652406, +"project": "mccabe" }, { -"download_count": 63626454, -"project": "jaraco-classes" +"download_count": 74597957, +"project": "blinker" }, { -"download_count": 62667665, -"project": "threadpoolctl" +"download_count": 74464833, +"project": "opentelemetry-api" }, { -"download_count": 62529378, -"project": "jeepney" +"download_count": 73530936, +"project": "backoff" }, { -"download_count": 62399298, -"project": "secretstorage" +"download_count": 73283241, +"project": "snowflake-connector-python" }, { -"download_count": 62357251, -"project": "xmltodict" +"download_count": 73206620, +"project": "bcrypt" }, { -"download_count": 62094505, -"project": "typedload" +"download_count": 72870017, +"project": "pytest-cov" }, { -"download_count": 62001010, -"project": "cloudpickle" +"download_count": 72269843, +"project": "build" }, { -"download_count": 61924175, -"project": "tenacity" +"download_count": 72227293, +"project": "ruamel-yaml" }, { -"download_count": 61604355, -"project": "kiwisolver" +"download_count": 71597791, +"project": "jaraco-classes" }, { -"download_count": 61398068, -"project": "tabulate" +"download_count": 71353387, +"project": "pyproject-hooks" }, { -"download_count": 61209661, -"project": "ruamel-yaml" +"download_count": 70953342, +"project": "pkginfo" }, { -"download_count": 61106045, -"project": "backoff" +"download_count": 70709263, +"project": "fastapi" }, { -"download_count": 60870102, -"project": "itsdangerous" +"download_count": 70175076, +"project": "jeepney" }, { -"download_count": 60788959, -"project": "shellingham" +"download_count": 69982800, +"project": "secretstorage" }, { -"download_count": 60693828, +"download_count": 69899730, "project": "google-crc32c" }, { -"download_count": 60415251, -"project": "fastjsonschema" +"download_count": 69893776, +"project": "tabulate" }, { -"download_count": 60321276, -"project": "build" +"download_count": 69024058, +"project": "matplotlib" }, { -"download_count": 60191884, -"project": "regex" +"download_count": 68345665, +"project": "pycodestyle" }, { -"download_count": 59803194, -"project": "py4j" +"download_count": 67980101, +"project": "fastjsonschema" }, { -"download_count": 59192815, -"project": "portalocker" +"download_count": 67879634, +"project": "paramiko" }, { -"download_count": 59172755, -"project": "cycler" +"download_count": 67669258, +"project": "py" }, { -"download_count": 59117044, -"project": "google-cloud-bigquery" +"download_count": 67398241, +"project": "threadpoolctl" }, { -"download_count": 58473198, -"project": "pyproject-hooks" +"download_count": 67269074, +"project": "gunicorn" }, { -"download_count": 57871579, -"project": "rapidfuzz" +"download_count": 67104764, +"project": "poetry-plugin-export" }, { -"download_count": 57110233, -"project": "py" +"download_count": 66978587, +"project": "sqlparse" }, { -"download_count": 55290052, -"project": "trove-classifiers" +"download_count": 66716617, +"project": "dnspython" }, { -"download_count": 55287353, -"project": "pytest-cov" +"download_count": 66044584, +"project": "networkx" }, { -"download_count": 55143960, -"project": "azure-storage-blob" +"download_count": 65439173, +"project": "google-cloud-bigquery" }, { -"download_count": 54186183, -"project": "pyzmq" +"download_count": 65348499, +"project": "prompt-toolkit" }, { -"download_count": 53894896, -"project": "msal-extensions" +"download_count": 65263336, +"project": "google-api-python-client" }, { -"download_count": 53022751, -"project": "mccabe" +"download_count": 64340070, +"project": "marshmallow" }, { -"download_count": 52922335, -"project": "sqlparse" +"download_count": 63831887, +"project": "azure-storage-blob" }, { -"download_count": 52590406, -"project": "google-api-python-client" +"download_count": 62987422, +"project": "rapidfuzz" }, { -"download_count": 52427744, -"project": "awswrangler" +"download_count": 62864078, +"project": "py4j" }, { -"download_count": 52314943, -"project": "joblib" +"download_count": 62353947, +"project": "mock" }, { -"download_count": 51828734, -"project": "google-auth-oauthlib" +"download_count": 62322310, +"project": "isort" }, { -"download_count": 51458524, -"project": "prompt-toolkit" +"download_count": 62015149, +"project": "joblib" }, { -"download_count": 50877997, -"project": "alembic" +"download_count": 61811990, +"project": "portalocker" }, { -"download_count": 49400820, -"project": "defusedxml" +"download_count": 61578397, +"project": "ipython" }, { -"download_count": 48980399, -"project": "azure-identity" +"download_count": 61191401, +"project": "typedload" }, { -"download_count": 48683239, -"project": "pyrsistent" +"download_count": 60790096, +"project": "xmltodict" }, { -"download_count": 48584726, -"project": "pycodestyle" +"download_count": 59847510, +"project": "kiwisolver" }, { -"download_count": 48418475, -"project": "ruamel-yaml-clib" +"download_count": 59232745, +"project": "docker" }, { -"download_count": 47339039, -"project": "fonttools" +"download_count": 59217133, +"project": "azure-identity" }, { -"download_count": 47063624, -"project": "cachecontrol" +"download_count": 58920026, +"project": "redis" }, { -"download_count": 47024852, -"project": "nest-asyncio" +"download_count": 58485576, +"project": "babel" }, { -"download_count": 46687686, -"project": "marshmallow" +"download_count": 58479065, +"project": "black" }, { -"download_count": 46379800, -"project": "pymysql" +"download_count": 58352252, +"project": "google-auth-oauthlib" }, { -"download_count": 46276484, -"project": "blinker" +"download_count": 58132004, +"project": "ruamel-yaml-clib" }, { -"download_count": 46011711, -"project": "ipython" +"download_count": 58055790, +"project": "defusedxml" }, { -"download_count": 45950727, -"project": "uritemplate" +"download_count": 57902787, +"project": "nest-asyncio" }, { -"download_count": 45685337, -"project": "docker" +"download_count": 57523036, +"project": "termcolor" }, { -"download_count": 45663497, -"project": "tzlocal" +"download_count": 57410354, +"project": "fonttools" }, { -"download_count": 45295641, -"project": "sentry-sdk" +"download_count": 57187020, +"project": "starlette" }, { -"download_count": 45133758, -"project": "babel" +"download_count": 56820610, +"project": "sentry-sdk" }, { -"download_count": 45098329, -"project": "isort" +"download_count": 56725232, +"project": "cloudpickle" }, { -"download_count": 44937207, -"project": "httplib2" +"download_count": 56229478, +"project": "nodeenv" }, { -"download_count": 44758737, -"project": "google-auth-httplib2" +"download_count": 55870976, +"project": "cycler" }, { -"download_count": 44695376, -"project": "poetry" +"download_count": 55662291, +"project": "ply" }, { -"download_count": 44675811, -"project": "redis" +"download_count": 55347841, +"project": "awswrangler" }, { -"download_count": 44514315, -"project": "huggingface-hub" +"download_count": 55227591, +"project": "mako" }, { -"download_count": 44212819, -"project": "cython" +"download_count": 55113281, +"project": "msal-extensions" }, { -"download_count": 44165325, -"project": "opentelemetry-api" +"download_count": 55036047, +"project": "httplib2" }, { -"download_count": 43864238, -"project": "multiprocess" +"download_count": 54347656, +"project": "uritemplate" }, { -"download_count": 43703283, -"project": "transformers" +"download_count": 54294520, +"project": "tzlocal" }, { -"download_count": 43664958, -"project": "dnspython" +"download_count": 54220194, +"project": "cython" }, { -"download_count": 43586895, -"project": "distro" +"download_count": 53910253, +"project": "traitlets" }, { -"download_count": 43252891, -"project": "ply" +"download_count": 53518386, +"project": "types-requests" }, { -"download_count": 43198405, -"project": "prometheus-client" +"download_count": 53227393, +"project": "opentelemetry-semantic-conventions" }, { -"download_count": 42753198, -"project": "traitlets" +"download_count": 52530518, +"project": "pyflakes" }, { -"download_count": 42735633, -"project": "grpc-google-iam-v1" +"download_count": 52331750, +"project": "tornado" }, { -"download_count": 42653565, -"project": "toml" +"download_count": 52132314, +"project": "pymysql" }, { -"download_count": 42458140, -"project": "pendulum" +"download_count": 51938957, +"project": "markdown" }, { -"download_count": 42395336, -"project": "gunicorn" +"download_count": 51913387, +"project": "setuptools-scm" }, { -"download_count": 42064981, -"project": "scramp" +"download_count": 51736099, +"project": "jedi" }, { -"download_count": 41566109, -"project": "dulwich" +"download_count": 51600036, +"project": "pyrsistent" }, { -"download_count": 41503025, -"project": "crashtest" +"download_count": 51191430, +"project": "toml" }, { -"download_count": 41351866, -"project": "tornado" +"download_count": 50995447, +"project": "cachecontrol" }, { -"download_count": 41349639, -"project": "requests-aws4auth" +"download_count": 50656800, +"project": "google-auth-httplib2" }, { -"download_count": 41264584, -"project": "markdown" +"download_count": 50549981, +"project": "prometheus-client" }, { -"download_count": 41212392, -"project": "cleo" +"download_count": 50443702, +"project": "distro" }, { -"download_count": 40355510, -"project": "installer" +"download_count": 50044678, +"project": "uvicorn" }, { -"download_count": 40143981, -"project": "pycryptodomex" +"download_count": 49816736, +"project": "argcomplete" }, { -"download_count": 40062482, -"project": "fastapi" +"download_count": 49272749, +"project": "pendulum" }, { -"download_count": 39938703, -"project": "jedi" +"download_count": 48709519, +"project": "installer" }, { -"download_count": 39722228, -"project": "setuptools-scm" +"download_count": 48199153, +"project": "flake8" }, { -"download_count": 39312986, +"download_count": 48133856, "project": "parso" }, { -"download_count": 39203898, -"project": "termcolor" +"download_count": 47949465, +"project": "pyzmq" }, { -"download_count": 38691914, -"project": "webencodings" +"download_count": 47628414, +"project": "debugpy" }, { -"download_count": 38280341, -"project": "black" +"download_count": 47253031, +"project": "openai" }, { -"download_count": 38061431, -"project": "msrest" +"download_count": 46837153, +"project": "poetry" }, { -"download_count": 37927146, +"download_count": 46823972, "project": "matplotlib-inline" }, { -"download_count": 37883723, -"project": "contourpy" -}, -{ -"download_count": 37785114, -"project": "types-requests" +"download_count": 46613886, +"project": "dulwich" }, { -"download_count": 37719243, -"project": "jsonpointer" +"download_count": 46138604, +"project": "contourpy" }, { -"download_count": 37367025, -"project": "debugpy" +"download_count": 46066504, +"project": "huggingface-hub" }, { -"download_count": 37212496, -"project": "azure-common" +"download_count": 45658609, +"project": "webencodings" }, { -"download_count": 36860105, -"project": "future" +"download_count": 45585881, +"project": "kubernetes" }, { -"download_count": 36139331, -"project": "pycryptodome" +"download_count": 45509159, +"project": "websockets" }, { -"download_count": 36130043, -"project": "opentelemetry-sdk" +"download_count": 45250727, +"project": "crashtest" }, { -"download_count": 35838264, -"project": "starlette" +"download_count": 44658999, +"project": "jsonpointer" }, { -"download_count": 35742153, -"project": "mako" +"download_count": 44443003, +"project": "grpc-google-iam-v1" }, { -"download_count": 35701025, -"project": "opentelemetry-semantic-conventions" +"download_count": 44254488, +"project": "typer" }, { -"download_count": 35412664, -"project": "openai" +"download_count": 44225990, +"project": "mypy" }, { -"download_count": 35327052, -"project": "pyflakes" +"download_count": 44072736, +"project": "scramp" }, { -"download_count": 34487080, -"project": "loguru" +"download_count": 43648998, +"project": "stack-data" }, { -"download_count": 34380405, -"project": "kubernetes" +"download_count": 43353755, +"project": "orjson" }, { -"download_count": 34073398, -"project": "asgiref" +"download_count": 42978257, +"project": "croniter" }, { -"download_count": 33968368, -"project": "python-json-logger" +"download_count": 42802051, +"project": "cleo" }, { -"download_count": 33800956, -"project": "executing" +"download_count": 42603105, +"project": "transformers" }, { -"download_count": 33733138, +"download_count": 42442570, "project": "asttokens" }, { -"download_count": 33579260, -"project": "arrow" +"download_count": 42358183, +"project": "executing" }, { -"download_count": 33462713, -"project": "pkgutil-resolve-name" +"download_count": 42028069, +"project": "pycryptodome" }, { -"download_count": 33313327, -"project": "flake8" +"download_count": 41589294, +"project": "pycryptodomex" }, { -"download_count": 33194343, -"project": "pygithub" +"download_count": 41533711, +"project": "pymongo" }, { -"download_count": 33073520, -"project": "elasticsearch" +"download_count": 41450363, +"project": "python-json-logger" }, { -"download_count": 33054022, -"project": "redshift-connector" +"download_count": 41039653, +"project": "pytest-mock" }, { -"download_count": 32730571, -"project": "stack-data" +"download_count": 40941937, +"project": "ipykernel" }, { -"download_count": 32558776, -"project": "pytzdata" +"download_count": 40546300, +"project": "multiprocess" }, { -"download_count": 32418302, -"project": "pure-eval" +"download_count": 40338683, +"project": "requests-aws4auth" }, { -"download_count": 32363818, -"project": "pytest-runner" +"download_count": 40301704, +"project": "pure-eval" }, { -"download_count": 32237819, -"project": "bs4" +"download_count": 40198892, +"project": "typing-inspect" }, { -"download_count": 32159324, -"project": "pg8000" +"download_count": 40122763, +"project": "arrow" }, { -"download_count": 31878741, -"project": "retry" +"download_count": 39703290, +"project": "python-slugify" }, { -"download_count": 31579099, -"project": "typing-inspect" +"download_count": 39424564, +"project": "zope-interface" }, { -"download_count": 31425809, -"project": "smart-open" +"download_count": 39424518, +"project": "types-python-dateutil" }, { -"download_count": 31270299, -"project": "argcomplete" +"download_count": 39413194, +"project": "sphinx" }, { -"download_count": 31262091, -"project": "pymongo" +"download_count": 39130084, +"project": "pre-commit" }, { -"download_count": 31133144, +"download_count": 39112447, "project": "jupyter-core" }, { -"download_count": 31089223, -"project": "google-pasta" -}, -{ -"download_count": 31030754, +"download_count": 38689189, "project": "jupyter-client" }, { -"download_count": 30935918, -"project": "google-cloud-secret-manager" +"download_count": 38396708, +"project": "aiofiles" }, { -"download_count": 30888974, -"project": "datadog" +"download_count": 37995587, +"project": "opentelemetry-proto" }, { -"download_count": 30579923, -"project": "uvicorn" +"download_count": 37840868, +"project": "future" }, { -"download_count": 30569184, -"project": "mock" +"download_count": 37819348, +"project": "identify" }, { -"download_count": 30159050, -"project": "ipykernel" +"download_count": 37732122, +"project": "astroid" }, { -"download_count": 30114133, -"project": "typer" -}, -{ -"download_count": 29947366, -"project": "types-python-dateutil" +"download_count": 37677770, +"project": "loguru" }, { -"download_count": 29782453, -"project": "torch" +"download_count": 37124427, +"project": "pytzdata" }, { -"download_count": 29729658, -"project": "imageio" +"download_count": 36727711, +"project": "datadog" }, { -"download_count": 29720491, -"project": "aioitertools" +"download_count": 36313319, +"project": "lazy-object-proxy" }, { -"download_count": 29596459, -"project": "pyspark" +"download_count": 36296819, +"project": "redshift-connector" }, { -"download_count": 29520616, -"project": "nbconvert" +"download_count": 35942407, +"project": "elasticsearch" }, { -"download_count": 29470280, -"project": "shapely" +"download_count": 35820813, +"project": "aioitertools" }, { -"download_count": 29453154, -"project": "apache-airflow" +"download_count": 35812649, +"project": "rfc3339-validator" }, { -"download_count": 29198479, -"project": "oscrypto" +"download_count": 35807157, +"project": "cfgv" }, { -"download_count": 29132908, -"project": "websockets" +"download_count": 35481993, +"project": "bs4" }, { -"download_count": 28801611, -"project": "tokenizers" +"download_count": 35325564, +"project": "jupyterlab" }, { -"download_count": 28602679, -"project": "mysql-connector-python" +"download_count": 35296368, +"project": "nbconvert" }, { -"download_count": 28454471, -"project": "jsonpath-ng" +"download_count": 35242099, +"project": "hatchling" }, { -"download_count": 28392590, -"project": "nodeenv" +"download_count": 35011053, +"project": "pylint" }, { -"download_count": 28307496, -"project": "google-cloud-pubsub" +"download_count": 35007442, +"project": "pygithub" }, { -"download_count": 28089439, -"project": "requests-file" +"download_count": 34972549, +"project": "msrest" }, { -"download_count": 27777266, -"project": "aiofiles" +"download_count": 34769678, +"project": "colorlog" }, { -"download_count": 27739811, -"project": "snowflake-sqlalchemy" +"download_count": 34701541, +"project": "comm" }, { -"download_count": 27664714, +"download_count": 34633683, "project": "nbformat" }, { -"download_count": 27523404, -"project": "setproctitle" +"download_count": 34541462, +"project": "retry" }, { -"download_count": 27465947, -"project": "jupyter-server" +"download_count": 34520226, +"project": "pytest-runner" }, { -"download_count": 27455975, -"project": "comm" +"download_count": 34351437, +"project": "azure-common" }, { -"download_count": 27391648, -"project": "humanfriendly" +"download_count": 34109224, +"project": "smart-open" }, { -"download_count": 27343670, -"project": "astroid" +"download_count": 33942717, +"project": "bleach" }, { -"download_count": 27332825, -"project": "pylint" +"download_count": 33630636, +"project": "ruff" }, { -"download_count": 27192872, -"project": "bleach" +"download_count": 33563151, +"project": "torch" }, { -"download_count": 27143219, -"project": "xgboost" +"download_count": 33522875, +"project": "setproctitle" }, { -"download_count": 26958225, -"project": "orjson" +"download_count": 33365883, +"project": "shapely" }, { -"download_count": 26820431, -"project": "rfc3339-validator" +"download_count": 33304738, +"project": "pg8000" }, { -"download_count": 26799416, -"project": "toolz" +"download_count": 33136833, +"project": "nbclient" }, { -"download_count": 26757949, -"project": "jsonpatch" +"download_count": 33076671, +"project": "tokenizers" }, { -"download_count": 26680820, -"project": "zope-interface" +"download_count": 33071872, +"project": "responses" }, { -"download_count": 26659327, -"project": "typeguard" +"download_count": 33007133, +"project": "pydantic-settings" }, { -"download_count": 26571539, -"project": "schema" +"download_count": 32960259, +"project": "jupyter-server" }, { -"download_count": 26566152, -"project": "mistune" +"download_count": 32835152, +"project": "hypothesis" }, { -"download_count": 26349859, -"project": "pysocks" +"download_count": 32779177, +"project": "opentelemetry-exporter-otlp-proto-http" }, { -"download_count": 26173485, -"project": "tinycss2" +"download_count": 32575323, +"project": "opentelemetry-exporter-otlp-proto-grpc" }, { -"download_count": 26017266, -"project": "sympy" +"download_count": 32517689, +"project": "ordered-set" }, { -"download_count": 25921921, -"project": "tb-nightly" +"download_count": 32412754, +"project": "apache-airflow" }, { -"download_count": 25909493, -"project": "notebook" +"download_count": 32239556, +"project": "tinycss2" }, { -"download_count": 25906907, -"project": "jupyterlab-server" +"download_count": 32164707, +"project": "appdirs" }, { -"download_count": 25893178, -"project": "sagemaker" +"download_count": 32012493, +"project": "jsonpath-ng" }, { -"download_count": 25720632, -"project": "nbclient" +"download_count": 31998440, +"project": "google-cloud-secret-manager" }, { -"download_count": 25707518, -"project": "jupyterlab" +"download_count": 31991259, +"project": "mistune" }, { -"download_count": 25658488, -"project": "opensearch-py" +"download_count": 31805120, +"project": "google-cloud-pubsub" }, { -"download_count": 25431680, -"project": "sphinx" +"download_count": 31599172, +"project": "mysql-connector-python" }, { -"download_count": 25160013, -"project": "adal" +"download_count": 31565544, +"project": "jsonpatch" }, { -"download_count": 24419147, -"project": "jaraco-functools" +"download_count": 31272613, +"project": "snowballstemmer" }, { -"download_count": 24313827, -"project": "google-cloud-aiplatform" +"download_count": 31072713, +"project": "pkgutil-resolve-name" }, { -"download_count": 24131396, -"project": "xlrd" +"download_count": 30927046, +"project": "requests-file" }, { -"download_count": 23950110, -"project": "ipywidgets" +"download_count": 30919584, +"project": "sympy" }, { -"download_count": 23805773, -"project": "google-cloud-appengine-logging" +"download_count": 30855473, +"project": "slack-sdk" }, { -"download_count": 23776152, -"project": "widgetsnbextension" +"download_count": 30758226, +"project": "notebook" }, { -"download_count": 23692374, -"project": "aenum" +"download_count": 30699414, +"project": "pyspark" }, { -"download_count": 23547207, -"project": "aws-requests-auth" +"download_count": 30597653, +"project": "watchdog" }, { -"download_count": 23511248, -"project": "pathos" +"download_count": 30353753, +"project": "jaraco-functools" }, { -"download_count": 23358580, -"project": "jupyterlab-widgets" +"download_count": 30260807, +"project": "pytest-xdist" }, { -"download_count": 23341102, -"project": "sentencepiece" +"download_count": 30251220, +"project": "jupyterlab-server" }, { -"download_count": 23287619, -"project": "progressbar2" +"download_count": 30209638, +"project": "snowflake-sqlalchemy" }, { -"download_count": 23240637, -"project": "xlsxwriter" +"download_count": 29901498, +"project": "opentelemetry-exporter-otlp" }, { -"download_count": 23147309, -"project": "db-dtypes" +"download_count": 29897390, +"project": "django" }, { -"download_count": 23110919, -"project": "pre-commit" +"download_count": 29848969, +"project": "google-pasta" }, { -"download_count": 23064774, -"project": "pox" +"download_count": 29532015, +"project": "opensearch-py" }, { -"download_count": 23052026, -"project": "apache-airflow-providers-common-sql" +"download_count": 29399705, +"project": "oscrypto" }, { -"download_count": 23050526, -"project": "ppft" +"download_count": 29139385, +"project": "toolz" }, { -"download_count": 23024818, -"project": "pytest-mock" +"download_count": 28948095, +"project": "typeguard" }, { -"download_count": 22838407, -"project": "slack-sdk" +"download_count": 28638141, +"project": "humanfriendly" }, { -"download_count": 22827378, -"project": "send2trash" +"download_count": 28476303, +"project": "tox" }, { -"download_count": 22796356, -"project": "json5" +"download_count": 28321693, +"project": "execnet" }, { -"download_count": 22778121, -"project": "semver" +"download_count": 28190776, +"project": "mdit-py-plugins" }, { -"download_count": 22763686, -"project": "pyodbc" +"download_count": 28172626, +"project": "email-validator" }, { -"download_count": 22749082, -"project": "argon2-cffi" +"download_count": 28129250, +"project": "jaraco-context" }, { -"download_count": 22723213, -"project": "mpmath" +"download_count": 28060479, +"project": "aenum" }, { -"download_count": 22648950, -"project": "appdirs" +"download_count": 27871167, +"project": "ipywidgets" }, { -"download_count": 22507155, -"project": "lz4" +"download_count": 27836124, +"project": "text-unidecode" }, { -"download_count": 22460789, -"project": "cattrs" +"download_count": 27782251, +"project": "xlrd" }, { -"download_count": 22450619, -"project": "pandocfilters" +"download_count": 27779771, +"project": "cattrs" }, { -"download_count": 22273981, -"project": "jupyterlab-pygments" +"download_count": 27761285, +"project": "google-cloud-aiplatform" }, { -"download_count": 22255481, +"download_count": 27691017, "project": "overrides" }, { -"download_count": 22163645, -"project": "pandas-gbq" +"download_count": 27676011, +"project": "imagesize" }, { -"download_count": 22083331, -"project": "django" +"download_count": 27529305, +"project": "absl-py" }, { -"download_count": 22048224, -"project": "argon2-cffi-bindings" +"download_count": 27494468, +"project": "uvloop" }, { -"download_count": 21830113, -"project": "identify" +"download_count": 27422471, +"project": "argon2-cffi" }, { -"download_count": 21820614, -"project": "jaraco-context" +"download_count": 27280776, +"project": "lz4" }, { -"download_count": 21806031, -"project": "sshtunnel" +"download_count": 27265683, +"project": "json5" }, { -"download_count": 21802735, -"project": "smdebug-rulesconfig" +"download_count": 27262919, +"project": "langchain-core" }, { -"download_count": 21793650, -"project": "python-utils" +"download_count": 27246576, +"project": "alabaster" }, { -"download_count": 21783700, -"project": "mypy" +"download_count": 27196306, +"project": "jupyterlab-pygments" }, { -"download_count": 21779524, -"project": "absl-py" +"download_count": 27111784, +"project": "opentelemetry-exporter-otlp-proto-common" }, { -"download_count": 21624492, -"project": "click-man" +"download_count": 27089942, +"project": "pandocfilters" }, { -"download_count": 21387203, -"project": "scikit-image" +"download_count": 27013491, +"project": "pysocks" }, { -"download_count": 21304414, -"project": "terminado" +"download_count": 26966580, +"project": "widgetsnbextension" }, { -"download_count": 21208518, -"project": "tensorboard" +"download_count": 26796419, +"project": "flask-caching" }, { -"download_count": 21030170, -"project": "cfgv" +"download_count": 26711946, +"project": "jupyterlab-widgets" }, { -"download_count": 20865573, -"project": "docker-pycreds" +"download_count": 26637399, +"project": "xgboost" }, { -"download_count": 20841448, -"project": "google-cloud-logging" +"download_count": 26627184, +"project": "sphinxcontrib-serializinghtml" }, { -"download_count": 20754528, -"project": "webcolors" +"download_count": 26616214, +"project": "sphinxcontrib-htmlhelp" }, { -"download_count": 20669213, -"project": "google-cloud-resource-manager" +"download_count": 26462739, +"project": "argon2-cffi-bindings" }, { -"download_count": 20630766, -"project": "pydeequ" +"download_count": 26430029, +"project": "send2trash" }, { -"download_count": 20519170, -"project": "pbr" +"download_count": 26422968, +"project": "sphinxcontrib-applehelp" }, { -"download_count": 20515450, -"project": "notebook-shim" +"download_count": 26406365, +"project": "sphinxcontrib-qthelp" }, { -"download_count": 20433179, -"project": "altair" +"download_count": 26368543, +"project": "rfc3986" }, { -"download_count": 20417702, -"project": "azure-storage-file-datalake" +"download_count": 26266285, +"project": "apache-airflow-providers-common-sql" }, { -"download_count": 20397589, -"project": "croniter" +"download_count": 26253976, +"project": "sphinxcontrib-devhelp" }, { -"download_count": 20327400, -"project": "tox" +"download_count": 26218305, +"project": "httptools" }, { -"download_count": 20292351, -"project": "asynctest" +"download_count": 26092035, +"project": "pbr" }, { -"download_count": 20132177, -"project": "fqdn" +"download_count": 26011667, +"project": "pyodbc" }, { -"download_count": 20088345, -"project": "text-unidecode" +"download_count": 25982371, +"project": "pytest-asyncio" }, { -"download_count": 20067018, -"project": "isoduration" +"download_count": 25843228, +"project": "mpmath" }, { -"download_count": 20065229, -"project": "uri-template" +"download_count": 25749351, +"project": "schema" }, { -"download_count": 20060019, -"project": "ordered-set" +"download_count": 25633314, +"project": "xlsxwriter" }, { -"download_count": 19913825, -"project": "watchdog" +"download_count": 25567868, +"project": "db-dtypes" }, { -"download_count": 19791057, -"project": "nltk" +"download_count": 25502663, +"project": "selenium" }, { -"download_count": 19780139, -"project": "rfc3986-validator" +"download_count": 25403136, +"project": "python-multipart" }, { -"download_count": 19684559, -"project": "wandb" +"download_count": 25373150, +"project": "dataclasses-json" }, { -"download_count": 19618479, -"project": "jupyter-events" +"download_count": 25315807, +"project": "sphinxcontrib-jsmath" }, { -"download_count": 19596515, -"project": "databricks-sql-connector" +"download_count": 25199289, +"project": "webcolors" }, { -"download_count": 19570103, +"download_count": 25174658, "project": "simplejson" }, { -"download_count": 19443072, -"project": "python-slugify" +"download_count": 25159380, +"project": "sagemaker" }, { -"download_count": 19442800, -"project": "pytest-xdist" +"download_count": 25105478, +"project": "tb-nightly" }, { -"download_count": 19235546, -"project": "imbalanced-learn" +"download_count": 25064974, +"project": "terminado" }, { -"download_count": 19229678, -"project": "execnet" +"download_count": 24984511, +"project": "semver" }, { -"download_count": 19167815, -"project": "opentelemetry-proto" +"download_count": 24895341, +"project": "inflection" }, { -"download_count": 19109391, -"project": "rfc3986" +"download_count": 24872769, +"project": "progressbar2" }, { -"download_count": 19081389, -"project": "h5py" +"download_count": 24708685, +"project": "flask-wtf" }, { -"download_count": 19057968, -"project": "graphql-core" +"download_count": 24693723, +"project": "structlog" }, { -"download_count": 19055831, -"project": "google-cloud-bigquery-storage" +"download_count": 24543848, +"project": "grpcio-health-checking" }, { -"download_count": 19020594, -"project": "selenium" +"download_count": 24478244, +"project": "altair" }, { -"download_count": 19012617, -"project": "azure-mgmt-core" +"download_count": 24409614, +"project": "langchain" }, { -"download_count": 18957236, -"project": "async-lru" +"download_count": 24264274, +"project": "google-cloud-appengine-logging" }, { -"download_count": 18848242, -"project": "tiktoken" +"download_count": 24006235, +"project": "notebook-shim" }, { -"download_count": 18831201, -"project": "jupyter-server-terminals" +"download_count": 23862225, +"project": "async-lru" }, { -"download_count": 18722904, -"project": "langchain-core" +"download_count": 23846869, +"project": "fqdn" }, { -"download_count": 18690962, -"project": "pywavelets" +"download_count": 23801334, +"project": "python-utils" }, { -"download_count": 18459418, -"project": "responses" +"download_count": 23669841, +"project": "uri-template" }, { -"download_count": 18451084, -"project": "gym-notices" +"download_count": 23627134, +"project": "isoduration" }, { -"download_count": 18418313, -"project": "lazy-object-proxy" +"download_count": 23591462, +"project": "tensorboard" }, { -"download_count": 18407083, -"project": "antlr4-python3-runtime" +"download_count": 23460504, +"project": "pandas-gbq" }, { -"download_count": 18394024, -"project": "dataclasses-json" +"download_count": 23445196, +"project": "rfc3986-validator" }, { -"download_count": 18272694, -"project": "oauth2client" +"download_count": 23422043, +"project": "graphql-core" }, { -"download_count": 18133103, -"project": "structlog" +"download_count": 23336494, +"project": "google-cloud-resource-manager" }, { -"download_count": 18127476, -"project": "dataclasses" +"download_count": 23102449, +"project": "jupyter-events" }, { -"download_count": 18035422, -"project": "hvac" +"download_count": 23048813, +"project": "azure-storage-file-datalake" }, { -"download_count": 18014586, -"project": "colorlog" +"download_count": 22930084, +"project": "databricks-sql-connector" }, { -"download_count": 17956754, -"project": "safetensors" +"download_count": 22899602, +"project": "watchfiles" }, { -"download_count": 17953824, -"project": "jupyter-lsp" +"download_count": 22686197, +"project": "nltk" }, { -"download_count": 17716681, -"project": "hypothesis" +"download_count": 22602557, +"project": "backports-tarfile" }, { -"download_count": 17708808, -"project": "prettytable" +"download_count": 22524321, +"project": "python-daemon" }, { -"download_count": 17564579, -"project": "pydata-google-auth" +"download_count": 22428258, +"project": "trio" }, { -"download_count": 17549136, -"project": "gremlinpython" +"download_count": 22285555, +"project": "pathos" }, { -"download_count": 17548375, -"project": "tensorflow" +"download_count": 22225689, +"project": "h5py" }, { -"download_count": 17415479, -"project": "semantic-version" +"download_count": 22224492, +"project": "tiktoken" }, { -"download_count": 17340777, -"project": "faker" +"download_count": 22221783, +"project": "jupyter-server-terminals" }, { -"download_count": 17022499, -"project": "snowballstemmer" +"download_count": 22071800, +"project": "asynctest" }, { -"download_count": 16976652, -"project": "seaborn" +"download_count": 22032380, +"project": "ujson" }, { -"download_count": 16958259, -"project": "opentelemetry-exporter-otlp-proto-common" +"download_count": 21984870, +"project": "google-cloud-logging" }, { -"download_count": 16874373, -"project": "flatbuffers" +"download_count": 21964747, +"project": "click-man" }, { -"download_count": 16772032, -"project": "pydantic-settings" +"download_count": 21911676, +"project": "jiter" }, { -"download_count": 16711371, -"project": "msrestazure" +"download_count": 21892444, +"project": "pox" }, { -"download_count": 16689230, -"project": "thrift" +"download_count": 21864767, +"project": "sentencepiece" }, { -"download_count": 16687237, -"project": "xxhash" +"download_count": 21837145, +"project": "ppft" }, { -"download_count": 16636260, -"project": "gast" +"download_count": 21695896, +"project": "prettytable" }, { -"download_count": 16621422, -"project": "great-expectations" +"download_count": 21450498, +"project": "jupyter-lsp" }, { -"download_count": 16589717, -"project": "databricks-sdk" +"download_count": 21336984, +"project": "gcsfs" }, { -"download_count": 16504947, -"project": "monotonic" +"download_count": 21303111, +"project": "pyright" }, { -"download_count": 16199784, -"project": "entrypoints" +"download_count": 21303015, +"project": "flatbuffers" }, { -"download_count": 16181825, -"project": "numba" +"download_count": 21183420, +"project": "coloredlogs" }, { -"download_count": 16156078, -"project": "pyroaring" +"download_count": 21128473, +"project": "hvac" }, { -"download_count": 16132607, -"project": "durationpy" +"download_count": 20989812, +"project": "freezegun" }, { -"download_count": 16118747, -"project": "wsproto" +"download_count": 20988627, +"project": "adal" }, { -"download_count": 16045891, -"project": "datasets" +"download_count": 20826079, +"project": "types-pyyaml" }, { -"download_count": 16006050, -"project": "google-cloud-audit-log" +"download_count": 20802907, +"project": "aws-requests-auth" }, { -"download_count": 15948859, -"project": "trio" +"download_count": 20751713, +"project": "outcome" }, { -"download_count": 15900001, -"project": "opentelemetry-exporter-otlp-proto-http" +"download_count": 20739754, +"project": "plotly" }, { -"download_count": 15892342, -"project": "llvmlite" +"download_count": 20717370, +"project": "lockfile" }, { -"download_count": 15886185, -"project": "gcsfs" +"download_count": 20677629, +"project": "linkify-it-py" }, { -"download_count": 15880089, -"project": "time-machine" +"download_count": 20508192, +"project": "durationpy" }, { -"download_count": 15769739, -"project": "inflection" +"download_count": 20432190, +"project": "dbt-core" }, { -"download_count": 15677795, -"project": "plotly" +"download_count": 20350288, +"project": "docstring-parser" }, { -"download_count": 15487230, -"project": "dbt-core" +"download_count": 20341806, +"project": "google-cloud-bigquery-storage" }, { -"download_count": 15454715, -"project": "html5lib" +"download_count": 20225302, +"project": "oauth2client" }, { -"download_count": 15449016, -"project": "docstring-parser" +"download_count": 20214850, +"project": "connexion" }, { -"download_count": 15374251, -"project": "coloredlogs" +"download_count": 20139269, +"project": "faker" }, { -"download_count": 15191127, -"project": "azure-keyvault-secrets" +"download_count": 20136560, +"project": "rich-argparse" }, { -"download_count": 15141506, -"project": "langchain" +"download_count": 20022314, +"project": "confluent-kafka" }, { -"download_count": 15107269, -"project": "email-validator" +"download_count": 19941688, +"project": "imageio" }, { -"download_count": 14931096, -"project": "azure-datalake-store" +"download_count": 19936731, +"project": "safetensors" }, { -"download_count": 14847963, -"project": "statsmodels" +"download_count": 19843272, +"project": "docker-pycreds" }, { -"download_count": 14836544, -"project": "zeep" +"download_count": 19756748, +"project": "tensorflow" }, { -"download_count": 14794068, -"project": "mlflow" +"download_count": 19438875, +"project": "frozendict" }, { -"download_count": 14713367, -"project": "retrying" +"download_count": 19422840, +"project": "smdebug-rulesconfig" }, { -"download_count": 14590117, -"project": "delta-spark" +"download_count": 19320967, +"project": "seaborn" }, { -"download_count": 14576104, -"project": "pymssql" +"download_count": 19299191, +"project": "numba" }, { -"download_count": 14568924, -"project": "google-cloud-dataproc" +"download_count": 19290043, +"project": "opentelemetry-instrumentation" }, { -"download_count": 14548123, -"project": "outcome" +"download_count": 19252049, +"project": "uv" }, { -"download_count": 14529467, -"project": "backports-tarfile" +"download_count": 19209460, +"project": "readme-renderer" }, { -"download_count": 14474169, -"project": "lockfile" +"download_count": 19206335, +"project": "tblib" }, { -"download_count": 14442271, -"project": "apache-airflow-providers-ssh" +"download_count": 19186458, +"project": "parameterized" }, { -"download_count": 14409422, -"project": "cached-property" +"download_count": 19131959, +"project": "wsproto" }, { -"download_count": 14395430, -"project": "ruff" +"download_count": 19122104, +"project": "wandb" }, { -"download_count": 14390197, -"project": "azure-mgmt-resource" +"download_count": 19029972, +"project": "dataclasses" }, { -"download_count": 14339630, -"project": "pickleshare" +"download_count": 18975780, +"project": "twine" }, { -"download_count": 14276236, -"project": "tblib" +"download_count": 18904754, +"project": "nose" }, { -"download_count": 14260945, -"project": "kafka-python" +"download_count": 18765842, +"project": "deepdiff" }, { -"download_count": 14241632, -"project": "click-plugins" +"download_count": 18756658, +"project": "gremlinpython" }, { -"download_count": 14173709, -"project": "alabaster" +"download_count": 18681898, +"project": "entrypoints" }, { -"download_count": 14147195, -"project": "confluent-kafka" +"download_count": 18658531, +"project": "llvmlite" }, { -"download_count": 14099064, -"project": "deprecation" +"download_count": 18642232, +"project": "langchain-community" }, { -"download_count": 14008670, -"project": "imagesize" +"download_count": 18576446, +"project": "fastavro" }, { -"download_count": 13990878, -"project": "apache-airflow-providers-snowflake" +"download_count": 18520670, +"project": "google-cloud-dataproc" }, { -"download_count": 13928419, -"project": "google-cloud-kms" +"download_count": 18493362, +"project": "semantic-version" }, { -"download_count": 13865234, -"project": "backcall" +"download_count": 18480053, +"project": "time-machine" }, { -"download_count": 13846512, -"project": "opentelemetry-exporter-otlp-proto-grpc" +"download_count": 18419265, +"project": "monotonic" }, { -"download_count": 13842694, -"project": "readme-renderer" +"download_count": 18394846, +"project": "mlflow" }, { -"download_count": 13821081, -"project": "deepdiff" +"download_count": 18354260, +"project": "databricks-sdk" }, { -"download_count": 13819120, -"project": "libcst" +"download_count": 18288127, +"project": "xxhash" }, { -"download_count": 13810575, -"project": "apache-airflow-providers-google" +"download_count": 18231845, +"project": "universal-pathlib" }, { -"download_count": 13799510, -"project": "pybind11" +"download_count": 18196017, +"project": "marshmallow-oneofschema" }, { -"download_count": 13750547, -"project": "python-multipart" +"download_count": 18188577, +"project": "nh3" }, { -"download_count": 13688077, -"project": "argparse" +"download_count": 18128668, +"project": "deprecation" }, { -"download_count": 13683898, -"project": "looker-sdk" +"download_count": 18119923, +"project": "pydeequ" }, { -"download_count": 13670736, -"project": "sphinxcontrib-serializinghtml" +"download_count": 18100572, +"project": "gast" }, { -"download_count": 13646376, -"project": "mlflow-skinny" +"download_count": 18089081, +"project": "graphviz" }, { -"download_count": 13645512, -"project": "uvloop" +"download_count": 18019353, +"project": "requests-mock" }, { -"download_count": 13638682, -"project": "jiter" +"download_count": 17988049, +"project": "great-expectations" }, { -"download_count": 13628333, -"project": "opencv-python" +"download_count": 17975978, +"project": "pydata-google-auth" }, { -"download_count": 13569828, -"project": "patsy" +"download_count": 17862962, +"project": "trio-websocket" }, { -"download_count": 13566871, -"project": "google-cloud-monitoring" +"download_count": 17703587, +"project": "cached-property" }, { -"download_count": 13432519, -"project": "sphinxcontrib-htmlhelp" +"download_count": 17678892, +"project": "zeep" }, { -"download_count": 13421336, -"project": "google-cloud-container" +"download_count": 17671922, +"project": "editables" +}, +{ +"download_count": 17641030, +"project": "apache-airflow-providers-cncf-kubernetes" }, { -"download_count": 13411191, +"download_count": 17596893, "project": "psycopg2" }, { -"download_count": 13401043, -"project": "httptools" +"download_count": 17543412, +"project": "retrying" }, { -"download_count": 13400934, -"project": "sphinxcontrib-qthelp" +"download_count": 17516437, +"project": "azure-keyvault-secrets" }, { -"download_count": 13399966, -"project": "sphinxcontrib-devhelp" +"download_count": 17513907, +"project": "flask-sqlalchemy" }, { -"download_count": 13397891, -"project": "sphinxcontrib-applehelp" +"download_count": 17385479, +"project": "html5lib" }, { -"download_count": 13379689, -"project": "google-cloud-vision" +"download_count": 17380613, +"project": "flask-appbuilder" }, { -"download_count": 13376096, -"project": "spacy" +"download_count": 17347934, +"project": "datasets" }, { -"download_count": 13363288, -"project": "databricks-cli" +"download_count": 17248915, +"project": "thrift" }, { -"download_count": 13350307, -"project": "ujson" +"download_count": 17207176, +"project": "docopt" }, { -"download_count": 13205504, -"project": "aniso8601" +"download_count": 17172043, +"project": "apispec" }, { -"download_count": 13203971, -"project": "azure-cli" +"download_count": 17168401, +"project": "gevent" }, { -"download_count": 13167760, -"project": "google-cloud-spanner" +"download_count": 17100960, +"project": "imbalanced-learn" }, { -"download_count": 13109090, -"project": "frozendict" +"download_count": 17084175, +"project": "google-cloud-audit-log" }, { -"download_count": 13063358, -"project": "nh3" +"download_count": 17005524, +"project": "flask-session" }, { -"download_count": 13058409, -"project": "google-cloud-dlp" +"download_count": 16772706, +"project": "azure-mgmt-core" }, { -"download_count": 13056996, -"project": "azure-storage-common" +"download_count": 16754215, +"project": "click-plugins" }, { -"download_count": 13023753, -"project": "sphinxcontrib-jsmath" +"download_count": 16640139, +"project": "flask-login" }, { -"download_count": 12991152, -"project": "google-cloud-bigquery-datatransfer" +"download_count": 16618290, +"project": "zope-event" }, { -"download_count": 12986043, -"project": "azure-nspkg" +"download_count": 16609451, +"project": "pyproject-api" }, { -"download_count": 12941006, -"project": "google-cloud-tasks" +"download_count": 16499689, +"project": "sshtunnel" }, { -"download_count": 12938936, -"project": "triton" +"download_count": 16402184, +"project": "zstandard" }, { -"download_count": 12932046, -"project": "apache-airflow-providers-cncf-kubernetes" +"download_count": 16394263, +"project": "statsmodels" }, { -"download_count": 12895151, -"project": "apache-airflow-providers-databricks" +"download_count": 16352751, +"project": "amqp" }, { -"download_count": 12847282, +"download_count": 16265298, "project": "torchvision" }, { -"download_count": 12808590, -"project": "opentelemetry-instrumentation" +"download_count": 16259000, +"project": "pymssql" }, { -"download_count": 12806360, -"project": "tensorboard-data-server" +"download_count": 16170991, +"project": "looker-sdk" }, { -"download_count": 12797856, -"project": "pytest-metadata" +"download_count": 16099877, +"project": "antlr4-python3-runtime" }, { -"download_count": 12793664, -"project": "trio-websocket" +"download_count": 16049035, +"project": "nvidia-nccl-cu12" }, { -"download_count": 12787499, -"project": "keras" +"download_count": 16016185, +"project": "authlib" }, { -"download_count": 12785016, -"project": "google-ads" +"download_count": 15869113, +"project": "pickleshare" }, { -"download_count": 12696457, -"project": "pipenv" +"download_count": 15824684, +"project": "google-re2" }, { -"download_count": 12665239, -"project": "hatchling" +"download_count": 15638579, +"project": "google-cloud-monitoring" }, { -"download_count": 12662554, -"project": "tensorflow-estimator" +"download_count": 15601385, +"project": "google-cloud-kms" }, { -"download_count": 12656333, -"project": "twine" +"download_count": 15498724, +"project": "opentelemetry-util-http" }, { -"download_count": 12638696, -"project": "google-cloud-datacatalog" +"download_count": 15494892, +"project": "nodejs-wheel-binaries" }, { -"download_count": 12637525, -"project": "nvidia-nccl-cu12" +"download_count": 15493274, +"project": "kafka-python" }, { -"download_count": 12614771, -"project": "azure-mgmt-storage" +"download_count": 15437867, +"project": "triton" }, { -"download_count": 12605377, -"project": "unidecode" +"download_count": 15426353, +"project": "kombu" }, { -"download_count": 12560633, -"project": "docopt" +"download_count": 15422217, +"project": "delta-spark" }, { -"download_count": 12496700, -"project": "apache-airflow-providers-mysql" +"download_count": 15403927, +"project": "unidecode" }, { -"download_count": 12472050, -"project": "invoke" +"download_count": 15401390, +"project": "libcst" }, { -"download_count": 12424416, -"project": "applicationinsights" +"download_count": 15337373, +"project": "google-cloud-vision" }, { -"download_count": 12413575, -"project": "azure-keyvault-keys" +"download_count": 15320827, +"project": "wtforms" }, { -"download_count": 12379331, -"project": "pytest-asyncio" +"download_count": 15302202, +"project": "google-cloud-container" }, { -"download_count": 12342424, -"project": "google-cloud-bigtable" +"download_count": 15299604, +"project": "backcall" }, { -"download_count": 12275337, -"project": "pyproject-api" +"download_count": 15297381, +"project": "dask" }, { -"download_count": 12255954, -"project": "azure-cosmos" +"download_count": 15277684, +"project": "pybind11" }, { -"download_count": 12135683, -"project": "uv" +"download_count": 15129398, +"project": "vine" }, { -"download_count": 12059821, -"project": "opt-einsum" +"download_count": 15095850, +"project": "google-cloud-spanner" }, { -"download_count": 12033954, -"project": "google-cloud-build" +"download_count": 15094765, +"project": "celery" }, { -"download_count": 12020953, -"project": "backports-zoneinfo" +"download_count": 15091000, +"project": "ecdsa" }, { -"download_count": 11960370, -"project": "simple-salesforce" +"download_count": 15086801, +"project": "patsy" }, { -"download_count": 11942657, -"project": "tldextract" +"download_count": 15013673, +"project": "argparse" }, { -"download_count": 11911042, -"project": "thinc" +"download_count": 14993584, +"project": "opencv-python" }, { -"download_count": 11887038, -"project": "azure-graphrbac" +"download_count": 14835439, +"project": "sqlalchemy-utils" }, { -"download_count": 11877583, -"project": "azure-keyvault" +"download_count": 14786223, +"project": "google-cloud-bigquery-datatransfer" }, { -"download_count": 11861557, -"project": "google-cloud-workflows" +"download_count": 14729727, +"project": "humanize" }, { -"download_count": 11833963, -"project": "makefun" +"download_count": 14698218, +"project": "google-cloud-tasks" }, { -"download_count": 11817221, -"project": "google-cloud-redis" +"download_count": 14690649, +"project": "google-cloud-datacatalog" }, { -"download_count": 11796747, -"project": "google-cloud-dataplex" +"download_count": 14615459, +"project": "google-cloud-dlp" }, { -"download_count": 11736457, -"project": "fastavro" +"download_count": 14550883, +"project": "makefun" }, { -"download_count": 11684910, -"project": "graphviz" +"download_count": 14547574, +"project": "moto" }, { -"download_count": 11684539, -"project": "google-cloud-automl" +"download_count": 14546712, +"project": "simple-salesforce" }, { -"download_count": 11646356, -"project": "google-cloud-language" +"download_count": 14506459, +"project": "tensorboard-data-server" }, { -"download_count": 11627856, -"project": "watchtower" +"download_count": 14401254, +"project": "pip-tools" }, { -"download_count": 11606015, -"project": "google-cloud-os-login" +"download_count": 14387813, +"project": "keras" }, { -"download_count": 11575990, -"project": "google-cloud-firestore" +"download_count": 14386846, +"project": "cachelib" }, { -"download_count": 11548946, -"project": "google-cloud-videointelligence" +"download_count": 14376580, +"project": "billiard" }, { -"download_count": 11546125, -"project": "freezegun" +"download_count": 14334629, +"project": "mlflow-skinny" }, { -"download_count": 11481249, -"project": "gsutil" +"download_count": 14270525, +"project": "mypy-boto3-s3" }, { -"download_count": 11462475, -"project": "google-cloud-memcache" +"download_count": 14168514, +"project": "yapf" }, { -"download_count": 11439680, -"project": "pycrypto" +"download_count": 14165126, +"project": "nvidia-cublas-cu12" }, { -"download_count": 11390351, -"project": "jupyter" +"download_count": 14156295, +"project": "google-ads" }, { -"download_count": 11387689, -"project": "graphene" +"download_count": 14141313, +"project": "google-cloud-bigtable" }, { -"download_count": 11377254, -"project": "azure-mgmt-containerregistry" +"download_count": 14117612, +"project": "apache-airflow-providers-snowflake" }, { -"download_count": 11370871, -"project": "blis" +"download_count": 14068645, +"project": "azure-datalake-store" }, { -"download_count": 11365551, -"project": "astunparse" +"download_count": 14012816, +"project": "watchtower" }, { -"download_count": 11358183, -"project": "datetime" +"download_count": 14009934, +"project": "pyserial" }, { -"download_count": 11351923, -"project": "funcsigs" +"download_count": 13973531, +"project": "spacy" }, { -"download_count": 11338231, -"project": "gevent" +"download_count": 13919363, +"project": "configupdater" }, { -"download_count": 11328458, -"project": "jupyter-console" +"download_count": 13869600, +"project": "flask-cors" }, { -"download_count": 11308825, -"project": "gspread" +"download_count": 13842929, +"project": "pytimeparse" }, { -"download_count": 11259157, -"project": "graphql-relay" +"download_count": 13830020, +"project": "boto3-stubs" }, { -"download_count": 11232872, -"project": "authlib" +"download_count": 13817626, +"project": "ijson" }, { -"download_count": 11155568, -"project": "murmurhash" +"download_count": 13803916, +"project": "nvidia-cusparse-cu12" }, { -"download_count": 11141774, -"project": "watchfiles" +"download_count": 13737010, +"project": "google-cloud-build" }, { -"download_count": 11098410, -"project": "nose" +"download_count": 13730791, +"project": "pyroaring" }, { -"download_count": 11087925, -"project": "pytimeparse" +"download_count": 13713908, +"project": "nvidia-nvjitlink-cu12" }, { -"download_count": 11078690, -"project": "zope-event" +"download_count": 13662086, +"project": "google-cloud-workflows" }, { -"download_count": 11076543, -"project": "google-cloud-orchestration-airflow" +"download_count": 13632336, +"project": "bitarray" }, { -"download_count": 11073059, -"project": "opentelemetry-exporter-otlp" +"download_count": 13625654, +"project": "langsmith" }, { -"download_count": 11066185, -"project": "parameterized" +"download_count": 13605224, +"project": "google-cloud-redis" }, { -"download_count": 11042102, -"project": "preshed" +"download_count": 13587491, +"project": "opt-einsum" }, { -"download_count": 10990252, -"project": "google-cloud-dataproc-metastore" +"download_count": 13568748, +"project": "mashumaro" }, { -"download_count": 10971847, -"project": "nvidia-cudnn-cu12" +"download_count": 13565981, +"project": "lark" }, { -"download_count": 10962623, -"project": "google-cloud-translate" +"download_count": 13564149, +"project": "astunparse" }, { -"download_count": 10941235, -"project": "cymem" +"download_count": 13563564, +"project": "nvidia-cuda-runtime-cu12" }, { -"download_count": 10931373, -"project": "azure-mgmt-keyvault" +"download_count": 13551903, +"project": "google-cloud-firestore" }, { -"download_count": 10907866, -"project": "sqlalchemy-bigquery" +"download_count": 13532728, +"project": "nvidia-cuda-cupti-cu12" }, { -"download_count": 10884840, -"project": "pywin32" +"download_count": 13522167, +"project": "nvidia-cufft-cu12" }, { -"download_count": 10878155, -"project": "omegaconf" +"download_count": 13521018, +"project": "jupyter-console" }, { -"download_count": 10844589, -"project": "catalogue" +"download_count": 13505183, +"project": "google-cloud-automl" }, { -"download_count": 10835738, -"project": "azure-mgmt-compute" +"download_count": 13498448, +"project": "google-cloud-dataplex" }, { -"download_count": 10805505, -"project": "analytics-python" +"download_count": 13491464, +"project": "datetime" }, { -"download_count": 10788708, -"project": "google-cloud-dataform" +"download_count": 13446847, +"project": "funcsigs" }, { -"download_count": 10787666, -"project": "srsly" +"download_count": 13437660, +"project": "hpack" }, { -"download_count": 10727483, -"project": "azure-mgmt-cosmosdb" +"download_count": 13434488, +"project": "nvidia-cudnn-cu12" }, { -"download_count": 10715540, -"project": "sh" +"download_count": 13430987, +"project": "tensorflow-estimator" }, { -"download_count": 10686025, -"project": "wasabi" +"download_count": 13426069, +"project": "h2" }, { -"download_count": 10676719, -"project": "azure-mgmt-authorization" +"download_count": 13357637, +"project": "nvidia-cuda-nvrtc-cu12" }, { -"download_count": 10671879, -"project": "pkce" +"download_count": 13336661, +"project": "apache-airflow-providers-ssh" }, { -"download_count": 10627161, -"project": "azure-mgmt-network" +"download_count": 13310420, +"project": "databricks-cli" }, { -"download_count": 10620783, -"project": "grpcio-gcp" +"download_count": 13280502, +"project": "azure-mgmt-resource" }, { -"download_count": 10594084, -"project": "tensorflow-serving-api" +"download_count": 13279873, +"project": "nvidia-curand-cu12" }, { -"download_count": 10563314, -"project": "nvidia-cublas-cu12" +"download_count": 13261182, +"project": "hyperframe" }, { -"download_count": 10532876, -"project": "brotli" +"download_count": 13259954, +"project": "nvidia-cusolver-cu12" }, { -"download_count": 10531698, -"project": "ecdsa" +"download_count": 13251349, +"project": "pytest-metadata" }, { -"download_count": 10526893, -"project": "google-cloud-speech" +"download_count": 13250410, +"project": "google-cloud-os-login" }, { -"download_count": 10501134, -"project": "ratelimit" +"download_count": 13231420, +"project": "apache-airflow-providers-google" }, { -"download_count": 10464606, -"project": "evergreen-py" +"download_count": 13213335, +"project": "jupyter" }, { -"download_count": 10441760, -"project": "langsmith" +"download_count": 13210840, +"project": "google-cloud-videointelligence" }, { -"download_count": 10438024, -"project": "agate" +"download_count": 13180083, +"project": "google-cloud-language" }, { -"download_count": 10426040, -"project": "configparser" +"download_count": 13175780, +"project": "pipenv" }, { -"download_count": 10418544, -"project": "jsondiff" +"download_count": 13172365, +"project": "brotli" }, { -"download_count": 10408872, -"project": "azure-mgmt-msi" +"download_count": 13132856, +"project": "types-pytz" }, { -"download_count": 10406697, -"project": "google-cloud-texttospeech" +"download_count": 13120748, +"project": "sqlalchemy-jsonfield" }, { -"download_count": 10368240, -"project": "langcodes" +"download_count": 13101142, +"project": "commonmark" }, { -"download_count": 10360246, -"project": "nvidia-cuda-runtime-cu12" +"download_count": 13081191, +"project": "nvidia-nvtx-cu12" }, { -"download_count": 10348066, -"project": "nvidia-cuda-cupti-cu12" +"download_count": 13043815, +"project": "graphene" }, { -"download_count": 10344454, -"project": "nvidia-cuda-nvrtc-cu12" +"download_count": 12954381, +"project": "google-cloud-memcache" }, { -"download_count": 10322973, -"project": "nvidia-cusparse-cu12" +"download_count": 12886381, +"project": "mypy-boto3-rds" }, { -"download_count": 10322340, -"project": "nvidia-cufft-cu12" +"download_count": 12773536, +"project": "botocore-stubs" }, { -"download_count": 10319917, -"project": "flask-appbuilder" +"download_count": 12771629, +"project": "google-cloud-translate" }, { -"download_count": 10317934, -"project": "dask" +"download_count": 12724775, +"project": "narwhals" }, { -"download_count": 10316575, -"project": "nvidia-cusolver-cu12" +"download_count": 12653167, +"project": "google-cloud-dataproc-metastore" }, { -"download_count": 10301526, -"project": "nvidia-nvjitlink-cu12" +"download_count": 12650212, +"project": "click-repl" }, { -"download_count": 10285167, -"project": "ijson" +"download_count": 12643435, +"project": "sqlalchemy-bigquery" }, { -"download_count": 10280147, -"project": "nvidia-curand-cu12" +"download_count": 12625875, +"project": "google-cloud-orchestration-airflow" }, { -"download_count": 10274935, -"project": "langchain-community" +"download_count": 12625290, +"project": "click-didyoumean" }, { -"download_count": 10260713, -"project": "pysftp" +"download_count": 12583254, +"project": "analytics-python" }, { -"download_count": 10242289, -"project": "gcloud-aio-storage" +"download_count": 12546944, +"project": "apache-airflow-providers-databricks" }, { -"download_count": 10237543, -"project": "pypdf2" +"download_count": 12537474, +"project": "graphql-relay" }, { -"download_count": 10172115, -"project": "nvidia-nvtx-cu12" +"download_count": 12505871, +"project": "agate" }, { -"download_count": 10164604, -"project": "jira" +"download_count": 12459180, +"project": "types-protobuf" }, { -"download_count": 10160759, -"project": "db-contrib-tool" +"download_count": 12419591, +"project": "google-cloud-compute" }, { -"download_count": 10159722, -"project": "gcloud-aio-auth" +"download_count": 12325422, +"project": "omegaconf" }, { -"download_count": 10109014, -"project": "pathlib2" +"download_count": 12317657, +"project": "tldextract" }, { -"download_count": 10087664, -"project": "flask-cors" +"download_count": 12309039, +"project": "thinc" }, { -"download_count": 10074296, -"project": "bitarray" +"download_count": 12308273, +"project": "gspread" }, { -"download_count": 10037747, -"project": "fabric" +"download_count": 12245826, +"project": "google-cloud-speech" }, { -"download_count": 10021405, -"project": "opentelemetry-util-http" +"download_count": 12178355, +"project": "gcloud-aio-storage" }, { -"download_count": 10017271, -"project": "scp" +"download_count": 12124737, +"project": "msrestazure" }, { -"download_count": 10012820, -"project": "azure-mgmt-recoveryservices" +"download_count": 12103832, +"project": "gcloud-aio-auth" }, { -"download_count": 10010628, -"project": "ninja" +"download_count": 12067712, +"project": "blis" }, { -"download_count": 10005497, -"project": "python-gnupg" +"download_count": 12061108, +"project": "apache-beam" }, { -"download_count": 10004505, -"project": "azure-mgmt-containerinstance" +"download_count": 12057075, +"project": "google-cloud-texttospeech" }, { -"download_count": 9982779, -"project": "spacy-loggers" +"download_count": 12018418, +"project": "pywin32" }, { -"download_count": 9970776, -"project": "azure-mgmt-monitor" +"download_count": 11974182, +"project": "google-cloud-dataform" }, { -"download_count": 9959577, -"project": "spacy-legacy" +"download_count": 11955514, +"project": "configparser" }, { -"download_count": 9933740, -"project": "gcloud-aio-bigquery" +"download_count": 11948923, +"project": "apache-airflow-providers-mysql" }, { -"download_count": 9896633, -"project": "azure-data-tables" +"download_count": 11941649, +"project": "uc-micro-py" }, { -"download_count": 9884723, -"project": "kombu" +"download_count": 11914067, +"project": "djangorestframework" }, { -"download_count": 9881154, -"project": "types-pyyaml" +"download_count": 11898344, +"project": "jira" }, { -"download_count": 9832358, -"project": "azure-mgmt-signalr" +"download_count": 11883859, +"project": "scikit-image" }, { -"download_count": 9808606, -"project": "azure-batch" +"download_count": 11872873, +"project": "types-awscrt" }, { -"download_count": 9800090, -"project": "azure-mgmt-sql" +"download_count": 11827006, +"project": "levenshtein" }, { -"download_count": 9779879, -"project": "djangorestframework" +"download_count": 11811624, +"project": "astor" }, { -"download_count": 9770372, -"project": "azure-mgmt-web" +"download_count": 11796909, +"project": "python-jose" }, { -"download_count": 9761604, -"project": "azure-mgmt-servicebus" +"download_count": 11757257, +"project": "ddtrace" }, { -"download_count": 9761297, -"project": "azure-mgmt-redis" +"download_count": 11754748, +"project": "fasteners" }, { -"download_count": 9710867, -"project": "google-cloud-compute" +"download_count": 11674778, +"project": "jsonpickle" }, { -"download_count": 9699923, -"project": "avro-python3" +"download_count": 11640578, +"project": "catalogue" }, { -"download_count": 9693423, -"project": "awscrt" +"download_count": 11603748, +"project": "preshed" }, { -"download_count": 9675262, -"project": "parsedatetime" +"download_count": 11597799, +"project": "sphinx-rtd-theme" }, { -"download_count": 9627955, -"project": "confection" +"download_count": 11596447, +"project": "types-setuptools" }, { -"download_count": 9626387, -"project": "azure-mgmt-containerservice" +"download_count": 11549928, +"project": "cymem" }, { -"download_count": 9516523, -"project": "azure-mgmt-dns" +"download_count": 11534657, +"project": "pycountry" }, { -"download_count": 9446139, -"project": "mdit-py-plugins" +"download_count": 11525093, +"project": "murmurhash" }, { -"download_count": 9424662, -"project": "celery" +"download_count": 11482001, +"project": "hyperlink" }, { -"download_count": 9413326, -"project": "azure-mgmt-advisor" +"download_count": 11461791, +"project": "astronomer-cosmos" }, { -"download_count": 9410746, -"project": "gym" +"download_count": 11436086, +"project": "gcloud-aio-bigquery" }, { -"download_count": 9401541, -"project": "azure-mgmt-rdbms" +"download_count": 11428807, +"project": "sh" }, { -"download_count": 9393321, -"project": "azure-mgmt-eventhub" +"download_count": 11420532, +"project": "srsly" }, { -"download_count": 9385147, -"project": "hpack" +"download_count": 11401253, +"project": "marshmallow-sqlalchemy" }, { -"download_count": 9366392, -"project": "texttable" +"download_count": 11396773, +"project": "pytest-html" }, { -"download_count": 9315199, -"project": "protobuf3-to-dict" +"download_count": 11387704, +"project": "wasabi" }, { -"download_count": 9297219, -"project": "azure-mgmt-loganalytics" +"download_count": 11368005, +"project": "parsedatetime" }, { -"download_count": 9295021, -"project": "azure-mgmt-batch" +"download_count": 11351119, +"project": "types-s3transfer" }, { -"download_count": 9270799, -"project": "azure-mgmt-cdn" +"download_count": 11258838, +"project": "pkce" }, { -"download_count": 9267807, -"project": "pytest-html" +"download_count": 11200168, +"project": "python-magic" }, { -"download_count": 9243811, -"project": "mashumaro" +"download_count": 11192099, +"project": "stevedore" }, { -"download_count": 9242748, -"project": "libclang" +"download_count": 11174290, +"project": "langcodes" }, { -"download_count": 9241080, -"project": "narwhals" +"download_count": 11150071, +"project": "flask-jwt-extended" }, { -"download_count": 9237595, -"project": "opencensus-context" +"download_count": 11123676, +"project": "mysqlclient" }, { -"download_count": 9230501, -"project": "amqp" +"download_count": 11056080, +"project": "evergreen-py" }, { -"download_count": 9225461, -"project": "azure-mgmt-trafficmanager" +"download_count": 11003879, +"project": "ninja" }, { -"download_count": 9225297, -"project": "azure-mgmt-iothub" +"download_count": 10996482, +"project": "apache-airflow-providers-http" }, { -"download_count": 9222695, -"project": "azure-mgmt-search" +"download_count": 10917611, +"project": "avro-python3" }, { -"download_count": 9221684, -"project": "azure-mgmt-marketplaceordering" +"download_count": 10907445, +"project": "python-gitlab" }, { -"download_count": 9219714, -"project": "opencensus" +"download_count": 10890008, +"project": "pytest-timeout" }, { -"download_count": 9218123, -"project": "azure-mgmt-managementgroups" +"download_count": 10862255, +"project": "opentelemetry-instrumentation-requests" }, { -"download_count": 9217542, -"project": "zstandard" +"download_count": 10847292, +"project": "pypdf2" }, { -"download_count": 9217322, -"project": "azure-mgmt-recoveryservicesbackup" +"download_count": 10836815, +"project": "texttable" }, { -"download_count": 9207730, -"project": "jsonpickle" +"download_count": 10799242, +"project": "partd" }, { -"download_count": 9193594, -"project": "azure-mgmt-devtestlabs" +"download_count": 10667799, +"project": "backports-zoneinfo" }, { -"download_count": 9193546, -"project": "humanize" +"download_count": 10646860, +"project": "validators" }, { -"download_count": 9188856, -"project": "yapf" +"download_count": 10630513, +"project": "lightgbm" }, { -"download_count": 9171122, -"project": "azure-mgmt-eventgrid" +"download_count": 10629441, +"project": "flask-limiter" }, { -"download_count": 9168188, -"project": "billiard" +"download_count": 10582948, +"project": "pytest-rerunfailures" }, { -"download_count": 9165915, -"project": "azure-mgmt-cognitiveservices" +"download_count": 10569832, +"project": "libclang" }, { -"download_count": 9124573, -"project": "azure-mgmt-applicationinsights" +"download_count": 10549036, +"project": "locket" }, { -"download_count": 9117283, -"project": "levenshtein" +"download_count": 10531066, +"project": "dacite" }, { -"download_count": 9110507, -"project": "mysqlclient" +"download_count": 10527151, +"project": "limits" }, { -"download_count": 9097404, -"project": "h2" +"download_count": 10524714, +"project": "spacy-legacy" }, { -"download_count": 9084198, -"project": "hyperframe" +"download_count": 10520863, +"project": "apscheduler" }, { -"download_count": 9076808, -"project": "azure-mgmt-servicefabric" +"download_count": 10498058, +"project": "cron-descriptor" }, { -"download_count": 9073522, -"project": "apispec" +"download_count": 10436878, +"project": "psycopg" }, { -"download_count": 9059626, -"project": "vine" +"download_count": 10432027, +"project": "spacy-loggers" }, { -"download_count": 9052528, -"project": "azure-mgmt-billing" +"download_count": 10415572, +"project": "grpcio-gcp" }, { -"download_count": 9050065, -"project": "azure-mgmt-media" +"download_count": 10388194, +"project": "python-gnupg" }, { -"download_count": 9042580, -"project": "azure-mgmt-policyinsights" +"download_count": 10384087, +"project": "pysftp" }, { -"download_count": 9041390, -"project": "azure-mgmt-iothubprovisioningservices" +"download_count": 10356514, +"project": "iso8601" }, { -"download_count": 9035894, -"project": "azure-appconfiguration" +"download_count": 10350102, +"project": "opencensus" }, { -"download_count": 9035704, -"project": "azure-mgmt-batchai" +"download_count": 10337942, +"project": "elastic-transport" }, { -"download_count": 9015323, -"project": "azure-mgmt-datamigration" +"download_count": 10328164, +"project": "ml-dtypes" }, { -"download_count": 9012774, -"project": "azure-mgmt-nspkg" +"download_count": 10326121, +"project": "aniso8601" }, { -"download_count": 9012335, -"project": "azure-mgmt-iotcentral" +"download_count": 10295389, +"project": "incremental" }, { -"download_count": 9011875, -"project": "azure-mgmt-maps" +"download_count": 10271653, +"project": "cramjam" }, { -"download_count": 8978016, -"project": "azure-storage-queue" +"download_count": 10264745, +"project": "pycrypto" }, { -"download_count": 8960520, -"project": "tensorflow-io-gcs-filesystem" +"download_count": 10243263, +"project": "langchain-text-splitters" }, { -"download_count": 8949280, -"project": "astor" +"download_count": 10233774, +"project": "db-contrib-tool" }, { -"download_count": 8919174, -"project": "azure-cli-core" +"download_count": 10217536, +"project": "mergedeep" }, { -"download_count": 8902241, -"project": "pycountry" +"download_count": 10198601, +"project": "gsutil" }, { -"download_count": 8882808, -"project": "lark" +"download_count": 10146979, +"project": "bytecode" }, { -"download_count": 8872519, -"project": "mypy-boto3-s3" +"download_count": 10145438, +"project": "confection" }, { -"download_count": 8853687, -"project": "pyproj" +"download_count": 10142685, +"project": "envier" }, { -"download_count": 8844489, -"project": "pyathena" +"download_count": 10099648, +"project": "langchain-google-vertexai" }, { -"download_count": 8843040, -"project": "apache-airflow-providers-http" +"download_count": 10030452, +"project": "polars" }, { -"download_count": 8842805, -"project": "boto3-stubs" +"download_count": 10018088, +"project": "onnxruntime" }, { -"download_count": 8840067, -"project": "parsimonious" +"download_count": 10007629, +"project": "pyathena" }, { -"download_count": 8806717, -"project": "ml-dtypes" +"download_count": 9955963, +"project": "parse" }, { -"download_count": 8795030, -"project": "azure-mgmt-datalake-nspkg" +"download_count": 9954706, +"project": "opencensus-context" }, { -"download_count": 8772653, -"project": "knack" +"download_count": 9951916, +"project": "tensorflow-io-gcs-filesystem" }, { -"download_count": 8745897, -"project": "pyserial" +"download_count": 9840505, +"project": "jpype1" }, { -"download_count": 8695423, -"project": "azure-mgmt-datalake-store" +"download_count": 9831605, +"project": "sendgrid" }, { -"download_count": 8680190, -"project": "office365-rest-python-client" +"download_count": 9830635, +"project": "azure-mgmt-storage" }, { -"download_count": 8559948, -"project": "flask-sqlalchemy" +"download_count": 9826897, +"project": "azure-kusto-data" }, { -"download_count": 8543733, -"project": "python-magic" +"download_count": 9811335, +"project": "asyncpg" }, { -"download_count": 8542475, -"project": "contextlib2" +"download_count": 9771589, +"project": "cfn-lint" }, { -"download_count": 8534062, -"project": "python-daemon" +"download_count": 9719701, +"project": "leather" }, { -"download_count": 8525258, -"project": "moto" +"download_count": 9682479, +"project": "dbt-extractor" }, { -"download_count": 8511848, -"project": "cfn-lint" +"download_count": 9589150, +"project": "parsimonious" }, { -"download_count": 8482183, -"project": "requests-mock" +"download_count": 9584641, +"project": "tensorflow-serving-api" }, { -"download_count": 8452608, -"project": "mypy-boto3-rds" +"download_count": 9583474, +"project": "dateparser" }, { -"download_count": 8444689, -"project": "cytoolz" +"download_count": 9535845, +"project": "azure-storage-queue" }, { -"download_count": 8436971, -"project": "python-gitlab" +"download_count": 9529767, +"project": "ratelimit" }, { -"download_count": 8421389, -"project": "pip-tools" +"download_count": 9527020, +"project": "avro" }, { -"download_count": 8371819, -"project": "typing" +"download_count": 9514171, +"project": "types-urllib3" }, { -"download_count": 8354067, -"project": "opencensus-ext-azure" +"download_count": 9511437, +"project": "fastapi-cli" }, { -"download_count": 8351314, -"project": "grpcio-health-checking" +"download_count": 9461663, +"project": "dbt-common" }, { -"download_count": 8313129, -"project": "lightgbm" +"download_count": 9405939, +"project": "twisted" }, { -"download_count": 8283128, -"project": "cramjam" +"download_count": 9289104, +"project": "cssselect" }, { -"download_count": 8282657, -"project": "boto" +"download_count": 9258673, +"project": "pyproj" }, { -"download_count": 8275071, -"project": "psycopg" +"download_count": 9160170, +"project": "python-http-client" }, { -"download_count": 8259831, -"project": "eth-utils" +"download_count": 9156484, +"project": "cytoolz" }, { -"download_count": 8230005, -"project": "parse" +"download_count": 9130207, +"project": "azure-mgmt-datafactory" }, { -"download_count": 8189628, -"project": "jpype1" +"download_count": 9095787, +"project": "office365-rest-python-client" }, { -"download_count": 8180347, -"project": "leather" +"download_count": 9050050, +"project": "inflect" }, { -"download_count": 8175864, -"project": "eth-hash" +"download_count": 9041949, +"project": "aliyun-python-sdk-core" }, { -"download_count": 8166576, -"project": "click-didyoumean" +"download_count": 9009841, +"project": "dbt-semantic-interfaces" }, { -"download_count": 8154022, -"project": "azure-multiapi-storage" +"download_count": 8996022, +"project": "boto" }, { -"download_count": 8151458, -"project": "tensorflow-text" +"download_count": 8975053, +"project": "yamllint" }, { -"download_count": 8029833, -"project": "python-jose" +"download_count": 8972826, +"project": "azure-servicebus" }, { -"download_count": 8022021, -"project": "dbt-extractor" +"download_count": 8971977, +"project": "constantly" }, { -"download_count": 8017467, -"project": "avro" +"download_count": 8969683, +"project": "automat" }, { -"download_count": 8006201, -"project": "botocore-stubs" +"download_count": 8930195, +"project": "google-cloud-dataflow-client" }, { -"download_count": 7991976, -"project": "click-repl" +"download_count": 8922397, +"project": "clickclick" }, { -"download_count": 7951871, -"project": "javaproperties" +"download_count": 8880163, +"project": "pathlib" }, { -"download_count": 7951447, -"project": "azure-mgmt-datalake-analytics" +"download_count": 8867444, +"project": "kubernetes-asyncio" }, { -"download_count": 7923774, -"project": "stevedore" +"download_count": 8847411, +"project": "flask-babel" }, { -"download_count": 7881115, -"project": "azure-mgmt-reservations" +"download_count": 8775747, +"project": "openapi-spec-validator" }, { -"download_count": 7874389, -"project": "pyspnego" +"download_count": 8771388, +"project": "sphinxcontrib-jquery" }, { -"download_count": 7871617, -"project": "holidays" +"download_count": 8761743, +"project": "invoke" }, { -"download_count": 7847055, -"project": "azure-synapse-artifacts" +"download_count": 8753686, +"project": "contextlib2" }, { -"download_count": 7844774, -"project": "flask-wtf" +"download_count": 8735976, +"project": "py-cpuinfo" }, { -"download_count": 7839824, -"project": "eth-typing" +"download_count": 8718284, +"project": "methodtools" }, { -"download_count": 7809878, -"project": "azure-loganalytics" +"download_count": 8691247, +"project": "pyspnego" }, { -"download_count": 7803480, -"project": "onnxruntime" +"download_count": 8671432, +"project": "typing" }, { -"download_count": 7793690, -"project": "azure-mgmt-consumption" +"download_count": 8666285, +"project": "holidays" }, { -"download_count": 7779790, -"project": "cmake" +"download_count": 8652182, +"project": "accelerate" }, { -"download_count": 7775881, -"project": "azure-mgmt-relay" +"download_count": 8644464, +"project": "azure-cosmos" }, { -"download_count": 7774082, -"project": "python-http-client" +"download_count": 8622213, +"project": "enum34" }, { -"download_count": 7756364, -"project": "azure-cli-telemetry" +"download_count": 8595132, +"project": "waitress" }, { -"download_count": 7737175, -"project": "azure-synapse-spark" +"download_count": 8585830, +"project": "eth-utils" }, { -"download_count": 7641640, -"project": "dateparser" +"download_count": 8584798, +"project": "eth-hash" }, { -"download_count": 7614156, -"project": "azure-mgmt-apimanagement" +"download_count": 8578740, +"project": "apache-airflow-providers-ftp" }, { -"download_count": 7594092, -"project": "resolvelib" +"download_count": 8538045, +"project": "cmake" }, { -"download_count": 7553784, -"project": "opentelemetry-instrumentation-requests" +"download_count": 8517306, +"project": "netaddr" }, { -"download_count": 7551840, -"project": "marisa-trie" +"download_count": 8483460, +"project": "immutabledict" }, { -"download_count": 7524947, -"project": "elastic-transport" +"download_count": 8455128, +"project": "phonenumbers" }, { -"download_count": 7524542, -"project": "azure-mgmt-privatedns" +"download_count": 8450170, +"project": "wirerope" }, { -"download_count": 7513662, -"project": "azure-mgmt-hdinsight" +"download_count": 8428257, +"project": "oracledb" }, { -"download_count": 7484996, -"project": "langchain-text-splitters" +"download_count": 8416386, +"project": "webob" }, { -"download_count": 7443925, -"project": "google-cloud-dataflow-client" +"download_count": 8401677, +"project": "azure-storage-file-share" }, { -"download_count": 7437586, -"project": "azure-mgmt-security" +"download_count": 8352170, +"project": "opencensus-ext-azure" }, { -"download_count": 7429072, -"project": "azure-mgmt-kusto" +"download_count": 8312384, +"project": "opentelemetry-instrumentation-asgi" }, { -"download_count": 7422635, -"project": "azure-mgmt-synapse" +"download_count": 8299738, +"project": "resolvelib" }, { -"download_count": 7406613, -"project": "language-data" +"download_count": 8256359, +"project": "eth-typing" }, { -"download_count": 7365277, -"project": "apscheduler" +"download_count": 8244913, +"project": "aws-xray-sdk" }, { -"download_count": 7362495, -"project": "azure-synapse-accesscontrol" +"download_count": 8237630, +"project": "pypdf" }, { -"download_count": 7360088, -"project": "azure-mgmt-redhatopenshift" +"download_count": 8157099, +"project": "pyee" }, { -"download_count": 7349775, -"project": "dbt-semantic-interfaces" +"download_count": 8128565, +"project": "apache-airflow-providers-sqlite" }, { -"download_count": 7349137, -"project": "azure-keyvault-administration" +"download_count": 8086179, +"project": "mypy-boto3-appflow" }, { -"download_count": 7346991, -"project": "azure-mgmt-sqlvirtualmachine" +"download_count": 8073890, +"project": "protobuf3-to-dict" }, { -"download_count": 7345984, -"project": "magicattr" +"download_count": 8053397, +"project": "pywavelets" }, { -"download_count": 7345291, -"project": "azure-mgmt-appconfiguration" +"download_count": 8032190, +"project": "apache-airflow-providers-fab" }, { -"download_count": 7341500, -"project": "azure-mgmt-netapp" +"download_count": 8030843, +"project": "mmh3" }, { -"download_count": 7329570, -"project": "azure-mgmt-imagebuilder" +"download_count": 8006846, +"project": "bidict" }, { -"download_count": 7322308, -"project": "azure-mgmt-botservice" +"download_count": 8003655, +"project": "jaydebeapi" }, { -"download_count": 7311443, -"project": "azure-mgmt-servicelinker" +"download_count": 7982278, +"project": "pydash" }, { -"download_count": 7310793, -"project": "apache-airflow-providers-fab" +"download_count": 7975013, +"project": "google-cloud-storage-transfer" }, { -"download_count": 7309959, -"project": "azure-mgmt-servicefabricmanagedclusters" +"download_count": 7962737, +"project": "google-cloud-run" }, { -"download_count": 7309662, -"project": "azure-mgmt-databoxedge" +"download_count": 7936363, +"project": "streamlit" }, { -"download_count": 7307554, -"project": "azure-synapse-managedprivateendpoints" +"download_count": 7923620, +"project": "google-cloud-batch" }, { -"download_count": 7302367, -"project": "azure-mgmt-extendedlocation" +"download_count": 7919341, +"project": "opentelemetry-instrumentation-fastapi" }, { -"download_count": 7294778, -"project": "setuptools-rust" +"download_count": 7916212, +"project": "dbt-adapters" }, { -"download_count": 7287659, -"project": "fasteners" +"download_count": 7912171, +"project": "autopep8" }, { -"download_count": 7261369, -"project": "partd" +"download_count": 7892209, +"project": "prison" }, { -"download_count": 7254852, -"project": "types-awscrt" +"download_count": 7881315, +"project": "tableauserverclient" }, { -"download_count": 7244942, -"project": "enum34" +"download_count": 7798139, +"project": "diskcache" }, { -"download_count": 7202778, -"project": "locket" +"download_count": 7792109, +"project": "bracex" }, { -"download_count": 7147260, -"project": "accelerate" +"download_count": 7782365, +"project": "cfn-flip" }, { -"download_count": 7103523, -"project": "tifffile" +"download_count": 7766791, +"project": "duckdb" }, { -"download_count": 7086631, -"project": "inflect" +"download_count": 7762832, +"project": "cloudpathlib" }, { -"download_count": 7065464, -"project": "geopandas" +"download_count": 7742179, +"project": "logbook" }, { -"download_count": 7060435, -"project": "py-cpuinfo" +"download_count": 7709820, +"project": "langchain-openai" }, { -"download_count": 7057614, -"project": "sendgrid" +"download_count": 7626244, +"project": "fuzzywuzzy" }, { -"download_count": 7051242, -"project": "flask-login" +"download_count": 7623204, +"project": "python-docx" }, { -"download_count": 7028826, -"project": "pytest-timeout" +"download_count": 7595448, +"project": "natsort" }, { -"download_count": 7016238, -"project": "eth-abi" +"download_count": 7569137, +"project": "python-levenshtein" }, { -"download_count": 7001666, -"project": "cligj" +"download_count": 7561622, +"project": "tifffile" }, { -"download_count": 6949216, -"project": "mergedeep" +"download_count": 7544077, +"project": "playwright" }, { -"download_count": 6938931, -"project": "python-levenshtein" +"download_count": 7510898, +"project": "aiosqlite" }, { -"download_count": 6933791, -"project": "urllib3-secure-extra" +"download_count": 7463815, +"project": "azure-nspkg" }, { -"download_count": 6901264, -"project": "wtforms" +"download_count": 7444651, +"project": "ipython-genutils" }, { -"download_count": 6858679, -"project": "yamllint" +"download_count": 7412818, +"project": "pytest-django" }, { -"download_count": 6844243, -"project": "fuzzywuzzy" +"download_count": 7410037, +"project": "types-redis" }, { -"download_count": 6832686, -"project": "apache-airflow-providers-ftp" +"download_count": 7389375, +"project": "fire" }, { -"download_count": 6786377, -"project": "azure-storage-file-share" +"download_count": 7380241, +"project": "factory-boy" }, { -"download_count": 6761082, -"project": "dacite" +"download_count": 7356977, +"project": "azure-mgmt-containerregistry" }, { -"download_count": 6734888, -"project": "iso8601" +"download_count": 7343836, +"project": "pydot" }, { -"download_count": 6734272, -"project": "jaydebeapi" +"download_count": 7299696, +"project": "lazy-loader" }, { -"download_count": 6733167, -"project": "fastparquet" +"download_count": 7292105, +"project": "torchmetrics" }, { -"download_count": 6702899, -"project": "validators" +"download_count": 7277722, +"project": "msgspec" }, { -"download_count": 6695635, -"project": "types-s3transfer" +"download_count": 7273280, +"project": "gql" }, { -"download_count": 6663223, -"project": "blessed" +"download_count": 7266960, +"project": "configargparse" }, { -"download_count": 6661482, -"project": "types-pytz" +"download_count": 7241964, +"project": "fastparquet" }, { -"download_count": 6648953, -"project": "ipython-genutils" +"download_count": 7184467, +"project": "psycopg-binary" }, { -"download_count": 6629505, -"project": "bracex" +"download_count": 7169170, +"project": "geopandas" }, { -"download_count": 6614820, -"project": "pathy" +"download_count": 7168614, +"project": "passlib" }, { -"download_count": 6612665, -"project": "apache-beam" +"download_count": 7151519, +"project": "pytorch-lightning" }, { -"download_count": 6555798, -"project": "lazy-loader" +"download_count": 7052873, +"project": "datadog-api-client" }, { -"download_count": 6503298, -"project": "pydash" +"download_count": 6963912, +"project": "azure-storage-common" }, { -"download_count": 6500642, -"project": "sqlalchemy-utils" +"download_count": 6951208, +"project": "marisa-trie" }, { -"download_count": 6495929, -"project": "universal-pathlib" +"download_count": 6928227, +"project": "pydeck" }, { -"download_count": 6482061, -"project": "hyperlink" +"download_count": 6916466, +"project": "sqlalchemy-spanner" }, { -"download_count": 6472404, -"project": "azure-mgmt-managedservices" +"download_count": 6898150, +"project": "opencv-python-headless" }, { -"download_count": 6461452, -"project": "kfp" +"download_count": 6891879, +"project": "tensorflow-text" }, { -"download_count": 6458164, -"project": "netaddr" +"download_count": 6878458, +"project": "pep517" }, { -"download_count": 6448084, -"project": "python-docx" +"download_count": 6852799, +"project": "unicodecsv" }, { -"download_count": 6447372, -"project": "querystring-parser" +"download_count": 6842660, +"project": "cligj" }, { -"download_count": 6437822, -"project": "bytecode" +"download_count": 6839715, +"project": "pymdown-extensions" }, { -"download_count": 6419367, -"project": "phonenumbers" +"download_count": 6827650, +"project": "openapi-schema-validator" }, { -"download_count": 6395271, -"project": "unicodecsv" +"download_count": 6802348, +"project": "weaviate-client" }, { -"download_count": 6373842, -"project": "polars" +"download_count": 6799956, +"project": "azure-mgmt-cosmosdb" }, { -"download_count": 6366276, -"project": "apache-airflow-providers-sqlite" +"download_count": 6797518, +"project": "typed-ast" }, { -"download_count": 6357041, -"project": "types-protobuf" +"download_count": 6787661, +"project": "gradio" }, { -"download_count": 6354444, -"project": "iso3166" +"download_count": 6783800, +"project": "bottle" }, { -"download_count": 6337696, -"project": "nvidia-cublas-cu11" +"download_count": 6781150, +"project": "apache-airflow-providers-imap" }, { -"download_count": 6295760, -"project": "pytest-rerunfailures" +"download_count": 6773188, +"project": "language-data" }, { -"download_count": 6269131, -"project": "nvidia-cudnn-cu11" +"download_count": 6772416, +"project": "pydub" }, { -"download_count": 6267321, -"project": "sqlalchemy-spanner" +"download_count": 6768397, +"project": "sentence-transformers" }, { -"download_count": 6262868, -"project": "types-setuptools" +"download_count": 6764223, +"project": "django-cors-headers" }, { -"download_count": 6261141, -"project": "azure-servicebus" +"download_count": 6746011, +"project": "shap" }, { -"download_count": 6259729, -"project": "google-cloud-run" +"download_count": 6740077, +"project": "eth-abi" }, { -"download_count": 6245263, -"project": "yappi" +"download_count": 6710628, +"project": "kfp" }, { -"download_count": 6240902, -"project": "types-urllib3" +"download_count": 6692150, +"project": "events" }, { -"download_count": 6192305, -"project": "prefect" +"download_count": 6682237, +"project": "xarray" }, { -"download_count": 6192219, -"project": "google-cloud-storage-transfer" +"download_count": 6668513, +"project": "azure-keyvault-keys" }, { -"download_count": 6178678, -"project": "cloudpathlib" +"download_count": 6659828, +"project": "ansible" }, { -"download_count": 6178573, -"project": "cssselect" +"download_count": 6644514, +"project": "slicer" }, { -"download_count": 6162251, -"project": "opencv-python-headless" +"download_count": 6630146, +"project": "pytest-random-order" }, { -"download_count": 6155190, -"project": "connexion" +"download_count": 6624598, +"project": "ansible-core" }, { -"download_count": 6154639, -"project": "ddtrace" +"download_count": 6600052, +"project": "aws-sam-translator" }, { -"download_count": 6129566, -"project": "ndg-httpsclient" +"download_count": 6583400, +"project": "querystring-parser" }, { -"download_count": 6127047, -"project": "envier" +"download_count": 6546025, +"project": "iso3166" }, { -"download_count": 6118533, -"project": "mmh3" +"download_count": 6544785, +"project": "apache-airflow-providers-slack" }, { -"download_count": 6096476, -"project": "torchaudio" +"download_count": 6523010, +"project": "statsd" }, { -"download_count": 6088419, -"project": "pyright" +"download_count": 6515099, +"project": "keyrings-google-artifactregistry-auth" }, { -"download_count": 6082028, -"project": "azure-mgmt-datafactory" +"download_count": 6504995, +"project": "awscrt" }, { -"download_count": 6073083, -"project": "nvidia-cuda-runtime-cu11" +"download_count": 6496856, +"project": "ua-parser" }, { -"download_count": 6047822, -"project": "nvidia-cuda-nvrtc-cu11" +"download_count": 6482251, +"project": "astropy" }, { -"download_count": 6044573, -"project": "slicer" +"download_count": 6446750, +"project": "trino" }, { -"download_count": 6042848, -"project": "google-cloud-batch" +"download_count": 6406997, +"project": "starkbank-ecdsa" }, { -"download_count": 5998135, -"project": "azure-kusto-data" +"download_count": 6394152, +"project": "django-filter" }, { -"download_count": 5987771, -"project": "sphinx-rtd-theme" +"download_count": 6391234, +"project": "sqlglot" }, { -"download_count": 5972639, -"project": "azure-mgmt-deploymentmanager" +"download_count": 6383044, +"project": "applicationinsights" }, { -"download_count": 5967943, -"project": "shap" +"download_count": 6353805, +"project": "pyqt5" }, { -"download_count": 5941917, -"project": "pydot" +"download_count": 6347295, +"project": "yappi" }, { -"download_count": 5928829, -"project": "django-allauth" +"download_count": 6345776, +"project": "onnx" }, { -"download_count": 5903663, -"project": "torchmetrics" +"download_count": 6339257, +"project": "mypy-boto3-redshift-data" }, { -"download_count": 5884536, -"project": "cron-descriptor" +"download_count": 6335074, +"project": "google" }, { -"download_count": 5874437, -"project": "gql" +"download_count": 6326997, +"project": "boltons" }, { -"download_count": 5865063, -"project": "linkify-it-py" +"download_count": 6325045, +"project": "jellyfish" }, { -"download_count": 5842025, -"project": "pytorch-lightning" +"download_count": 6324217, +"project": "wcmatch" }, { -"download_count": 5823096, -"project": "fire" +"download_count": 6303016, +"project": "ray" }, { -"download_count": 5812689, -"project": "apache-airflow-providers-slack" +"download_count": 6302917, +"project": "nvidia-cublas-cu11" }, { -"download_count": 5804095, -"project": "cachelib" +"download_count": 6287213, +"project": "eval-type-backport" }, { -"download_count": 5778955, -"project": "keras-applications" +"download_count": 6237671, +"project": "voluptuous" }, { -"download_count": 5771449, -"project": "pypdf" +"download_count": 6195595, +"project": "mkdocs-material" }, { -"download_count": 5754835, -"project": "gradio" +"download_count": 6161424, +"project": "nvidia-cudnn-cu11" }, { -"download_count": 5747284, -"project": "logbook" +"download_count": 6154272, +"project": "crcmod" }, { -"download_count": 5732968, -"project": "starkbank-ecdsa" +"download_count": 6132930, +"project": "minimal-snowplow-tracker" }, { -"download_count": 5731159, -"project": "incremental" +"download_count": 6119158, +"project": "slackclient" }, { -"download_count": 5728989, -"project": "pathlib" +"download_count": 6115354, +"project": "magicattr" }, { -"download_count": 5725897, -"project": "cfn-flip" +"download_count": 6114669, +"project": "timm" }, { -"download_count": 5719970, -"project": "uc-micro-py" +"download_count": 6105505, +"project": "torchaudio" }, { -"download_count": 5712977, -"project": "aws-sam-translator" +"download_count": 6103575, +"project": "azure-keyvault" }, { -"download_count": 5712820, -"project": "pyee" +"download_count": 6102758, +"project": "junitparser" }, { -"download_count": 5702895, -"project": "slackclient" +"download_count": 6065887, +"project": "pyerfa" }, { -"download_count": 5683673, -"project": "diskcache" +"download_count": 6059799, +"project": "lightning-utilities" }, { -"download_count": 5679818, -"project": "configargparse" +"download_count": 6040908, +"project": "setuptools-rust" }, { -"download_count": 5671849, -"project": "datadog-api-client" +"download_count": 6023943, +"project": "azure-batch" }, { -"download_count": 5665373, -"project": "twisted" +"download_count": 6022948, +"project": "fs" }, { -"download_count": 5626508, -"project": "jellyfish" +"download_count": 6016547, +"project": "pika" }, { -"download_count": 5605458, -"project": "pydub" +"download_count": 6008273, +"project": "grpc-interceptor" }, { -"download_count": 5602854, -"project": "junit-xml" +"download_count": 5971141, +"project": "nvidia-cuda-runtime-cu11" }, { -"download_count": 5602290, -"project": "flask-caching" +"download_count": 5957834, +"project": "types-dataclasses" }, { -"download_count": 5543049, -"project": "sentence-transformers" +"download_count": 5956333, +"project": "geographiclib" }, { -"download_count": 5540114, -"project": "dbt-common" +"download_count": 5941382, +"project": "peewee" }, { -"download_count": 5500645, -"project": "typed-ast" +"download_count": 5938951, +"project": "marshmallow-enum" }, { -"download_count": 5486163, -"project": "apache-airflow-providers-amazon" +"download_count": 5935143, +"project": "requests-ntlm" }, { -"download_count": 5480103, -"project": "pydantic-extra-types" +"download_count": 5933489, +"project": "geopy" }, { -"download_count": 5477091, -"project": "ansible" +"download_count": 5931037, +"project": "nvidia-cuda-nvrtc-cu11" }, { -"download_count": 5473154, -"project": "inject" +"download_count": 5930645, +"project": "azure-mgmt-compute" }, { -"download_count": 5464479, -"project": "django-cors-headers" +"download_count": 5919911, +"project": "inject" }, { -"download_count": 5463653, -"project": "oracledb" +"download_count": 5898694, +"project": "pyotp" }, { -"download_count": 5460452, -"project": "keyrings-google-artifactregistry-auth" +"download_count": 5890819, +"project": "geoip2" }, { -"download_count": 5454795, -"project": "timm" +"download_count": 5883658, +"project": "emoji" }, { -"download_count": 5444784, -"project": "json-merge-patch" +"download_count": 5879668, +"project": "keras-applications" }, { -"download_count": 5428188, -"project": "xarray" +"download_count": 5873765, +"project": "jsonlines" }, { -"download_count": 5420977, -"project": "requests-ntlm" +"download_count": 5871827, +"project": "pint" }, { -"download_count": 5407775, -"project": "geoip2" +"download_count": 5870895, +"project": "pathy" }, { -"download_count": 5398618, -"project": "events" +"download_count": 5870753, +"project": "junit-xml" }, { -"download_count": 5386661, -"project": "psycopg-binary" +"download_count": 5862711, +"project": "pytest-localserver" }, { -"download_count": 5378775, -"project": "natsort" +"download_count": 5852115, +"project": "azure-mgmt-containerinstance" }, { -"download_count": 5373391, -"project": "ansible-core" +"download_count": 5841007, +"project": "eth-account" }, { -"download_count": 5357934, -"project": "automat" +"download_count": 5810689, +"project": "pyhcl" }, { -"download_count": 5346406, -"project": "onnx" +"download_count": 5808618, +"project": "pyqt5-sip" }, { -"download_count": 5327677, -"project": "astronomer-cosmos" +"download_count": 5806552, +"project": "ultralytics" }, { -"download_count": 5312513, -"project": "apache-airflow-providers-imap" +"download_count": 5788322, +"project": "tokenize-rt" }, { -"download_count": 5307752, -"project": "constantly" +"download_count": 5781417, +"project": "adlfs" }, { -"download_count": 5298553, -"project": "futures" +"download_count": 5768510, +"project": "weasel" }, { -"download_count": 5298126, -"project": "pyhcl" +"download_count": 5758810, +"project": "reportlab" }, { -"download_count": 5293661, -"project": "limits" +"download_count": 5752031, +"project": "jsondiff" }, { -"download_count": 5262022, -"project": "boltons" +"download_count": 5742435, +"project": "flask-restful" }, { -"download_count": 5236247, -"project": "azure-keyvault-certificates" +"download_count": 5722309, +"project": "jsonref" }, { -"download_count": 5224182, -"project": "autopep8" +"download_count": 5720409, +"project": "immutables" }, { -"download_count": 5221262, -"project": "wcmatch" +"download_count": 5708566, +"project": "pandas-stubs" }, { -"download_count": 5216146, -"project": "apache-airflow-providers-smtp" +"download_count": 5701597, +"project": "tomli-w" }, { -"download_count": 5214225, -"project": "h3" +"download_count": 5694562, +"project": "aws-lambda-powertools" }, { -"download_count": 5196296, -"project": "geographiclib" +"download_count": 5691989, +"project": "zope-deprecation" }, { -"download_count": 5187202, -"project": "statsd" +"download_count": 5686811, +"project": "textual" }, { -"download_count": 5172153, -"project": "dbt-adapters" +"download_count": 5679508, +"project": "apache-airflow-providers-amazon" }, { -"download_count": 5164650, -"project": "pymdown-extensions" +"download_count": 5661908, +"project": "pywin32-ctypes" }, { -"download_count": 5162286, -"project": "nvidia-ml-py" +"download_count": 5659972, +"project": "maxminddb" }, { -"download_count": 5145886, -"project": "langchain-google-vertexai" +"download_count": 5644642, +"project": "elementpath" }, { -"download_count": 5140683, -"project": "geopy" +"download_count": 5623895, +"project": "ciso8601" }, { -"download_count": 5124970, -"project": "tableauserverclient" +"download_count": 5621609, +"project": "webdriver-manager" }, { -"download_count": 5117899, -"project": "strictyaml" +"download_count": 5615313, +"project": "azure-graphrbac" }, { -"download_count": 5114738, -"project": "oldest-supported-numpy" +"download_count": 5614365, +"project": "pycares" }, { -"download_count": 5112682, -"project": "lightning-utilities" +"download_count": 5604707, +"project": "faiss-cpu" }, { -"download_count": 5111964, -"project": "mypy-boto3-appflow" +"download_count": 5583660, +"project": "apache-airflow-providers-smtp" }, { -"download_count": 5101002, -"project": "apache-airflow-providers-common-io" +"download_count": 5578261, +"project": "asyncio" }, { -"download_count": 5099905, -"project": "pytz-deprecation-shim" +"download_count": 5565586, +"project": "cohere" }, { -"download_count": 5064245, -"project": "ftfy" +"download_count": 5562187, +"project": "feedparser" }, { -"download_count": 5057171, -"project": "flask-jwt-extended" +"download_count": 5557556, +"project": "bandit" }, { -"download_count": 5054769, -"project": "langchain-openai" +"download_count": 5544112, +"project": "aiodns" }, { -"download_count": 5050463, -"project": "methodtools" +"download_count": 5533252, +"project": "cloudformation-cli" }, { -"download_count": 5050191, -"project": "strenum" +"download_count": 5524450, +"project": "flit-core" }, { -"download_count": 5050166, -"project": "types-redis" +"download_count": 5519177, +"project": "h3" }, { -"download_count": 5032812, -"project": "marshmallow-sqlalchemy" +"download_count": 5516452, +"project": "pastedeploy" }, { -"download_count": 5010647, -"project": "crcmod" +"download_count": 5514337, +"project": "python-nvd3" }, { -"download_count": 4993824, -"project": "asyncpg" +"download_count": 5513116, +"project": "ftfy" }, { -"download_count": 4993467, -"project": "emoji" +"download_count": 5504984, +"project": "pdfminer-six" }, { -"download_count": 4965283, -"project": "swagger-ui-bundle" +"download_count": 5502852, +"project": "apache-airflow-providers-common-io" }, { -"download_count": 4963370, -"project": "faiss-cpu" +"download_count": 5498948, +"project": "cloudformation-cli-java-plugin" }, { -"download_count": 4961291, -"project": "grpc-interceptor" +"download_count": 5497870, +"project": "cloudformation-cli-python-plugin" }, { -"download_count": 4936411, -"project": "fiona" +"download_count": 5496344, +"project": "cloudformation-cli-go-plugin" }, { -"download_count": 4923141, -"project": "eth-account" +"download_count": 5494251, +"project": "cloudformation-cli-typescript-plugin" }, { -"download_count": 4914503, -"project": "junitparser" +"download_count": 5488228, +"project": "astropy-iers-data" }, { -"download_count": 4907525, -"project": "ldap3" +"download_count": 5469680, +"project": "rdflib" }, { -"download_count": 4902079, -"project": "minimal-snowplow-tracker" +"download_count": 5465349, +"project": "swagger-ui-bundle" }, { -"download_count": 4851116, -"project": "maxminddb" +"download_count": 5460413, +"project": "einops" }, { -"download_count": 4833795, -"project": "editables" +"download_count": 5439083, +"project": "distributed" }, { -"download_count": 4820093, -"project": "svgwrite" +"download_count": 5418902, +"project": "service-identity" }, { -"download_count": 4804065, -"project": "google-cloud" +"download_count": 5380048, +"project": "google-analytics-admin" }, { -"download_count": 4788964, -"project": "bottle" +"download_count": 5378518, +"project": "pyqt5-qt5" }, { -"download_count": 4772259, -"project": "webdriver-manager" +"download_count": 5355797, +"project": "zc-lockfile" }, { -"download_count": 4768367, -"project": "pandera" +"download_count": 5349527, +"project": "autograd" }, { -"download_count": 4719569, -"project": "wirerope" +"download_count": 5348837, +"project": "deltalake" }, { -"download_count": 4717996, -"project": "multimethod" +"download_count": 5321640, +"project": "paho-mqtt" }, { -"download_count": 4717820, -"project": "ultralytics" +"download_count": 5314244, +"project": "mkdocs" }, { -"download_count": 4715614, -"project": "griffe" +"download_count": 5307906, +"project": "aioresponses" }, { -"download_count": 4709627, -"project": "einops" +"download_count": 5288292, +"project": "stripe" }, { -"download_count": 4709575, -"project": "aws-lambda-powertools" +"download_count": 5284352, +"project": "orderly-set" }, { -"download_count": 4687008, -"project": "opentelemetry-instrumentation-asgi" +"download_count": 5265463, +"project": "filterpy" }, { -"download_count": 4669165, -"project": "streamlit" +"download_count": 5260945, +"project": "json-merge-patch" }, { -"download_count": 4633866, -"project": "elasticsearch-dsl" +"download_count": 5248996, +"project": "azure-mgmt-authorization" }, { -"download_count": 4580323, -"project": "weasel" +"download_count": 5248727, +"project": "checkov" }, { -"download_count": 4574392, -"project": "reportlab" +"download_count": 5242610, +"project": "futures" }, { -"download_count": 4572822, -"project": "ua-parser" +"download_count": 5239760, +"project": "azure-mgmt-network" }, { -"download_count": 4571523, -"project": "pika" +"download_count": 5216760, +"project": "blessed" }, { -"download_count": 4565721, -"project": "pyotp" +"download_count": 5216090, +"project": "opentelemetry-instrumentation-wsgi" }, { -"download_count": 4521234, -"project": "azure-devops" +"download_count": 5214456, +"project": "ldap3" }, { -"download_count": 4516576, -"project": "rdflib" +"download_count": 5198666, +"project": "multimethod" }, { -"download_count": 4513075, -"project": "pdfminer-six" +"download_count": 5186786, +"project": "azure-mgmt-keyvault" }, { -"download_count": 4509534, -"project": "sphinxcontrib-jquery" +"download_count": 5178988, +"project": "teradatasql" }, { -"download_count": 4508240, -"project": "django-filter" +"download_count": 5178541, +"project": "hiredis" }, { -"download_count": 4505512, -"project": "trino" +"download_count": 5161510, +"project": "python-telegram-bot" }, { -"download_count": 4495381, -"project": "mkdocs-material" +"download_count": 5155171, +"project": "scp" }, { -"download_count": 4493410, -"project": "bidict" +"download_count": 5145812, +"project": "pulp" }, { -"download_count": 4491361, -"project": "passlib" +"download_count": 5142503, +"project": "flexparser" }, { -"download_count": 4487746, -"project": "pathlib-abc" +"download_count": 5127908, +"project": "pymupdf" }, { -"download_count": 4486229, -"project": "marshmallow-enum" +"download_count": 5126057, +"project": "cssselect2" }, { -"download_count": 4481767, -"project": "sklearn" +"download_count": 5125163, +"project": "pydocstyle" }, { -"download_count": 4466055, -"project": "kubernetes-asyncio" +"download_count": 5120677, +"project": "apache-airflow-providers-docker" }, { -"download_count": 4464914, -"project": "asyncio" +"download_count": 5110584, +"project": "elasticsearch-dsl" }, { -"download_count": 4458420, -"project": "apache-airflow-providers-common-compat" +"download_count": 5106956, +"project": "pyperclip" }, { -"download_count": 4437660, -"project": "flask-limiter" +"download_count": 5088196, +"project": "flexcache" }, { -"download_count": 4437654, -"project": "google" -}, -{ -"download_count": 4424748, -"project": "azure-kusto-ingest" +"download_count": 5086428, +"project": "ndg-httpsclient" }, { -"download_count": 4407003, -"project": "openapi-spec-validator" +"download_count": 5082663, +"project": "pytest-forked" }, { -"download_count": 4396415, -"project": "opentelemetry-instrumentation-fastapi" +"download_count": 5068791, +"project": "dpath" }, { -"download_count": 4380615, -"project": "rich-argparse" +"download_count": 5063825, +"project": "azure-keyvault-certificates" }, { -"download_count": 4371518, -"project": "azure-eventhub" +"download_count": 5051593, +"project": "microsoft-kiota-http" }, { -"download_count": 4361921, -"project": "sphinx-autodoc-typehints" +"download_count": 5048196, +"project": "pyaml" }, { -"download_count": 4358820, -"project": "albumentations" +"download_count": 5048156, +"project": "google-cloud" }, { -"download_count": 4341538, +"download_count": 5031902, "project": "meson" }, { -"download_count": 4341088, -"project": "pytest-random-order" +"download_count": 5030967, +"project": "snowflake-snowpark-python" }, { -"download_count": 4329569, -"project": "pytest-forked" +"download_count": 4996095, +"project": "albumentations" }, { -"download_count": 4312856, -"project": "google-re2" +"download_count": 4993470, +"project": "async-generator" }, { -"download_count": 4307225, -"project": "gradio-client" +"download_count": 4989596, +"project": "sanic" }, { -"download_count": 4265153, -"project": "flask-session" +"download_count": 4983759, +"project": "prefect" }, { -"download_count": 4259834, -"project": "langdetect" +"download_count": 4971645, +"project": "aiohttp-retry" }, { -"download_count": 4258362, -"project": "constructs" +"download_count": 4967034, +"project": "readchar" }, { -"download_count": 4255544, -"project": "kfp-pipeline-spec" +"download_count": 4966132, +"project": "pathlib2" }, { -"download_count": 4204702, -"project": "playwright" +"download_count": 4950264, +"project": "twilio" }, { -"download_count": 4200059, -"project": "addict" +"download_count": 4935024, +"project": "sphinx-autodoc-typehints" }, { -"download_count": 4191732, -"project": "commonmark" +"download_count": 4933086, +"project": "pygame" }, { -"download_count": 4185969, -"project": "flask-restful" +"download_count": 4903261, +"project": "addict" }, { -"download_count": 4177504, -"project": "fs" +"download_count": 4898367, +"project": "pytz-deprecation-shim" }, { -"download_count": 4174931, -"project": "aws-xray-sdk" +"download_count": 4887802, +"project": "posthog" }, { -"download_count": 4167254, -"project": "gensim" +"download_count": 4862028, +"project": "fiona" }, { -"download_count": 4152924, -"project": "pyperclip" +"download_count": 4857690, +"project": "fabric" }, { -"download_count": 4150469, -"project": "distributed" +"download_count": 4844894, +"project": "strictyaml" }, { -"download_count": 4103400, -"project": "pgpy" +"download_count": 4838350, +"project": "lark-parser" }, { -"download_count": 4102753, -"project": "bandit" +"download_count": 4837274, +"project": "pyinstrument" }, { -"download_count": 4100501, -"project": "chroma-hnswlib" +"download_count": 4822717, +"project": "types-paramiko" }, { -"download_count": 4090495, -"project": "pytest-localserver" +"download_count": 4816421, +"project": "falcon" }, { -"download_count": 4088359, -"project": "duckdb" +"download_count": 4812411, +"project": "strenum" }, { -"download_count": 4072013, -"project": "formulaic" +"download_count": 4804394, +"project": "userpath" }, { -"download_count": 4071419, -"project": "cog" +"download_count": 4792325, +"project": "gradio-client" }, { -"download_count": 4068477, -"project": "convertdate" +"download_count": 4787974, +"project": "apache-airflow-providers-common-compat" }, { -"download_count": 4033989, -"project": "pyelftools" +"download_count": 4787564, +"project": "mongomock" }, { -"download_count": 4021004, -"project": "jsonlines" +"download_count": 4765126, +"project": "azure-eventhub" }, { -"download_count": 4020823, -"project": "cloudevents" +"download_count": 4755839, +"project": "sanic-routing" }, { -"download_count": 4019530, -"project": "types-dataclasses" +"download_count": 4748492, +"project": "asyncssh" }, { -"download_count": 4018120, -"project": "pyaml" +"download_count": 4746827, +"project": "httpx-sse" }, { -"download_count": 4006230, -"project": "tweepy" +"download_count": 4734450, +"project": "constructs" }, { -"download_count": 4004613, -"project": "nbclassic" +"download_count": 4732019, +"project": "mixpanel" }, { -"download_count": 4004347, -"project": "fasttext-wheel" +"download_count": 4730586, +"project": "influxdb-client" }, { -"download_count": 4002615, -"project": "jsonref" +"download_count": 4730052, +"project": "ghp-import" }, { -"download_count": 4000476, -"project": "glom" +"download_count": 4722801, +"project": "xmlschema" }, { -"download_count": 3999078, -"project": "click-option-group" +"download_count": 4722261, +"project": "ddsketch" }, { -"download_count": 3998951, -"project": "face" +"download_count": 4716002, +"project": "qtpy" }, { -"download_count": 3997160, -"project": "snowflake-snowpark-python" +"download_count": 4699957, +"project": "dask-expr" }, { -"download_count": 3943701, -"project": "keras-preprocessing" +"download_count": 4699235, +"project": "azure-kusto-ingest" }, { -"download_count": 3938578, -"project": "pipx" +"download_count": 4688752, +"project": "oldest-supported-numpy" }, { -"download_count": 3937816, -"project": "cx-oracle" +"download_count": 4686912, +"project": "toposort" }, { -"download_count": 3935341, -"project": "tensorboard-plugin-wit" +"download_count": 4670019, +"project": "stringcase" }, { -"download_count": 3925964, -"project": "ray" +"download_count": 4653780, +"project": "filetype" }, { -"download_count": 3918761, -"project": "feedparser" +"download_count": 4643282, +"project": "xyzservices" }, { -"download_count": 3899885, -"project": "pytest-django" +"download_count": 4641466, +"project": "atlassian-python-api" }, { -"download_count": 3899139, -"project": "checkov" +"download_count": 4618674, +"project": "uuid6" }, { -"download_count": 3889991, -"project": "pydeck" +"download_count": 4612240, +"project": "pyyaml-env-tag" }, { -"download_count": 3885895, -"project": "tomli-w" +"download_count": 4611325, +"project": "mypy-boto3-sqs" }, { -"download_count": 3867718, -"project": "python-decouple" +"download_count": 4609471, +"project": "atomicwrites" }, { -"download_count": 3851207, -"project": "prometheus-flask-exporter" +"download_count": 4607111, +"project": "cerberus" }, { -"download_count": 3847511, -"project": "pytest-randomly" +"download_count": 4606703, +"project": "formulaic" }, { -"download_count": 3845002, -"project": "autograd" +"download_count": 4593953, +"project": "sklearn" }, { -"download_count": 3840004, -"project": "peewee" +"download_count": 4584846, +"project": "optree" }, { -"download_count": 3822791, -"project": "service-identity" +"download_count": 4581071, +"project": "pytest-env" }, { -"download_count": 3821152, -"project": "ipaddress" +"download_count": 4578306, +"project": "mypy-boto3-dynamodb" }, { -"download_count": 3799808, +"download_count": 4572342, "project": "binaryornot" }, { -"download_count": 3794927, -"project": "aiosqlite" +"download_count": 4548317, +"project": "webtest" }, { -"download_count": 3782627, -"project": "pylint-plugin-utils" +"download_count": 4532057, +"project": "pyelftools" }, { -"download_count": 3779061, -"project": "cloudformation-cli" +"download_count": 4530914, +"project": "parse-type" }, { -"download_count": 3775893, -"project": "flask-babel" +"download_count": 4525478, +"project": "firebase-admin" }, { -"download_count": 3775815, -"project": "factory-boy" +"download_count": 4510346, +"project": "openlineage-integration-common" }, { -"download_count": 3774655, -"project": "pycares" +"download_count": 4507363, +"project": "pgpy" }, { -"download_count": 3764448, -"project": "aiodns" +"download_count": 4507118, +"project": "eventlet" }, { -"download_count": 3753186, -"project": "python-socketio" +"download_count": 4501346, +"project": "sqlalchemy-redshift" }, { -"download_count": 3751987, -"project": "async-generator" +"download_count": 4494965, +"project": "qrcode" }, { -"download_count": 3744030, -"project": "python-engineio" +"download_count": 4489110, +"project": "schedule" }, { -"download_count": 3739935, -"project": "cloudformation-cli-python-plugin" +"download_count": 4484975, +"project": "jax" }, { -"download_count": 3738464, -"project": "cloudformation-cli-java-plugin" +"download_count": 4470931, +"project": "chroma-hnswlib" }, { -"download_count": 3737961, -"project": "stringcase" +"download_count": 4455958, +"project": "mypy-boto3-glue" }, { -"download_count": 3737442, -"project": "cloudformation-cli-go-plugin" +"download_count": 4445887, +"project": "pandera" }, { -"download_count": 3736424, -"project": "cloudformation-cli-typescript-plugin" +"download_count": 4444138, +"project": "anthropic" }, { -"download_count": 3715460, -"project": "spark-nlp" +"download_count": 4419167, +"project": "html5tagger" }, { -"download_count": 3699433, -"project": "atomicwrites" +"download_count": 4417656, +"project": "nbclassic" }, { -"download_count": 3696326, -"project": "uamqp" +"download_count": 4417224, +"project": "tracerite" }, { -"download_count": 3671060, -"project": "ciso8601" +"download_count": 4415948, +"project": "mypy-protobuf" }, { -"download_count": 3666850, -"project": "korean-lunar-calendar" +"download_count": 4411558, +"project": "azure-devops" }, { -"download_count": 3658111, -"project": "recordlinkage" +"download_count": 4409343, +"project": "bokeh" }, { -"download_count": 3651208, -"project": "schedule" +"download_count": 4407562, +"project": "construct" }, { -"download_count": 3649672, -"project": "cerberus" +"download_count": 4406092, +"project": "click-option-group" }, { -"download_count": 3632907, -"project": "pydocstyle" +"download_count": 4377725, +"project": "acryl-datahub" }, { -"download_count": 3624219, -"project": "optree" +"download_count": 4373870, +"project": "face" }, { -"download_count": 3616432, -"project": "sudachidict-core" +"download_count": 4342707, +"project": "python-engineio" }, { -"download_count": 3615836, -"project": "dbt-snowflake" +"download_count": 4339112, +"project": "pytest-randomly" }, { -"download_count": 3607767, -"project": "parse-type" +"download_count": 4330953, +"project": "glom" }, { -"download_count": 3606204, -"project": "jax" +"download_count": 4329708, +"project": "python-socketio" }, { -"download_count": 3605821, -"project": "xlwt" +"download_count": 4324456, +"project": "transaction" }, { -"download_count": 3603814, -"project": "opentelemetry-instrumentation-wsgi" +"download_count": 4321658, +"project": "tensorboardx" }, { -"download_count": 3603777, -"project": "cssselect2" +"download_count": 4312629, +"project": "smbprotocol" }, { -"download_count": 3602851, -"project": "functions-framework" +"download_count": 4309656, +"project": "gensim" }, { -"download_count": 3600065, -"project": "posthog" +"download_count": 4307537, +"project": "pyarrow-hotfix" }, { -"download_count": 3585595, -"project": "meson-python" +"download_count": 4307391, +"project": "ipaddress" }, { -"download_count": 3584543, -"project": "fastapi-cli" +"download_count": 4305163, +"project": "convertdate" }, { -"download_count": 3571761, -"project": "userpath" +"download_count": 4280694, +"project": "kfp-pipeline-spec" }, { -"download_count": 3571150, -"project": "configupdater" +"download_count": 4268557, +"project": "meson-python" }, { -"download_count": 3564532, -"project": "pymupdf" +"download_count": 4262476, +"project": "django-extensions" }, { -"download_count": 3561786, -"project": "dask-expr" +"download_count": 4258244, +"project": "apprise" }, { -"download_count": 3554619, -"project": "mkdocs" +"download_count": 4256374, +"project": "mkdocs-material-extensions" }, { -"download_count": 3550312, -"project": "pyproject-metadata" +"download_count": 4254489, +"project": "python-jenkins" }, { -"download_count": 3528702, -"project": "immutabledict" +"download_count": 4252992, +"project": "opentelemetry-instrumentation-flask" }, { -"download_count": 3518920, -"project": "lxml-html-clean" +"download_count": 4251279, +"project": "cloudevents" }, { -"download_count": 3517645, -"project": "cookiecutter" +"download_count": 4244976, +"project": "mypy-boto3-secretsmanager" }, { -"download_count": 3516174, -"project": "qrcode" +"download_count": 4244043, +"project": "grpcio-reflection" }, { -"download_count": 3514709, -"project": "flit-core" +"download_count": 4242192, +"project": "orderedmultidict" }, { -"download_count": 3503945, -"project": "speechbrain" +"download_count": 4240748, +"project": "pyrfc3339" }, { -"download_count": 3501544, -"project": "moreorless" +"download_count": 4238147, +"project": "gym-notices" }, { -"download_count": 3500321, -"project": "hyperpyyaml" +"download_count": 4236748, +"project": "pipx" }, { -"download_count": 3497487, -"project": "sqlalchemy-redshift" +"download_count": 4236111, +"project": "azure-mgmt-datalake-store" }, { -"download_count": 3497238, -"project": "singer-sdk" +"download_count": 4235593, +"project": "types-toml" }, { -"download_count": 3495681, -"project": "prefect-gcp" +"download_count": 4233970, +"project": "langdetect" }, { -"download_count": 3489758, -"project": "pyqt5" +"download_count": 4218657, +"project": "numexpr" }, { -"download_count": 3485289, -"project": "firebase-admin" +"download_count": 4214929, +"project": "ipdb" }, { -"download_count": 3478250, -"project": "mypy-boto3-redshift-data" +"download_count": 4204480, +"project": "uncertainties" }, { -"download_count": 3474025, -"project": "prison" +"download_count": 4200883, +"project": "flask-migrate" }, { -"download_count": 3459907, -"project": "django-extensions" +"download_count": 4198383, +"project": "pyproject-metadata" }, { -"download_count": 3452198, -"project": "elementpath" +"download_count": 4188924, +"project": "cookiecutter" }, { -"download_count": 3444594, -"project": "rasterio" +"download_count": 4185327, +"project": "url-normalize" }, { -"download_count": 3438188, -"project": "waitress" +"download_count": 4176283, +"project": "azure-data-tables" }, { -"download_count": 3434979, -"project": "xyzservices" +"download_count": 4175649, +"project": "geventhttpclient" }, { -"download_count": 3432497, -"project": "trailrunner" +"download_count": 4172302, +"project": "namex" }, { -"download_count": 3427599, -"project": "pytest-split" +"download_count": 4170517, +"project": "types-pyopenssl" }, { -"download_count": 3424051, -"project": "teradatasql" -}, -{ -"download_count": 3413858, -"project": "numexpr" +"download_count": 4165903, +"project": "rich-click" }, { -"download_count": 3411280, -"project": "pyerfa" +"download_count": 4160262, +"project": "interface-meta" }, { -"download_count": 3402452, -"project": "twilio" +"download_count": 4159791, +"project": "mypy-boto3-lambda" }, { -"download_count": 3367663, -"project": "sagemaker-mlflow" +"download_count": 4152468, +"project": "python-editor" }, { -"download_count": 3365033, -"project": "bokeh" +"download_count": 4149001, +"project": "pytest-split" }, { -"download_count": 3358986, -"project": "affine" +"download_count": 4146196, +"project": "py-partiql-parser" }, { -"download_count": 3354168, -"project": "tensorflow-metadata" +"download_count": 4144305, +"project": "azure-mgmt-containerservice" }, { -"download_count": 3350036, -"project": "ffmpy" +"download_count": 4121991, +"project": "yfinance" }, { -"download_count": 3339421, -"project": "kfp-server-api" +"download_count": 4113141, +"project": "btrees" }, { -"download_count": 3328152, -"project": "python3-openid" +"download_count": 4088938, +"project": "furl" }, { -"download_count": 3304783, -"project": "azure-cosmosdb-table" +"download_count": 4079481, +"project": "keras-preprocessing" }, { -"download_count": 3298909, -"project": "mypy-boto3-glue" +"download_count": 4070130, +"project": "zope-proxy" }, { -"download_count": 3298525, -"project": "webob" +"download_count": 4069877, +"project": "llama-parse" }, { -"download_count": 3293580, -"project": "ddsketch" +"download_count": 4062078, +"project": "persistent" }, { -"download_count": 3289312, -"project": "sqlglot" +"download_count": 4058518, +"project": "hatch-vcs" }, { -"download_count": 3287120, -"project": "msgspec" +"download_count": 4057617, +"project": "optuna" }, { -"download_count": 3276338, -"project": "unidiff" +"download_count": 4056992, +"project": "pytest-benchmark" }, { -"download_count": 3263923, -"project": "simple-websocket" +"download_count": 4051226, +"project": "yandexcloud" }, { -"download_count": 3262080, -"project": "azure-cosmosdb-nspkg" +"download_count": 4049933, +"project": "hdfs" }, { -"download_count": 3261674, -"project": "namex" +"download_count": 4049005, +"project": "opentelemetry-instrumentation-dbapi" }, { -"download_count": 3260442, -"project": "pyqt5-sip" +"download_count": 4046760, +"project": "dbt-snowflake" }, { -"download_count": 3258333, -"project": "diff-cover" +"download_count": 4038472, +"project": "dash" }, { -"download_count": 3251062, -"project": "django-storages" +"download_count": 4029013, +"project": "spark-nlp" }, { -"download_count": 3247651, -"project": "ghp-import" +"download_count": 4027354, +"project": "zope-deferredimport" }, { -"download_count": 3247311, -"project": "sagemaker-core" +"download_count": 4025264, +"project": "jaxlib" }, { -"download_count": 3236459, -"project": "dash" +"download_count": 4024550, +"project": "daff" }, { -"download_count": 3225523, -"project": "marshmallow-oneofschema" +"download_count": 4017545, +"project": "multipart" }, { -"download_count": 3222851, -"project": "clickclick" +"download_count": 4005866, +"project": "nox" }, { -"download_count": 3220634, -"project": "apache-airflow-providers-sftp" +"download_count": 4001815, +"project": "tensorboard-plugin-wit" }, { -"download_count": 3212010, -"project": "google-analytics-admin" +"download_count": 3995705, +"project": "diff-cover" }, { -"download_count": 3210576, -"project": "mypy-boto3-secretsmanager" +"download_count": 3987332, +"project": "azure-mgmt-monitor" }, { -"download_count": 3203980, -"project": "readchar" +"download_count": 3974337, +"project": "recordlinkage" }, { -"download_count": 3196581, -"project": "orderedmultidict" +"download_count": 3973393, +"project": "prometheus-flask-exporter" }, { -"download_count": 3191084, -"project": "pyyaml-env-tag" +"download_count": 3971822, +"project": "minio" }, { -"download_count": 3187086, -"project": "pymsteams" +"download_count": 3970735, +"project": "facebook-business" }, { -"download_count": 3182488, -"project": "opencensus-ext-logging" +"download_count": 3963810, +"project": "w3lib" }, { -"download_count": 3165130, -"project": "azure-monitor-query" +"download_count": 3963146, +"project": "simple-websocket" }, { -"download_count": 3159483, -"project": "hiredis" +"download_count": 3956288, +"project": "xlwt" }, { -"download_count": 3157816, -"project": "commentjson" +"download_count": 3950043, +"project": "zodbpickle" }, { -"download_count": 3150478, -"project": "dpath" +"download_count": 3949353, +"project": "pdfplumber" }, { -"download_count": 3141356, -"project": "xmlschema" +"download_count": 3949319, +"project": "flask-httpauth" }, { -"download_count": 3137073, -"project": "pulp" +"download_count": 3945607, +"project": "pydantic-extra-types" }, { -"download_count": 3133535, -"project": "stdlibs" +"download_count": 3928417, +"project": "django-storages" }, { -"download_count": 3128936, -"project": "w3lib" +"download_count": 3924314, +"project": "zconfig" }, { -"download_count": 3126218, -"project": "usort" +"download_count": 3923086, +"project": "cog" }, { -"download_count": 3120777, -"project": "paho-mqtt" +"download_count": 3920598, +"project": "zodb" }, { -"download_count": 3118684, -"project": "filetype" +"download_count": 3920416, +"project": "korean-lunar-calendar" }, { -"download_count": 3113808, -"project": "openapi-schema-validator" +"download_count": 3915004, +"project": "altgraph" }, { -"download_count": 3104043, -"project": "pyglet" +"download_count": 3903162, +"project": "cx-oracle" }, { -"download_count": 3103040, -"project": "ufmt" +"download_count": 3898679, +"project": "microsoft-kiota-abstractions" }, { -"download_count": 3102200, -"project": "robotframework" +"download_count": 3891489, +"project": "azure-mgmt-sql" }, { -"download_count": 3101743, -"project": "tokenize-rt" +"download_count": 3886908, +"project": "hexbytes" }, { -"download_count": 3081561, -"project": "jaxlib" +"download_count": 3871497, +"project": "azure-mgmt-redis" }, { -"download_count": 3068064, -"project": "sqlalchemy-jsonfield" +"download_count": 3861647, +"project": "asteval" }, { -"download_count": 3064043, -"project": "pandas-stubs" +"download_count": 3855293, +"project": "opentelemetry-instrumentation-urllib3" }, { -"download_count": 3063986, -"project": "grpcio-reflection" +"download_count": 3845514, +"project": "javaproperties" }, { -"download_count": 3063001, -"project": "pymeeus" +"download_count": 3836600, +"project": "pympler" }, { -"download_count": 3061122, -"project": "pypika" +"download_count": 3834684, +"project": "eth-rlp" }, { -"download_count": 3056810, -"project": "filterpy" +"download_count": 3832418, +"project": "python-decouple" }, { -"download_count": 3054472, -"project": "uuid" +"download_count": 3820464, +"project": "jwcrypto" }, { -"download_count": 3043683, -"project": "aiohttp-retry" +"download_count": 3808883, +"project": "azure-mgmt-managementgroups" }, { -"download_count": 3041496, -"project": "tensorboardx" +"download_count": 3804895, +"project": "openlineage-python" }, { -"download_count": 3039344, -"project": "pyhocon" +"download_count": 3800043, +"project": "shortuuid" }, { -"download_count": 3034271, -"project": "hydra-core" +"download_count": 3799610, +"project": "singer-python" }, { -"download_count": 3033208, -"project": "edgegrid-python" +"download_count": 3794528, +"project": "roman" }, { -"download_count": 3026385, -"project": "pyqt5-qt5" +"download_count": 3790092, +"project": "aiohttp-cors" }, { -"download_count": 3021215, -"project": "stripe" +"download_count": 3789289, +"project": "azure-mgmt-web" }, { -"download_count": 3012360, -"project": "orderly-set" +"download_count": 3788859, +"project": "coveralls" }, { -"download_count": 3011998, -"project": "pytest-json-report" +"download_count": 3764662, +"project": "griffe" }, { -"download_count": 3008819, -"project": "hexbytes" +"download_count": 3762620, +"project": "tensorflow-metadata" }, { -"download_count": 3006586, -"project": "furl" +"download_count": 3761849, +"project": "pathable" }, { -"download_count": 2997965, -"project": "azure-storage-file" +"download_count": 3757847, +"project": "terminaltables" }, { -"download_count": 2994839, -"project": "sql-metadata" +"download_count": 3745405, +"project": "pipdeptree" }, { -"download_count": 2976221, -"project": "polyfactory" +"download_count": 3743335, +"project": "pytest-sugar" }, { -"download_count": 2973654, -"project": "pytest-messenger" +"download_count": 3735774, +"project": "hydra-core" }, { -"download_count": 2965788, -"project": "cmdstanpy" +"download_count": 3734034, +"project": "azure-mgmt-servicebus" }, { -"download_count": 2957038, -"project": "dbt-postgres" +"download_count": 3734004, +"project": "fakeredis" }, { -"download_count": 2956034, -"project": "hatch-vcs" +"download_count": 3728498, +"project": "rdkit" }, { -"download_count": 2952656, -"project": "python-editor" +"download_count": 3727845, +"project": "catboost" }, { -"download_count": 2948752, -"project": "altgraph" +"download_count": 3725567, +"project": "biopython" }, { -"download_count": 2939493, -"project": "pyarrow-hotfix" +"download_count": 3718174, +"project": "types-six" }, { -"download_count": 2937480, -"project": "astropy" +"download_count": 3716472, +"project": "pyfakefs" }, { -"download_count": 2931640, -"project": "user-agents" +"download_count": 3713820, +"project": "opentelemetry-instrumentation-urllib" }, { -"download_count": 2929768, -"project": "pygame" +"download_count": 3707273, +"project": "aioboto3" }, { -"download_count": 2921793, -"project": "opentelemetry-instrumentation-flask" +"download_count": 3695224, +"project": "py-spy" }, { -"download_count": 2903370, -"project": "pooch" +"download_count": 3693264, +"project": "python3-saml" }, { -"download_count": 2901780, -"project": "daff" +"download_count": 3692173, +"project": "pyinstaller" }, { -"download_count": 2893787, -"project": "voluptuous" +"download_count": 3681129, +"project": "azure-mgmt-nspkg" }, { -"download_count": 2885750, -"project": "python-box" +"download_count": 3673784, +"project": "ffmpy" }, { -"download_count": 2874690, -"project": "multipledispatch" +"download_count": 3666807, +"project": "tweepy" }, { -"download_count": 2869259, -"project": "redis-py-cluster" +"download_count": 3665190, +"project": "flower" }, { -"download_count": 2865311, -"project": "optuna" +"download_count": 3657370, +"project": "pooch" }, { -"download_count": 2864701, -"project": "url-normalize" +"download_count": 3657183, +"project": "dbt-postgres" }, { -"download_count": 2859185, -"project": "smbprotocol" +"download_count": 3637501, +"project": "openxlab" }, { -"download_count": 2846127, -"project": "mypy-protobuf" +"download_count": 3621587, +"project": "logzero" }, { -"download_count": 2841502, -"project": "immutables" +"download_count": 3621151, +"project": "azure-synapse-artifacts" }, { -"download_count": 2839233, -"project": "json-repair" +"download_count": 3614774, +"project": "qdrant-client" }, { -"download_count": 2831820, -"project": "interface-meta" +"download_count": 3614580, +"project": "marshmallow-dataclass" }, { -"download_count": 2814674, -"project": "pywin32-ctypes" +"download_count": 3612508, +"project": "llama-index-core" }, { -"download_count": 2813069, -"project": "hdfs" +"download_count": 3609735, +"project": "azure-mgmt-msi" }, { -"download_count": 2809328, -"project": "python-snappy" +"download_count": 3597079, +"project": "pypika" }, { -"download_count": 2804711, -"project": "opentelemetry-instrumentation-dbapi" +"download_count": 3595711, +"project": "uamqp" }, { -"download_count": 2803569, +"download_count": 3593375, "project": "web3" }, { -"download_count": 2801360, -"project": "lru-dict" +"download_count": 3588059, +"project": "azure-mgmt-rdbms" }, { -"download_count": 2799560, -"project": "patchelf" +"download_count": 3588052, +"project": "singer-sdk" }, { -"download_count": 2795927, -"project": "eth-rlp" +"download_count": 3578200, +"project": "types-tabulate" }, { -"download_count": 2793996, -"project": "pyxlsb" +"download_count": 3577144, +"project": "moreorless" }, { -"download_count": 2792363, -"project": "configobj" +"download_count": 3575406, +"project": "django-cleanup" }, { -"download_count": 2781287, -"project": "adlfs" +"download_count": 3551490, +"project": "litellm" }, { -"download_count": 2778286, -"project": "shortuuid" +"download_count": 3548036, +"project": "rasterio" }, { -"download_count": 2777063, -"project": "kaleido" +"download_count": 3546700, +"project": "soundfile" }, { -"download_count": 2775801, -"project": "google-cloud-datastore" +"download_count": 3535330, +"project": "eth-keys" }, { -"download_count": 2775433, -"project": "unittest-xml-reporting" +"download_count": 3526729, +"project": "proglog" }, { -"download_count": 2775372, -"project": "toposort" +"download_count": 3526162, +"project": "opentelemetry-instrumentation-psycopg2" }, { -"download_count": 2772664, -"project": "atlassian-python-api" +"download_count": 3522876, +"project": "python3-openid" }, { -"download_count": 2771319, -"project": "dash-core-components" +"download_count": 3522261, +"project": "azure-mgmt-dns" }, { -"download_count": 2769548, -"project": "dash-table" +"download_count": 3521186, +"project": "azure-mgmt-datalake-nspkg" }, { -"download_count": 2768045, -"project": "dash-html-components" +"download_count": 3520946, +"project": "robotframework" }, { -"download_count": 2767982, -"project": "jwcrypto" +"download_count": 3520436, +"project": "functions-framework" }, { -"download_count": 2767559, -"project": "plotnine" +"download_count": 3511872, +"project": "pyinstaller-hooks-contrib" }, { -"download_count": 2765279, -"project": "jdcal" +"download_count": 3508207, +"project": "clickhouse-connect" }, { -"download_count": 2761326, -"project": "python-jenkins" +"download_count": 3502094, +"project": "whitenoise" }, { -"download_count": 2760493, -"project": "prophet" +"download_count": 3499060, +"project": "questionary" }, { -"download_count": 2753044, -"project": "hijri-converter" +"download_count": 3495759, +"project": "myst-parser" }, { -"download_count": 2749711, -"project": "mkdocs-material-extensions" +"download_count": 3488680, +"project": "zict" }, { -"download_count": 2746247, -"project": "terminaltables" +"download_count": 3484394, +"project": "deepmerge" }, { -"download_count": 2744690, -"project": "yq" +"download_count": 3481770, +"project": "qtconsole" }, { -"download_count": 2743566, -"project": "dbt-bigquery" +"download_count": 3462242, +"project": "enum-compat" }, { -"download_count": 2741802, -"project": "colour" +"download_count": 3461042, +"project": "netcdf4" }, { -"download_count": 2740821, -"project": "influxdb" +"download_count": 3458963, +"project": "discord-py" }, { -"download_count": 2725332, -"project": "librosa" +"download_count": 3456967, +"project": "configobj" }, { -"download_count": 2721381, -"project": "minio" +"download_count": 3449882, +"project": "beartype" }, { -"download_count": 2719137, -"project": "pyinstaller" +"download_count": 3444477, +"project": "colorful" }, { -"download_count": 2718394, -"project": "fpdf" +"download_count": 3444184, +"project": "mypy-boto3-cloudformation" }, { -"download_count": 2717047, -"project": "mypy-boto3-lambda" +"download_count": 3427901, +"project": "appnope" }, { -"download_count": 2713931, -"project": "opentelemetry-instrumentation-urllib" +"download_count": 3418834, +"project": "azure-mgmt-eventhub" }, { -"download_count": 2704118, -"project": "pyinstaller-hooks-contrib" +"download_count": 3415833, +"project": "lxml-html-clean" }, { -"download_count": 2682113, -"project": "jsii" +"download_count": 3406092, +"project": "opentelemetry-instrumentation-django" }, { -"download_count": 2680501, -"project": "opentelemetry-instrumentation-urllib3" +"download_count": 3404860, +"project": "dbt-bigquery" }, { -"download_count": 2676970, -"project": "enum-compat" +"download_count": 3403556, +"project": "ddt" }, { -"download_count": 2673872, -"project": "fastcore" +"download_count": 3398729, +"project": "mypy-boto3-ec2" }, { -"download_count": 2660861, -"project": "azureml-core" +"download_count": 3397049, +"project": "pymeeus" }, { -"download_count": 2657219, -"project": "undetected-chromedriver" +"download_count": 3391341, +"project": "user-agents" }, { -"download_count": 2653070, -"project": "aws-cdk-integ-tests-alpha" +"download_count": 3387525, +"project": "jsii" }, { -"download_count": 2652263, -"project": "deepmerge" +"download_count": 3386000, +"project": "kfp-server-api" }, { -"download_count": 2649109, -"project": "datasketch" +"download_count": 3380867, +"project": "azure-monitor-opentelemetry-exporter" }, { -"download_count": 2646778, -"project": "astropy-iers-data" +"download_count": 3377658, +"project": "multitasking" }, { -"download_count": 2646575, -"project": "comtypes" +"download_count": 3375980, +"project": "azure-mgmt-advisor" }, { -"download_count": 2642138, -"project": "marshmallow-dataclass" +"download_count": 3374958, +"project": "unittest-xml-reporting" }, { -"download_count": 2627070, -"project": "azure-eventgrid" +"download_count": 3372996, +"project": "types-cachetools" }, { -"download_count": 2624623, -"project": "pyrfc3339" +"download_count": 3369678, +"project": "shopifyapi" }, { -"download_count": 2619239, -"project": "geventhttpclient" +"download_count": 3367053, +"project": "trailrunner" }, { -"download_count": 2615355, -"project": "qtpy" +"download_count": 3362908, +"project": "azure-mgmt-batch" }, { -"download_count": 2615345, -"project": "kazoo" +"download_count": 3358950, +"project": "knack" }, { -"download_count": 2610273, -"project": "pylint-pydantic" +"download_count": 3355476, +"project": "sagemaker-core" }, { -"download_count": 2603916, -"project": "pyhive" +"download_count": 3354780, +"project": "requests-cache" }, { -"download_count": 2597701, -"project": "semgrep" +"download_count": 3354187, +"project": "mkdocs-get-deps" }, { -"download_count": 2595635, -"project": "netifaces" +"download_count": 3350526, +"project": "fastcore" }, { -"download_count": 2593414, -"project": "sseclient-py" +"download_count": 3347888, +"project": "pyactiveresource" }, { -"download_count": 2590280, -"project": "django-redis" +"download_count": 3341864, +"project": "azure-mgmt-loganalytics" }, { -"download_count": 2579901, -"project": "dm-tree" +"download_count": 3337694, +"project": "pymsteams" }, { -"download_count": 2576989, -"project": "mypy-boto3-sqs" +"download_count": 3323008, +"project": "sphinx-copybutton" }, { -"download_count": 2571250, -"project": "pynamodb" +"download_count": 3321222, +"project": "cftime" }, { -"download_count": 2556516, -"project": "catboost" +"download_count": 3316890, +"project": "pdf2image" }, { -"download_count": 2552190, -"project": "google-cloud-pubsublite" +"download_count": 3316600, +"project": "pyphen" }, { -"download_count": 2546860, -"project": "scandir" +"download_count": 3311524, +"project": "dynaconf" }, { -"download_count": 2544323, -"project": "mypy-boto3-dynamodb" +"download_count": 3308024, +"project": "azure-mgmt-cdn" }, { -"download_count": 2537118, -"project": "beartype" +"download_count": 3297484, +"project": "uuid" }, { -"download_count": 2536216, -"project": "sanic" +"download_count": 3291335, +"project": "django-redis" }, { -"download_count": 2531944, -"project": "pyhumps" +"download_count": 3287301, +"project": "restrictedpython" }, { -"download_count": 2529256, +"download_count": 3283541, "project": "click-default-group" }, { -"download_count": 2527163, -"project": "ipdb" +"download_count": 3279609, +"project": "kaleido" }, { -"download_count": 2522101, -"project": "whitenoise" +"download_count": 3275762, +"project": "azure-mgmt-search" }, { -"download_count": 2521585, -"project": "mizani" +"download_count": 3275517, +"project": "pathvalidate" }, { -"download_count": 2521032, -"project": "mixpanel" +"download_count": 3273465, +"project": "speechbrain" }, { -"download_count": 2516145, -"project": "amazon-ion" +"download_count": 3270763, +"project": "patchelf" }, { -"download_count": 2503610, -"project": "peft" +"download_count": 3267567, +"project": "llama-index" }, { -"download_count": 2493026, -"project": "diffusers" +"download_count": 3266463, +"project": "pyhumps" }, { -"download_count": 2488500, -"project": "tree-sitter" +"download_count": 3262616, +"project": "hyperpyyaml" }, { -"download_count": 2485220, -"project": "anthropic" +"download_count": 3262302, +"project": "fake-useragent" }, { -"download_count": 2484535, -"project": "soundfile" +"download_count": 3256535, +"project": "azure-mgmt-cognitiveservices" }, { -"download_count": 2483302, -"project": "tld" +"download_count": 3256524, +"project": "autoflake" }, { -"download_count": 2481069, -"project": "proglog" +"download_count": 3254376, +"project": "affine" }, { -"download_count": 2478514, -"project": "azure-functions" +"download_count": 3249280, +"project": "geojson" }, { -"download_count": 2478174, -"project": "django-debug-toolbar" +"download_count": 3248699, +"project": "azure-mgmt-recoveryservices" }, { -"download_count": 2473192, -"project": "azure-ai-ml" +"download_count": 3247887, +"project": "azure-mgmt-trafficmanager" }, { -"download_count": 2471351, -"project": "concurrent-log-handler" +"download_count": 3242388, +"project": "apache-airflow-providers-sftp" }, { -"download_count": 2463036, -"project": "publication" +"download_count": 3239731, +"project": "azure-mgmt-marketplaceordering" }, { -"download_count": 2459656, -"project": "environs" +"download_count": 3239309, +"project": "azure-mgmt-iothub" }, { -"download_count": 2455584, -"project": "sudachipy" +"download_count": 3236268, +"project": "pinecone-client" }, { -"download_count": 2450880, -"project": "yfinance" +"download_count": 3236267, +"project": "types-docutils" }, { -"download_count": 2450862, -"project": "pytest-benchmark" +"download_count": 3235101, +"project": "codecov" }, { -"download_count": 2447952, -"project": "pytest-env" +"download_count": 3230583, +"project": "azure-mgmt-recoveryservicesbackup" }, { -"download_count": 2438026, -"project": "acryl-datahub" +"download_count": 3228509, +"project": "azure-mgmt-eventgrid" }, { -"download_count": 2431962, -"project": "djangorestframework-simplejwt" +"download_count": 3227804, +"project": "cmdstanpy" }, { -"download_count": 2429222, -"project": "more-executors" +"download_count": 3226379, +"project": "zope-i18nmessageid" }, { -"download_count": 2421006, -"project": "construct" +"download_count": 3225478, +"project": "opentelemetry-instrumentation-logging" }, { -"download_count": 2418754, -"project": "opentelemetry-instrumentation-logging" +"download_count": 3222930, +"project": "azure-mgmt-devtestlabs" }, { -"download_count": 2414829, -"project": "python-pam" +"download_count": 3219634, +"project": "azure-cosmosdb-table" }, { -"download_count": 2410940, -"project": "num2words" +"download_count": 3209955, +"project": "pgvector" }, { -"download_count": 2409239, -"project": "fastpurge" +"download_count": 3209042, +"project": "pathlib-abc" }, { -"download_count": 2404944, -"project": "pmdarima" +"download_count": 3206973, +"project": "kazoo" }, { -"download_count": 2395396, -"project": "requests-cache" +"download_count": 3205620, +"project": "bitstring" }, { -"download_count": 2395385, -"project": "sacremoses" +"download_count": 3197952, +"project": "pyhamcrest" }, { -"download_count": 2395340, -"project": "opentelemetry-instrumentation-psycopg2" +"download_count": 3196505, +"project": "plotnine" }, { -"download_count": 2386078, -"project": "pypandoc" +"download_count": 3185739, +"project": "azure-appconfiguration" }, { -"download_count": 2363015, -"project": "locust" +"download_count": 3173333, +"project": "azure-cosmosdb-nspkg" }, { -"download_count": 2356841, -"project": "s3path" +"download_count": 3170029, +"project": "paginate" }, { -"download_count": 2342641, -"project": "pycocotools" +"download_count": 3169256, +"project": "motor" }, { -"download_count": 2339726, -"project": "opentelemetry-instrumentation-django" +"download_count": 3167819, +"project": "zope-tal" }, { -"download_count": 2337981, -"project": "bitstring" +"download_count": 3167487, +"project": "azure-mgmt-applicationinsights" }, { -"download_count": 2332294, -"project": "databricks-api" +"download_count": 3158206, +"project": "cassandra-driver" }, { -"download_count": 2330891, -"project": "pint" +"download_count": 3157515, +"project": "python-snappy" }, { -"download_count": 2329590, -"project": "nox" +"download_count": 3153516, +"project": "opentelemetry-distro" }, { -"download_count": 2327956, -"project": "apache-airflow-providers-postgres" +"download_count": 3147648, +"project": "fpdf" }, { -"download_count": 2327121, -"project": "types-six" +"download_count": 3138969, +"project": "flake8-bugbear" }, { -"download_count": 2327049, -"project": "motor" +"download_count": 3130449, +"project": "colour" }, { -"download_count": 2326449, -"project": "aws-psycopg2" +"download_count": 3128093, +"project": "azureml-core" }, { -"download_count": 2325701, -"project": "opentelemetry-distro" +"download_count": 3126620, +"project": "dash-core-components" }, { -"download_count": 2320492, -"project": "flask-migrate" +"download_count": 3124404, +"project": "types-cffi" }, { -"download_count": 2316934, -"project": "ultralytics-thop" +"download_count": 3123860, +"project": "django-debug-toolbar" }, { -"download_count": 2316467, -"project": "lark-parser" +"download_count": 3117834, +"project": "dash-html-components" }, { -"download_count": 2313277, -"project": "azure-monitor-opentelemetry-exporter" +"download_count": 3117463, +"project": "pep8" }, { -"download_count": 2312192, -"project": "pywinauto" +"download_count": 3109840, +"project": "dash-table" }, { -"download_count": 2310529, -"project": "netcdf4" +"download_count": 3106829, +"project": "pycocotools" }, { -"download_count": 2303031, -"project": "qtconsole" +"download_count": 3098024, +"project": "publication" }, { -"download_count": 2293598, -"project": "datefinder" +"download_count": 3096038, +"project": "azure-mgmt-servicefabric" }, { -"download_count": 2288461, -"project": "soda-core" +"download_count": 3091965, +"project": "chameleon" }, { -"download_count": 2288315, -"project": "apache-airflow-providers-docker" +"download_count": 3088609, +"project": "azure-mgmt-signalr" }, { -"download_count": 2287405, -"project": "sgmllib3k" +"download_count": 3087416, +"project": "asana" }, { -"download_count": 2284947, -"project": "dynamodb-json" +"download_count": 3086872, +"project": "azure-mgmt-billing" }, { -"download_count": 2283970, -"project": "pathable" +"download_count": 3085389, +"project": "python-box" }, { -"download_count": 2277283, -"project": "olefile" +"download_count": 3082820, +"project": "azure-mgmt-media" }, { -"download_count": 2274747, -"project": "aiohttp-cors" +"download_count": 3081097, +"project": "msgraph-core" }, { -"download_count": 2274527, -"project": "hatch-fancy-pypi-readme" +"download_count": 3077320, +"project": "fixedint" }, { -"download_count": 2272671, -"project": "zict" +"download_count": 3076580, +"project": "plumbum" }, { -"download_count": 2264758, -"project": "cleanco" +"download_count": 3076201, +"project": "stdlibs" }, { -"download_count": 2260611, -"project": "flask-openid" +"download_count": 3076070, +"project": "azure-mgmt-policyinsights" }, { -"download_count": 2260413, -"project": "pypyp" +"download_count": 3074291, +"project": "azure-mgmt-iothubprovisioningservices" }, { -"download_count": 2257929, -"project": "sanic-routing" +"download_count": 3073349, +"project": "azure-mgmt-batchai" }, { -"download_count": 2256977, -"project": "django-environ" +"download_count": 3064903, +"project": "usort" }, { -"download_count": 2254866, -"project": "allure-python-commons" +"download_count": 3063155, +"project": "venusian" }, { -"download_count": 2247547, -"project": "pypiwin32" +"download_count": 3059006, +"project": "locust" }, { -"download_count": 2244247, -"project": "cftime" +"download_count": 3057036, +"project": "microsoft-kiota-authentication-azure" }, { -"download_count": 2240553, -"project": "colorful" +"download_count": 3056138, +"project": "unstructured-client" }, { -"download_count": 2239543, -"project": "timezonefinder" +"download_count": 3049907, +"project": "pyfiglet" }, { -"download_count": 2236786, -"project": "flake8-bugbear" +"download_count": 3046743, +"project": "azure-mgmt-datamigration" }, { -"download_count": 2236779, -"project": "mkdocs-get-deps" +"download_count": 3046320, +"project": "influxdb" }, { -"download_count": 2235688, -"project": "geomet" +"download_count": 3046131, +"project": "prophet" }, { -"download_count": 2234424, -"project": "eth-keys" +"download_count": 3045258, +"project": "sql-metadata" }, { -"download_count": 2233701, -"project": "lifelines" +"download_count": 3043220, +"project": "accesscontrol" }, { -"download_count": 2231703, -"project": "falcon" +"download_count": 3042339, +"project": "azure-mgmt-maps" }, { -"download_count": 2231378, -"project": "pyfiglet" +"download_count": 3040927, +"project": "azure-mgmt-iotcentral" }, { -"download_count": 2230716, -"project": "injector" +"download_count": 3039782, +"project": "ufmt" }, { -"download_count": 2229240, -"project": "flask-httpauth" +"download_count": 3039170, +"project": "azure-functions" }, { -"download_count": 2228471, -"project": "fakeredis" +"download_count": 3035040, +"project": "pyhocon" }, { -"download_count": 2225489, -"project": "aioboto3" +"download_count": 3030982, +"project": "dunamai" }, { -"download_count": 2221366, -"project": "pyphen" +"download_count": 3030159, +"project": "mypy-boto3-sts" }, { -"download_count": 2209644, -"project": "ruptures" +"download_count": 3024626, +"project": "hatch-fancy-pypi-readme" }, { -"download_count": 2195805, -"project": "snuggs" +"download_count": 3022776, +"project": "nested-lookup" }, { -"download_count": 2186712, -"project": "textual" +"download_count": 3020419, +"project": "python-arango" }, { -"download_count": 2185149, -"project": "appnope" +"download_count": 3019203, +"project": "jsonschema-path" }, { -"download_count": 2184593, -"project": "bump2version" +"download_count": 3017562, +"project": "lightning" }, { -"download_count": 2179268, -"project": "google-apitools" +"download_count": 3013519, +"project": "expiringdict" }, { -"download_count": 2178294, -"project": "imageio-ffmpeg" +"download_count": 3010145, +"project": "sphinx-autoapi" }, { -"download_count": 2169019, -"project": "apache-airflow-providers-microsoft-mssql" +"download_count": 3009761, +"project": "objsize" }, { -"download_count": 2166335, -"project": "llama-parse" +"download_count": 3007421, +"project": "acquisition" }, { -"download_count": 2165675, -"project": "flower" +"download_count": 2998991, +"project": "memray" }, { -"download_count": 2164536, -"project": "geojson" +"download_count": 2992720, +"project": "maturin" }, { -"download_count": 2161971, -"project": "zc-lockfile" +"download_count": 2981598, +"project": "uritools" }, { -"download_count": 2158365, -"project": "fixedint" +"download_count": 2975664, +"project": "pytest-messenger" }, { -"download_count": 2154748, -"project": "uritools" +"download_count": 2966827, +"project": "webargs" }, { -"download_count": 2148426, -"project": "salesforce-bulk" +"download_count": 2962435, +"project": "sgmllib3k" }, { -"download_count": 2144168, -"project": "findspark" +"download_count": 2954613, +"project": "netifaces" }, { -"download_count": 2135598, -"project": "fake-useragent" +"download_count": 2952534, +"project": "reactivex" }, { -"download_count": 2133764, -"project": "pytd" +"download_count": 2941606, +"project": "zope-hookable" }, { -"download_count": 2131585, -"project": "av" +"download_count": 2937594, +"project": "lru-dict" }, { -"download_count": 2131139, -"project": "cheroot" +"download_count": 2934030, +"project": "azure-monitor-query" }, { -"download_count": 2129743, -"project": "pytesseract" +"download_count": 2929323, +"project": "numcodecs" }, { -"download_count": 2126600, -"project": "python-crontab" +"download_count": 2928023, +"project": "pyxlsb" }, { -"download_count": 2125543, -"project": "pyusb" +"download_count": 2927749, +"project": "zope-component" }, { -"download_count": 2117772, -"project": "strip-hints" +"download_count": 2927336, +"project": "yq" }, { -"download_count": 2113114, -"project": "simpleeval" +"download_count": 2924885, +"project": "injector" }, { -"download_count": 2112651, -"project": "appium-python-client" +"download_count": 2923450, +"project": "aws-cdk-integ-tests-alpha" }, { -"download_count": 2112127, -"project": "azure-search-documents" +"download_count": 2918358, +"project": "zope-schema" }, { -"download_count": 2111477, -"project": "dbutils" +"download_count": 2915156, +"project": "vcrpy" }, { -"download_count": 2106788, -"project": "scikit-build-core" +"download_count": 2914304, +"project": "pypandoc" }, { -"download_count": 2100138, -"project": "hyperopt" +"download_count": 2913578, +"project": "librosa" }, { -"download_count": 2097700, -"project": "azure" +"download_count": 2898933, +"project": "imageio-ffmpeg" }, { -"download_count": 2092250, -"project": "python-telegram-bot" +"download_count": 2895191, +"project": "cbor2" }, { -"download_count": 2088920, -"project": "stanio" +"download_count": 2893926, +"project": "osqp" }, { -"download_count": 2085682, -"project": "nested-lookup" +"download_count": 2892709, +"project": "simpleeval" }, { -"download_count": 2084078, -"project": "mypy-boto3-cloudformation" +"download_count": 2890568, +"project": "unidiff" }, { -"download_count": 2080553, -"project": "uncertainties" +"download_count": 2886500, +"project": "zope-security" }, { -"download_count": 2080149, -"project": "bitsandbytes" +"download_count": 2886329, +"project": "html2text" }, { -"download_count": 2079731, -"project": "promise" +"download_count": 2883843, +"project": "python-gettext" }, { -"download_count": 2079070, -"project": "paginate" +"download_count": 2882996, +"project": "mizani" }, { -"download_count": 2071169, -"project": "yt-dlp" +"download_count": 2882141, +"project": "zope-exceptions" }, { -"download_count": 2066325, -"project": "dynaconf" +"download_count": 2881229, +"project": "cssutils" }, { -"download_count": 2060723, -"project": "thrift-sasl" +"download_count": 2880657, +"project": "environs" }, { -"download_count": 2058756, -"project": "azure-mgmt-subscription" +"download_count": 2879724, +"project": "pydata-sphinx-theme" }, { -"download_count": 2054547, -"project": "cassandra-driver" +"download_count": 2871163, +"project": "extensionclass" }, { -"download_count": 2053523, -"project": "yamale" +"download_count": 2863055, +"project": "dm-tree" }, { -"download_count": 2049308, -"project": "sacrebleu" +"download_count": 2859430, +"project": "launchdarkly-server-sdk" }, { -"download_count": 2039564, -"project": "gpustat" +"download_count": 2856921, +"project": "itypes" }, { -"download_count": 2038980, -"project": "py-spy" +"download_count": 2856093, +"project": "zope-i18n" }, { -"download_count": 2033809, -"project": "ec2-metadata" +"download_count": 2856061, +"project": "zope-publisher" }, { -"download_count": 2024955, -"project": "python-consul" +"download_count": 2854628, +"project": "zope-configuration" }, { -"download_count": 2023455, -"project": "cssutils" +"download_count": 2854252, +"project": "persistence" }, { -"download_count": 2022907, -"project": "pyogrio" +"download_count": 2853795, +"project": "azure-storage-file" }, { -"download_count": 2021382, -"project": "evaluate" +"download_count": 2852768, +"project": "zope-container" }, { -"download_count": 2018804, -"project": "sqlfluff" +"download_count": 2852168, +"project": "zope-testing" }, { -"download_count": 2016571, -"project": "plumbum" +"download_count": 2851803, +"project": "jdcal" }, { -"download_count": 2015741, -"project": "pep517" +"download_count": 2850780, +"project": "translationstring" }, { -"download_count": 2015337, -"project": "wget" +"download_count": 2849614, +"project": "zope-lifecycleevent" }, { -"download_count": 2010005, -"project": "python-pptx" +"download_count": 2848890, +"project": "zope-location" }, { -"download_count": 2002011, -"project": "testcontainers" +"download_count": 2846475, +"project": "zope-browser" }, { -"download_count": 1996021, -"project": "pytest-error-for-skips" +"download_count": 2846170, +"project": "zope-contenttype" }, { -"download_count": 1994264, -"project": "prisma" +"download_count": 2840505, +"project": "rlp" }, { -"download_count": 1989900, -"project": "graphframes" +"download_count": 2837647, +"project": "zope-cachedescriptors" }, { -"download_count": 1988911, -"project": "pyppeteer" +"download_count": 2837513, +"project": "zope-dottedname" }, { -"download_count": 1988096, -"project": "socksio" +"download_count": 2835624, +"project": "zope-traversing" }, { -"download_count": 1987840, -"project": "aws-cdk-asset-awscli-v1" +"download_count": 2835526, +"project": "av" }, { -"download_count": 1983057, -"project": "newrelic" +"download_count": 2835241, +"project": "google-cloud-datastore" }, { -"download_count": 1982952, -"project": "tracerite" +"download_count": 2834539, +"project": "wsgiproxy2" }, { -"download_count": 1982526, -"project": "html5tagger" +"download_count": 2831360, +"project": "astral" }, { -"download_count": 1974873, -"project": "pypng" +"download_count": 2831061, +"project": "zope-size" }, { -"download_count": 1970085, -"project": "elementary-data" +"download_count": 2830861, +"project": "zope-filerepresentation" }, { -"download_count": 1969620, -"project": "pdf2image" +"download_count": 2830857, +"project": "zope-annotation" }, { -"download_count": 1969345, -"project": "iopath" +"download_count": 2829970, +"project": "zope-site" }, { -"download_count": 1967801, -"project": "chevron" +"download_count": 2829654, +"project": "bump2version" }, { -"download_count": 1965969, -"project": "pygsheets" +"download_count": 2828841, +"project": "zope" }, { -"download_count": 1961777, -"project": "o365" +"download_count": 2828627, +"project": "inquirer" }, { -"download_count": 1956038, -"project": "ffmpeg-python" +"download_count": 2828120, +"project": "papermill" }, { -"download_count": 1954214, -"project": "polling" +"download_count": 2827650, +"project": "zope-processlifetime" }, { -"download_count": 1952027, -"project": "cloudflare" +"download_count": 2826818, +"project": "authencoding" }, { -"download_count": 1951192, -"project": "testpath" +"download_count": 2826699, +"project": "django-environ" }, { -"download_count": 1950795, -"project": "rlp" +"download_count": 2826420, +"project": "zexceptions" }, { -"download_count": 1950005, -"project": "lit" +"download_count": 2826202, +"project": "zope-datetime" }, { -"download_count": 1945192, -"project": "click-spinner" +"download_count": 2824763, +"project": "djangorestframework-simplejwt" }, { -"download_count": 1941708, -"project": "pipdeptree" +"download_count": 2823127, +"project": "documenttemplate" }, { -"download_count": 1934256, -"project": "python-nvd3" +"download_count": 2822214, +"project": "zope-tales" }, { -"download_count": 1923394, -"project": "pathvalidate" +"download_count": 2821925, +"project": "zope-pagetemplate" }, { -"download_count": 1921354, -"project": "types-paramiko" +"download_count": 2821920, +"project": "nose2" }, { -"download_count": 1920662, -"project": "coveralls" +"download_count": 2819760, +"project": "zope-contentprovider" }, { -"download_count": 1919707, -"project": "pytest-repeat" +"download_count": 2819705, +"project": "zope-structuredtext" }, { -"download_count": 1919123, -"project": "multi-key-dict" +"download_count": 2819459, +"project": "zope-browserpage" }, { -"download_count": 1916209, -"project": "itypes" +"download_count": 2819308, +"project": "zope-testbrowser" }, { -"download_count": 1915749, -"project": "tlparse" +"download_count": 2819109, +"project": "zope-sequencesort" }, { -"download_count": 1908209, -"project": "soxr" +"download_count": 2818928, +"project": "z3c-pt" }, { -"download_count": 1905276, -"project": "hologram" +"download_count": 2818915, +"project": "zope-browserresource" }, { -"download_count": 1904889, -"project": "pefile" +"download_count": 2817939, +"project": "zope-ptresource" }, { -"download_count": 1901069, -"project": "py7zr" +"download_count": 2817204, +"project": "zope-viewlet" }, { -"download_count": 1900621, -"project": "requests-futures" +"download_count": 2817185, +"project": "zope-browsermenu" }, { -"download_count": 1894290, -"project": "rollbar" +"download_count": 2815559, +"project": "multimapping" }, { -"download_count": 1893188, -"project": "packageurl-python" +"download_count": 2813654, +"project": "zope-globalrequest" }, { -"download_count": 1891493, -"project": "singledispatch" +"download_count": 2805992, +"project": "num2words" }, { -"download_count": 1890705, -"project": "findpython" +"download_count": 2798890, +"project": "pyusb" }, { -"download_count": 1889467, -"project": "json-log-formatter" +"download_count": 2792134, +"project": "fasttext-wheel" }, { -"download_count": 1888739, -"project": "dunamai" +"download_count": 2788930, +"project": "olefile" }, { -"download_count": 1888635, -"project": "zipfile38" +"download_count": 2787403, +"project": "allure-python-commons" }, { -"download_count": 1884561, -"project": "inquirer" +"download_count": 2783721, +"project": "sphinx-design" }, { -"download_count": 1876423, -"project": "pygeohash" +"download_count": 2781823, +"project": "aiokafka" }, { -"download_count": 1876240, -"project": "myst-parser" +"download_count": 2780767, +"project": "diffusers" }, { -"download_count": 1875439, -"project": "dep-logic" +"download_count": 2775659, +"project": "pynamodb" }, { -"download_count": 1873432, -"project": "pymemcache" +"download_count": 2771611, +"project": "behave" }, { -"download_count": 1871523, -"project": "pykwalify" +"download_count": 2770945, +"project": "amazon-ion" }, { -"download_count": 1869738, -"project": "audioread" +"download_count": 2764729, +"project": "zipfile38" }, { -"download_count": 1869530, -"project": "memoization" +"download_count": 2752116, +"project": "flaky" }, { -"download_count": 1869390, -"project": "types-pyopenssl" +"download_count": 2745286, +"project": "datasketch" }, { -"download_count": 1867571, -"project": "apache-sedona" +"download_count": 2741765, +"project": "python-pptx" }, { -"download_count": 1867422, -"project": "osqp" +"download_count": 2736337, +"project": "pastel" }, { -"download_count": 1866709, -"project": "drf-yasg" +"download_count": 2732350, +"project": "sqlmodel" }, { -"download_count": 1866598, -"project": "hishel" +"download_count": 2730431, +"project": "types-markdown" }, { -"download_count": 1864764, -"project": "yaspin" +"download_count": 2730359, +"project": "pyppeteer" }, { -"download_count": 1863505, -"project": "galvani" +"download_count": 2730021, +"project": "opentelemetry-exporter-prometheus" }, { -"download_count": 1862289, -"project": "docker-compose" +"download_count": 2729897, +"project": "rx" }, { -"download_count": 1860429, -"project": "llama-index" +"download_count": 2725907, +"project": "sseclient-py" }, { -"download_count": 1858967, -"project": "flask-restx" +"download_count": 2721330, +"project": "ortools" }, { -"download_count": 1858933, -"project": "azure-mgmt-notificationhubs" +"download_count": 2719871, +"project": "types-croniter" }, { -"download_count": 1857508, -"project": "torchsde" +"download_count": 2712878, +"project": "sagemaker-mlflow" }, { -"download_count": 1856273, -"project": "httpx-sse" +"download_count": 2706654, +"project": "bitstruct" }, { -"download_count": 1853858, -"project": "pep8-naming" +"download_count": 2704978, +"project": "hupper" }, { -"download_count": 1853404, -"project": "htmldate" +"download_count": 2700840, +"project": "dynamodb-json" }, { -"download_count": 1849508, -"project": "opencv-contrib-python" +"download_count": 2694399, +"project": "pypng" }, { -"download_count": 1843665, -"project": "questionary" +"download_count": 2689873, +"project": "testpath" }, { -"download_count": 1842726, -"project": "databricks-pypi1" +"download_count": 2689519, +"project": "dictdiffer" }, { -"download_count": 1841741, -"project": "pytest-custom-exit-code" +"download_count": 2682603, +"project": "eth-keyfile" }, { -"download_count": 1841410, -"project": "mysql-connector" +"download_count": 2679200, +"project": "azure-eventgrid" }, { -"download_count": 1840632, -"project": "robotframework-pythonlibcore" +"download_count": 2669922, +"project": "appium-python-client" }, { -"download_count": 1840245, -"project": "clickhouse-connect" +"download_count": 2667561, +"project": "testcontainers" }, { -"download_count": 1838284, -"project": "pyzstd" +"download_count": 2666444, +"project": "semgrep" }, { -"download_count": 1836722, -"project": "dropbox" +"download_count": 2666248, +"project": "multipledispatch" }, { -"download_count": 1833166, -"project": "riot" +"download_count": 2665801, +"project": "python-rapidjson" }, { -"download_count": 1827700, -"project": "pamqp" +"download_count": 2663314, +"project": "hijri-converter" }, { -"download_count": 1826253, -"project": "boxsdk" +"download_count": 2660161, +"project": "apache-flink" }, { -"download_count": 1825703, -"project": "pygit2" +"download_count": 2660132, +"project": "pep8-naming" }, { -"download_count": 1824870, -"project": "aws-cdk-lib" +"download_count": 2654804, +"project": "zarr" }, { -"download_count": 1822509, -"project": "django-timezone-field" +"download_count": 2652712, +"project": "apache-airflow-providers-microsoft-mssql" }, { -"download_count": 1819184, -"project": "kornia" +"download_count": 2651542, +"project": "respx" }, { -"download_count": 1818920, -"project": "blobfile" +"download_count": 2649135, +"project": "repoze-lru" }, { -"download_count": 1817315, -"project": "signalfx" +"download_count": 2647439, +"project": "unearth" }, { -"download_count": 1815387, -"project": "eth-keyfile" +"download_count": 2645271, +"project": "pefile" }, { -"download_count": 1814714, -"project": "jsonconversion" +"download_count": 2644357, +"project": "pystache" }, { -"download_count": 1813133, -"project": "drf-spectacular" +"download_count": 2641026, +"project": "types-deprecated" }, { -"download_count": 1812244, -"project": "flexparser" +"download_count": 2638400, +"project": "pyhive" }, { -"download_count": 1812239, -"project": "flexcache" +"download_count": 2635810, +"project": "pemja" }, { -"download_count": 1808152, -"project": "dictdiffer" +"download_count": 2632260, +"project": "pyogrio" }, { -"download_count": 1807872, -"project": "trampoline" +"download_count": 2630296, +"project": "evaluate" }, { -"download_count": 1805565, -"project": "allure-pytest" +"download_count": 2624796, +"project": "azure-synapse-spark" }, { -"download_count": 1803466, -"project": "expandvars" +"download_count": 2624048, +"project": "geomet" }, { -"download_count": 1803102, -"project": "deltalake" +"download_count": 2623762, +"project": "memory-profiler" }, { -"download_count": 1802419, -"project": "mypy-boto3-ec2" +"download_count": 2616601, +"project": "bitsandbytes" }, { -"download_count": 1800602, -"project": "license-expression" +"download_count": 2615432, +"project": "python-crontab" }, { -"download_count": 1799817, -"project": "behave" +"download_count": 2610223, +"project": "peft" }, { -"download_count": 1799536, -"project": "trimesh" +"download_count": 2609480, +"project": "pytest-repeat" }, { -"download_count": 1797939, -"project": "tensorflow-hub" +"download_count": 2608981, +"project": "aws-cdk-asset-awscli-v1" }, { -"download_count": 1792311, -"project": "azure-mgmt-logic" +"download_count": 2607756, +"project": "apache-flink-libraries" }, { -"download_count": 1791488, -"project": "pytest-order" +"download_count": 2605117, +"project": "microsoft-kiota-serialization-json" }, { -"download_count": 1790972, -"project": "truststore" +"download_count": 2594856, +"project": "scandir" }, { -"download_count": 1788727, -"project": "notion-client" +"download_count": 2592177, +"project": "google-cloud-pubsublite" }, { -"download_count": 1787634, -"project": "litellm" +"download_count": 2591663, +"project": "xmlsec" }, { -"download_count": 1787074, -"project": "insight-cli" +"download_count": 2591587, +"project": "elementary-data" }, { -"download_count": 1785545, -"project": "chispa" +"download_count": 2585163, +"project": "mkdocstrings-python" }, { -"download_count": 1784440, -"project": "tensorflow-datasets" +"download_count": 2581000, +"project": "opencensus-ext-logging" }, { -"download_count": 1784072, -"project": "jaconv" +"download_count": 2569369, +"project": "quicktions" }, { -"download_count": 1782768, -"project": "avro-gen3" +"download_count": 2568452, +"project": "timezonefinder" }, { -"download_count": 1782354, -"project": "markdown2" +"download_count": 2567565, +"project": "sqlfluff" }, { -"download_count": 1781908, -"project": "pbs-installer" +"download_count": 2564269, +"project": "drf-spectacular" }, { -"download_count": 1780647, -"project": "pyfakefs" +"download_count": 2563824, +"project": "pmdarima" }, { -"download_count": 1780210, -"project": "boolean-py" +"download_count": 2562470, +"project": "hatch" }, { -"download_count": 1779339, -"project": "rtree" +"download_count": 2560899, +"project": "nvidia-ml-py" }, { -"download_count": 1778472, -"project": "unearth" +"download_count": 2560445, +"project": "flask-restx" }, { -"download_count": 1771580, -"project": "databricks-connect" +"download_count": 2559405, +"project": "pyramid" }, { -"download_count": 1766499, -"project": "boa-str" +"download_count": 2558187, +"project": "promise" }, { -"download_count": 1764590, -"project": "html2text" +"download_count": 2556436, +"project": "avro-gen3" }, { -"download_count": 1763472, -"project": "asteval" +"download_count": 2550492, +"project": "python-consul" }, { -"download_count": 1760956, -"project": "flaky" +"download_count": 2550229, +"project": "testfixtures" }, { -"download_count": 1758805, -"project": "asyncssh" +"download_count": 2549913, +"project": "google-generativeai" }, { -"download_count": 1758419, -"project": "pdm" +"download_count": 2544613, +"project": "sentinels" }, { -"download_count": 1757579, -"project": "azure-servicefabric" +"download_count": 2536539, +"project": "click-spinner" }, { -"download_count": 1757499, -"project": "pympler" +"download_count": 2536453, +"project": "apache-airflow-providers-postgres" }, { -"download_count": 1755438, -"project": "sarif-om" +"download_count": 2532675, +"project": "openlineage-sql" }, { -"download_count": 1752564, -"project": "pytest-sugar" +"download_count": 2528852, +"project": "concurrent-log-handler" }, { -"download_count": 1750905, -"project": "pex" +"download_count": 2527581, +"project": "click-log" }, { -"download_count": 1749675, -"project": "jschema-to-python" +"download_count": 2523865, +"project": "pytesseract" }, { -"download_count": 1749444, -"project": "chromadb" +"download_count": 2522478, +"project": "pyhanko" }, { -"download_count": 1748052, -"project": "flatten-json" +"download_count": 2520542, +"project": "databricks-api" }, { -"download_count": 1747430, -"project": "eval-type-backport" +"download_count": 2520093, +"project": "newrelic" }, { -"download_count": 1741884, -"project": "mbstrdecoder" +"download_count": 2518187, +"project": "igraph" }, { -"download_count": 1740021, -"project": "requests-aws-sign" +"download_count": 2512928, +"project": "aiomqtt" }, { -"download_count": 1739218, -"project": "google-cloud-recommendations-ai" +"download_count": 2506809, +"project": "kivy" }, { -"download_count": 1736446, -"project": "azure-mgmt" +"download_count": 2502980, +"project": "hyperopt" }, { -"download_count": 1734503, -"project": "shareplum" +"download_count": 2501175, +"project": "langchain-google-community" }, { -"download_count": 1734384, -"project": "backports-functools-lru-cache" +"download_count": 2487432, +"project": "plaster" }, { -"download_count": 1733755, -"project": "cyclonedx-python-lib" +"download_count": 2487402, +"project": "plaster-pastedeploy" }, { -"download_count": 1732906, -"project": "tzfpy" +"download_count": 2482734, +"project": "wget" }, { -"download_count": 1728998, -"project": "expiringdict" +"download_count": 2481984, +"project": "trimesh" }, { -"download_count": 1728753, -"project": "pipelinewise-singer-python" +"download_count": 2476950, +"project": "airbyte-api" }, { -"download_count": 1728390, -"project": "azure-mgmt-scheduler" +"download_count": 2470907, +"project": "ultralytics-thop" }, { -"download_count": 1728365, -"project": "virtualenv-clone" +"download_count": 2468455, +"project": "oss2" }, { -"download_count": 1725874, -"project": "atpublic" +"download_count": 2467842, +"project": "scikit-build-core" }, { -"download_count": 1725850, -"project": "pybloom-live" +"download_count": 2466249, +"project": "pprintpp" }, { -"download_count": 1725562, -"project": "azure-mgmt-commerce" +"download_count": 2463586, +"project": "sacrebleu" }, { -"download_count": 1723568, -"project": "tablib" +"download_count": 2463502, +"project": "genson" }, { -"download_count": 1723343, -"project": "azure-mgmt-powerbiembedded" +"download_count": 2460911, +"project": "lifelines" }, { -"download_count": 1719763, -"project": "jproperties" +"download_count": 2450431, +"project": "mmcif" }, { -"download_count": 1719524, -"project": "modin" +"download_count": 2448912, +"project": "scs" }, { -"download_count": 1719143, -"project": "ortools" +"download_count": 2445331, +"project": "scapy" }, { -"download_count": 1717222, -"project": "azure-mgmt-hanaonazure" +"download_count": 2442282, +"project": "chromadb" }, { -"download_count": 1716238, -"project": "azure-mgmt-machinelearningcompute" +"download_count": 2440406, +"project": "rtree" }, { -"download_count": 1716098, -"project": "azure-mgmt-managementpartner" +"download_count": 2438656, +"project": "easyconfig" }, { -"download_count": 1711999, -"project": "pyhamcrest" +"download_count": 2437469, +"project": "cheroot" }, { -"download_count": 1711574, -"project": "autoflake" +"download_count": 2435064, +"project": "types-pymysql" }, { -"download_count": 1707523, -"project": "ansible-compat" +"download_count": 2434656, +"project": "packageurl-python" }, { -"download_count": 1704799, -"project": "cbor2" +"download_count": 2433289, +"project": "gym" }, { -"download_count": 1704012, -"project": "azure-servicemanagement-legacy" +"download_count": 2431580, +"project": "thefuzz" }, { -"download_count": 1703704, -"project": "flask-bcrypt" +"download_count": 2425974, +"project": "aws-psycopg2" }, { -"download_count": 1692444, -"project": "ifaddr" +"download_count": 2423007, +"project": "expandvars" }, { -"download_count": 1692356, -"project": "azure-mgmt-devspaces" +"download_count": 2416008, +"project": "django-stubs" }, { -"download_count": 1689622, -"project": "pyaes" +"download_count": 2413728, +"project": "pypdfium2" }, { -"download_count": 1689180, -"project": "mypy-boto3-sts" +"download_count": 2411111, +"project": "clickhouse-driver" }, { -"download_count": 1687239, -"project": "robotframework-seleniumlibrary" +"download_count": 2410360, +"project": "weasyprint" }, { -"download_count": 1686294, -"project": "pysmi" +"download_count": 2404878, +"project": "poetry-dynamic-versioning" }, { -"download_count": 1686098, -"project": "pyppmd" +"download_count": 2404156, +"project": "yt-dlp" }, { -"download_count": 1684200, -"project": "typepy" +"download_count": 2397835, +"project": "s3path" }, { -"download_count": 1683294, -"project": "dominate" +"download_count": 2397205, +"project": "pex" }, { -"download_count": 1683062, -"project": "pybcj" +"download_count": 2396617, +"project": "mbstrdecoder" }, { -"download_count": 1683000, -"project": "pyudev" +"download_count": 2394668, +"project": "alibabacloud-adb20211201" }, { -"download_count": 1680980, -"project": "py-partiql-parser" +"download_count": 2392693, +"project": "pytest-ordering" }, { -"download_count": 1680955, -"project": "pytest-base-url" +"download_count": 2390230, +"project": "flake8-isort" }, { -"download_count": 1679879, -"project": "json-delta" +"download_count": 2385452, +"project": "django-timezone-field" }, { -"download_count": 1675364, -"project": "diff-match-patch" +"download_count": 2384142, +"project": "google-apitools" }, { -"download_count": 1673864, -"project": "scapy" +"download_count": 2383496, +"project": "aiohttp-sse-client" }, { -"download_count": 1673104, -"project": "pymupdfb" +"download_count": 2380846, +"project": "awkward-cpp" }, { -"download_count": 1672383, -"project": "contextvars" +"download_count": 2378545, +"project": "cvxpy" }, { -"download_count": 1668601, -"project": "azure-applicationinsights" +"download_count": 2375896, +"project": "datefinder" }, { -"download_count": 1665750, -"project": "mkdocstrings-python" +"download_count": 2372243, +"project": "lit" }, { -"download_count": 1662963, -"project": "pytest-httpx" +"download_count": 2370649, +"project": "nibabel" }, { -"download_count": 1661526, -"project": "bashlex" +"download_count": 2357760, +"project": "license-expression" }, { -"download_count": 1657932, -"project": "onnxruntime-gpu" +"download_count": 2355418, +"project": "sudachidict-core" }, { -"download_count": 1656903, -"project": "pynvml" +"download_count": 2354800, +"project": "autobahn" }, { -"download_count": 1653026, -"project": "weasyprint" +"download_count": 2353667, +"project": "pinotdb" }, { -"download_count": 1652311, -"project": "mutagen" +"download_count": 2350828, +"project": "boolean-py" }, { -"download_count": 1651561, -"project": "anytree" +"download_count": 2349178, +"project": "typepy" }, { -"download_count": 1651402, -"project": "bumpversion" +"download_count": 2348887, +"project": "types-aiofiles" }, { -"download_count": 1650288, -"project": "multivolumefile" +"download_count": 2345074, +"project": "stanio" }, { -"download_count": 1646731, -"project": "justext" +"download_count": 2340753, +"project": "thrift-sasl" }, { -"download_count": 1643735, -"project": "pikepdf" +"download_count": 2340192, +"project": "psycopg-pool" }, { -"download_count": 1643067, -"project": "aws-cdk-asset-kubectl-v20" +"download_count": 2333901, +"project": "latexcodec" }, { -"download_count": 1635892, -"project": "pyquery" +"download_count": 2332417, +"project": "pygit2" }, { -"download_count": 1634189, -"project": "pyreadline3" +"download_count": 2332192, +"project": "awkward" }, { -"download_count": 1632341, -"project": "ephem" +"download_count": 2329097, +"project": "allure-pytest" }, { -"download_count": 1628005, -"project": "types-cachetools" +"download_count": 2328545, +"project": "txaio" }, { -"download_count": 1620857, -"project": "opentelemetry-instrumentation-grpc" +"download_count": 2317980, +"project": "qdldl" }, { -"download_count": 1620502, -"project": "multitasking" +"download_count": 2316075, +"project": "bashlex" }, { -"download_count": 1619789, -"project": "trafilatura" +"download_count": 2309233, +"project": "django-stubs-ext" }, { -"download_count": 1617862, -"project": "click-log" +"download_count": 2307329, +"project": "teradatasqlalchemy" }, { -"download_count": 1617006, -"project": "discord-py" +"download_count": 2299832, +"project": "pybtex" }, { -"download_count": 1616827, -"project": "smartsheet-python-sdk" +"download_count": 2287139, +"project": "azure-mgmt-datalake-analytics" }, { -"download_count": 1616202, -"project": "fasttext" +"download_count": 2282570, +"project": "biotite" }, { -"download_count": 1614625, -"project": "webargs" +"download_count": 2280713, +"project": "chevron" }, { -"download_count": 1613588, -"project": "pyhanko" +"download_count": 2279275, +"project": "umap-learn" }, { -"download_count": 1603448, -"project": "poetry-dynamic-versioning" +"download_count": 2278410, +"project": "pyzstd" }, { -"download_count": 1602531, -"project": "pypdfium2" +"download_count": 2276602, +"project": "dropbox" }, { -"download_count": 1595920, -"project": "pkgconfig" +"download_count": 2271369, +"project": "sacremoses" }, { -"download_count": 1595915, -"project": "types-cffi" +"download_count": 2271018, +"project": "svgwrite" }, { -"download_count": 1595578, -"project": "prefect-aws" +"download_count": 2268880, +"project": "azure-cli-core" }, { -"download_count": 1593762, -"project": "pytimeparse2" +"download_count": 2263727, +"project": "cleanco" }, { -"download_count": 1592052, -"project": "subprocess-tee" +"download_count": 2260495, +"project": "coreapi" }, { -"download_count": 1591879, -"project": "txaio" +"download_count": 2259566, +"project": "ffmpeg-python" }, { -"download_count": 1589108, -"project": "gdown" +"download_count": 2258713, +"project": "azure-mgmt-reservations" }, { -"download_count": 1588373, -"project": "lightning" +"download_count": 2256452, +"project": "eascheduler" }, { -"download_count": 1587439, -"project": "objsize" +"download_count": 2251386, +"project": "pyzipper" }, { -"download_count": 1583480, -"project": "rustworkx" +"download_count": 2248654, +"project": "boxsdk" }, { -"download_count": 1582987, -"project": "python-rapidjson" +"download_count": 2244492, +"project": "opentelemetry-instrumentation-grpc" }, { -"download_count": 1578866, -"project": "cloud-sql-python-connector" +"download_count": 2239446, +"project": "jwt" }, { -"download_count": 1574439, -"project": "ghapi" +"download_count": 2239446, +"project": "ifaddr" }, { -"download_count": 1573334, -"project": "clickhouse-driver" +"download_count": 2235949, +"project": "google-ai-generativelanguage" }, { -"download_count": 1572593, -"project": "pdpyras" +"download_count": 2229922, +"project": "findspark" }, { -"download_count": 1569329, -"project": "autobahn" +"download_count": 2227967, +"project": "cyclonedx-python-lib" }, { -"download_count": 1567939, -"project": "pycairo" +"download_count": 2223175, +"project": "ckzg" }, { -"download_count": 1567688, -"project": "courlan" +"download_count": 2217795, +"project": "pypiwin32" }, { -"download_count": 1567528, -"project": "logging-azure-rest" +"download_count": 2217469, +"project": "pyquery" }, { -"download_count": 1567375, -"project": "haversine" +"download_count": 2214880, +"project": "dependency-injector" }, { -"download_count": 1562399, -"project": "zope-deprecation" +"download_count": 2213686, +"project": "pytest-order" }, { -"download_count": 1558540, -"project": "types-docutils" +"download_count": 2209278, +"project": "blobfile" }, { -"download_count": 1557360, -"project": "ecs-logging" +"download_count": 2207693, +"project": "biotraj" }, { -"download_count": 1550313, -"project": "jsonschema-path" +"download_count": 2206884, +"project": "pytd" }, { -"download_count": 1550267, -"project": "tf-keras" +"download_count": 2206881, +"project": "pikepdf" }, { -"download_count": 1548498, -"project": "pysnmp" +"download_count": 2198607, +"project": "pycurl" }, { -"download_count": 1533951, -"project": "wavedrom" +"download_count": 2191967, +"project": "dbutils" }, { -"download_count": 1532880, -"project": "eventlet" +"download_count": 2190775, +"project": "jsonpath-python" }, { -"download_count": 1529409, -"project": "sounddevice" +"download_count": 2189495, +"project": "pynndescent" }, { -"download_count": 1529394, -"project": "munch" +"download_count": 2187487, +"project": "ephem" }, { -"download_count": 1526604, -"project": "django-celery-beat" +"download_count": 2186262, +"project": "flask-bcrypt" }, { -"download_count": 1525846, -"project": "azureml-dataprep" +"download_count": 2184975, +"project": "soxr" }, { -"download_count": 1524024, -"project": "timeout-decorator" +"download_count": 2181370, +"project": "pymupdfb" }, { -"download_count": 1523079, -"project": "maturin" +"download_count": 2179162, +"project": "opencv-contrib-python" }, { -"download_count": 1522969, -"project": "yacs" +"download_count": 2165169, +"project": "drf-yasg" }, { -"download_count": 1519823, -"project": "sqlparams" +"download_count": 2155225, +"project": "rply" }, { -"download_count": 1518956, -"project": "opentracing" +"download_count": 2154791, +"project": "azure-mgmt-consumption" }, { -"download_count": 1518893, -"project": "pycomposefile" +"download_count": 2154279, +"project": "pyiceberg" }, { -"download_count": 1517872, -"project": "py-serializable" +"download_count": 2150108, +"project": "markdownify" }, { -"download_count": 1506829, -"project": "ckzg" +"download_count": 2147761, +"project": "pytest-custom-exit-code" }, { -"download_count": 1504097, -"project": "torchtext" +"download_count": 2146536, +"project": "vertica-python" }, { -"download_count": 1501436, -"project": "launchdarkly-server-sdk" +"download_count": 2144726, +"project": "python-bidi" }, { -"download_count": 1499934, -"project": "natto-py" +"download_count": 2142782, +"project": "aws-cdk-lib" }, { -"download_count": 1498748, -"project": "flashtext" +"download_count": 2137593, +"project": "yamale" }, { -"download_count": 1498380, -"project": "coreapi" +"download_count": 2136768, +"project": "pytest-check" }, { -"download_count": 1495189, -"project": "fpdf2" +"download_count": 2135341, +"project": "datamodel-code-generator" }, { -"download_count": 1494398, -"project": "multipart" +"download_count": 2133641, +"project": "python-pam" }, { -"download_count": 1493706, -"project": "codeowners" +"download_count": 2129196, +"project": "supervisor" }, { -"download_count": 1489834, -"project": "types-toml" +"download_count": 2123625, +"project": "pytest-base-url" }, { -"download_count": 1488891, -"project": "pandasql" +"download_count": 2117285, +"project": "path" }, { -"download_count": 1487975, -"project": "ws4py" +"download_count": 2115736, +"project": "tmtools" }, { -"download_count": 1486502, -"project": "testfixtures" +"download_count": 2114858, +"project": "markdown2" }, { -"download_count": 1485150, -"project": "tecton" +"download_count": 2113532, +"project": "base58" }, { -"download_count": 1483155, -"project": "pyinstrument" +"download_count": 2110874, +"project": "iopath" }, { -"download_count": 1480900, -"project": "backports-weakref" +"download_count": 2110323, +"project": "azure-loganalytics" }, { -"download_count": 1475679, -"project": "webtest" +"download_count": 2109185, +"project": "zopfli" }, { -"download_count": 1474449, -"project": "click-help-colors" +"download_count": 2099260, +"project": "anytree" }, { -"download_count": 1471758, -"project": "python3-saml" +"download_count": 2098933, +"project": "neo4j" }, { -"download_count": 1469709, -"project": "wordcloud" +"download_count": 2098056, +"project": "pkgconfig" }, { -"download_count": 1464947, -"project": "robotframework-requests" +"download_count": 2097987, +"project": "o365" }, { -"download_count": 1463528, -"project": "pytest-playwright" +"download_count": 2096940, +"project": "py7zr" }, { -"download_count": 1461918, -"project": "supervisor" +"download_count": 2096513, +"project": "furo" }, { -"download_count": 1461782, -"project": "azure-monitor-opentelemetry" +"download_count": 2089812, +"project": "ec2-metadata" }, { -"download_count": 1461013, -"project": "pydispatcher" +"download_count": 2086614, +"project": "salesforce-bulk" }, { -"download_count": 1460132, -"project": "databricks-pypi2" +"download_count": 2083964, +"project": "tree-sitter" }, { -"download_count": 1460000, -"project": "dj-database-url" +"download_count": 2077834, +"project": "rollbar" }, { -"download_count": 1459812, -"project": "pep8" +"download_count": 2074934, +"project": "pyunormalize" }, { -"download_count": 1459675, -"project": "tableauhyperapi" +"download_count": 2074302, +"project": "robotframework-pythonlibcore" }, { -"download_count": 1459222, -"project": "xformers" +"download_count": 2070003, +"project": "azure-mgmt-relay" }, { -"download_count": 1457941, -"project": "backports-cached-property" +"download_count": 2069218, +"project": "tablib" }, { -"download_count": 1456690, -"project": "lmdb" +"download_count": 2067445, +"project": "notion-client" }, { -"download_count": 1455842, -"project": "github-heatmap" +"download_count": 2066624, +"project": "diagrams" }, { -"download_count": 1455366, -"project": "llama-index-core" +"download_count": 2065888, +"project": "audioread" }, { -"download_count": 1450313, -"project": "nodejs-wheel-binaries" +"download_count": 2064682, +"project": "haversine" }, { -"download_count": 1448924, -"project": "influxdb-client" +"download_count": 2064315, +"project": "commentjson" }, { -"download_count": 1445634, -"project": "python-bidi" +"download_count": 2060648, +"project": "strip-hints" }, { -"download_count": 1444771, -"project": "python-ldap" +"download_count": 2060409, +"project": "tritonclient" }, { -"download_count": 1443816, -"project": "google-generativeai" +"download_count": 2060241, +"project": "aws-cdk-asset-kubectl-v20" }, { -"download_count": 1443460, -"project": "cvxpy" +"download_count": 2060139, +"project": "pynvml" }, { -"download_count": 1441320, -"project": "mypy-boto3-athena" +"download_count": 2059395, +"project": "atpublic" }, { -"download_count": 1440281, -"project": "shtab" +"download_count": 2058462, +"project": "unstructured" }, { -"download_count": 1439479, -"project": "msgraph-core" +"download_count": 2054471, +"project": "rfc3987" }, { -"download_count": 1435418, -"project": "pytest-ordering" +"download_count": 2054251, +"project": "comtypes" }, { -"download_count": 1435363, -"project": "channels" +"download_count": 2053837, +"project": "pdpyras" }, { -"download_count": 1434770, -"project": "pdfplumber" +"download_count": 2053146, +"project": "mkdocstrings" }, { -"download_count": 1434289, -"project": "unstructured-client" +"download_count": 2051885, +"project": "ansible-compat" }, { -"download_count": 1432075, -"project": "vcrpy" +"download_count": 2051822, +"project": "azure" }, { -"download_count": 1425609, -"project": "databricks" +"download_count": 2051664, +"project": "socksio" }, { -"download_count": 1420856, -"project": "sqlmodel" +"download_count": 2050072, +"project": "json-log-formatter" }, { -"download_count": 1419680, -"project": "pytest-check" +"download_count": 2047694, +"project": "requests-futures" }, { -"download_count": 1416057, -"project": "stone" +"download_count": 2046264, +"project": "azure-mgmt-subscription" }, { -"download_count": 1415340, -"project": "umap-learn" +"download_count": 2043808, +"project": "pykwalify" }, { -"download_count": 1415040, -"project": "inflate64" +"download_count": 2042848, +"project": "microsoft-kiota-serialization-text" }, { -"download_count": 1411082, -"project": "reactivex" +"download_count": 2039199, +"project": "sqlglotrs" }, { -"download_count": 1407294, -"project": "thefuzz" +"download_count": 2038702, +"project": "yaspin" }, { -"download_count": 1406130, -"project": "portpicker" +"download_count": 2031535, +"project": "multi-key-dict" }, { -"download_count": 1404767, -"project": "dbt-redshift" +"download_count": 2026955, +"project": "llama-index-indices-managed-llama-cloud" }, { -"download_count": 1404500, -"project": "requests-sigv4" +"download_count": 2020356, +"project": "psygnal" }, { -"download_count": 1404001, -"project": "tensorflow-probability" +"download_count": 2020231, +"project": "joserfc" }, { -"download_count": 1403252, -"project": "microsoft-kiota-http" +"download_count": 2015952, +"project": "flask-openid" }, { -"download_count": 1401419, -"project": "papermill" +"download_count": 2014723, +"project": "aliyun-python-sdk-kms" }, { -"download_count": 1401159, -"project": "ddt" +"download_count": 2008191, +"project": "yacs" }, { -"download_count": 1398900, -"project": "pyformance" +"download_count": 2001963, +"project": "language-tags" }, { -"download_count": 1396172, -"project": "biopython" +"download_count": 2000227, +"project": "bumpversion" }, { -"download_count": 1395749, -"project": "hjson" +"download_count": 1998411, +"project": "grimp" }, { -"download_count": 1394970, -"project": "jq" +"download_count": 1995830, +"project": "pyexasol" }, { -"download_count": 1393704, -"project": "jwt" +"download_count": 1995693, +"project": "pygsheets" }, { -"download_count": 1393014, -"project": "autograd-gamma" +"download_count": 1995403, +"project": "kornia" }, { -"download_count": 1392565, -"project": "checksumdir" +"download_count": 1994658, +"project": "django-celery-beat" }, { -"download_count": 1392087, -"project": "curlify" +"download_count": 1994335, +"project": "portpicker" }, { -"download_count": 1389489, -"project": "rich-click" +"download_count": 1991578, +"project": "pyppmd" }, { -"download_count": 1387499, -"project": "aws-cdk-asset-node-proxy-agent-v6" +"download_count": 1990081, +"project": "pyaes" }, { -"download_count": 1387179, -"project": "azure-core-tracing-opentelemetry" +"download_count": 1989105, +"project": "llama-index-llms-openai" }, { -"download_count": 1383843, -"project": "python-arango" +"download_count": 1985869, +"project": "curlify" }, { -"download_count": 1382668, -"project": "google-ai-generativelanguage" +"download_count": 1984131, +"project": "jaconv" }, { -"download_count": 1381639, -"project": "boto3-type-annotations" +"download_count": 1980346, +"project": "pyreadline3" }, { -"download_count": 1376064, -"project": "etils" +"download_count": 1978986, +"project": "diff-match-patch" }, { -"download_count": 1376030, -"project": "parsel" +"download_count": 1973861, +"project": "torchsde" }, { -"download_count": 1375467, -"project": "facebook-business" +"download_count": 1973585, +"project": "std-uritemplate" }, { -"download_count": 1373734, -"project": "branca" +"download_count": 1968036, +"project": "tensorflow-hub" }, { -"download_count": 1371951, -"project": "sphinx-design" +"download_count": 1966212, +"project": "pybcj" }, { -"download_count": 1371464, -"project": "koalas" +"download_count": 1959990, +"project": "graphframes" }, { -"download_count": 1370256, -"project": "dicttoxml" +"download_count": 1959428, +"project": "python-string-utils" }, { -"download_count": 1369930, -"project": "pynndescent" +"download_count": 1952263, +"project": "json-repair" }, { -"download_count": 1369471, -"project": "django-cleanup" +"download_count": 1944737, +"project": "pydispatcher" }, { -"download_count": 1368552, -"project": "hatch-requirements-txt" +"download_count": 1937203, +"project": "shtab" }, { -"download_count": 1368459, -"project": "c7n" +"download_count": 1936295, +"project": "dj-database-url" }, { -"download_count": 1366986, -"project": "mongomock" +"download_count": 1936071, +"project": "py-serializable" }, { -"download_count": 1366328, -"project": "pastedeploy" +"download_count": 1934865, +"project": "kivy-garden" }, { -"download_count": 1363856, -"project": "pydevd" +"download_count": 1933694, +"project": "polling" }, { -"download_count": 1363176, -"project": "flake8-docstrings" +"download_count": 1931163, +"project": "cloud-sql-python-connector" }, { -"download_count": 1362070, -"project": "pyclipper" +"download_count": 1928197, +"project": "azure-core-tracing-opentelemetry" }, { -"download_count": 1361542, -"project": "gspread-dataframe" +"download_count": 1927566, +"project": "trampoline" }, { -"download_count": 1361443, -"project": "flask-socketio" +"download_count": 1926648, +"project": "pytest-httpx" }, { -"download_count": 1360797, -"project": "codecov" +"download_count": 1923124, +"project": "tensorflow-datasets" }, { -"download_count": 1356670, -"project": "opentelemetry-resource-detector-azure" +"download_count": 1919326, +"project": "contextvars" }, { -"download_count": 1351568, -"project": "folium" +"download_count": 1918433, +"project": "multivolumefile" }, { -"download_count": 1347491, -"project": "category-encoders" +"download_count": 1917648, +"project": "tld" }, { -"download_count": 1346458, -"project": "memory-profiler" +"download_count": 1910912, +"project": "subprocess-tee" }, { -"download_count": 1346171, -"project": "rq" +"download_count": 1910840, +"project": "singledispatch" }, { -"download_count": 1345900, -"project": "genson" +"download_count": 1901140, +"project": "hologram" }, { -"download_count": 1345798, -"project": "intelhex" +"download_count": 1900933, +"project": "azure-search-documents" }, { -"download_count": 1342338, -"project": "pystache" +"download_count": 1899667, +"project": "lmfit" }, { -"download_count": 1340833, -"project": "imagehash" +"download_count": 1899136, +"project": "opsgenie-sdk" }, { -"download_count": 1339598, -"project": "azure-mgmt-appcontainers" +"download_count": 1898920, +"project": "databricks-connect" }, { -"download_count": 1336818, -"project": "scs" +"download_count": 1897766, +"project": "requirements-parser" }, { -"download_count": 1336235, -"project": "transaction" +"download_count": 1896267, +"project": "cloudformation-cli-python-lib" }, { -"download_count": 1335602, -"project": "pdfkit" +"download_count": 1892649, +"project": "sudachipy" }, { -"download_count": 1328889, -"project": "path" +"download_count": 1892367, +"project": "azure-monitor-opentelemetry" }, { -"download_count": 1326922, -"project": "django-htmx" +"download_count": 1892309, +"project": "rustworkx" }, { -"download_count": 1326274, -"project": "pyunormalize" +"download_count": 1891112, +"project": "dominate" }, { -"download_count": 1325548, -"project": "pprintpp" +"download_count": 1889842, +"project": "prometheus-fastapi-instrumentator" }, { -"download_count": 1321295, -"project": "pydata-sphinx-theme" +"download_count": 1887759, +"project": "python-ldap" }, { -"download_count": 1317686, -"project": "django-model-utils" +"download_count": 1886134, +"project": "mysql-connector" }, { -"download_count": 1317211, -"project": "uwsgi" +"download_count": 1884983, +"project": "flake8-docstrings" }, { -"download_count": 1316433, -"project": "conan" +"download_count": 1884474, +"project": "funcy" }, { -"download_count": 1316299, -"project": "pinecone-client" +"download_count": 1882077, +"project": "signalfx" }, { -"download_count": 1314213, -"project": "arviz" +"download_count": 1881983, +"project": "gdown" }, { -"download_count": 1311577, -"project": "j2cli" +"download_count": 1880722, +"project": "sounddevice" }, { -"download_count": 1308684, -"project": "textblob" +"download_count": 1880659, +"project": "pytest-json-report" }, { -"download_count": 1305366, -"project": "certbot-dns-cloudflare" +"download_count": 1880108, +"project": "stone" }, { -"download_count": 1305054, -"project": "cerberus-python-client" +"download_count": 1878714, +"project": "aiofile" }, { -"download_count": 1305029, -"project": "country-converter" +"download_count": 1874716, +"project": "snuggs" }, { -"download_count": 1304540, -"project": "zopfli" +"download_count": 1874171, +"project": "google-analytics-data" }, { -"download_count": 1300485, -"project": "mongoengine" +"download_count": 1873784, +"project": "pydicom" }, { -"download_count": 1297342, -"project": "open-clip-torch" +"download_count": 1869726, +"project": "pygeohash" }, { -"download_count": 1295312, -"project": "nvidia-cusolver-cu11" +"download_count": 1862094, +"project": "hjson" }, { -"download_count": 1293062, -"project": "backports-tempfile" +"download_count": 1861462, +"project": "azure-cli-telemetry" }, { -"download_count": 1292242, -"project": "langgraph" +"download_count": 1860463, +"project": "flatten-json" }, { -"download_count": 1291448, -"project": "pytest-bdd" +"download_count": 1859826, +"project": "channels" }, { -"download_count": 1289651, -"project": "qdldl" +"download_count": 1859313, +"project": "tzfpy" }, { -"download_count": 1289270, -"project": "ecos" +"download_count": 1858076, +"project": "mkdocs-autorefs" }, { -"download_count": 1288705, -"project": "polib" +"download_count": 1857059, +"project": "edgegrid-python" }, { -"download_count": 1288235, -"project": "uuid6" +"download_count": 1854806, +"project": "mockito" }, { -"download_count": 1287528, -"project": "aioresponses" +"download_count": 1852024, +"project": "opentelemetry-instrumentation-redis" }, { -"download_count": 1284527, -"project": "nvidia-cuda-cupti-cu11" +"download_count": 1851544, +"project": "chispa" }, { -"download_count": 1283832, -"project": "mleap" +"download_count": 1848499, +"project": "pyluach" }, { -"download_count": 1282601, -"project": "nvidia-cusparse-cu11" +"download_count": 1848014, +"project": "pytest-aiohttp" }, { -"download_count": 1281986, -"project": "dbt-spark" +"download_count": 1847070, +"project": "pynvim" }, { -"download_count": 1280290, -"project": "ntlm-auth" +"download_count": 1846632, +"project": "pytest-subtests" }, { -"download_count": 1280186, -"project": "dockerfile-parse" +"download_count": 1845360, +"project": "shareplum" }, { -"download_count": 1279878, -"project": "python-crfsuite" +"download_count": 1843889, +"project": "sqlalchemy2-stubs" }, { -"download_count": 1277410, -"project": "queuelib" +"download_count": 1842621, +"project": "lasio" }, { -"download_count": 1276703, -"project": "nvidia-cufft-cu11" +"download_count": 1841992, +"project": "pymemcache" }, { -"download_count": 1276048, -"project": "nvidia-curand-cu11" +"download_count": 1840440, +"project": "types-jsonschema" }, { -"download_count": 1275685, -"project": "google-analytics-data" +"download_count": 1839863, +"project": "azure-ai-ml" }, { -"download_count": 1275464, -"project": "hdbcli" +"download_count": 1834208, +"project": "aioredis" }, { -"download_count": 1275069, -"project": "requirements-parser" +"download_count": 1833675, +"project": "docker-compose" }, { -"download_count": 1271427, -"project": "psycopg-pool" +"download_count": 1828270, +"project": "accessible-pygments" }, { -"download_count": 1270749, -"project": "boto3-stubs-lite" +"download_count": 1825115, +"project": "numpydoc" }, { -"download_count": 1269535, -"project": "google-cloud-trace" +"download_count": 1824635, +"project": "pypyp" }, { -"download_count": 1263584, -"project": "cohere" +"download_count": 1821167, +"project": "syrupy" }, { -"download_count": 1262948, -"project": "types-tabulate" +"download_count": 1820531, +"project": "truststore" }, { -"download_count": 1262542, -"project": "exchangelib" +"download_count": 1817565, +"project": "json-delta" }, { -"download_count": 1260553, -"project": "nvidia-nvtx-cu11" +"download_count": 1817434, +"project": "pyramid-jinja2" }, { -"download_count": 1259840, -"project": "scrapy" +"download_count": 1816060, +"project": "memoization" }, { -"download_count": 1258303, -"project": "pylev" +"download_count": 1815767, +"project": "types-pillow" }, { -"download_count": 1258131, -"project": "numcodecs" +"download_count": 1813922, +"project": "colored" }, { -"download_count": 1256803, -"project": "igraph" +"download_count": 1813591, +"project": "dagster-docker" }, { -"download_count": 1256784, -"project": "django-appconf" +"download_count": 1812943, +"project": "pycairo" }, { -"download_count": 1255693, -"project": "coreschema" +"download_count": 1809068, +"project": "urwid" }, { -"download_count": 1252265, -"project": "azureml-dataprep-rslex" +"download_count": 1808577, +"project": "opentracing" }, { -"download_count": 1248981, -"project": "pyluach" +"download_count": 1808332, +"project": "azure-mgmt-notificationhubs" }, { -"download_count": 1240454, -"project": "idna-ssl" +"download_count": 1806214, +"project": "schematics" }, { -"download_count": 1239523, -"project": "sphinx-copybutton" +"download_count": 1805431, +"project": "django-oauth-toolkit" }, { -"download_count": 1238841, -"project": "pyzipper" +"download_count": 1805285, +"project": "aws-cdk-asset-node-proxy-agent-v6" }, { -"download_count": 1237520, -"project": "nvidia-nccl-cu11" +"download_count": 1805197, +"project": "polib" }, { -"download_count": 1236550, -"project": "moviepy" +"download_count": 1803364, +"project": "pyudev" }, { -"download_count": 1230649, -"project": "django-celery-results" +"download_count": 1802628, +"project": "coreschema" }, { -"download_count": 1226684, -"project": "alive-progress" +"download_count": 1798503, +"project": "rq" }, { -"download_count": 1226221, -"project": "base58" +"download_count": 1796985, +"project": "towncrier" }, { -"download_count": 1226189, -"project": "xmlsec" +"download_count": 1795829, +"project": "opentelemetry-instrumentation-sqlalchemy" }, { -"download_count": 1221639, -"project": "tensorflow-intel" +"download_count": 1791866, +"project": "intervaltree" }, { -"download_count": 1221466, -"project": "supervision" +"download_count": 1791185, +"project": "boa-str" }, { -"download_count": 1221107, -"project": "rx" +"download_count": 1790426, +"project": "pydyf" }, { -"download_count": 1220865, -"project": "cmd2" +"download_count": 1789719, +"project": "f90nml" }, { -"download_count": 1219746, -"project": "itemloaders" +"download_count": 1787374, +"project": "undetected-chromedriver" }, { -"download_count": 1218735, -"project": "setuptools-git-versioning" +"download_count": 1787132, +"project": "jproperties" }, { -"download_count": 1218076, -"project": "rembg" +"download_count": 1786878, +"project": "timeout-decorator" }, { -"download_count": 1215949, -"project": "requests-unixsocket" +"download_count": 1782904, +"project": "tf-keras" }, { -"download_count": 1213234, -"project": "pycurl" +"download_count": 1781158, +"project": "opentelemetry-resource-detector-azure" }, { -"download_count": 1212021, -"project": "markdownify" +"download_count": 1778471, +"project": "insight-cli" }, { -"download_count": 1211977, -"project": "flake8-isort" +"download_count": 1773711, +"project": "pytest-instafail" }, { -"download_count": 1209634, -"project": "clang-format" +"download_count": 1767231, +"project": "virtualenv-clone" }, { -"download_count": 1209173, -"project": "protego" +"download_count": 1765908, +"project": "azure-mgmt-logic" }, { -"download_count": 1208881, -"project": "python-hcl2" +"download_count": 1765873, +"project": "google-cloud-recommendations-ai" }, { -"download_count": 1208645, -"project": "tritonclient" +"download_count": 1764615, +"project": "langgraph" }, { -"download_count": 1208007, -"project": "opentelemetry-propagator-aws-xray" +"download_count": 1762926, +"project": "sphinx-basic-ng" }, { -"download_count": 1206197, -"project": "itemadapter" +"download_count": 1760083, +"project": "etils" }, { -"download_count": 1205975, -"project": "gitdb2" +"download_count": 1758693, +"project": "urllib3-secure-extra" }, { -"download_count": 1203484, -"project": "safety" +"download_count": 1754849, +"project": "pure-sasl" }, { -"download_count": 1203265, -"project": "python-xlib" +"download_count": 1752093, +"project": "fasttext" }, { -"download_count": 1198849, -"project": "openlineage-integration-common" +"download_count": 1750736, +"project": "caio" }, { -"download_count": 1198399, -"project": "unstructured" +"download_count": 1747244, +"project": "jq" }, { -"download_count": 1198315, -"project": "rfc3987" +"download_count": 1744672, +"project": "apache-sedona" }, { -"download_count": 1198206, -"project": "pytest-instafail" +"download_count": 1744473, +"project": "onnxruntime-gpu" }, { -"download_count": 1196449, -"project": "about-time" +"download_count": 1744142, +"project": "setuptools-scm-git-archive" }, { -"download_count": 1192430, -"project": "asana" +"download_count": 1740576, +"project": "backports-functools-lru-cache" }, { -"download_count": 1188803, -"project": "ansible-lint" +"download_count": 1740473, +"project": "sqlparams" }, { -"download_count": 1188494, -"project": "aws-encryption-sdk" +"download_count": 1732988, +"project": "quart" }, { -"download_count": 1187200, -"project": "resampy" +"download_count": 1732116, +"project": "munch" }, { -"download_count": 1187189, -"project": "daphne" +"download_count": 1728500, +"project": "boostedblob" }, { -"download_count": 1186154, -"project": "prometheus-fastapi-instrumentator" +"download_count": 1728185, +"project": "azure-mgmt-apimanagement" }, { -"download_count": 1185204, -"project": "pymatting" +"download_count": 1721539, +"project": "pylint-plugin-utils" }, { -"download_count": 1185165, -"project": "pydyf" +"download_count": 1718086, +"project": "sarif-om" }, { -"download_count": 1184307, -"project": "cairocffi" +"download_count": 1710311, +"project": "azure-servicefabric" }, { -"download_count": 1183496, -"project": "tensorflow-io" +"download_count": 1708273, +"project": "bottleneck" }, { -"download_count": 1181296, -"project": "pypi-timemachine" +"download_count": 1708257, +"project": "checksumdir" }, { -"download_count": 1180319, -"project": "gs-quant" +"download_count": 1706274, +"project": "types-certifi" }, { -"download_count": 1180088, -"project": "soda-core-spark" +"download_count": 1705729, +"project": "easydict" }, { -"download_count": 1179397, -"project": "dependency-injector" +"download_count": 1705092, +"project": "jsonconversion" }, { -"download_count": 1179105, -"project": "opentelemetry-sdk-extension-aws" +"download_count": 1703574, +"project": "wordcloud" }, { -"download_count": 1178614, -"project": "gcs-oauth2-boto-plugin" +"download_count": 1703568, +"project": "robotframework-seleniumlibrary" }, { -"download_count": 1178182, -"project": "node-semver" +"download_count": 1703314, +"project": "dirtyjson" }, { -"download_count": 1176577, -"project": "logzero" +"download_count": 1703199, +"project": "xformers" }, { -"download_count": 1176182, -"project": "dockerpty" +"download_count": 1702557, +"project": "requests-aws-sign" }, { -"download_count": 1175068, -"project": "xmod" +"download_count": 1702324, +"project": "pdm" }, { -"download_count": 1173385, -"project": "cairosvg" +"download_count": 1701274, +"project": "pywinauto" }, { -"download_count": 1173176, -"project": "microsoft-kiota-authentication-azure" +"download_count": 1700462, +"project": "codeowners" }, { -"download_count": 1172309, -"project": "python-keycloak" +"download_count": 1698947, +"project": "azure-mgmt" }, { -"download_count": 1172217, -"project": "bc-detect-secrets" +"download_count": 1698736, +"project": "inflate64" }, { -"download_count": 1170490, -"project": "editor" +"download_count": 1698193, +"project": "clarabel" }, { -"download_count": 1170249, -"project": "paste" +"download_count": 1697849, +"project": "ecos" }, { -"download_count": 1168594, -"project": "types-pygments" +"download_count": 1695683, +"project": "azure-mgmt-scheduler" }, { -"download_count": 1167872, -"project": "rdkit" +"download_count": 1694095, +"project": "numdifftools" }, { -"download_count": 1167868, -"project": "runs" +"download_count": 1692204, +"project": "opentelemetry-instrumentation-aiohttp-client" }, { -"download_count": 1166389, -"project": "jieba" +"download_count": 1691672, +"project": "pyserial-asyncio" }, { -"download_count": 1165077, -"project": "dnslib" +"download_count": 1690460, +"project": "fpdf2" }, { -"download_count": 1164550, -"project": "nibabel" +"download_count": 1689219, +"project": "mypy-boto3-athena" }, { -"download_count": 1162856, -"project": "funcy" +"download_count": 1688279, +"project": "slotted" }, { -"download_count": 1162721, -"project": "dbus-fast" +"download_count": 1686688, +"project": "tlparse" }, { -"download_count": 1160637, -"project": "pyvirtualdisplay" +"download_count": 1686518, +"project": "pamqp" }, { -"download_count": 1160237, -"project": "flask-compress" +"download_count": 1684699, +"project": "azure-mgmt-commerce" }, { -"download_count": 1159876, -"project": "qdrant-client" +"download_count": 1684222, +"project": "parsel" }, { -"download_count": 1159180, -"project": "urwid" +"download_count": 1684087, +"project": "soda-core" }, { -"download_count": 1158685, -"project": "kornia-rs" +"download_count": 1683517, +"project": "azure-mgmt-powerbiembedded" }, { -"download_count": 1157882, -"project": "weaviate-client" +"download_count": 1682742, +"project": "nptyping" }, { -"download_count": 1157387, -"project": "html5lib-modern" +"download_count": 1682481, +"project": "tk" }, { -"download_count": 1157241, -"project": "nose2" +"download_count": 1682195, +"project": "flask-socketio" }, { -"download_count": 1157154, -"project": "dohq-artifactory" +"download_count": 1682112, +"project": "gpxpy" }, { -"download_count": 1157107, -"project": "bitstruct" +"download_count": 1680274, +"project": "decopatch" }, { -"download_count": 1156836, -"project": "ydata-profiling" +"download_count": 1678980, +"project": "dagster" }, { -"download_count": 1156741, -"project": "hatch" +"download_count": 1678866, +"project": "azure-servicemanagement-legacy" }, { -"download_count": 1155397, -"project": "htmlmin" +"download_count": 1678052, +"project": "azure-mgmt-hanaonazure" }, { -"download_count": 1153656, -"project": "mypy-boto3-iam" +"download_count": 1677172, +"project": "rpyc" }, { -"download_count": 1153063, -"project": "openlineage-python" +"download_count": 1675512, +"project": "azure-mgmt-machinelearningcompute" }, { -"download_count": 1152818, -"project": "notifiers" +"download_count": 1674700, +"project": "pyramid-debugtoolbar" }, { -"download_count": 1152629, -"project": "django-stubs-ext" +"download_count": 1674200, +"project": "azure-mgmt-managementpartner" }, { -"download_count": 1150661, -"project": "sasl" +"download_count": 1674126, +"project": "jschema-to-python" }, { -"download_count": 1150515, -"project": "aliyun-python-sdk-core" +"download_count": 1672628, +"project": "folium" }, { -"download_count": 1149432, -"project": "bazel-runfiles" +"download_count": 1671729, +"project": "llama-index-agent-openai" }, { -"download_count": 1147974, -"project": "django-stubs" +"download_count": 1671244, +"project": "dockerfile-parse" }, { -"download_count": 1147886, -"project": "patch-ng" +"download_count": 1671160, +"project": "serial" }, { -"download_count": 1147474, -"project": "ibm-db" +"download_count": 1669366, +"project": "dbt-redshift" }, { -"download_count": 1145212, -"project": "zope-proxy" +"download_count": 1665156, +"project": "databricks-pypi1" }, { -"download_count": 1145211, -"project": "llama-index-llms-openai" +"download_count": 1663593, +"project": "vulture" }, { -"download_count": 1144696, -"project": "ansi2html" +"download_count": 1662142, +"project": "riot" }, { -"download_count": 1141564, -"project": "pure-sasl" +"download_count": 1661835, +"project": "jieba" }, { -"download_count": 1141232, -"project": "soda-core-spark-df" +"download_count": 1658155, +"project": "hishel" }, { -"download_count": 1140666, -"project": "selenium-wire" +"download_count": 1656740, +"project": "azure-schemaregistry" }, { -"download_count": 1140400, -"project": "pylint-django" +"download_count": 1656401, +"project": "pyclipper" }, { -"download_count": 1131895, -"project": "django-crispy-forms" +"download_count": 1655371, +"project": "uwsgi" }, { -"download_count": 1131538, -"project": "microsoft-kiota-abstractions" +"download_count": 1655279, +"project": "editdistance" }, { -"download_count": 1131165, -"project": "dbl-tempo" +"download_count": 1653576, +"project": "pyramid-mako" }, { -"download_count": 1131132, -"project": "neo4j" +"download_count": 1653307, +"project": "flashtext" }, { -"download_count": 1130683, -"project": "opentelemetry-instrumentation-sqlalchemy" +"download_count": 1652454, +"project": "branca" }, { -"download_count": 1127159, -"project": "braceexpand" +"download_count": 1652443, +"project": "types-html5lib" }, { -"download_count": 1121797, -"project": "cliff" +"download_count": 1652386, +"project": "python-crfsuite" }, { -"download_count": 1121173, -"project": "zope-deferredimport" +"download_count": 1649510, +"project": "azure-mgmt-devspaces" }, { -"download_count": 1121039, -"project": "sentinels" +"download_count": 1642992, +"project": "casefy" }, { -"download_count": 1121027, -"project": "verboselogs" +"download_count": 1640291, +"project": "pytest-playwright" }, { -"download_count": 1119374, -"project": "troposphere" +"download_count": 1638816, +"project": "findpython" }, { -"download_count": 1117952, -"project": "mypy-boto3-stepfunctions" +"download_count": 1636861, +"project": "queuelib" }, { -"download_count": 1117374, -"project": "persistent" +"download_count": 1635691, +"project": "mongoengine" }, { -"download_count": 1117150, -"project": "pybytebuffer" +"download_count": 1635209, +"project": "moviepy" }, { -"download_count": 1115863, -"project": "opentelemetry-instrumentation-redis" +"download_count": 1634051, +"project": "lmdb" }, { -"download_count": 1115594, -"project": "restrictedpython" +"download_count": 1633620, +"project": "mutagen" }, { -"download_count": 1115387, -"project": "sqlfluff-templater-dbt" +"download_count": 1631454, +"project": "azure-applicationinsights" }, { -"download_count": 1114780, -"project": "lunarcalendar" +"download_count": 1630947, +"project": "azure-cli" }, { -"download_count": 1112533, -"project": "aioredis" +"download_count": 1630071, +"project": "dagster-pipes" }, { -"download_count": 1111615, -"project": "bottleneck" +"download_count": 1629851, +"project": "zstd" }, { -"download_count": 1111405, -"project": "btrees" +"download_count": 1625941, +"project": "pywinrm" }, { -"download_count": 1109008, -"project": "pretty-html-table" +"download_count": 1623578, +"project": "setuptools-git-versioning" }, { -"download_count": 1104513, -"project": "mkdocstrings" +"download_count": 1623064, +"project": "langchain-experimental" }, { -"download_count": 1104455, -"project": "glob2" +"download_count": 1622911, +"project": "llama-index-readers-llama-parse" }, { -"download_count": 1101704, -"project": "zarr" +"download_count": 1621226, +"project": "aws-secretsmanager-caching" }, { -"download_count": 1101383, -"project": "memray" +"download_count": 1619505, +"project": "opentelemetry-instrumentation-httpx" }, { -"download_count": 1099026, -"project": "c7n-org" +"download_count": 1619174, +"project": "dataclasses-avroschema" }, { -"download_count": 1098842, -"project": "policy-sentry" +"download_count": 1617636, +"project": "ws4py" }, { -"download_count": 1098312, -"project": "s3cmd" +"download_count": 1616438, +"project": "striprtf" }, { -"download_count": 1098088, -"project": "artifacts-keyring" +"download_count": 1611761, +"project": "temporalio" }, { -"download_count": 1096397, -"project": "pytest-assume" +"download_count": 1609436, +"project": "boto3-type-annotations" }, { -"download_count": 1094706, -"project": "tempora" +"download_count": 1608845, +"project": "mypy-boto3-iam" }, { -"download_count": 1094376, -"project": "aws-lambda-builders" +"download_count": 1608586, +"project": "types-ujson" }, { -"download_count": 1092703, -"project": "credstash" +"download_count": 1606640, +"project": "llama-index-readers-file" }, { -"download_count": 1090873, -"project": "sphinxcontrib-mermaid" +"download_count": 1606488, +"project": "dep-logic" }, { -"download_count": 1090164, -"project": "std-uritemplate" +"download_count": 1601125, +"project": "anyascii" }, { -"download_count": 1090011, -"project": "html-text" +"download_count": 1598794, +"project": "azure-mgmt-privatedns" }, { -"download_count": 1089081, -"project": "aws-sam-cli" +"download_count": 1597836, +"project": "django-appconf" }, { -"download_count": 1088040, -"project": "aiomultiprocess" +"download_count": 1597461, +"project": "aiogram" }, { -"download_count": 1087965, -"project": "spdx-tools" +"download_count": 1597274, +"project": "backports-weakref" }, { -"download_count": 1087817, -"project": "xattr" +"download_count": 1597155, +"project": "pandas-datareader" }, { -"download_count": 1087510, -"project": "openxlab" +"download_count": 1596560, +"project": "redis-py-cluster" }, { -"download_count": 1086941, -"project": "orbax-checkpoint" +"download_count": 1595834, +"project": "pywinpty" }, { -"download_count": 1086322, -"project": "apache-airflow-providers-dbt-cloud" +"download_count": 1591143, +"project": "prefect-aws" }, { -"download_count": 1086041, -"project": "azureml-dataprep-native" +"download_count": 1590423, +"project": "pbs-installer" }, { -"download_count": 1086038, -"project": "dbt-databricks" +"download_count": 1585505, +"project": "daphne" }, { -"download_count": 1085158, -"project": "html-testrunner" +"download_count": 1584856, +"project": "itemadapter" }, { -"download_count": 1085011, -"project": "roman" +"download_count": 1584732, +"project": "tableauhyperapi" }, { -"download_count": 1079954, -"project": "bc-python-hcl2" +"download_count": 1582631, +"project": "safety" }, { -"download_count": 1079841, -"project": "easydict" +"download_count": 1582359, +"project": "codespell" }, { -"download_count": 1079196, -"project": "jsonpath-python" +"download_count": 1578750, +"project": "pipelinewise-singer-python" }, { -"download_count": 1078895, -"project": "teradatasqlalchemy" +"download_count": 1578660, +"project": "django-model-utils" }, { -"download_count": 1077942, -"project": "thop" +"download_count": 1576410, +"project": "opentelemetry-propagator-aws-xray" }, { -"download_count": 1076253, -"project": "pytest-subtests" +"download_count": 1575389, +"project": "github-heatmap" }, { -"download_count": 1076044, -"project": "gprof2dot" +"download_count": 1572930, +"project": "types-cryptography" }, { -"download_count": 1073897, -"project": "tensorflow-addons" +"download_count": 1572481, +"project": "pybuildkite" }, { -"download_count": 1072906, -"project": "requests-auth-aws-sigv4" +"download_count": 1571984, +"project": "imagehash" }, { -"download_count": 1068754, -"project": "z3-solver" +"download_count": 1571237, +"project": "fixtures" }, { -"download_count": 1067795, -"project": "python-stdnum" +"download_count": 1570747, +"project": "autograd-gamma" }, { -"download_count": 1066551, -"project": "llama-index-indices-managed-llama-cloud" +"download_count": 1568069, +"project": "python-xlib" }, { -"download_count": 1066499, -"project": "mmcif" +"download_count": 1567576, +"project": "pdfkit" }, { -"download_count": 1066233, -"project": "mss" +"download_count": 1566105, +"project": "azure-mgmt-hdinsight" }, { -"download_count": 1065193, -"project": "dparse" +"download_count": 1564384, +"project": "cairocffi" }, { -"download_count": 1064518, -"project": "colorclass" +"download_count": 1563303, +"project": "youtube-transcript-api" }, { -"download_count": 1063813, -"project": "cloudsplaining" +"download_count": 1562301, +"project": "alive-progress" }, { -"download_count": 1061123, -"project": "opencv-contrib-python-headless" +"download_count": 1561561, +"project": "flametree" }, { -"download_count": 1061089, -"project": "types-jsonschema" +"download_count": 1558563, +"project": "jsonpath-rw" }, { -"download_count": 1060460, -"project": "simple-gcp-object-downloader" +"download_count": 1556382, +"project": "pyopengl" }, { -"download_count": 1059789, -"project": "jaraco-text" +"download_count": 1555764, +"project": "modin" }, { -"download_count": 1058267, -"project": "checkdigit" +"download_count": 1554648, +"project": "ansible-lint" }, { -"download_count": 1057028, -"project": "annoy" +"download_count": 1554418, +"project": "protego" }, { -"download_count": 1053562, -"project": "pulumi" +"download_count": 1553368, +"project": "palettable" }, { -"download_count": 1052878, -"project": "visions" +"download_count": 1551850, +"project": "boto3-stubs-lite" }, { -"download_count": 1051581, -"project": "aliyun-python-sdk-kms" +"download_count": 1551114, +"project": "scrapy" }, { -"download_count": 1051370, -"project": "priority" +"download_count": 1549634, +"project": "types-psycopg2" }, { -"download_count": 1047016, -"project": "microsoft-security-utilities-secret-masker" +"download_count": 1549397, +"project": "typeid-python" }, { -"download_count": 1046733, -"project": "opentelemetry-instrumentation-aiohttp-client" +"download_count": 1548183, +"project": "types-mock" }, { -"download_count": 1045558, -"project": "aiokafka" +"download_count": 1545131, +"project": "types-python-slugify" }, { -"download_count": 1045534, -"project": "onnxconverter-common" +"download_count": 1544539, +"project": "python-codon-tables" }, { -"download_count": 1045348, -"project": "singleton-decorator" +"download_count": 1544144, +"project": "dnachisel" }, { -"download_count": 1043509, -"project": "mypy-boto3-ecr" +"download_count": 1542704, +"project": "pysnmp" }, { -"download_count": 1040617, -"project": "openlineage-airflow" +"download_count": 1539631, +"project": "install-jdk" }, { -"download_count": 1039733, -"project": "awkward" +"download_count": 1536612, +"project": "hdbcli" }, { -"download_count": 1038940, -"project": "premailer" +"download_count": 1534510, +"project": "google-cloud-trace" }, { -"download_count": 1037423, -"project": "intervaltree" +"download_count": 1534306, +"project": "asgi-lifespan" }, { -"download_count": 1036760, -"project": "django-phonenumber-field" +"download_count": 1533876, +"project": "pandasql" }, { -"download_count": 1036502, -"project": "pywinpty" +"download_count": 1533259, +"project": "mando" }, { -"download_count": 1035132, -"project": "anyascii" +"download_count": 1531014, +"project": "nvidia-cusolver-cu11" }, { -"download_count": 1034690, -"project": "aiogram" +"download_count": 1529922, +"project": "gprof2dot" }, { -"download_count": 1034618, -"project": "awkward-cpp" +"download_count": 1528404, +"project": "pulumi" }, { -"download_count": 1033950, -"project": "django-simple-history" +"download_count": 1525974, +"project": "nbsphinx" }, { -"download_count": 1033789, -"project": "autocommand" +"download_count": 1525863, +"project": "azure-mgmt-synapse" }, { -"download_count": 1033587, -"project": "flask-oidc" +"download_count": 1522300, +"project": "nvidia-cufft-cu11" }, { -"download_count": 1030405, -"project": "opentelemetry-exporter-gcp-trace" +"download_count": 1521669, +"project": "azure-mgmt-security" }, { -"download_count": 1028077, -"project": "apsw" +"download_count": 1521503, +"project": "arpeggio" }, { -"download_count": 1027723, -"project": "skl2onnx" +"download_count": 1521220, +"project": "cairosvg" }, { -"download_count": 1026762, -"project": "youtube-transcript-api" +"download_count": 1521052, +"project": "pytimeparse2" }, { -"download_count": 1026265, -"project": "pgvector" +"download_count": 1520810, +"project": "radon" }, { -"download_count": 1024196, -"project": "apache-airflow-providers-mongo" +"download_count": 1519514, +"project": "conan" }, { -"download_count": 1023012, -"project": "clarabel" +"download_count": 1517944, +"project": "nvidia-cuda-cupti-cu11" }, { -"download_count": 1022233, -"project": "quantlib" +"download_count": 1515806, +"project": "nvidia-cusparse-cu11" }, { -"download_count": 1021034, -"project": "property-manager" +"download_count": 1514979, +"project": "antlr4-tools" }, { -"download_count": 1017995, -"project": "zodbpickle" +"download_count": 1513248, +"project": "opentelemetry-instrumentation-botocore" }, { -"download_count": 1015477, -"project": "flake8-comprehensions" +"download_count": 1513200, +"project": "types-simplejson" }, { -"download_count": 1012319, -"project": "llama-index-agent-openai" +"download_count": 1512382, +"project": "category-encoders" }, { -"download_count": 1011432, -"project": "zconfig" +"download_count": 1509221, +"project": "dnslib" }, { -"download_count": 1011266, -"project": "pyserial-asyncio" +"download_count": 1508767, +"project": "nvidia-curand-cu11" }, { -"download_count": 1011158, -"project": "linecache2" +"download_count": 1507523, +"project": "spglib" }, { -"download_count": 1011026, -"project": "joserfc" +"download_count": 1507488, +"project": "dpkt" }, { -"download_count": 1009187, -"project": "jaraco-collections" +"download_count": 1504340, +"project": "node-semver" }, { -"download_count": 1008774, -"project": "jsonpath-rw" +"download_count": 1503739, +"project": "oci" }, { -"download_count": 1008389, -"project": "segment-anything" +"download_count": 1503021, +"project": "pysmi" }, { -"download_count": 1007803, -"project": "soda-core-snowflake" +"download_count": 1502844, +"project": "robotframework-requests" }, { -"download_count": 1006556, -"project": "zodb" +"download_count": 1500599, +"project": "pyandoc" }, { -"download_count": 1005612, -"project": "pycep-parser" +"download_count": 1500189, +"project": "geoalchemy2" }, { -"download_count": 1004611, -"project": "rpyc" +"download_count": 1500038, +"project": "gs-quant" }, { -"download_count": 1002224, -"project": "opsgenie-sdk" +"download_count": 1498023, +"project": "tox-uv" }, { -"download_count": 1001450, -"project": "autopage" +"download_count": 1497993, +"project": "hatch-requirements-txt" }, { -"download_count": 1000703, -"project": "traceback2" +"download_count": 1496637, +"project": "ansicolors" }, { -"download_count": 998716, -"project": "types-pillow" +"download_count": 1495057, +"project": "smartsheet-python-sdk" }, { -"download_count": 995758, -"project": "azure-storage" +"download_count": 1491634, +"project": "jupytext" }, { -"download_count": 995189, -"project": "opentelemetry-instrumentation-botocore" +"download_count": 1490788, +"project": "llama-index-cli" }, { -"download_count": 993082, -"project": "biotite" +"download_count": 1488622, +"project": "intelhex" }, { -"download_count": 992630, -"project": "msoffcrypto-tool" +"download_count": 1488148, +"project": "premailer" }, { -"download_count": 992529, -"project": "hubspot-api-client" +"download_count": 1487837, +"project": "grpclib" }, { -"download_count": 991047, -"project": "grpclib" +"download_count": 1486679, +"project": "open-clip-torch" }, { -"download_count": 990362, -"project": "oyaml" +"download_count": 1486065, +"project": "nvidia-nvtx-cu11" }, { -"download_count": 989981, -"project": "mypy-boto3-apigateway" +"download_count": 1485830, +"project": "simsimd" }, { -"download_count": 989819, -"project": "social-auth-core" +"download_count": 1485806, +"project": "linecache2" }, { -"download_count": 989248, -"project": "albucore" +"download_count": 1482835, +"project": "priority" }, { -"download_count": 988767, -"project": "zigpy" +"download_count": 1481947, +"project": "strawberry-graphql" }, { -"download_count": 987808, -"project": "numdifftools" +"download_count": 1479756, +"project": "dbus-fast" }, { -"download_count": 987743, -"project": "oci" +"download_count": 1479108, +"project": "slack-bolt" }, { -"download_count": 987414, -"project": "strict-rfc3339" +"download_count": 1478650, +"project": "asciitree" }, { -"download_count": 987301, -"project": "types-aiobotocore" +"download_count": 1476491, +"project": "traceback2" }, { -"download_count": 987203, -"project": "opentelemetry-resourcedetector-gcp" +"download_count": 1476016, +"project": "nvidia-nccl-cu11" }, { -"download_count": 987143, -"project": "dirtyjson" +"download_count": 1471694, +"project": "dbt-spark" }, { -"download_count": 986749, -"project": "mediapipe" +"download_count": 1469574, +"project": "python-hcl2" }, { -"download_count": 986709, -"project": "jsonschema-spec" +"download_count": 1468188, +"project": "freetype-py" }, { -"download_count": 986258, -"project": "cherrypy" +"download_count": 1466204, +"project": "mypy-boto3-ssm" }, { -"download_count": 984925, -"project": "azure-ai-formrecognizer" +"download_count": 1465287, +"project": "itemloaders" }, { -"download_count": 984655, -"project": "bc-jsonpath-ng" +"download_count": 1464335, +"project": "optimum" }, { -"download_count": 984631, -"project": "colored" +"download_count": 1464071, +"project": "pyformance" }, { -"download_count": 984534, -"project": "crccheck" +"download_count": 1462835, +"project": "click-help-colors" }, { -"download_count": 983930, -"project": "biotraj" +"download_count": 1462610, +"project": "about-time" }, { -"download_count": 982837, -"project": "django-ipware" +"download_count": 1462494, +"project": "certbot-dns-cloudflare" }, { -"download_count": 982829, -"project": "editdistance" +"download_count": 1460048, +"project": "tempora" }, { -"download_count": 982660, -"project": "pynvim" +"download_count": 1459568, +"project": "extras" }, { -"download_count": 981192, -"project": "snowflake" +"download_count": 1457852, +"project": "tensorflow-intel" }, { -"download_count": 979701, -"project": "betterproto" +"download_count": 1456141, +"project": "dicttoxml" }, { -"download_count": 979256, -"project": "types-cryptography" +"download_count": 1453160, +"project": "azure-multiapi-storage" }, { -"download_count": 976783, -"project": "jsonmerge" +"download_count": 1451894, +"project": "mypy-boto3-stepfunctions" }, { -"download_count": 976286, -"project": "curl-cffi" +"download_count": 1450843, +"project": "typish" }, { -"download_count": 972075, -"project": "tmtools" +"download_count": 1450248, +"project": "future-fstrings" }, { -"download_count": 971806, -"project": "arabic-reshaper" +"download_count": 1448238, +"project": "logging-azure-rest" }, { -"download_count": 970369, -"project": "mockito" +"download_count": 1448090, +"project": "mypy-boto3-ecr" }, { -"download_count": 969988, -"project": "ibm-cloud-sdk-core" +"download_count": 1445850, +"project": "apache-airflow-providers-mongo" }, { -"download_count": 968429, -"project": "livy" +"download_count": 1445313, +"project": "llama-index-embeddings-openai" }, { -"download_count": 968028, -"project": "seqio-nightly" +"download_count": 1444775, +"project": "braceexpand" }, { -"download_count": 967909, -"project": "tables" +"download_count": 1444329, +"project": "cmd2" }, { -"download_count": 967261, -"project": "mypy-boto3-kinesis" +"download_count": 1443155, +"project": "ecs-logging" }, { -"download_count": 965789, -"project": "types-pyserial" +"download_count": 1441326, +"project": "requests-unixsocket" }, { -"download_count": 964256, -"project": "aws-secretsmanager-caching" +"download_count": 1439197, +"project": "aws-encryption-sdk" }, { -"download_count": 963234, -"project": "apache-airflow-providers-jdbc" +"download_count": 1436419, +"project": "discord" }, { -"download_count": 963234, -"project": "polling2" +"download_count": 1433603, +"project": "uproot" }, { -"download_count": 962049, -"project": "js2py" +"download_count": 1432272, +"project": "tecton" }, { -"download_count": 960818, -"project": "peppercorn" +"download_count": 1429224, +"project": "pytube" }, { -"download_count": 960429, -"project": "dateformat" +"download_count": 1428999, +"project": "colorclass" }, { -"download_count": 960002, -"project": "requests-html" +"download_count": 1428988, +"project": "stdlib-list" }, { -"download_count": 959585, -"project": "piexif" +"download_count": 1428354, +"project": "orbax-checkpoint" }, { -"download_count": 959393, -"project": "python-can" +"download_count": 1427882, +"project": "djangorestframework-stubs" }, { -"download_count": 959367, -"project": "elastic-apm" +"download_count": 1427041, +"project": "clang-format" }, { -"download_count": 959123, -"project": "llama-index-readers-llama-parse" +"download_count": 1426054, +"project": "azure-mgmt-appconfiguration" }, { -"download_count": 957657, -"project": "langchain-experimental" +"download_count": 1425112, +"project": "llama-index-program-openai" }, { -"download_count": 957087, -"project": "bz2file" +"download_count": 1424209, +"project": "azure-mgmt-sqlvirtualmachine" }, { -"download_count": 956809, -"project": "smmap2" +"download_count": 1421316, +"project": "pyclothoids" }, { -"download_count": 956076, -"project": "typish" +"download_count": 1420572, +"project": "sphinx-argparse" }, { -"download_count": 955511, -"project": "types-simplejson" +"download_count": 1420395, +"project": "azure-mgmt-redhatopenshift" }, { -"download_count": 954547, -"project": "mkdocs-autorefs" +"download_count": 1417509, +"project": "soda-core-spark-df" }, { -"download_count": 950822, -"project": "portend" +"download_count": 1416591, +"project": "azure-mgmt-netapp" }, { -"download_count": 949333, -"project": "dogpile-cache" +"download_count": 1413343, +"project": "pytest-bdd" }, { -"download_count": 949221, -"project": "google-cloud-pipeline-components" +"download_count": 1412367, +"project": "azure-synapse-accesscontrol" }, { -"download_count": 948647, -"project": "striprtf" +"download_count": 1411353, +"project": "treelib" }, { -"download_count": 946322, -"project": "hnswlib" +"download_count": 1410979, +"project": "types-aiobotocore" }, { -"download_count": 943229, -"project": "repoze-lru" +"download_count": 1410505, +"project": "python-stdnum" }, { -"download_count": 942704, -"project": "microsoft-kiota-serialization-json" +"download_count": 1410477, +"project": "python-iso639" }, { -"download_count": 941885, -"project": "furo" +"download_count": 1410265, +"project": "openshift" }, { -"download_count": 941601, -"project": "lunardate" +"download_count": 1409815, +"project": "azure-keyvault-administration" }, { -"download_count": 939595, -"project": "googlemaps" +"download_count": 1404991, +"project": "sphinx-autobuild" }, { -"download_count": 938468, -"project": "tdqm" +"download_count": 1404864, +"project": "pyvirtualdisplay" }, { -"download_count": 936089, -"project": "svglib" +"download_count": 1404822, +"project": "django-phonenumber-field" }, { -"download_count": 935908, -"project": "llama-index-readers-file" +"download_count": 1403709, +"project": "flit" }, { -"download_count": 935100, -"project": "microsoft-kiota-serialization-text" +"download_count": 1400265, +"project": "django-celery-results" }, { -"download_count": 933432, -"project": "jiwer" +"download_count": 1398685, +"project": "find-libpython" }, { -"download_count": 932697, -"project": "plac" +"download_count": 1396772, +"project": "bazel-runfiles" }, { -"download_count": 932069, -"project": "sphinx-argparse" +"download_count": 1396232, +"project": "azure-mgmt-botservice" }, { -"download_count": 931955, -"project": "channels-redis" +"download_count": 1392838, +"project": "bc-detect-secrets" }, { -"download_count": 931452, -"project": "jupyter-ydoc" +"download_count": 1392045, +"project": "pylance" }, { -"download_count": 931180, -"project": "jupyter-server-ydoc" +"download_count": 1390697, +"project": "sse-starlette" }, { -"download_count": 930200, -"project": "google-cloud-bigquery-biglake" +"download_count": 1390607, +"project": "azure-mgmt-imagebuilder" }, { -"download_count": 929637, -"project": "lmfit" +"download_count": 1390471, +"project": "launchdarkly-eventsource" }, { -"download_count": 925914, -"project": "mypy-boto3-xray" +"download_count": 1390398, +"project": "mypy-boto3-kinesis" }, { -"download_count": 925454, -"project": "django-import-export" +"download_count": 1388790, +"project": "dparse" }, { -"download_count": 924439, -"project": "mypy-boto3-schemas" +"download_count": 1386608, +"project": "llama-index-multi-modal-llms-openai" }, { -"download_count": 924179, -"project": "sgqlc" +"download_count": 1385664, +"project": "speechrecognition" }, { -"download_count": 923842, -"project": "mypy-boto3-signer" +"download_count": 1385301, +"project": "gspread-dataframe" }, { -"download_count": 923439, -"project": "hashids" +"download_count": 1384223, +"project": "azure-mgmt-databoxedge" }, { -"download_count": 923183, -"project": "types-mock" +"download_count": 1382206, +"project": "openvino" }, { -"download_count": 922920, -"project": "odfpy" +"download_count": 1380846, +"project": "arabic-reshaper" }, { -"download_count": 922873, -"project": "ndjson" +"download_count": 1380733, +"project": "azure-synapse-managedprivateendpoints" }, { -"download_count": 922847, -"project": "dagster" +"download_count": 1380143, +"project": "databricks" }, { -"download_count": 922308, -"project": "autofaker" +"download_count": 1380043, +"project": "troposphere" }, { -"download_count": 921324, -"project": "yarg" +"download_count": 1379764, +"project": "pylint-django" }, { -"download_count": 919123, -"project": "oslo-utils" +"download_count": 1379638, +"project": "azure-mgmt-servicelinker" }, { -"download_count": 918308, -"project": "hypercorn" +"download_count": 1379056, +"project": "mypy-boto3-ecs" }, { -"download_count": 918261, -"project": "latexcodec" +"download_count": 1378516, +"project": "azure-mgmt-extendedlocation" }, { -"download_count": 917901, -"project": "google-cloud-discoveryengine" +"download_count": 1378376, +"project": "flake8-comprehensions" }, { -"download_count": 915728, -"project": "pybtex" +"download_count": 1377448, +"project": "tcolorpy" }, { -"download_count": 915574, -"project": "python-ulid" +"download_count": 1377275, +"project": "ydb" }, { -"download_count": 915101, -"project": "swifter" +"download_count": 1377245, +"project": "pytest-icdiff" }, { -"download_count": 914721, -"project": "textwrap3" +"download_count": 1375024, +"project": "mleap" }, { -"download_count": 912085, -"project": "clang" +"download_count": 1374115, +"project": "backports-tempfile" }, { -"download_count": 911383, -"project": "scikit-optimize" +"download_count": 1373233, +"project": "koalas" }, { -"download_count": 910983, -"project": "versioneer" +"download_count": 1372331, +"project": "azure-mgmt-servicefabricmanagedclusters" }, { -"download_count": 908585, -"project": "phik" +"download_count": 1371279, +"project": "sphinxcontrib-spelling" }, { -"download_count": 908459, -"project": "jupyter-server-fileid" +"download_count": 1370847, +"project": "ghapi" }, { -"download_count": 907412, -"project": "facexlib" +"download_count": 1370745, +"project": "tensorflow-probability" }, { -"download_count": 907139, -"project": "apprise" +"download_count": 1370218, +"project": "cuda-python" }, { -"download_count": 906486, -"project": "django-js-asset" +"download_count": 1369381, +"project": "dbt-databricks" }, { -"download_count": 906417, -"project": "pydicom" +"download_count": 1369308, +"project": "apache-airflow-providers-dbt-cloud" }, { -"download_count": 906322, -"project": "mypy-boto3-ssm" +"download_count": 1368007, +"project": "llama-index-legacy" }, { -"download_count": 905528, -"project": "language-tags" +"download_count": 1365631, +"project": "coolname" }, { -"download_count": 904941, -"project": "fluent-logger" +"download_count": 1365257, +"project": "poethepoet" }, { -"download_count": 904680, -"project": "optimum" +"download_count": 1363289, +"project": "aiolimiter" }, { -"download_count": 904484, -"project": "setuptools-git" +"download_count": 1362152, +"project": "gotrue" }, { -"download_count": 904282, -"project": "zeroconf" +"download_count": 1361726, +"project": "emcee" }, { -"download_count": 904177, -"project": "raven" +"download_count": 1361297, +"project": "country-converter" }, { -"download_count": 902991, -"project": "y-py" +"download_count": 1360872, +"project": "presto-python-client" }, { -"download_count": 902921, -"project": "codespell" +"download_count": 1359969, +"project": "j2cli" }, { -"download_count": 902360, -"project": "apache-airflow-providers-odbc" +"download_count": 1359822, +"project": "curl-cffi" }, { -"download_count": 901950, -"project": "cachy" +"download_count": 1359339, +"project": "supabase" }, { -"download_count": 899344, -"project": "accessible-pygments" +"download_count": 1355997, +"project": "aws-cdk-cloud-assembly-schema" }, { -"download_count": 896801, -"project": "venusian" +"download_count": 1355298, +"project": "langchain-aws" }, { -"download_count": 895825, -"project": "ptpython" +"download_count": 1354152, +"project": "azureml-dataprep" }, { -"download_count": 895698, -"project": "gnureadline" +"download_count": 1353925, +"project": "httpretty" }, { -"download_count": 892577, -"project": "ypy-websocket" +"download_count": 1353085, +"project": "mediapipe" }, { -"download_count": 891637, -"project": "snowflake-core" +"download_count": 1352257, +"project": "spdx-tools" }, { -"download_count": 890571, -"project": "ansiwrap" +"download_count": 1350330, +"project": "llama-index-question-gen-openai" }, { -"download_count": 890474, -"project": "fasttext-langdetect" +"download_count": 1348674, +"project": "pathlib-mate" }, { -"download_count": 888915, -"project": "pywinrm" +"download_count": 1348321, +"project": "fugue" }, { -"download_count": 887253, -"project": "amqpstorm" +"download_count": 1347784, +"project": "update-checker" }, { -"download_count": 886586, -"project": "kaitaistruct" +"download_count": 1346742, +"project": "hypercorn" }, { -"download_count": 884972, -"project": "quart" +"download_count": 1346431, +"project": "github3-py" }, { -"download_count": 884847, -"project": "aws-cdk-cloud-assembly-schema" +"download_count": 1345754, +"project": "apache-airflow-providers-jdbc" }, { -"download_count": 884212, -"project": "httpretty" +"download_count": 1345448, +"project": "patch-ng" }, { -"download_count": 884194, -"project": "jinja2-simple-tags" +"download_count": 1344772, +"project": "icalendar" }, { -"download_count": 881679, -"project": "tcolorpy" +"download_count": 1344682, +"project": "databricks-pypi2" }, { -"download_count": 881272, -"project": "slotted" +"download_count": 1343956, +"project": "types-tqdm" }, { -"download_count": 881024, -"project": "shyaml" +"download_count": 1339946, +"project": "realtime" }, { -"download_count": 880558, -"project": "triad" +"download_count": 1338561, +"project": "ladybug-core" }, { -"download_count": 879376, -"project": "retry2" +"download_count": 1338471, +"project": "types-psutil" }, { -"download_count": 878037, -"project": "flake8-polyfill" +"download_count": 1338325, +"project": "giturlparse" }, { -"download_count": 877893, -"project": "apache-airflow-providers-microsoft-azure" +"download_count": 1337813, +"project": "simple-gcp-object-downloader" }, { -"download_count": 876492, -"project": "pyvmomi" +"download_count": 1335663, +"project": "aio-pika" }, { -"download_count": 876238, -"project": "datamodel-code-generator" +"download_count": 1334703, +"project": "azure-mgmt-kusto" }, { -"download_count": 876104, -"project": "xhtml2pdf" +"download_count": 1334563, +"project": "htmldate" }, { -"download_count": 875573, -"project": "tensorstore" +"download_count": 1332625, +"project": "ladybug-geometry" }, { -"download_count": 874227, -"project": "poetry-plugin-pypi-mirror" +"download_count": 1332042, +"project": "jaraco-text" }, { -"download_count": 874206, -"project": "mercantile" +"download_count": 1331595, +"project": "ip3country" }, { -"download_count": 873706, -"project": "cibuildwheel" +"download_count": 1331490, +"project": "cinemagoer" }, { -"download_count": 873558, -"project": "dash-bootstrap-components" +"download_count": 1331431, +"project": "honeybee-core" }, { -"download_count": 872036, -"project": "mangum" +"download_count": 1330598, +"project": "postgrest" }, { -"download_count": 871595, -"project": "llama-index-embeddings-openai" +"download_count": 1328254, +"project": "supafunc" }, { -"download_count": 871525, -"project": "extension-helpers" +"download_count": 1328244, +"project": "django-crispy-forms" }, { -"download_count": 870333, -"project": "treelib" +"download_count": 1327094, +"project": "heapdict" }, { -"download_count": 869008, -"project": "sqlalchemy2-stubs" +"download_count": 1326825, +"project": "tensorflow-io" }, { -"download_count": 868351, -"project": "tableau-api-lib" +"download_count": 1326079, +"project": "mangum" }, { -"download_count": 868273, -"project": "webdataset" +"download_count": 1325366, +"project": "openlineage-airflow" }, { -"download_count": 867882, -"project": "azure-mgmt-resourcegraph" +"download_count": 1321653, +"project": "sphinxcontrib-mermaid" }, { -"download_count": 867507, -"project": "pyhanko-certvalidator" +"download_count": 1321166, +"project": "requests-sigv4" }, { -"download_count": 867193, -"project": "yarn-api-client" +"download_count": 1319432, +"project": "icdiff" }, { -"download_count": 865874, -"project": "azureml-mlflow" +"download_count": 1319199, +"project": "bson" }, { -"download_count": 865172, -"project": "dagster-pipes" +"download_count": 1318889, +"project": "kornia-rs" }, { -"download_count": 864503, -"project": "fugue" +"download_count": 1318788, +"project": "django-ipware" }, { -"download_count": 864031, -"project": "geoalchemy2" +"download_count": 1318503, +"project": "xmldiff" }, { -"download_count": 861996, -"project": "django-oauth-toolkit" +"download_count": 1317258, +"project": "storage3" }, { -"download_count": 861387, -"project": "bson" +"download_count": 1314985, +"project": "imdbpy" }, { -"download_count": 860979, -"project": "watchgod" +"download_count": 1313979, +"project": "line-profiler" }, { -"download_count": 860534, -"project": "icalendar" +"download_count": 1313259, +"project": "aiormq" }, { -"download_count": 856883, -"project": "rstr" +"download_count": 1312879, +"project": "htmlmin" }, { -"download_count": 856746, -"project": "subprocess32" +"download_count": 1312832, +"project": "jiwer" }, { -"download_count": 856666, -"project": "cinemagoer" +"download_count": 1312439, +"project": "zeroconf" }, { -"download_count": 856623, -"project": "pastel" +"download_count": 1310216, +"project": "svglib" }, { -"download_count": 854908, -"project": "sqlglotrs" +"download_count": 1310101, +"project": "ladybug-geometry-polyskel" }, { -"download_count": 853704, -"project": "sampleproject" +"download_count": 1309941, +"project": "simpy" }, { -"download_count": 853408, -"project": "flametree" +"download_count": 1309773, +"project": "c7n" }, { -"download_count": 853384, -"project": "python-string-utils" +"download_count": 1309428, +"project": "soda-core-spark" }, { -"download_count": 852575, -"project": "python-codon-tables" +"download_count": 1307264, +"project": "pytest-freezegun" }, { -"download_count": 852019, -"project": "dnachisel" +"download_count": 1307175, +"project": "honeybee-schema" }, { -"download_count": 851296, -"project": "rfc3339" +"download_count": 1305542, +"project": "lizard" }, { -"download_count": 850778, -"project": "gcovr" +"download_count": 1304307, +"project": "onnxconverter-common" }, { -"download_count": 850754, -"project": "ebcdic" +"download_count": 1303593, +"project": "autocommand" }, { -"download_count": 850136, -"project": "typeid-python" +"download_count": 1302495, +"project": "pyhanko-certvalidator" }, { -"download_count": 849940, -"project": "numpydoc" +"download_count": 1299914, +"project": "social-auth-core" }, { -"download_count": 848815, -"project": "dataproperty" +"download_count": 1299427, +"project": "segment-analytics-python" }, { -"download_count": 847757, -"project": "schemdraw" +"download_count": 1298785, +"project": "honeybee-standards" }, { -"download_count": 847358, -"project": "rouge-score" +"download_count": 1298700, +"project": "pydantic-openapi-helper" }, { -"download_count": 846669, -"project": "adagio" +"download_count": 1296317, +"project": "requests-html" }, { -"download_count": 846491, -"project": "shellescape" +"download_count": 1294585, +"project": "googlemaps" }, { -"download_count": 845530, -"project": "simple-ddl-parser" +"download_count": 1293476, +"project": "cliff" }, { -"download_count": 845369, -"project": "imdbpy" +"download_count": 1293241, +"project": "plac" }, { -"download_count": 845240, -"project": "dpkt" +"download_count": 1293039, +"project": "requests-kerberos" }, { -"download_count": 844382, -"project": "pipreqs" +"download_count": 1292795, +"project": "types-pygments" }, { -"download_count": 843568, -"project": "llama-index-multi-modal-llms-openai" +"download_count": 1292408, +"project": "gcovr" }, { -"download_count": 843322, -"project": "llama-index-program-openai" +"download_count": 1291049, +"project": "types-beautifulsoup4" }, { -"download_count": 842658, -"project": "python-iso639" +"download_count": 1290981, +"project": "aiostream" }, { -"download_count": 842346, -"project": "wand" +"download_count": 1288637, +"project": "aiocache" }, { -"download_count": 842169, -"project": "aws-cdk-aws-lambda-python-alpha" +"download_count": 1288254, +"project": "tensorstore" }, { -"download_count": 842089, -"project": "aws-embedded-metrics" +"download_count": 1287649, +"project": "aws-lambda-builders" }, { -"download_count": 841440, -"project": "python3-logstash" +"download_count": 1283291, +"project": "notifiers" }, { -"download_count": 841222, -"project": "setuptools-scm-git-archive" +"download_count": 1281884, +"project": "idna-ssl" }, { -"download_count": 841213, -"project": "blosc2" +"download_count": 1280827, +"project": "aiomultiprocess" }, { -"download_count": 841024, -"project": "lasio" +"download_count": 1279889, +"project": "pyvisa" }, { -"download_count": 840725, -"project": "opentelemetry-instrumentation-httpx" +"download_count": 1279059, +"project": "pdm-backend" }, { -"download_count": 840567, -"project": "git-remote-codecommit" +"download_count": 1278903, +"project": "ansi2html" }, { -"download_count": 840289, -"project": "social-auth-app-django" +"download_count": 1278636, +"project": "attrdict" }, { -"download_count": 839708, -"project": "stdlib-list" +"download_count": 1276811, +"project": "unittest2" }, { -"download_count": 839373, -"project": "msgraph-sdk" +"download_count": 1274178, +"project": "python-can" }, { -"download_count": 839158, -"project": "pytest-remotedata" +"download_count": 1274040, +"project": "prance" }, { -"download_count": 837881, -"project": "backports-datetime-fromisoformat" +"download_count": 1272521, +"project": "metaflow" }, { -"download_count": 837832, -"project": "oslo-config" +"download_count": 1272245, +"project": "rstr" }, { -"download_count": 837031, -"project": "openlineage-sql" +"download_count": 1272179, +"project": "textblob" }, { -"download_count": 836779, -"project": "log-symbols" +"download_count": 1271869, +"project": "xhtml2pdf" }, { -"download_count": 835791, -"project": "spinners" +"download_count": 1271853, +"project": "in-n-out" }, { -"download_count": 833598, -"project": "workalendar" +"download_count": 1270685, +"project": "json-stream-rs-tokenizer" }, { -"download_count": 833386, -"project": "aiormq" +"download_count": 1270270, +"project": "jaraco-collections" }, { -"download_count": 831368, -"project": "flake8-black" +"download_count": 1268815, +"project": "html-testrunner" }, { -"download_count": 831366, -"project": "pytest-doctestplus" +"download_count": 1268008, +"project": "cdk-nag" }, { -"download_count": 830553, -"project": "translationstring" +"download_count": 1267201, +"project": "backports-cached-property" }, { -"download_count": 829519, -"project": "llama-index-cli" +"download_count": 1266819, +"project": "polyfactory" }, { -"download_count": 829242, -"project": "gevent-websocket" +"download_count": 1265003, +"project": "log-symbols" }, { -"download_count": 828157, -"project": "torchdiffeq" +"download_count": 1264281, +"project": "django-simple-history" }, { -"download_count": 826116, -"project": "arpeggio" +"download_count": 1263923, +"project": "param" }, { -"download_count": 826023, -"project": "speechrecognition" +"download_count": 1263764, +"project": "spinners" }, { -"download_count": 821517, -"project": "zstd" +"download_count": 1261674, +"project": "azureml-dataprep-rslex" }, { -"download_count": 819614, -"project": "llama-index-question-gen-openai" +"download_count": 1260103, +"project": "openvino-telemetry" }, { -"download_count": 819444, -"project": "chameleon" +"download_count": 1258142, +"project": "jsonschema-spec" }, { -"download_count": 818614, -"project": "signxml" +"download_count": 1257502, +"project": "coremltools" }, { -"download_count": 816793, -"project": "pymilvus" +"download_count": 1257211, +"project": "pytest-httpserver" }, { -"download_count": 816721, -"project": "keystoneauth1" +"download_count": 1256891, +"project": "pylev" }, { -"download_count": 815800, -"project": "google-cloud-error-reporting" +"download_count": 1256603, +"project": "pymilvus" }, { -"download_count": 814824, -"project": "aio-pika" +"download_count": 1254100, +"project": "circuitbreaker" }, { -"download_count": 812182, -"project": "pyquaternion" +"download_count": 1252069, +"project": "zenpy" }, { -"download_count": 812003, -"project": "cmaes" +"download_count": 1250608, +"project": "dogpile-cache" }, { -"download_count": 811886, -"project": "tyro" +"download_count": 1248527, +"project": "bc-python-hcl2" }, { -"download_count": 811857, -"project": "jsonargparse" +"download_count": 1248130, +"project": "arviz" }, { -"download_count": 811516, -"project": "naked" +"download_count": 1247127, +"project": "ibm-db" }, { -"download_count": 811217, -"project": "datacompy" +"download_count": 1241575, +"project": "oslo-utils" }, { -"download_count": 810375, -"project": "sphinx-autobuild" +"download_count": 1239959, +"project": "blosc2" }, { -"download_count": 809539, -"project": "sphinx-tabs" +"download_count": 1239705, +"project": "cerberus-python-client" }, { -"download_count": 808901, -"project": "spandrel" +"download_count": 1239026, +"project": "rembg" }, { -"download_count": 808455, -"project": "doit" +"download_count": 1238632, +"project": "ulid-py" }, { -"download_count": 808372, -"project": "auth0-python" +"download_count": 1238624, +"project": "pycomposefile" }, { -"download_count": 807100, -"project": "eyes-common" +"download_count": 1238053, +"project": "sqlfluff-templater-dbt" }, { -"download_count": 806858, -"project": "eyes-selenium" +"download_count": 1236885, +"project": "auth0-python" }, { -"download_count": 806746, -"project": "tensorflow-model-optimization" +"download_count": 1236417, +"project": "channels-redis" }, { -"download_count": 805186, -"project": "wmi" +"download_count": 1235808, +"project": "more-executors" }, { -"download_count": 804773, -"project": "tabledata" +"download_count": 1234327, +"project": "mypy-boto3-apigateway" }, { -"download_count": 803061, -"project": "janus" +"download_count": 1233852, +"project": "dbl-tempo" }, { -"download_count": 802118, -"project": "hupper" +"download_count": 1232228, +"project": "kaitaistruct" }, { -"download_count": 801630, -"project": "oslo-i18n" +"download_count": 1228959, +"project": "port-for" }, { -"download_count": 801463, -"project": "sphinx-basic-ng" +"download_count": 1226200, +"project": "pymatting" }, { -"download_count": 801222, -"project": "h5netcdf" +"download_count": 1224786, +"project": "flask-testing" }, { -"download_count": 801008, -"project": "p4python" +"download_count": 1224784, +"project": "supervision" }, { -"download_count": 800237, -"project": "llama-index-legacy" +"download_count": 1224771, +"project": "policy-sentry" }, { -"download_count": 799812, -"project": "opentelemetry-instrumentation-sqlite3" +"download_count": 1222652, +"project": "opentelemetry-exporter-gcp-trace" }, { -"download_count": 795540, -"project": "serial" +"download_count": 1221409, +"project": "pycep-parser" }, { -"download_count": 795281, -"project": "langgraph-checkpoint" +"download_count": 1220751, +"project": "flask-mail" }, { -"download_count": 794002, -"project": "google-reauth" +"download_count": 1218681, +"project": "json-stream" }, { -"download_count": 792863, -"project": "uproot" +"download_count": 1218429, +"project": "xmod" }, { -"download_count": 791837, -"project": "pytest-aiohttp" +"download_count": 1218344, +"project": "selenium-wire" }, { -"download_count": 790486, -"project": "unittest2" +"download_count": 1218009, +"project": "cloudflare" }, { -"download_count": 789585, -"project": "panel" +"download_count": 1216780, +"project": "pymatgen" }, { -"download_count": 789355, -"project": "pytest-filter-subpackage" +"download_count": 1215451, +"project": "plyvel" }, { -"download_count": 787795, -"project": "textdistance" +"download_count": 1214542, +"project": "pytest-dotenv" }, { -"download_count": 787717, -"project": "open3d" +"download_count": 1211942, +"project": "albucore" }, { -"download_count": 784743, -"project": "attrdict" +"download_count": 1210796, +"project": "editor" }, { -"download_count": 784607, -"project": "pyahocorasick" +"download_count": 1207657, +"project": "fastpurge" }, { -"download_count": 783063, -"project": "graphlib-backport" +"download_count": 1207594, +"project": "cloudsplaining" }, { -"download_count": 780145, -"project": "scikit-build" +"download_count": 1207473, +"project": "checkdigit" }, { -"download_count": 779506, -"project": "pyvis" +"download_count": 1206118, +"project": "tables" }, { -"download_count": 778655, -"project": "backports-csv" +"download_count": 1204027, +"project": "flask-compress" }, { -"download_count": 778568, -"project": "progress" +"download_count": 1203775, +"project": "langgraph-checkpoint" }, { -"download_count": 778290, -"project": "flake8-builtins" +"download_count": 1201863, +"project": "ibm-cloud-sdk-core" }, { -"download_count": 777654, -"project": "grimp" +"download_count": 1200919, +"project": "langchain-anthropic" }, { -"download_count": 777513, -"project": "snowflake-legacy" +"download_count": 1200008, +"project": "runs" }, { -"download_count": 777090, -"project": "pyiceberg" +"download_count": 1198184, +"project": "pytest-flask" }, { -"download_count": 776655, -"project": "array-record" +"download_count": 1195850, +"project": "langfuse" }, { -"download_count": 775492, -"project": "asgi-lifespan" +"download_count": 1195624, +"project": "pretty-html-table" }, { -"download_count": 775276, -"project": "future-fstrings" +"download_count": 1195047, +"project": "msoffcrypto-tool" }, { -"download_count": 775174, -"project": "pybase64" +"download_count": 1194814, +"project": "opentelemetry-resourcedetector-gcp" }, { -"download_count": 774867, -"project": "pytablewriter" +"download_count": 1193973, +"project": "async-property" }, { -"download_count": 774280, -"project": "probableparsing" +"download_count": 1192624, +"project": "dohq-artifactory" }, { -"download_count": 773627, -"project": "cdk-nag" +"download_count": 1192112, +"project": "odfpy" }, { -"download_count": 772834, -"project": "clean-fid" +"download_count": 1189342, +"project": "livereload" }, { -"download_count": 771603, -"project": "breathe" +"download_count": 1189134, +"project": "django-import-export" }, { -"download_count": 770199, -"project": "giturlparse" +"download_count": 1188506, +"project": "flake8-builtins" }, { -"download_count": 769883, -"project": "pysbd" +"download_count": 1188440, +"project": "mss" }, { -"download_count": 769488, -"project": "tsx" +"download_count": 1187501, +"project": "ndjson" }, { -"download_count": 768896, -"project": "streamerate" +"download_count": 1186194, +"project": "rouge-score" }, { -"download_count": 768888, -"project": "throttlex" +"download_count": 1185942, +"project": "z3-solver" }, { -"download_count": 768460, -"project": "jinja2-time" +"download_count": 1185581, +"project": "mypy-boto3-emr" }, { -"download_count": 767684, -"project": "mando" +"download_count": 1182897, +"project": "gymnasium" }, { -"download_count": 767535, -"project": "oslo-serialization" +"download_count": 1181212, +"project": "hubspot-api-client" }, { -"download_count": 766665, -"project": "sparkorm" +"download_count": 1181144, +"project": "pony" }, { -"download_count": 766645, -"project": "xarray-einstats" +"download_count": 1180583, +"project": "python-keycloak" }, { -"download_count": 766187, -"project": "model-bakery" +"download_count": 1179598, +"project": "betterproto" }, { -"download_count": 766005, -"project": "presto-python-client" +"download_count": 1179588, +"project": "opentelemetry-sdk-extension-aws" }, { -"download_count": 765496, -"project": "avro-gen" +"download_count": 1178331, +"project": "symengine" }, { -"download_count": 765138, -"project": "recommonmark" +"download_count": 1176531, +"project": "panel" }, { -"download_count": 762932, -"project": "pytest-httpserver" +"download_count": 1175366, +"project": "polling2" }, { -"download_count": 762388, -"project": "langchain-aws" +"download_count": 1174713, +"project": "python-subunit" }, { -"download_count": 761253, -"project": "pytube" +"download_count": 1174613, +"project": "pygtrie" }, { -"download_count": 761097, -"project": "opentelemetry-instrumentation-jinja2" +"download_count": 1174033, +"project": "lunardate" }, { -"download_count": 760471, -"project": "usaddress" +"download_count": 1171839, +"project": "piexif" }, { -"download_count": 760230, -"project": "radon" +"download_count": 1171459, +"project": "apsw" }, { -"download_count": 760083, -"project": "core-universal" +"download_count": 1170285, +"project": "lunarcalendar" }, { -"download_count": 759963, -"project": "elasticsearch7" +"download_count": 1169999, +"project": "jupyter-ydoc" }, { -"download_count": 759632, -"project": "github3-py" +"download_count": 1169667, +"project": "impyla" }, { -"download_count": 759561, -"project": "icdiff" +"download_count": 1169419, +"project": "ruptures" }, { -"download_count": 758627, -"project": "temporalio" +"download_count": 1166361, +"project": "social-auth-app-django" }, { -"download_count": 757393, -"project": "pytest-socket" +"download_count": 1165026, +"project": "tensorflow-addons" }, { -"download_count": 756928, -"project": "collections-extended" +"download_count": 1163878, +"project": "llama-cloud" }, { -"download_count": 755522, -"project": "java-manifest" +"download_count": 1163265, +"project": "jupyter-server-ydoc" }, { -"download_count": 755081, -"project": "pythran-openblas" +"download_count": 1162755, +"project": "exchangelib" }, { -"download_count": 754987, -"project": "apache-airflow-providers-pagerduty" +"download_count": 1162651, +"project": "signxml" }, { -"download_count": 752309, -"project": "inquirerpy" +"download_count": 1161773, +"project": "argparse-addons" }, { -"download_count": 751478, -"project": "debtcollector" +"download_count": 1161564, +"project": "pytest-mypy" }, { -"download_count": 751298, -"project": "rjsmin" +"download_count": 1161350, +"project": "schemdraw" }, { -"download_count": 749435, -"project": "types-deprecated" +"download_count": 1159340, +"project": "hmmlearn" }, { -"download_count": 749313, -"project": "pyscreeze" +"download_count": 1156167, +"project": "bc-jsonpath-ng" }, { -"download_count": 748868, -"project": "nbsphinx" +"download_count": 1154816, +"project": "autopage" }, { -"download_count": 748032, -"project": "strawberry-graphql" +"download_count": 1154519, +"project": "databases" }, { -"download_count": 747891, -"project": "respx" +"download_count": 1154076, +"project": "mygene" }, { -"download_count": 747885, -"project": "grapheme" +"download_count": 1152148, +"project": "python-igraph" }, { -"download_count": 747132, -"project": "pfzy" +"download_count": 1151803, +"project": "biothings-client" }, { -"download_count": 744928, -"project": "sse-starlette" +"download_count": 1150598, +"project": "cherrypy" }, { -"download_count": 744138, -"project": "backports-entry-points-selectable" +"download_count": 1147412, +"project": "glob2" }, { -"download_count": 743928, -"project": "vtk" +"download_count": 1146535, +"project": "statsforecast" }, { -"download_count": 743608, -"project": "func-timeout" +"download_count": 1146291, +"project": "ccxt" }, { -"download_count": 742720, -"project": "oss2" +"download_count": 1146027, +"project": "mirakuru" }, { -"download_count": 742151, -"project": "ansicolors" +"download_count": 1143783, +"project": "sphinx-book-theme" }, { -"download_count": 742006, -"project": "singer-python" +"download_count": 1142174, +"project": "brotlicffi" }, { -"download_count": 741016, -"project": "pysmb" +"download_count": 1142072, +"project": "pytest-cases" }, { -"download_count": 740437, -"project": "cloudscraper" +"download_count": 1141572, +"project": "awesomeversion" }, { -"download_count": 740217, -"project": "types-aiobotocore-s3" +"download_count": 1141519, +"project": "dockerpty" }, { -"download_count": 739342, -"project": "nptyping" +"download_count": 1141154, +"project": "oyaml" }, { -"download_count": 738989, -"project": "chex" +"download_count": 1140673, +"project": "torchtext" }, { -"download_count": 738877, -"project": "pip-requirements-parser" +"download_count": 1139523, +"project": "dagster-pandas" }, { -"download_count": 738806, -"project": "zthreading" +"download_count": 1135962, +"project": "bio" }, { -"download_count": 738576, -"project": "pulsar-client" +"download_count": 1135313, +"project": "flake8-polyfill" }, { -"download_count": 738548, -"project": "discord" +"download_count": 1131725, +"project": "oslo-config" }, { -"download_count": 737348, -"project": "sharepy" +"download_count": 1130757, +"project": "pip-requirements-parser" }, { -"download_count": 735724, -"project": "kconfiglib" +"download_count": 1128720, +"project": "dagster-aws" }, { -"download_count": 735655, -"project": "coolname" +"download_count": 1128473, +"project": "sphinxcontrib-bibtex" }, { -"download_count": 735563, -"project": "stepfunctions" +"download_count": 1127884, +"project": "gitdb2" }, { -"download_count": 735182, -"project": "flatdict" +"download_count": 1127816, +"project": "ydata-profiling" }, { -"download_count": 735024, -"project": "pyapacheatlas" +"download_count": 1127303, +"project": "gprofiler-official" }, { -"download_count": 731955, -"project": "pyramid" +"download_count": 1126491, +"project": "janus" }, { -"download_count": 731304, -"project": "torch-model-archiver" +"download_count": 1125949, +"project": "honeybee-energy" }, { -"download_count": 729773, -"project": "testtools" +"download_count": 1125717, +"project": "apache-airflow-providers-microsoft-azure" }, { -"download_count": 728926, -"project": "jsons" +"download_count": 1125526, +"project": "html-text" }, { -"download_count": 727982, -"project": "pathlib-mate" +"download_count": 1124584, +"project": "xdoctest" }, { -"download_count": 727101, -"project": "port-for" +"download_count": 1123823, +"project": "watchgod" }, { -"download_count": 726921, -"project": "slack-bolt" +"download_count": 1123819, +"project": "google-cloud-artifact-registry" }, { -"download_count": 726119, -"project": "sktime" +"download_count": 1123522, +"project": "xattr" }, { -"download_count": 725980, -"project": "flake8-import-order" +"download_count": 1123215, +"project": "apache-airflow-providers-odbc" }, { -"download_count": 725320, -"project": "easyprocess" +"download_count": 1121091, +"project": "jinja2-simple-tags" }, { -"download_count": 725022, -"project": "mltable" +"download_count": 1121088, +"project": "pymongo-auth-aws" }, { -"download_count": 724379, -"project": "pluginbase" +"download_count": 1119202, +"project": "testtools" }, { -"download_count": 724207, -"project": "pytest-arraydiff" +"download_count": 1118122, +"project": "verboselogs" }, { -"download_count": 723440, -"project": "types-decorator" +"download_count": 1117123, +"project": "django-js-asset" }, { -"download_count": 722809, -"project": "apache-airflow-providers-tableau" +"download_count": 1115980, +"project": "ntlm-auth" }, { -"download_count": 721632, -"project": "spark-sklearn" +"download_count": 1115729, +"project": "dagster-graphql" }, { -"download_count": 720354, -"project": "crc32c" +"download_count": 1115008, +"project": "thop" }, { -"download_count": 718470, -"project": "pystan" +"download_count": 1112954, +"project": "webdataset" }, { -"download_count": 717656, -"project": "crayons" +"download_count": 1112835, +"project": "pysbd" }, { -"download_count": 717560, -"project": "simple-parsing" +"download_count": 1112362, +"project": "paste" }, { -"download_count": 717517, -"project": "xlutils" +"download_count": 1111796, +"project": "elastic-apm" }, { -"download_count": 716757, -"project": "jinja2-humanize-extension" +"download_count": 1111770, +"project": "y-py" }, { -"download_count": 715887, -"project": "ibm-platform-services" +"download_count": 1110917, +"project": "triad" }, { -"download_count": 715184, -"project": "pyairtable" +"download_count": 1109836, +"project": "resampy" }, { -"download_count": 714917, -"project": "executor" +"download_count": 1109766, +"project": "oslo-i18n" }, { -"download_count": 714388, -"project": "circuitbreaker" +"download_count": 1108672, +"project": "mypy-boto3-sns" }, { -"download_count": 714037, -"project": "emcee" +"download_count": 1107725, +"project": "tinydb" }, { -"download_count": 713953, -"project": "kestra" +"download_count": 1106520, +"project": "puremagic" }, { -"download_count": 713477, -"project": "types-jinja2" +"download_count": 1106487, +"project": "pybase64" }, { -"download_count": 712840, -"project": "param" +"download_count": 1106240, +"project": "skl2onnx" }, { -"download_count": 712768, -"project": "types-markupsafe" +"download_count": 1103398, +"project": "pybytebuffer" }, { -"download_count": 712572, -"project": "geocoder" +"download_count": 1103125, +"project": "descartes" }, { -"download_count": 712441, -"project": "pyu2f" +"download_count": 1102570, +"project": "vtk" }, { -"download_count": 712400, -"project": "ctranslate2" +"download_count": 1098864, +"project": "portend" }, { -"download_count": 712196, -"project": "asciitree" +"download_count": 1098584, +"project": "s3cmd" }, { -"download_count": 711677, -"project": "python-miio" +"download_count": 1097844, +"project": "flake8-black" }, { -"download_count": 711271, -"project": "pip-api" +"download_count": 1097801, +"project": "geocoder" }, { -"download_count": 710134, -"project": "psygnal" +"download_count": 1097711, +"project": "aws-sam-cli" }, { -"download_count": 710037, -"project": "httmock" +"download_count": 1096692, +"project": "pyquaternion" }, { -"download_count": 709799, -"project": "flake8-print" +"download_count": 1096118, +"project": "p4python" }, { -"download_count": 709651, -"project": "ratelim" +"download_count": 1095613, +"project": "dash-bootstrap-components" }, { -"download_count": 708591, -"project": "pytest-astropy" +"download_count": 1095389, +"project": "requests-auth-aws-sigv4" }, { -"download_count": 707480, -"project": "tensorflow-cpu" +"download_count": 1095312, +"project": "ladybug-display" }, { -"download_count": 707471, -"project": "suds-community" +"download_count": 1094678, +"project": "salib" }, { -"download_count": 707082, -"project": "zope-i18nmessageid" +"download_count": 1092389, +"project": "mypy-boto3-xray" }, { -"download_count": 706693, -"project": "pytest-astropy-header" +"download_count": 1091875, +"project": "opencv-contrib-python-headless" }, { -"download_count": 705866, -"project": "fastcluster" +"download_count": 1091755, +"project": "ctranslate2" }, { -"download_count": 705824, -"project": "pygobject" +"download_count": 1091741, +"project": "gcs-oauth2-boto-plugin" }, { -"download_count": 705159, -"project": "pyshp" +"download_count": 1090308, +"project": "jaxtyping" }, { -"download_count": 705009, -"project": "rpaframework" +"download_count": 1089547, +"project": "docx2txt" }, { -"download_count": 702469, -"project": "prance" +"download_count": 1087266, +"project": "inquirerpy" }, { -"download_count": 702171, -"project": "ndindex" +"download_count": 1086111, +"project": "msgraph-sdk" }, { -"download_count": 701483, -"project": "logz" +"download_count": 1085364, +"project": "click-shell" }, { -"download_count": 700435, -"project": "python-memcached" +"download_count": 1084894, +"project": "mypy-boto3-schemas" }, { -"download_count": 700176, -"project": "pytorch-metric-learning" +"download_count": 1084738, +"project": "mypy-boto3-signer" }, { -"download_count": 695774, -"project": "python-lsp-jsonrpc" +"download_count": 1084469, +"project": "ladybug-rhino" }, { -"download_count": 695236, -"project": "vertexai" +"download_count": 1083699, +"project": "seleniumbase" }, { -"download_count": 693753, -"project": "safety-schemas" +"download_count": 1082248, +"project": "pfzy" }, { -"download_count": 693371, -"project": "llama-cloud" +"download_count": 1082143, +"project": "backports-datetime-fromisoformat" }, { -"download_count": 692581, -"project": "retry-decorator" +"download_count": 1081894, +"project": "gmpy2" }, { -"download_count": 690289, -"project": "pyqt6" +"download_count": 1081745, +"project": "adagio" }, { -"download_count": 689261, -"project": "pyspark-dist-explore" +"download_count": 1080517, +"project": "model-bakery" }, { -"download_count": 688952, -"project": "crypto" +"download_count": 1077766, +"project": "pyvis" }, { -"download_count": 688168, -"project": "apache-airflow-providers-datadog" +"download_count": 1077726, +"project": "sshpubkeys" }, { -"download_count": 687419, -"project": "segment-analytics-python" +"download_count": 1077498, +"project": "stringzilla" }, { -"download_count": 687212, -"project": "pytweening" +"download_count": 1075823, +"project": "jupyter-server-fileid" }, { -"download_count": 683536, -"project": "realtime" +"download_count": 1075699, +"project": "edx-opaque-keys" }, { -"download_count": 683337, -"project": "docx2txt" +"download_count": 1075649, +"project": "dagster-postgres" }, { -"download_count": 682821, -"project": "pyqt6-qt6" +"download_count": 1075376, +"project": "azure-mgmt-appcontainers" }, { -"download_count": 682376, -"project": "imagecodecs" +"download_count": 1075276, +"project": "grpc-stubs" }, { -"download_count": 682158, -"project": "argparse-addons" +"download_count": 1073300, +"project": "phik" }, { -"download_count": 681840, -"project": "astral" +"download_count": 1071483, +"project": "sgqlc" }, { -"download_count": 681256, -"project": "tfds-nightly" +"download_count": 1071207, +"project": "pybloom-live" }, { -"download_count": 680511, -"project": "clikit" +"download_count": 1070640, +"project": "oslo-serialization" }, { -"download_count": 680427, -"project": "pymisp" +"download_count": 1068384, +"project": "textwrap3" }, { -"download_count": 680316, -"project": "apache-airflow-providers-airbyte" +"download_count": 1068238, +"project": "transitions" }, { -"download_count": 680289, -"project": "opentelemetry-instrumentation-aws-lambda" +"download_count": 1067609, +"project": "types-aiobotocore-s3" }, { -"download_count": 680205, -"project": "openvino" +"download_count": 1065356, +"project": "pytorch-metric-learning" }, { -"download_count": 680125, -"project": "pentapy" +"download_count": 1064470, +"project": "debtcollector" }, { -"download_count": 679152, -"project": "gender-guesser" +"download_count": 1063036, +"project": "inflector" }, { -"download_count": 679065, -"project": "fvcore" +"download_count": 1062921, +"project": "dagster-spark" }, { -"download_count": 678961, -"project": "flake8-quotes" +"download_count": 1062766, +"project": "ph-units" }, { -"download_count": 677389, -"project": "pygtrie" +"download_count": 1062406, +"project": "pybtex-docutils" }, { -"download_count": 674928, -"project": "types-psycopg2" +"download_count": 1061942, +"project": "hashids" }, { -"download_count": 674403, -"project": "distribute" +"download_count": 1061216, +"project": "pinecone-plugin-inference" }, { -"download_count": 674144, -"project": "zope-hookable" +"download_count": 1059521, +"project": "ypy-websocket" }, { -"download_count": 673871, -"project": "gymnasium" +"download_count": 1059459, +"project": "setuptools-git" }, { -"download_count": 673815, -"project": "apache-airflow-providers-apache-spark" +"download_count": 1058661, +"project": "prawcore" }, { -"download_count": 673772, -"project": "rply" +"download_count": 1057579, +"project": "mido" }, { -"download_count": 673516, -"project": "publish-event-sns" +"download_count": 1056484, +"project": "trafilatura" }, { -"download_count": 673462, -"project": "vulture" +"download_count": 1055735, +"project": "jinja2-humanize-extension" }, { -"download_count": 673118, -"project": "azure-storage-nspkg" +"download_count": 1055302, +"project": "cloudscraper" }, { -"download_count": 673097, -"project": "mxnet" +"download_count": 1054722, +"project": "napari-plugin-engine" }, { -"download_count": 672845, -"project": "pytest-parallel" +"download_count": 1052403, +"project": "ratelim" }, { -"download_count": 672828, -"project": "djangorestframework-stubs" +"download_count": 1051961, +"project": "azure-storage" }, { -"download_count": 672622, -"project": "palettable" +"download_count": 1051926, +"project": "shiboken6" }, { -"download_count": 672038, -"project": "coremltools" +"download_count": 1051059, +"project": "simple-ddl-parser" }, { -"download_count": 671922, -"project": "pyannote-database" +"download_count": 1050783, +"project": "monty" }, { -"download_count": 671578, -"project": "ccxt" +"download_count": 1050307, +"project": "web-fragments" }, { -"download_count": 671068, -"project": "datadog-logger" +"download_count": 1049066, +"project": "pydevd" }, { -"download_count": 671002, -"project": "os-service-types" +"download_count": 1047939, +"project": "boost-histogram" }, { -"download_count": 670923, -"project": "zope-component" +"download_count": 1047137, +"project": "c7n-org" }, { -"download_count": 669659, -"project": "supabase" +"download_count": 1046429, +"project": "ansiwrap" }, { -"download_count": 669275, -"project": "starlette-exporter" +"download_count": 1044285, +"project": "flatten-dict" }, { -"download_count": 669246, -"project": "flatten-dict" +"download_count": 1042995, +"project": "phonenumberslite" }, { -"download_count": 669065, -"project": "pyrect" +"download_count": 1041668, +"project": "flake8-quotes" }, { -"download_count": 668911, -"project": "fastprogress" +"download_count": 1041351, +"project": "uhashring" }, { -"download_count": 668492, -"project": "pykakasi" +"download_count": 1040902, +"project": "probableparsing" }, { -"download_count": 668268, -"project": "apache-airflow-providers-celery" +"download_count": 1039837, +"project": "gnureadline" }, { -"download_count": 667100, -"project": "pytest-mypy" +"download_count": 1037832, +"project": "pypsrp" }, { -"download_count": 666193, -"project": "pygetwindow" +"download_count": 1036687, +"project": "pyside6" }, { -"download_count": 666038, -"project": "domdf-python-tools" +"download_count": 1032858, +"project": "pinecone-plugin-interface" }, { -"download_count": 664943, -"project": "netsuitesdk" +"download_count": 1032435, +"project": "httmock" }, { -"download_count": 664847, -"project": "supafunc" +"download_count": 1032199, +"project": "workalendar" }, { -"download_count": 664378, -"project": "types-html5lib" +"download_count": 1032143, +"project": "js2py" }, { -"download_count": 664351, -"project": "backports-shutil-get-terminal-size" +"download_count": 1031082, +"project": "pyside6-essentials" }, { -"download_count": 664330, -"project": "django-otp" +"download_count": 1031021, +"project": "devtools" }, { -"download_count": 663048, -"project": "zope-tal" +"download_count": 1029179, +"project": "stestr" }, { -"download_count": 662607, -"project": "jupytext" +"download_count": 1027295, +"project": "progress" }, { -"download_count": 662466, -"project": "enrich" +"download_count": 1026856, +"project": "neatest" }, { -"download_count": 661941, -"project": "snowplow-tracker" +"download_count": 1026169, +"project": "chkpkg" }, { -"download_count": 661511, -"project": "trl" +"download_count": 1025921, +"project": "swifter" }, { -"download_count": 661298, -"project": "flask-admin" +"download_count": 1025008, +"project": "pytest-socket" }, { -"download_count": 661182, -"project": "imapclient" +"download_count": 1024958, +"project": "editorconfig" }, { -"download_count": 661056, -"project": "blessings" +"download_count": 1024630, +"project": "clang" }, { -"download_count": 660694, -"project": "dagster-aws" +"download_count": 1023957, +"project": "usaddress" }, { -"download_count": 660223, -"project": "gotrue" +"download_count": 1023448, +"project": "azure-ai-formrecognizer" }, { -"download_count": 660000, -"project": "pytest-dotenv" +"download_count": 1023405, +"project": "dataproperty" }, { -"download_count": 658378, -"project": "zipfile36" +"download_count": 1023255, +"project": "types-freezegun" }, { -"download_count": 657701, -"project": "tinydb" +"download_count": 1020332, +"project": "chex" }, { -"download_count": 657373, -"project": "schematics" +"download_count": 1019527, +"project": "tyro" }, { -"download_count": 656079, -"project": "simpy" +"download_count": 1019046, +"project": "pyside6-addons" }, { -"download_count": 655187, -"project": "postgrest" +"download_count": 1018058, +"project": "aiomysql" }, { -"download_count": 654992, -"project": "symengine" +"download_count": 1016831, +"project": "objgraph" }, { -"download_count": 654986, -"project": "pyannote-core" +"download_count": 1016822, +"project": "azureml-dataprep-native" }, { -"download_count": 654771, -"project": "dagster-graphql" +"download_count": 1015324, +"project": "praw" }, { -"download_count": 653699, -"project": "sshpubkeys" +"download_count": 1014603, +"project": "safehttpx" }, { -"download_count": 653661, -"project": "mypy-boto3-appconfig" +"download_count": 1014147, +"project": "pylru" }, { -"download_count": 652934, -"project": "pyautogui" +"download_count": 1013659, +"project": "pyglet" }, { -"download_count": 651815, -"project": "rpaframework-core" +"download_count": 1012601, +"project": "instructor" }, { -"download_count": 651681, -"project": "htmldocx" +"download_count": 1012364, +"project": "crccheck" }, { -"download_count": 651444, -"project": "qudida" +"download_count": 1011319, +"project": "property-manager" }, { -"download_count": 651126, -"project": "tangled-up-in-unicode" +"download_count": 1008846, +"project": "ebcdic" }, { -"download_count": 650951, -"project": "delta" +"download_count": 1008671, +"project": "django-allauth" }, { -"download_count": 650384, -"project": "storage3" +"download_count": 1008206, +"project": "google-cloud-bigquery-biglake" }, { -"download_count": 650011, -"project": "quinn" +"download_count": 1007566, +"project": "sasl" }, { -"download_count": 649895, -"project": "mouseinfo" +"download_count": 1007311, +"project": "dirty-equals" }, { -"download_count": 647202, -"project": "jinjasql" +"download_count": 1003183, +"project": "segment-anything" }, { -"download_count": 646759, -"project": "apache-airflow-providers-salesforce" +"download_count": 1002781, +"project": "wand" }, { -"download_count": 646074, -"project": "josepy" +"download_count": 1002581, +"project": "singleton-decorator" }, { -"download_count": 645923, -"project": "clipboard" +"download_count": 1002340, +"project": "types-markupsafe" }, { -"download_count": 645871, -"project": "pymongo-auth-aws" +"download_count": 999685, +"project": "func-timeout" }, { -"download_count": 645734, -"project": "lizard" +"download_count": 997890, +"project": "visions" }, { -"download_count": 645289, -"project": "argh" +"download_count": 997554, +"project": "wmi" }, { -"download_count": 644193, -"project": "pyopengl" +"download_count": 997231, +"project": "kgb" }, { -"download_count": 643427, -"project": "gluonts" +"download_count": 997092, +"project": "snowflake" }, { -"download_count": 643176, -"project": "zope-schema" +"download_count": 995582, +"project": "jsonmerge" }, { -"download_count": 642928, -"project": "dvclive" +"download_count": 995282, +"project": "google-cloud-discoveryengine" }, { -"download_count": 642832, -"project": "django-countries" +"download_count": 994371, +"project": "correctionlib" }, { -"download_count": 642721, -"project": "pyannote-metrics" +"download_count": 994322, +"project": "mypy-boto3-emr-serverless" }, { -"download_count": 642667, -"project": "grpc-stubs" +"download_count": 992785, +"project": "raven" }, { -"download_count": 642660, -"project": "python-certifi-win32" +"download_count": 991495, +"project": "graypy" }, { -"download_count": 642512, -"project": "django-silk" +"download_count": 990367, +"project": "flake8-pyproject" }, { -"download_count": 642330, -"project": "mypy-boto3-dataexchange" +"download_count": 989895, +"project": "types-jinja2" }, { -"download_count": 641188, -"project": "simplegeneric" +"download_count": 989568, +"project": "jsbeautifier" }, { -"download_count": 640509, -"project": "pymsgbox" +"download_count": 987284, +"project": "decli" }, { -"download_count": 639773, -"project": "pytest-flask" +"download_count": 986779, +"project": "artifacts-keyring" }, { -"download_count": 639689, -"project": "pyqt6-sip" +"download_count": 985846, +"project": "scikit-optimize" }, { -"download_count": 639272, -"project": "tensorflowonspark" +"download_count": 982955, +"project": "intervals" }, { -"download_count": 637440, -"project": "cfile" +"download_count": 980528, +"project": "dagster-webserver" }, { -"download_count": 634313, -"project": "patool" +"download_count": 980102, +"project": "pyvmomi" }, { -"download_count": 632421, -"project": "flax" +"download_count": 978572, +"project": "python-ulid" }, { -"download_count": 632133, -"project": "statsforecast" +"download_count": 978442, +"project": "hist" }, { -"download_count": 631963, -"project": "pusher" +"download_count": 978417, +"project": "mplhep" }, { -"download_count": 631411, -"project": "pyvisa" +"download_count": 978109, +"project": "openapi-schema-pydantic" }, { -"download_count": 630916, -"project": "decopatch" +"download_count": 976156, +"project": "pcpp" }, { -"download_count": 629538, -"project": "pytest-dependency" +"download_count": 974916, +"project": "python-on-whales" }, { -"download_count": 628510, -"project": "awscliv2" +"download_count": 973883, +"project": "pyairtable" }, { -"download_count": 628404, -"project": "suds-py3" +"download_count": 973732, +"project": "aws-cdk-aws-lambda-python-alpha" }, { -"download_count": 627183, -"project": "pyrtf3" +"download_count": 972813, +"project": "protoc-gen-openapiv2" }, { -"download_count": 627163, -"project": "config" +"download_count": 972725, +"project": "annoy" }, { -"download_count": 626297, -"project": "arnparse" +"download_count": 971749, +"project": "uhi" }, { -"download_count": 626072, -"project": "gguf" +"download_count": 971715, +"project": "hsluv" }, { -"download_count": 626056, -"project": "pytest-openfiles" +"download_count": 971626, +"project": "types-decorator" }, { -"download_count": 625515, -"project": "tk" +"download_count": 970967, +"project": "msgpack-numpy" }, { -"download_count": 625181, -"project": "robotframework-seleniumtestability" +"download_count": 970341, +"project": "python-baseconv" }, { -"download_count": 624191, -"project": "pyjarowinkler" +"download_count": 969389, +"project": "histoprint" }, { -"download_count": 624106, -"project": "rope" +"download_count": 968713, +"project": "tensorflow-cpu" }, { -"download_count": 624028, -"project": "rpaframework-pdf" +"download_count": 968688, +"project": "jsons" }, { -"download_count": 623980, -"project": "nanoid" +"download_count": 968566, +"project": "sphinx-tabs" }, { -"download_count": 623969, -"project": "sphinxcontrib-websupport" +"download_count": 967444, +"project": "yarg" }, { -"download_count": 623680, -"project": "langfuse" +"download_count": 966549, +"project": "tabledata" }, { -"download_count": 623563, -"project": "openstacksdk" +"download_count": 966293, +"project": "vector" }, { -"download_count": 622972, -"project": "opentelemetry-propagator-b3" +"download_count": 966165, +"project": "django-otp" }, { -"download_count": 619747, -"project": "python-gettext" +"download_count": 965681, +"project": "mimesis" }, { -"download_count": 619300, -"project": "pytelegrambotapi" +"download_count": 965161, +"project": "pytest-assume" }, { -"download_count": 617975, -"project": "correctionlib" +"download_count": 964897, +"project": "openstackdocstheme" }, { -"download_count": 617913, -"project": "django-health-check" +"download_count": 963067, +"project": "dlt" }, { -"download_count": 617630, -"project": "flask-marshmallow" +"download_count": 962682, +"project": "flask-smorest" }, { -"download_count": 616465, -"project": "halo" +"download_count": 958384, +"project": "colorcet" }, { -"download_count": 616377, -"project": "django-csp" +"download_count": 958242, +"project": "dask-awkward" }, { -"download_count": 616204, -"project": "pyrate-limiter" +"download_count": 958086, +"project": "aiorwlock" }, { -"download_count": 615266, -"project": "detect-secrets" +"download_count": 957030, +"project": "nanoid" }, { -"download_count": 614459, -"project": "imblearn" +"download_count": 956740, +"project": "zigpy" }, { -"download_count": 613785, -"project": "flake8-pyproject" +"download_count": 956131, +"project": "oslotest" }, { -"download_count": 613731, -"project": "textparser" +"download_count": 955786, +"project": "mplhep-data" }, { -"download_count": 613197, -"project": "instructor" +"download_count": 955662, +"project": "dask-histogram" }, { -"download_count": 612778, -"project": "types-tqdm" +"download_count": 954292, +"project": "funcparserlib" }, { -"download_count": 612529, -"project": "flask-mail" +"download_count": 954253, +"project": "pyld" }, { -"download_count": 612451, -"project": "zope-exceptions" +"download_count": 954240, +"project": "coffea" }, { -"download_count": 612083, -"project": "pyod" +"download_count": 953482, +"project": "wtforms-components" }, { -"download_count": 611978, -"project": "plaster" +"download_count": 951766, +"project": "open3d" }, { -"download_count": 611360, -"project": "formic2" +"download_count": 951497, +"project": "farama-notifications" }, { -"download_count": 611283, -"project": "json2html" +"download_count": 951462, +"project": "versioneer" }, { -"download_count": 611140, -"project": "plaster-pastedeploy" +"download_count": 950894, +"project": "suds-community" }, { -"download_count": 611084, -"project": "macholib" +"download_count": 950040, +"project": "isoweek" }, { -"download_count": 610911, -"project": "update-checker" +"download_count": 948434, +"project": "pluginbase" }, { -"download_count": 610623, -"project": "uplink" +"download_count": 948117, +"project": "mecab-python3" }, { -"download_count": 610443, -"project": "langchain-google-community" +"download_count": 946658, +"project": "pytest-postgresql" }, { -"download_count": 609751, -"project": "jstyleson" +"download_count": 945932, +"project": "corner" }, { -"download_count": 609389, -"project": "exchange-calendars" +"download_count": 945894, +"project": "grapheme" }, { -"download_count": 608934, -"project": "anybadge" +"download_count": 945720, +"project": "livy" }, { -"download_count": 606951, -"project": "zope-security" +"download_count": 943760, +"project": "fsspec-xrootd" }, { -"download_count": 606553, -"project": "regress" +"download_count": 943252, +"project": "lxml-stubs" }, { -"download_count": 606083, -"project": "numpy-financial" +"download_count": 941782, +"project": "pyviz-comms" }, { -"download_count": 605660, -"project": "colorcet" +"download_count": 941730, +"project": "flatdict" }, { -"download_count": 605564, -"project": "grpc-gateway-protoc-gen-openapiv2" +"download_count": 941717, +"project": "wtforms-alchemy" }, { -"download_count": 604794, -"project": "jaxtyping" +"download_count": 941283, +"project": "pyupgrade" }, { -"download_count": 604641, -"project": "awesomeversion" +"download_count": 941003, +"project": "os-api-ref" }, { -"download_count": 603634, -"project": "robocorp-storage" +"download_count": 940725, +"project": "zdaemon" }, { -"download_count": 602667, -"project": "dagster-webserver" +"download_count": 940659, +"project": "retry2" }, { -"download_count": 602604, -"project": "zope-lifecycleevent" +"download_count": 940402, +"project": "ruyaml" }, { -"download_count": 602522, -"project": "types-ujson" +"download_count": 939491, +"project": "pretend" }, { -"download_count": 602408, -"project": "mapbox-earcut" +"download_count": 938836, +"project": "google-cloud-pipeline-components" }, { -"download_count": 602388, -"project": "boost-histogram" +"download_count": 938470, +"project": "dateformat" }, { -"download_count": 602343, -"project": "zope-i18n" +"download_count": 938280, +"project": "ndindex" }, { -"download_count": 601970, -"project": "sphinx-book-theme" +"download_count": 938012, +"project": "bz2file" }, { -"download_count": 601933, -"project": "typing-utils" +"download_count": 938006, +"project": "rope" }, { -"download_count": 601277, -"project": "zope-testing" +"download_count": 937676, +"project": "azureml-mlflow" }, { -"download_count": 601231, -"project": "mimesis" +"download_count": 936852, +"project": "ptpython" }, { -"download_count": 601051, -"project": "zope-publisher" +"download_count": 936334, +"project": "tdqm" }, { -"download_count": 601003, -"project": "boostedblob" +"download_count": 935572, +"project": "safety-schemas" }, { -"download_count": 600104, -"project": "fido2" +"download_count": 935380, +"project": "logzio-python-handler" }, { -"download_count": 599853, -"project": "uhi" +"download_count": 935056, +"project": "magic-filter" }, { -"download_count": 599842, -"project": "editorconfig" +"download_count": 934494, +"project": "pytablewriter" }, { -"download_count": 599665, -"project": "backports-ssl-match-hostname" +"download_count": 934190, +"project": "peppercorn" }, { -"download_count": 599648, -"project": "django-anymail" +"download_count": 932753, +"project": "credstash" }, { -"download_count": 599531, -"project": "tensorflow-transform" +"download_count": 931582, +"project": "xmljson" }, { -"download_count": 599483, -"project": "pyclothoids" +"download_count": 930684, +"project": "types-termcolor" }, { -"download_count": 599437, -"project": "impyla" +"download_count": 929374, +"project": "prisma" }, { -"download_count": 599384, -"project": "mypy-boto3-lakeformation" +"download_count": 928182, +"project": "apache-airflow-providers-pagerduty" }, { -"download_count": 598568, -"project": "flaml" +"download_count": 927785, +"project": "keystoneauth1" }, { -"download_count": 598157, -"project": "flake8-eradicate" +"download_count": 925231, +"project": "utilsforecast" }, { -"download_count": 598145, -"project": "asgi-correlation-id" +"download_count": 924555, +"project": "quantlib" }, { -"download_count": 598075, -"project": "azure-schemaregistry" +"download_count": 924114, +"project": "lupa" }, { -"download_count": 597920, -"project": "molecule" +"download_count": 922525, +"project": "shellescape" }, { -"download_count": 597209, -"project": "pantab" +"download_count": 921635, +"project": "vispy" }, { -"download_count": 596994, -"project": "cursor" +"download_count": 920380, +"project": "returns" }, { -"download_count": 596986, -"project": "pillow-heif" +"download_count": 919952, +"project": "types-retry" }, { -"download_count": 596978, -"project": "zope-configuration" +"download_count": 918782, +"project": "rfc3339" }, { -"download_count": 596891, -"project": "hist" +"download_count": 918382, +"project": "jupyter-packaging" }, { -"download_count": 596475, -"project": "databricks-feature-store" +"download_count": 917704, +"project": "facexlib" }, { -"download_count": 596359, -"project": "wurlitzer" +"download_count": 917330, +"project": "pyqt6" }, { -"download_count": 595763, -"project": "livereload" +"download_count": 917260, +"project": "apache-airflow-providers-tableau" }, { -"download_count": 595722, -"project": "openvino-telemetry" +"download_count": 915986, +"project": "datacompy" }, { -"download_count": 595549, -"project": "histoprint" +"download_count": 915197, +"project": "mammoth" }, { -"download_count": 594014, -"project": "cchardet" +"download_count": 913330, +"project": "justext" }, { -"download_count": 592782, -"project": "mplhep" +"download_count": 913030, +"project": "optax" }, { -"download_count": 592698, -"project": "pyviz-comms" +"download_count": 912730, +"project": "subprocess32" }, { -"download_count": 592612, -"project": "zope-location" +"download_count": 911426, +"project": "astpretty" }, { -"download_count": 591708, -"project": "freetype-py" +"download_count": 910753, +"project": "argh" }, { -"download_count": 591611, -"project": "optax" +"download_count": 910295, +"project": "snowflake-core" }, { -"download_count": 591358, -"project": "mplhep-data" +"download_count": 908799, +"project": "odict" }, { -"download_count": 590859, -"project": "mecab-python3" +"download_count": 908733, +"project": "flax" }, { -"download_count": 589774, -"project": "zope-browser" +"download_count": 908432, +"project": "torchdiffeq" }, { -"download_count": 589257, -"project": "xmljson" +"download_count": 907684, +"project": "h5netcdf" }, { -"download_count": 589199, -"project": "camel-converter" +"download_count": 907649, +"project": "pyrate-limiter" }, { -"download_count": 589142, -"project": "pyside6-essentials" +"download_count": 905776, +"project": "gguf" }, { -"download_count": 589140, -"project": "zope-contenttype" +"download_count": 905215, +"project": "mercantile" }, { -"download_count": 589067, -"project": "dict2xml" +"download_count": 905194, +"project": "cobble" }, { -"download_count": 588115, -"project": "vector" +"download_count": 904633, +"project": "crc32c" }, { -"download_count": 587848, -"project": "extensionclass" +"download_count": 904167, +"project": "types-click" }, { -"download_count": 587717, -"project": "zope-container" +"download_count": 903236, +"project": "config" }, { -"download_count": 587031, -"project": "aiomqtt" +"download_count": 902499, +"project": "pyahocorasick" }, { -"download_count": 586896, -"project": "farama-notifications" +"download_count": 900869, +"project": "plumber" }, { -"download_count": 586057, -"project": "acquisition" +"download_count": 900339, +"project": "noise" }, { -"download_count": 585780, -"project": "random-password-generator" +"download_count": 899868, +"project": "smmap2" }, { -"download_count": 585668, -"project": "sparqlwrapper" +"download_count": 899851, +"project": "naked" }, { -"download_count": 585258, -"project": "shiboken6" +"download_count": 898021, +"project": "imblearn" }, { -"download_count": 585037, -"project": "webrtcvad-wheels" +"download_count": 897518, +"project": "django-countries" }, { -"download_count": 584866, -"project": "ulid-py" +"download_count": 897081, +"project": "ase" }, { -"download_count": 584792, -"project": "pydruid" +"download_count": 897016, +"project": "types-pyserial" }, { -"download_count": 584244, -"project": "zope-dottedname" +"download_count": 895945, +"project": "array-record" }, { -"download_count": 584090, -"project": "envyaml" +"download_count": 893721, +"project": "pipreqs" }, { -"download_count": 583751, -"project": "libsass" +"download_count": 891702, +"project": "parce" }, { -"download_count": 583278, -"project": "dotenv" +"download_count": 891479, +"project": "flask-marshmallow" }, { -"download_count": 583149, -"project": "pynput-robocorp-fork" +"download_count": 890300, +"project": "sktime" }, { -"download_count": 583039, -"project": "azureml-dataset-runtime" +"download_count": 890081, +"project": "commitizen" }, { -"download_count": 582698, -"project": "pytest-azurepipelines" +"download_count": 890077, +"project": "sqlite-utils" }, { -"download_count": 582439, -"project": "publicsuffix2" +"download_count": 889984, +"project": "camel-converter" }, { -"download_count": 582359, -"project": "java-access-bridge-wrapper" +"download_count": 889157, +"project": "cachy" }, { -"download_count": 582234, -"project": "zope-traversing" +"download_count": 888272, +"project": "torchdata" }, { -"download_count": 582176, -"project": "looseversion" +"download_count": 887283, +"project": "pillow-heif" }, { -"download_count": 581965, -"project": "ajsonrpc" +"download_count": 887191, +"project": "poetry-plugin-pypi-mirror" }, { -"download_count": 581756, -"project": "traittypes" +"download_count": 886697, +"project": "mypy-boto3-sagemaker" }, { -"download_count": 581682, -"project": "jsmin" +"download_count": 886604, +"project": "textparser" }, { -"download_count": 581361, -"project": "aiofile" +"download_count": 882541, +"project": "langgraph-sdk" }, { -"download_count": 581328, -"project": "opentelemetry-instrumentation-celery" +"download_count": 882514, +"project": "pyside2" }, { -"download_count": 581083, -"project": "coffea" +"download_count": 881626, +"project": "buildkite-test-collector" }, { -"download_count": 580980, -"project": "zope-cachedescriptors" +"download_count": 880927, +"project": "pip-api" }, { -"download_count": 580825, -"project": "wsgiproxy2" +"download_count": 880458, +"project": "marshmallow-jsonschema" }, { -"download_count": 580410, -"project": "pyside6" +"download_count": 879499, +"project": "dictances" }, { -"download_count": 580382, -"project": "tbats" +"download_count": 879291, +"project": "ollama" }, { -"download_count": 580380, -"project": "dask-awkward" +"download_count": 878418, +"project": "hnswlib" }, { -"download_count": 580094, -"project": "resize-right" +"download_count": 878132, +"project": "tableau-api-lib" }, { -"download_count": 580035, -"project": "frictionless" +"download_count": 877403, +"project": "exchange-calendars" }, { -"download_count": 579907, -"project": "zenpy" +"download_count": 877170, +"project": "cached-path" }, { -"download_count": 579428, -"project": "pythonnet" +"download_count": 876487, +"project": "pyqt6-qt6" }, { -"download_count": 579342, -"project": "pyjsparser" +"download_count": 875256, +"project": "shiboken2" }, { -"download_count": 579212, -"project": "fsspec-xrootd" +"download_count": 874706, +"project": "pytelegrambotapi" }, { -"download_count": 579129, -"project": "jetblack-iso8601" +"download_count": 873704, +"project": "pytest-dependency" }, { -"download_count": 578896, -"project": "zope-size" +"download_count": 873604, +"project": "mypy-boto3-kms" }, { -"download_count": 578723, -"project": "dask-histogram" +"download_count": 872935, +"project": "flake8-print" }, { -"download_count": 578650, -"project": "zope-filerepresentation" +"download_count": 871894, +"project": "opentelemetry-instrumentation-jinja2" }, { -"download_count": 578646, -"project": "sphinx-prompt" +"download_count": 871549, +"project": "microsoft-security-utilities-secret-masker" }, { -"download_count": 578555, -"project": "tempita" +"download_count": 871275, +"project": "gevent-websocket" }, { -"download_count": 578524, -"project": "zope-annotation" +"download_count": 870645, +"project": "datumaro" }, { -"download_count": 577425, -"project": "zope-site" +"download_count": 870381, +"project": "pyemd" }, { -"download_count": 577044, -"project": "awacs" +"download_count": 869939, +"project": "microsoft-kiota-serialization-form" }, { -"download_count": 576913, -"project": "types-retry" +"download_count": 869091, +"project": "doit" }, { -"download_count": 576796, -"project": "line-profiler" +"download_count": 868658, +"project": "cfile" }, { -"download_count": 576734, -"project": "pysaml2" +"download_count": 868063, +"project": "pyenchant" }, { -"download_count": 576726, -"project": "zope-processlifetime" +"download_count": 867417, +"project": "fasttext-langdetect" }, { -"download_count": 575635, -"project": "types-markdown" +"download_count": 866552, +"project": "dotty-dict" }, { -"download_count": 575293, -"project": "persistence" +"download_count": 866218, +"project": "frida" }, { -"download_count": 575240, -"project": "azureml-telemetry" +"download_count": 864716, +"project": "seqio-nightly" }, { -"download_count": 575047, -"project": "tree-sitter-python" +"download_count": 863197, +"project": "microsoft-kiota-serialization-multipart" }, { -"download_count": 575045, -"project": "aiolimiter" +"download_count": 862664, +"project": "flasgger" }, { -"download_count": 574824, -"project": "python-keystoneclient" +"download_count": 862339, +"project": "pytest-trio" }, { -"download_count": 574773, -"project": "zope-datetime" +"download_count": 862235, +"project": "flask-admin" }, { -"download_count": 574538, -"project": "accesscontrol" +"download_count": 860505, +"project": "awslambdaric" }, { -"download_count": 574276, -"project": "parver" +"download_count": 860343, +"project": "trl" }, { -"download_count": 574189, -"project": "transitions" +"download_count": 859964, +"project": "pydriller" }, { -"download_count": 573281, -"project": "flask-talisman" +"download_count": 859187, +"project": "pyqt6-sip" }, { -"download_count": 573066, -"project": "sqllineage" +"download_count": 858424, +"project": "traittypes" }, { -"download_count": 572611, -"project": "opentelemetry-exporter-prometheus-remote-write" +"download_count": 854749, +"project": "jamo" }, { -"download_count": 572456, -"project": "types-beautifulsoup4" +"download_count": 854302, +"project": "pylatexenc" }, { -"download_count": 572121, -"project": "plyvel" +"download_count": 853881, +"project": "asgi-correlation-id" }, { -"download_count": 571420, -"project": "langchain-anthropic" +"download_count": 853642, +"project": "apache-airflow-providers-airbyte" }, { -"download_count": 571110, -"project": "scikit-base" +"download_count": 853558, +"project": "types-colorama" }, { -"download_count": 570924, -"project": "cvxopt" +"download_count": 853496, +"project": "k8" }, { -"download_count": 569987, -"project": "jplephem" +"download_count": 852108, +"project": "ovmsclient" }, { -"download_count": 569912, -"project": "jsbeautifier" +"download_count": 851931, +"project": "icecream" }, { -"download_count": 569880, -"project": "gtts" +"download_count": 851340, +"project": "apache-airflow-providers-salesforce" }, { -"download_count": 569781, -"project": "zexceptions" +"download_count": 851053, +"project": "docformatter" }, { -"download_count": 569757, -"project": "zope-pagetemplate" +"download_count": 850918, +"project": "python3-logstash" }, { -"download_count": 569714, -"project": "zope-tales" +"download_count": 850905, +"project": "nulltype" }, { -"download_count": 569373, -"project": "authencoding" +"download_count": 850311, +"project": "vlsir" }, { -"download_count": 569324, -"project": "west" +"download_count": 850201, +"project": "statsig" }, { -"download_count": 569083, -"project": "cvdupdate" +"download_count": 850143, +"project": "vlsirtools" }, { -"download_count": 568629, -"project": "apache-airflow-providers-atlassian-jira" +"download_count": 848768, +"project": "recommonmark" }, { -"download_count": 568465, -"project": "sgp4" +"download_count": 847392, +"project": "kaldiio" }, { -"download_count": 568412, -"project": "zope-contentprovider" +"download_count": 846744, +"project": "openinference-semantic-conventions" }, { -"download_count": 568268, -"project": "zope-browserpage" +"download_count": 846732, +"project": "yarn-api-client" }, { -"download_count": 568149, -"project": "zope" +"download_count": 846585, +"project": "pysam" }, { -"download_count": 567440, -"project": "zope-browserresource" +"download_count": 846482, +"project": "halo" }, { -"download_count": 567326, -"project": "pyside6-addons" +"download_count": 846148, +"project": "breathe" }, { -"download_count": 567143, -"project": "zope-testbrowser" +"download_count": 844585, +"project": "hmsclient" }, { -"download_count": 567039, -"project": "pynput" +"download_count": 843907, +"project": "scrypt" }, { -"download_count": 566945, -"project": "red-discordbot" +"download_count": 841249, +"project": "sphinxcontrib-httpdomain" }, { -"download_count": 566726, -"project": "elasticsearch8" +"download_count": 839606, +"project": "import-linter" }, { -"download_count": 566695, -"project": "py-models-parser" +"download_count": 838771, +"project": "dict2xml" }, { -"download_count": 566478, -"project": "django-ses" +"download_count": 838658, +"project": "custom-inherit" }, { -"download_count": 566361, -"project": "find-libpython" +"download_count": 837248, +"project": "advent-of-code" }, { -"download_count": 566327, -"project": "documenttemplate" +"download_count": 836790, +"project": "opentelemetry-instrumentation-sqlite3" }, { -"download_count": 566293, -"project": "types-psutil" +"download_count": 835890, +"project": "textdistance" }, { -"download_count": 566240, -"project": "zope-structuredtext" +"download_count": 835736, +"project": "fastprogress" }, { -"download_count": 566172, -"project": "zope-sequencesort" +"download_count": 834661, +"project": "azure-mgmt-resourcegraph" }, { -"download_count": 566092, -"project": "mf2py" +"download_count": 833084, +"project": "cppy" }, { -"download_count": 566087, -"project": "uhashring" +"download_count": 833056, +"project": "shyaml" }, { -"download_count": 566080, -"project": "zope-viewlet" +"download_count": 833023, +"project": "pyscreeze" }, { -"download_count": 565890, -"project": "import-linter" +"download_count": 832354, +"project": "kconfiglib" }, { -"download_count": 565883, -"project": "table-meta" +"download_count": 829960, +"project": "pygam" }, { -"download_count": 565573, -"project": "cuda-python" +"download_count": 829609, +"project": "scikit-build" }, { -"download_count": 565492, -"project": "google-cloud-os-config" +"download_count": 827986, +"project": "python-oxmsg" }, { -"download_count": 565490, -"project": "dagster-postgres" +"download_count": 827965, +"project": "gssapi" }, { -"download_count": 565268, -"project": "sphinxcontrib-bibtex" +"download_count": 827644, +"project": "sampleproject" }, { -"download_count": 565183, -"project": "libretranslatepy" +"download_count": 826849, +"project": "pyshp" }, { -"download_count": 564817, -"project": "openinference-semantic-conventions" +"download_count": 825209, +"project": "pysmb" }, { -"download_count": 564665, -"project": "jinja2-cli" +"download_count": 825167, +"project": "eyes-selenium" }, { -"download_count": 564226, -"project": "ntplib" +"download_count": 825156, +"project": "python-ipware" }, { -"download_count": 564160, -"project": "zope-ptresource" +"download_count": 825067, +"project": "clickhouse-sqlalchemy" }, { -"download_count": 564159, -"project": "casefy" +"download_count": 824858, +"project": "spandrel" }, { -"download_count": 564151, -"project": "case-conversion" +"download_count": 822579, +"project": "mlxtend" }, { -"download_count": 564133, -"project": "protoc-gen-openapiv2" +"download_count": 822524, +"project": "eralchemy2" }, { -"download_count": 564114, -"project": "dotmap" +"download_count": 820688, +"project": "eyes-common" }, { -"download_count": 563838, -"project": "tfx-bsl" +"download_count": 820487, +"project": "django-csp" }, { -"download_count": 563620, -"project": "zope-browsermenu" +"download_count": 819818, +"project": "pytest-alembic" }, { -"download_count": 563573, -"project": "z3c-pt" +"download_count": 819494, +"project": "coreforecast" }, { -"download_count": 563478, -"project": "lpips" +"download_count": 819447, +"project": "pulsar-client" }, { -"download_count": 562638, -"project": "multimapping" +"download_count": 819268, +"project": "rjsmin" }, { -"download_count": 562508, -"project": "slacker" +"download_count": 818449, +"project": "sharepy" }, { -"download_count": 562310, -"project": "zope-globalrequest" +"download_count": 818140, +"project": "superqt" }, { -"download_count": 562058, -"project": "polyline" +"download_count": 817800, +"project": "fvcore" }, { -"download_count": 561957, -"project": "python-logging-loki" +"download_count": 817661, +"project": "apache-airflow-providers-datadog" }, { -"download_count": 561914, -"project": "a2wsgi" +"download_count": 816396, +"project": "natto-py" }, { -"download_count": 561851, -"project": "robocorp-vault" +"download_count": 815688, +"project": "untokenize" }, { -"download_count": 561667, -"project": "asteroid-filterbanks" +"download_count": 814238, +"project": "parsley" }, { -"download_count": 561312, -"project": "clickhouse-sqlalchemy" +"download_count": 813717, +"project": "sqlite-fts4" }, { -"download_count": 560275, -"project": "hstspreload" +"download_count": 812826, +"project": "pdbr" }, { -"download_count": 559946, -"project": "mypy-boto3-events" +"download_count": 812668, +"project": "pytest-recording" }, { -"download_count": 559117, -"project": "django-taggit" +"download_count": 812640, +"project": "fastapi-pagination" }, { -"download_count": 558923, -"project": "nulltype" +"download_count": 812574, +"project": "blake3" }, { -"download_count": 558404, -"project": "databases" +"download_count": 812537, +"project": "cibuildwheel" }, { -"download_count": 557833, -"project": "jupyter-packaging" +"download_count": 811367, +"project": "cmaes" }, { -"download_count": 556967, -"project": "phonenumberslite" +"download_count": 811281, +"project": "histlite" }, { -"download_count": 556920, -"project": "rcssmin" +"download_count": 810986, +"project": "mypy-boto3-appconfig" }, { -"download_count": 556814, -"project": "mysql" +"download_count": 808836, +"project": "gluonts" }, { -"download_count": 555810, -"project": "pyawscron" +"download_count": 808155, +"project": "pydantic-compat" }, { -"download_count": 555796, -"project": "types-colorama" +"download_count": 807875, +"project": "torch-model-archiver" }, { -"download_count": 555703, -"project": "django-mptt" +"download_count": 806869, +"project": "aiosmtplib" }, { -"download_count": 555514, -"project": "mammoth" +"download_count": 806624, +"project": "table-meta" }, { -"download_count": 555178, -"project": "openinference-instrumentation" +"download_count": 806385, +"project": "vertexai" }, { -"download_count": 554972, -"project": "launchdarkly-eventsource" +"download_count": 806268, +"project": "versioneer-518" }, { -"download_count": 554860, -"project": "frida" +"download_count": 805979, +"project": "lancedb" }, { -"download_count": 553958, -"project": "translate" +"download_count": 805396, +"project": "flake8-import-order" }, { -"download_count": 553777, -"project": "fcm-django" +"download_count": 805208, +"project": "pyspellchecker" }, { -"download_count": 553693, -"project": "cobble" +"download_count": 804308, +"project": "apache-airflow-providers-celery" }, { -"download_count": 553397, -"project": "beniget" +"download_count": 803038, +"project": "youtube-dl" }, { -"download_count": 553301, -"project": "requests-pkcs12" +"download_count": 802633, +"project": "pysaml2" }, { -"download_count": 553264, -"project": "requestsexceptions" +"download_count": 801581, +"project": "strict-rfc3339" }, { -"download_count": 553190, -"project": "opentelemetry-instrumentation-pika" +"download_count": 800717, +"project": "apache-airflow-providers-apache-spark" }, { -"download_count": 553172, -"project": "python-ipware" +"download_count": 800324, +"project": "starlette-context" }, { -"download_count": 552650, -"project": "python-on-whales" +"download_count": 800048, +"project": "eradicate" }, { -"download_count": 552469, -"project": "faster-whisper" +"download_count": 799005, +"project": "backports-entry-points-selectable" }, { -"download_count": 552195, -"project": "caio" +"download_count": 798944, +"project": "generalimport" }, { -"download_count": 551834, -"project": "drf-nested-routers" +"download_count": 798927, +"project": "mypy-boto3-lakeformation" }, { -"download_count": 551027, -"project": "elasticsearch-dbapi" +"download_count": 798424, +"project": "casadi" }, { -"download_count": 551002, -"project": "gnupg" +"download_count": 797490, +"project": "a2wsgi" }, { -"download_count": 550647, -"project": "dateutils" +"download_count": 797342, +"project": "flake8-eradicate" }, { -"download_count": 550289, -"project": "validate-email" +"download_count": 797206, +"project": "pydruid" }, { -"download_count": 550214, -"project": "pyannote-audio" +"download_count": 797178, +"project": "py-models-parser" }, { -"download_count": 549490, -"project": "torch-audiomentations" +"download_count": 796663, +"project": "elasticsearch7" }, { -"download_count": 549372, -"project": "primepy" +"download_count": 796494, +"project": "easyprocess" }, { -"download_count": 548800, -"project": "torch-pitch-shift" +"download_count": 795699, +"project": "pyxdg" }, { -"download_count": 547470, -"project": "icecream" +"download_count": 795591, +"project": "groq" }, { -"download_count": 546985, -"project": "pyxdg" +"download_count": 795447, +"project": "prefect-gcp" }, { -"download_count": 546786, -"project": "gputil" +"download_count": 793706, +"project": "python-geohash" }, { -"download_count": 546687, -"project": "google-cloud-org-policy" +"download_count": 793693, +"project": "pandas-market-calendars" }, { -"download_count": 546167, -"project": "bibtexparser" +"download_count": 791575, +"project": "blessings" }, { -"download_count": 546063, -"project": "eradicate" +"download_count": 791556, +"project": "imath" }, { -"download_count": 545946, -"project": "xmodem" +"download_count": 791488, +"project": "django-prometheus" }, { -"download_count": 545921, -"project": "async-property" +"download_count": 789886, +"project": "jinja2-time" }, { -"download_count": 545363, -"project": "ollama" +"download_count": 789014, +"project": "dotmap" }, { -"download_count": 545341, -"project": "pattern" +"download_count": 788312, +"project": "parsy" }, { -"download_count": 545154, -"project": "mdx-truly-sane-lists" +"download_count": 787545, +"project": "fluent-logger" }, { -"download_count": 543983, -"project": "functools32" +"download_count": 787482, +"project": "pytest-snapshot" }, { -"download_count": 543335, -"project": "mirakuru" +"download_count": 787079, +"project": "core-universal" }, { -"download_count": 542802, -"project": "gpxpy" +"download_count": 786742, +"project": "lief" }, { -"download_count": 542598, -"project": "decli" +"download_count": 785970, +"project": "mypy-boto3-dataexchange" }, { -"download_count": 542098, -"project": "parsley" +"download_count": 785858, +"project": "starlette-exporter" }, { -"download_count": 541846, -"project": "feu" +"download_count": 785696, +"project": "django-health-check" }, { -"download_count": 541196, -"project": "starlette-context" +"download_count": 784007, +"project": "clean-fid" }, { -"download_count": 540401, -"project": "pandas-datareader" +"download_count": 783806, +"project": "django-silk" }, { -"download_count": 540001, -"project": "pyston" +"download_count": 783727, +"project": "wurlitzer" }, { -"download_count": 539990, -"project": "pyston-autoload" +"download_count": 783083, +"project": "dicomweb-client" }, { -"download_count": 539975, -"project": "install-jdk" +"download_count": 782949, +"project": "pyu2f" }, { -"download_count": 539815, -"project": "pyannote-pipeline" +"download_count": 782637, +"project": "courlan" }, { -"download_count": 539650, -"project": "pyorc" +"download_count": 779860, +"project": "apache-airflow-microsoft-fabric-plugin" }, { -"download_count": 538274, -"project": "youtube-dl" +"download_count": 777814, +"project": "arch" }, { -"download_count": 538194, -"project": "minidump" +"download_count": 777711, +"project": "pytest-azurepipelines" }, { -"download_count": 538103, -"project": "pybtex-docutils" +"download_count": 777628, +"project": "wasmtime" }, { -"download_count": 537452, -"project": "nats-py" +"download_count": 776850, +"project": "banal" }, { -"download_count": 536894, -"project": "apache-airflow-providers-oracle" +"download_count": 776366, +"project": "opentelemetry-instrumentation-celery" }, { -"download_count": 536876, -"project": "pylru" +"download_count": 775846, +"project": "xarray-einstats" }, { -"download_count": 535974, -"project": "flask-testing" +"download_count": 775828, +"project": "josepy" }, { -"download_count": 535696, -"project": "pillow-avif-plugin" +"download_count": 775456, +"project": "python-semantic-release" }, { -"download_count": 535530, -"project": "pyminizip" +"download_count": 775169, +"project": "snowflake-legacy" }, { -"download_count": 535429, -"project": "versioneer-518" +"download_count": 774925, +"project": "avro-gen" }, { -"download_count": 535368, -"project": "scons" +"download_count": 774680, +"project": "littleutils" }, { -"download_count": 535223, -"project": "importlib" +"download_count": 774159, +"project": "magicgui" }, { -"download_count": 535101, -"project": "vertica-python" +"download_count": 773814, +"project": "os-service-types" }, { -"download_count": 534203, -"project": "submitit" +"download_count": 773765, +"project": "pykakasi" }, { -"download_count": 533513, -"project": "python-geohash" +"download_count": 773638, +"project": "keyrings-alt" }, { -"download_count": 532894, -"project": "splunk-sdk" +"download_count": 773306, +"project": "cchardet" }, { -"download_count": 532337, -"project": "django-picklefield" +"download_count": 773045, +"project": "parver" }, { -"download_count": 532163, -"project": "dbfread" +"download_count": 772511, +"project": "app-model" }, { -"download_count": 531769, -"project": "openshift" +"download_count": 772018, +"project": "djlint" }, { -"download_count": 530459, -"project": "splunk-handler" +"download_count": 770904, +"project": "mypy-boto3-events" }, { -"download_count": 529817, -"project": "infi-systray" +"download_count": 770569, +"project": "cachey" }, { -"download_count": 529592, -"project": "pymiscutils" +"download_count": 770299, +"project": "pyconify" }, { -"download_count": 529153, -"project": "gcloud" +"download_count": 769358, +"project": "flask-talisman" }, { -"download_count": 529010, -"project": "apipkg" +"download_count": 769170, +"project": "shrub-py" }, { -"download_count": 528881, -"project": "pyiotools" +"download_count": 769006, +"project": "mypy-boto3-logs" }, { -"download_count": 528659, -"project": "mlxtend" +"download_count": 768248, +"project": "publish-event-sns" }, { -"download_count": 528520, -"project": "blake3" +"download_count": 768025, +"project": "collections-extended" }, { -"download_count": 527978, -"project": "maybe-else" +"download_count": 767344, +"project": "napari-console" }, { -"download_count": 527527, -"project": "pysubtypes" +"download_count": 767068, +"project": "npe2" }, { -"download_count": 527523, -"project": "colorzero" +"download_count": 766828, +"project": "napari" }, { -"download_count": 527345, -"project": "pathmagic" +"download_count": 766773, +"project": "crayons" }, { -"download_count": 527253, -"project": "office365" +"download_count": 766501, +"project": "jsonargparse" }, { -"download_count": 526769, -"project": "openapi-schema-pydantic" +"download_count": 765946, +"project": "napari-svg" }, { -"download_count": 526593, -"project": "prettierfier" +"download_count": 765266, +"project": "google-reauth" }, { -"download_count": 526064, -"project": "jsonfield" +"download_count": 764973, +"project": "tfds-nightly" }, { -"download_count": 525600, -"project": "openinference-instrumentation-langchain" +"download_count": 764296, +"project": "dataclass-wizard" }, { -"download_count": 524859, -"project": "fusepy" +"download_count": 764129, +"project": "cheetah3" }, { -"download_count": 524681, -"project": "skyfield" +"download_count": 763567, +"project": "google-cloud-error-reporting" }, { -"download_count": 524644, -"project": "xatlas" +"download_count": 763298, +"project": "git-remote-codecommit" }, { -"download_count": 524451, -"project": "confuse" +"download_count": 762936, +"project": "modelscope" }, { -"download_count": 524233, -"project": "gpiozero" +"download_count": 762704, +"project": "crypto" }, { -"download_count": 523734, -"project": "sparkmeasure" +"download_count": 761320, +"project": "stim" }, { -"download_count": 523522, -"project": "apache-airflow-providers-redis" +"download_count": 760960, +"project": "netmiko" }, { -"download_count": 523451, -"project": "dlt" +"download_count": 760222, +"project": "pyfunctional" }, { -"download_count": 523074, -"project": "django-prometheus" +"download_count": 760094, +"project": "nbtlib" }, { -"download_count": 522999, -"project": "ably" +"download_count": 758752, +"project": "backports-csv" }, { -"download_count": 522704, -"project": "apeye-core" +"download_count": 758668, +"project": "pathtools" }, { -"download_count": 522642, -"project": "ibm-db-sa" +"download_count": 755298, +"project": "pudb" }, { -"download_count": 522587, -"project": "spglib" +"download_count": 753847, +"project": "hdbscan" }, { -"download_count": 522170, -"project": "rangehttpserver" +"download_count": 753834, +"project": "mapbox-earcut" }, { -"download_count": 521974, -"project": "webhelpers2" +"download_count": 752547, +"project": "sphinx-jinja" }, { -"download_count": 520144, -"project": "pytoolconfig" +"download_count": 751999, +"project": "akshare" }, { -"download_count": 518552, -"project": "django-compressor" +"download_count": 751369, +"project": "azureml-dataset-runtime" }, { -"download_count": 518355, -"project": "codetiming" +"download_count": 750511, +"project": "openturns" }, { -"download_count": 517839, -"project": "webvtt-py" +"download_count": 750460, +"project": "pygraphviz" }, { -"download_count": 517380, -"project": "msgpack-numpy" +"download_count": 750083, +"project": "ibm-platform-services" }, { -"download_count": 517154, -"project": "extras" +"download_count": 750035, +"project": "multiset" }, { -"download_count": 517144, -"project": "aiomysql" +"download_count": 749718, +"project": "apache-airflow-providers-oracle" }, { -"download_count": 516395, -"project": "pathtools" +"download_count": 749219, +"project": "django-anymail" }, { -"download_count": 515383, -"project": "antlr4-tools" +"download_count": 747459, +"project": "pynput" }, { -"download_count": 515056, -"project": "pymannkendall" +"download_count": 747379, +"project": "streamerate" }, { -"download_count": 515031, -"project": "cbor" +"download_count": 747299, +"project": "flask-oidc" }, { -"download_count": 513705, -"project": "types-croniter" +"download_count": 747249, +"project": "names" }, { -"download_count": 513645, -"project": "outlines" +"download_count": 747229, +"project": "throttlex" }, { -"download_count": 513496, -"project": "stomp-py" +"download_count": 747066, +"project": "tsx" }, { -"download_count": 513138, -"project": "lief" +"download_count": 747061, +"project": "faster-whisper" }, { -"download_count": 511987, -"project": "sk-dist" +"download_count": 746102, +"project": "ntplib" }, { -"download_count": 511809, -"project": "pytest-icdiff" +"download_count": 745872, +"project": "zthreading" }, { -"download_count": 511755, -"project": "newrelic-telemetry-sdk" +"download_count": 745800, +"project": "connectorx" }, { -"download_count": 511718, -"project": "opentelemetry-instrumentation-boto3sqs" +"download_count": 744619, +"project": "openapi-core" }, { -"download_count": 511285, -"project": "json-logging" +"download_count": 744607, +"project": "sparkorm" }, { -"download_count": 511056, -"project": "pytest-postgresql" +"download_count": 744568, +"project": "libsass" }, { -"download_count": 510827, -"project": "scikeras" +"download_count": 742292, +"project": "flaml" }, { -"download_count": 510638, -"project": "tdigest" +"download_count": 741869, +"project": "detect-secrets" }, { -"download_count": 510374, -"project": "vllm" +"download_count": 739376, +"project": "rpaframework" }, { -"download_count": 510261, -"project": "escapism" +"download_count": 738823, +"project": "galvani" }, { -"download_count": 510154, -"project": "types-pymysql" +"download_count": 738288, +"project": "domdf-python-tools" }, { -"download_count": 510003, -"project": "clr-loader" +"download_count": 737978, +"project": "dagster-k8s" }, { -"download_count": 509541, -"project": "okta" +"download_count": 737657, +"project": "frictionless" }, { -"download_count": 509146, -"project": "win32-setctime" +"download_count": 737452, +"project": "jupyter-cache" }, { -"download_count": 508987, -"project": "pysam" +"download_count": 736038, +"project": "openstacksdk" }, { -"download_count": 508681, -"project": "sodapy" +"download_count": 735975, +"project": "modal" }, { -"download_count": 508085, -"project": "jenkinsapi" +"download_count": 734942, +"project": "python-lsp-jsonrpc" }, { -"download_count": 508036, -"project": "pyrdfa3" +"download_count": 734772, +"project": "httpbin" }, { -"download_count": 507863, -"project": "scrypt" +"download_count": 734408, +"project": "jsmin" }, { -"download_count": 507678, -"project": "pip-audit" +"download_count": 734401, +"project": "azure-mgmt-managedservices" }, { -"download_count": 507461, -"project": "junit2html" +"download_count": 734221, +"project": "okta" }, { -"download_count": 507418, -"project": "jinja2-pluralize" +"download_count": 733496, +"project": "pyautogui" }, { -"download_count": 507322, -"project": "biothings-client" +"download_count": 732341, +"project": "schwifty" }, { -"download_count": 506828, -"project": "pyupgrade" +"download_count": 731785, +"project": "jetblack-iso8601" }, { -"download_count": 506816, -"project": "mygene" +"download_count": 731062, +"project": "sqlalchemy-stubs" }, { -"download_count": 505289, -"project": "pymatgen" +"download_count": 729366, +"project": "python-memcached" }, { -"download_count": 504231, -"project": "extruct" +"download_count": 728658, +"project": "pytweening" }, { -"download_count": 504198, -"project": "interegular" +"download_count": 728450, +"project": "presidio-analyzer" }, { -"download_count": 503953, -"project": "quicktions" +"download_count": 728438, +"project": "pytest-flake8" }, { -"download_count": 503510, -"project": "blendmodes" +"download_count": 727967, +"project": "fastapi-utils" }, { -"download_count": 503443, -"project": "pyenchant" +"download_count": 727832, +"project": "beancount" }, { -"download_count": 503051, -"project": "httpie" +"download_count": 727606, +"project": "pyloudnorm" }, { -"download_count": 502620, -"project": "qiskit" +"download_count": 726604, +"project": "azure-mgmt-hybridcompute" }, { -"download_count": 502612, -"project": "python-oxmsg" +"download_count": 726290, +"project": "win32-setctime" }, { -"download_count": 501515, -"project": "graypy" +"download_count": 724034, +"project": "awscliv2" }, { -"download_count": 501272, -"project": "pypinyin" +"download_count": 722119, +"project": "tensorflow-model-optimization" }, { -"download_count": 501247, -"project": "textstat" +"download_count": 721021, +"project": "tfx-bsl" }, { -"download_count": 500479, -"project": "awslambdaric" +"download_count": 719906, +"project": "pystan" }, { -"download_count": 500060, -"project": "sqlalchemy-migrate" +"download_count": 719680, +"project": "looseversion" }, { -"download_count": 499913, -"project": "python-openstackclient" +"download_count": 719680, +"project": "pynose" }, { -"download_count": 499632, -"project": "pygerduty" +"download_count": 719400, +"project": "slacker" }, { -"download_count": 499441, -"project": "msgpack-python" +"download_count": 719395, +"project": "django-taggit" }, { -"download_count": 497945, -"project": "algoliasearch" +"download_count": 719211, +"project": "acme" }, { -"download_count": 497713, -"project": "pyre-extensions" +"download_count": 719184, +"project": "mypy-boto3-elbv2" }, { -"download_count": 497128, -"project": "tomesd" +"download_count": 718431, +"project": "drf-nested-routers" }, { -"download_count": 497090, -"project": "opentelemetry-instrumentation-pymongo" +"download_count": 718047, +"project": "dataset" }, { -"download_count": 496964, -"project": "presidio-analyzer" +"download_count": 717410, +"project": "uplink" }, { -"download_count": 496585, -"project": "blackduck" +"download_count": 715908, +"project": "graphlib-backport" }, { -"download_count": 495854, -"project": "pip-system-certs" +"download_count": 715692, +"project": "simple-parsing" }, { -"download_count": 495678, -"project": "seleniumbase" +"download_count": 715314, +"project": "dagster-dbt" }, { -"download_count": 495477, -"project": "sqlite-utils" +"download_count": 715250, +"project": "pvlib" }, { -"download_count": 494935, -"project": "formencode" +"download_count": 714302, +"project": "textfsm" }, { -"download_count": 493871, -"project": "javaobj-py3" +"download_count": 713446, +"project": "pyrect" }, { -"download_count": 493151, -"project": "descartes" +"download_count": 713266, +"project": "langchain-google-genai" }, { -"download_count": 492664, -"project": "google-cloud-iam" +"download_count": 711755, +"project": "xlutils" }, { -"download_count": 492533, -"project": "nameparser" +"download_count": 711378, +"project": "django-formtools" }, { -"download_count": 492194, -"project": "bio" +"download_count": 711239, +"project": "sphinx-automodapi" }, { -"download_count": 492178, -"project": "microsoft-kiota-serialization-form" +"download_count": 711202, +"project": "gender-guesser" }, { -"download_count": 491604, -"project": "zigpy-znp" +"download_count": 710853, +"project": "feedgen" }, { -"download_count": 491493, -"project": "google-cloud-dns" +"download_count": 710681, +"project": "pygetwindow" }, { -"download_count": 491394, -"project": "azure-ai-documentintelligence" +"download_count": 708798, +"project": "stable-baselines3" }, { -"download_count": 491074, -"project": "opentelemetry-instrumentation-system-metrics" +"download_count": 708085, +"project": "sqllineage" }, { -"download_count": 490992, -"project": "gprofiler-official" +"download_count": 708025, +"project": "dateutils" }, { -"download_count": 490779, -"project": "jamo" +"download_count": 707770, +"project": "regress" }, { -"download_count": 490531, -"project": "zigpy-deconz" +"download_count": 707213, +"project": "suds-py3" }, { -"download_count": 490192, -"project": "zigpy-xbee" +"download_count": 706860, +"project": "tbats" }, { -"download_count": 489689, -"project": "tentaclio" +"download_count": 706703, +"project": "leb128" }, { -"download_count": 489675, -"project": "readerwriterlock" +"download_count": 703737, +"project": "vllm" }, { -"download_count": 489030, -"project": "easyocr" +"download_count": 703037, +"project": "flake8-debugger" }, { -"download_count": 488997, -"project": "devtools" +"download_count": 702901, +"project": "rcssmin" }, { -"download_count": 488740, -"project": "zha-quirks" +"download_count": 702592, +"project": "interegular" }, { -"download_count": 487648, -"project": "microsoft-kiota-serialization-multipart" +"download_count": 701924, +"project": "logz" }, { -"download_count": 487164, -"project": "kivy" +"download_count": 701845, +"project": "azureml-defaults" }, { -"download_count": 487015, -"project": "bleak" +"download_count": 701594, +"project": "pytest-factoryboy" }, { -"download_count": 486470, -"project": "bitvector" +"download_count": 701239, +"project": "argo-workflows" }, { -"download_count": 486040, -"project": "googleads" +"download_count": 701170, +"project": "python-miio" }, { -"download_count": 485215, -"project": "lm-format-enforcer" +"download_count": 701130, +"project": "pytoolconfig" }, { -"download_count": 484673, -"project": "langchain-google-genai" +"download_count": 700878, +"project": "dagster-cloud" }, { -"download_count": 484577, -"project": "json-stream" +"download_count": 700867, +"project": "hpgeom" }, { -"download_count": 484480, -"project": "google-cloud-access-context-manager" +"download_count": 700315, +"project": "sly" }, { -"download_count": 484346, -"project": "app-store-scraper" +"download_count": 699828, +"project": "fancycompleter" }, { -"download_count": 484178, -"project": "hdbscan" +"download_count": 699302, +"project": "wikitextparser" }, { -"download_count": 484164, -"project": "pony" +"download_count": 699286, +"project": "pre-commit-uv" }, { -"download_count": 484092, -"project": "cached-path" +"download_count": 699003, +"project": "boto-session-manager" }, { -"download_count": 483895, -"project": "tbb" +"download_count": 698475, +"project": "fastrlock" }, { -"download_count": 483273, -"project": "textfsm" +"download_count": 698458, +"project": "pyomo" }, { -"download_count": 483266, -"project": "result" +"download_count": 697798, +"project": "macholib" }, { -"download_count": 483206, -"project": "neptune-client" +"download_count": 697712, +"project": "ratelimiter" }, { -"download_count": 483036, -"project": "json-stream-rs-tokenizer" +"download_count": 697220, +"project": "beautifultable" }, { -"download_count": 482907, -"project": "aiosmtplib" +"download_count": 697198, +"project": "opentelemetry-instrumentation-asyncpg" }, { -"download_count": 482541, -"project": "tentaclio-s3" +"download_count": 697080, +"project": "asynch" }, { -"download_count": 482403, -"project": "darglint" +"download_count": 696936, +"project": "tbb" }, { -"download_count": 482351, -"project": "databricks-pypi-extras" +"download_count": 696805, +"project": "awacs" }, { -"download_count": 482271, -"project": "utilsforecast" +"download_count": 696753, +"project": "backports-shutil-get-terminal-size" }, { -"download_count": 482116, -"project": "keyrings-alt" +"download_count": 696658, +"project": "confuse" }, { -"download_count": 481345, -"project": "jsonpath-rw-ext" +"download_count": 695703, +"project": "transforms3d" }, { -"download_count": 480914, -"project": "apeye" +"download_count": 694815, +"project": "azure-storage-nspkg" }, { -"download_count": 480338, -"project": "propka" +"download_count": 694468, +"project": "pytest-parallel" }, { -"download_count": 479932, -"project": "fastapi-utils" +"download_count": 693760, +"project": "mouseinfo" }, { -"download_count": 479673, -"project": "mypy-boto3-kms" +"download_count": 692982, +"project": "varname" }, { -"download_count": 479319, -"project": "pytest-testinfra" +"download_count": 692837, +"project": "pymisp" }, { -"download_count": 478675, -"project": "heapdict" +"download_count": 692542, +"project": "pypinyin" }, { -"download_count": 478269, -"project": "easyconfig" +"download_count": 692217, +"project": "pymatching" }, { -"download_count": 478010, -"project": "manifold3d" +"download_count": 691686, +"project": "django-picklefield" }, { -"download_count": 477721, -"project": "svg-path" +"download_count": 691618, +"project": "opentelemetry-instrumentation-system-metrics" }, { -"download_count": 477610, -"project": "openturns" +"download_count": 691488, +"project": "bibtexparser" }, { -"download_count": 477574, -"project": "fastrlock" +"download_count": 691053, +"project": "pyod" }, { -"download_count": 477295, -"project": "google-cloud-asset" +"download_count": 690234, +"project": "bezier" }, { -"download_count": 477284, -"project": "csvw" +"download_count": 690098, +"project": "opentelemetry-instrumentation-aws-lambda" }, { -"download_count": 476942, -"project": "isoweek" +"download_count": 689538, +"project": "ldaptor" }, { -"download_count": 476645, -"project": "types-certifi" +"download_count": 689444, +"project": "django-compressor" }, { -"download_count": 476532, -"project": "expecttest" +"download_count": 689208, +"project": "swagger-spec-validator" }, { -"download_count": 476427, -"project": "flasgger" +"download_count": 688891, +"project": "duckduckgo-search" }, { -"download_count": 475637, -"project": "kedro" +"download_count": 688625, +"project": "morefs" }, { -"download_count": 475539, -"project": "django-formtools" +"download_count": 688237, +"project": "executor" }, { -"download_count": 475248, -"project": "pytest-ansible" +"download_count": 686491, +"project": "homeassistant" }, { -"download_count": 474449, -"project": "google-python-cloud-debugger" +"download_count": 685360, +"project": "pdbpp" }, { -"download_count": 474362, -"project": "marshmallow-jsonschema" +"download_count": 684976, +"project": "wmctrl" }, { -"download_count": 474084, -"project": "pyomo" +"download_count": 684802, +"project": "pip-audit" }, { -"download_count": 474047, -"project": "django-widget-tweaks" +"download_count": 684230, +"project": "inotify" }, { -"download_count": 473102, -"project": "slowapi" +"download_count": 683876, +"project": "pip-system-certs" }, { -"download_count": 472878, -"project": "openapi-core" +"download_count": 683560, +"project": "gnupg" }, { -"download_count": 472304, -"project": "newspaper3k" +"download_count": 683391, +"project": "bleak" }, { -"download_count": 472221, -"project": "tox-gh-actions" +"download_count": 683194, +"project": "pyte" }, { -"download_count": 472198, -"project": "mmcif-pdbx" +"download_count": 683124, +"project": "django-mptt" }, { -"download_count": 472099, -"project": "vhacdx" +"download_count": 682684, +"project": "arnparse" }, { -"download_count": 471590, -"project": "clldutils" +"download_count": 682352, +"project": "anybadge" }, { -"download_count": 471543, -"project": "pdb2pqr" +"download_count": 681939, +"project": "docopt-ng" }, { -"download_count": 470809, -"project": "autodocsumm" +"download_count": 681751, +"project": "ariadne" }, { -"download_count": 470779, -"project": "marko" +"download_count": 681564, +"project": "pytest-httpbin" }, { -"download_count": 470326, -"project": "azureml-pipeline-core" +"download_count": 681480, +"project": "jinjasql" }, { -"download_count": 470320, -"project": "towncrier" +"download_count": 681436, +"project": "evergreen-lint" }, { -"download_count": 469832, -"project": "waiting" +"download_count": 680687, +"project": "infinity" }, { -"download_count": 469250, -"project": "ruamel-yaml-jinja2" +"download_count": 680251, +"project": "flytekit" }, { -"download_count": 468973, -"project": "groq" +"download_count": 679264, +"project": "curatorbin" }, { -"download_count": 468582, -"project": "pytest-deadfixtures" +"download_count": 678936, +"project": "pymsgbox" }, { -"download_count": 468115, -"project": "pip-check" +"download_count": 678931, +"project": "distribute" }, { -"download_count": 467819, -"project": "pismosendlogs" +"download_count": 678389, +"project": "ocspbuilder" }, { -"download_count": 467278, -"project": "deep-translator" +"download_count": 678388, +"project": "marko" }, { -"download_count": 466912, -"project": "alchemlyb" +"download_count": 678368, +"project": "pusher" }, { -"download_count": 466765, -"project": "azureml-featurestore" +"download_count": 678190, +"project": "property-cached" }, { -"download_count": 466022, -"project": "vobject" +"download_count": 677499, +"project": "pantab" }, { -"download_count": 465554, -"project": "argparse-dataclass" +"download_count": 677212, +"project": "structlog-sentry" }, { -"download_count": 465534, -"project": "pythonping" +"download_count": 676600, +"project": "fusepy" }, { -"download_count": 465497, -"project": "aws-cdk-aws-glue-alpha" +"download_count": 675905, +"project": "darglint" }, { -"download_count": 464744, -"project": "ibm-cos-sdk-core" +"download_count": 675896, +"project": "ocspresponder" }, { -"download_count": 464720, -"project": "dag-factory" +"download_count": 675875, +"project": "azure-ai-documentintelligence" }, { -"download_count": 464427, -"project": "imgaug" +"download_count": 675865, +"project": "safer" }, { -"download_count": 464316, -"project": "ratelimiter" +"download_count": 675585, +"project": "python-keystoneclient" }, { -"download_count": 464154, -"project": "commitizen" +"download_count": 675496, +"project": "htmldocx" }, { -"download_count": 464106, -"project": "cmarkgfm" +"download_count": 675455, +"project": "netsuitesdk" }, { -"download_count": 463840, -"project": "python-igraph" +"download_count": 675327, +"project": "proxy-protocol" }, { -"download_count": 463625, -"project": "pytest-freezegun" +"download_count": 675295, +"project": "meshio" }, { -"download_count": 463286, -"project": "bellows" +"download_count": 674099, +"project": "ping3" }, { -"download_count": 462778, -"project": "ibm-cos-sdk-s3transfer" +"download_count": 673759, +"project": "injectool" }, { -"download_count": 462610, -"project": "mypy-boto3-sns" +"download_count": 673660, +"project": "spython" }, { -"download_count": 461357, -"project": "hidapi" +"download_count": 672955, +"project": "mypy-boto3-ses" }, { -"download_count": 461272, -"project": "pinecone-plugin-interface" +"download_count": 671543, +"project": "datadog-logger" }, { -"download_count": 460880, -"project": "dtlpymetrics" +"download_count": 671115, +"project": "quinn" }, { -"download_count": 460791, -"project": "sttable" +"download_count": 671045, +"project": "opentelemetry-instrumentation-pymongo" }, { -"download_count": 460420, -"project": "pytest-snapshot" +"download_count": 670845, +"project": "clipboard" }, { -"download_count": 460378, -"project": "ibm-cos-sdk" +"download_count": 670456, +"project": "outlines" }, { -"download_count": 459632, -"project": "cement" +"download_count": 670407, +"project": "click-default-group-wheel" }, { -"download_count": 458959, -"project": "import-deps" +"download_count": 670286, +"project": "quart-cors" }, { -"download_count": 458284, -"project": "magic-filter" +"download_count": 670227, +"project": "retry-decorator" }, { -"download_count": 457978, -"project": "django-polymorphic" +"download_count": 669625, +"project": "nats-py" }, { -"download_count": 457645, -"project": "envs" +"download_count": 668895, +"project": "ajsonrpc" }, { -"download_count": 457474, -"project": "aiocache" +"download_count": 668035, +"project": "flyteidl" }, { -"download_count": 457410, -"project": "torchbiggraph" +"download_count": 667928, +"project": "lm-format-enforcer" }, { -"download_count": 457019, -"project": "opentelemetry-instrumentation-asyncpg" +"download_count": 667826, +"project": "coincurve" }, { -"download_count": 456666, -"project": "aiorwlock" +"download_count": 667774, +"project": "clikit" }, { -"download_count": 456390, -"project": "graphitesend" +"download_count": 666438, +"project": "pebble" }, { -"download_count": 456339, -"project": "types-click" +"download_count": 666354, +"project": "libusb1" }, { -"download_count": 456136, -"project": "corner" +"download_count": 666263, +"project": "mistletoe" }, { -"download_count": 456122, -"project": "numpy-quaternion" +"download_count": 664651, +"project": "pdoc" }, { -"download_count": 455796, -"project": "python-fsutil" +"download_count": 664330, +"project": "html-tag-names" }, { -"download_count": 455486, -"project": "datadog-lambda" +"download_count": 664077, +"project": "nameparser" }, { -"download_count": 455197, -"project": "pip-licenses" +"download_count": 663844, +"project": "html-void-elements" }, { -"download_count": 454726, -"project": "keyboard" +"download_count": 662869, +"project": "datadog-lambda" }, { -"download_count": 453727, -"project": "suds" +"download_count": 662085, +"project": "cvxopt" }, { -"download_count": 453611, -"project": "localstack-ext" +"download_count": 661543, +"project": "p4p" }, { -"download_count": 453348, -"project": "pylatexenc" +"download_count": 661072, +"project": "scikit-base" }, { -"download_count": 453334, -"project": "plaid-python" +"download_count": 659497, +"project": "envs" }, { -"download_count": 452890, -"project": "sqlalchemy-stubs" +"download_count": 657931, +"project": "ipyvuetify" }, { -"download_count": 452827, -"project": "localstack" +"download_count": 656964, +"project": "requestsexceptions" }, { -"download_count": 452173, -"project": "pydriller" +"download_count": 656938, +"project": "s3pathlib" }, { -"download_count": 451739, -"project": "zipfile-deflate64" +"download_count": 655981, +"project": "music21" }, { -"download_count": 451662, -"project": "rake-nltk" +"download_count": 655333, +"project": "envyaml" }, { -"download_count": 450357, -"project": "markuppy" +"download_count": 654835, +"project": "iterproxy" }, { -"download_count": 450131, -"project": "azure-mgmt-costmanagement" +"download_count": 654555, +"project": "docker-image-py" }, { -"download_count": 449228, -"project": "types-freezegun" +"download_count": 654444, +"project": "ragas" }, { -"download_count": 449209, -"project": "missingpy" +"download_count": 653450, +"project": "enrich" }, { -"download_count": 449165, -"project": "capstone" +"download_count": 653057, +"project": "validate-email" }, { -"download_count": 448732, -"project": "bezier" +"download_count": 652334, +"project": "typing-utils" }, { -"download_count": 448456, -"project": "backports-abc" +"download_count": 652256, +"project": "slowapi" }, { -"download_count": 448426, -"project": "check-jsonschema" +"download_count": 651974, +"project": "python-frontmatter" }, { -"download_count": 447836, -"project": "azure-eventhub-checkpointstoreblob-aio" +"download_count": 651944, +"project": "opensimplex" }, { -"download_count": 446955, -"project": "darkdetect" +"download_count": 651574, +"project": "fido2" }, { -"download_count": 446377, -"project": "matrix-client" +"download_count": 651489, +"project": "googleads" }, { -"download_count": 446357, -"project": "opentelemetry-instrumentation-starlette" +"download_count": 651465, +"project": "epicscorelibs" }, { -"download_count": 446060, -"project": "cantools" +"download_count": 650769, +"project": "patool" }, { -"download_count": 446033, -"project": "pvlib" +"download_count": 650363, +"project": "ipyvue" }, { -"download_count": 445715, -"project": "tippo" +"download_count": 649751, +"project": "tcod" }, { -"download_count": 445466, -"project": "requests-kerberos" +"download_count": 649422, +"project": "pvxslibs" }, { -"download_count": 444061, -"project": "seqeval" +"download_count": 649382, +"project": "zipfile36" }, { -"download_count": 443836, -"project": "azureml-train-core" +"download_count": 649036, +"project": "pyannote-core" }, { -"download_count": 442760, -"project": "langgraph-sdk" +"download_count": 648463, +"project": "pythonnet" }, { -"download_count": 441477, -"project": "scikit-plot" +"download_count": 648107, +"project": "pykmip" }, { -"download_count": 441411, -"project": "deepl" +"download_count": 647980, +"project": "numpy-financial" }, { -"download_count": 441354, -"project": "apache-airflow-providers-github" +"download_count": 647772, +"project": "spark-sklearn" }, { -"download_count": 440905, -"project": "scenedetect" +"download_count": 647426, +"project": "msgpack-python" }, { -"download_count": 440762, -"project": "netmiko" +"download_count": 647333, +"project": "random-password-generator" }, { -"download_count": 440404, -"project": "wincertstore" +"download_count": 647104, +"project": "outdated" }, { -"download_count": 440317, -"project": "pytest-flake8" +"download_count": 646572, +"project": "pyannote-database" }, { -"download_count": 439454, -"project": "gssapi" +"download_count": 646520, +"project": "path-dict" }, { -"download_count": 438852, -"project": "mkdocs-macros-plugin" +"download_count": 645864, +"project": "oauth2" }, { -"download_count": 438685, -"project": "logzio-python-handler" +"download_count": 645671, +"project": "minidump" }, { -"download_count": 438660, -"project": "wordfreq" +"download_count": 645343, +"project": "pip-licenses" }, { -"download_count": 437973, -"project": "turbopuffer" +"download_count": 644944, +"project": "ipyparallel" }, { -"download_count": 437772, -"project": "azure-monitor-ingestion" +"download_count": 644274, +"project": "types-dateparser" }, { -"download_count": 437768, -"project": "xmlrunner" +"download_count": 643994, +"project": "nanobind" }, { -"download_count": 437525, -"project": "osc-lib" +"download_count": 641770, +"project": "xatlas" }, { -"download_count": 437422, -"project": "oauth2" +"download_count": 641684, +"project": "setuptools-dso" }, { -"download_count": 437161, -"project": "extract-msg" +"download_count": 640770, +"project": "geomdl" }, { -"download_count": 436892, -"project": "flask-oauthlib" +"download_count": 640457, +"project": "misaka" }, { -"download_count": 436819, -"project": "openai-whisper" +"download_count": 640342, +"project": "requests-oauth" }, { -"download_count": 436430, -"project": "appengine-python-standard" +"download_count": 639658, +"project": "scons" }, { -"download_count": 436220, -"project": "pinecone-plugin-inference" +"download_count": 638964, +"project": "json2html" }, { -"download_count": 435851, -"project": "dbt-athena-community" +"download_count": 638767, +"project": "llm-dialog-manager" }, { -"download_count": 435641, -"project": "groundingdino-py" +"download_count": 638350, +"project": "pyrtf3" }, { -"download_count": 434810, -"project": "iterative-telemetry" +"download_count": 638279, +"project": "pyjsparser" }, { -"download_count": 433477, -"project": "opentelemetry-instrumentation-tortoiseorm" +"download_count": 638109, +"project": "pre-commit-hooks" }, { -"download_count": 433346, -"project": "ruyaml" +"download_count": 638096, +"project": "autodocsumm" }, { -"download_count": 432685, -"project": "line-bot-sdk" +"download_count": 637884, +"project": "pyroute2" }, { -"download_count": 432675, -"project": "sparse" +"download_count": 637769, +"project": "google-cloud-iam" }, { -"download_count": 432353, -"project": "fixtures" +"download_count": 637666, +"project": "asyncache" }, { -"download_count": 432244, -"project": "lucopy" +"download_count": 637308, +"project": "json-logging" }, { -"download_count": 431715, -"project": "pebble" +"download_count": 636812, +"project": "wordfreq" }, { -"download_count": 431211, -"project": "tinysegmenter" +"download_count": 635796, +"project": "rpaframework-core" }, { -"download_count": 431041, -"project": "flake8-debugger" +"download_count": 635686, +"project": "dictlib" }, { -"download_count": 430668, -"project": "flake8-bandit" +"download_count": 634407, +"project": "myst-nb" }, { -"download_count": 430546, -"project": "django-ratelimit" +"download_count": 634320, +"project": "beniget" }, { -"download_count": 430459, -"project": "aiostream" +"download_count": 634034, +"project": "mxnet" }, { -"download_count": 430321, -"project": "restfly" +"download_count": 632768, +"project": "pytest-lazy-fixture" }, { -"download_count": 430312, -"project": "django-coverage-plugin" +"download_count": 632659, +"project": "manifold3d" }, { -"download_count": 430274, -"project": "flask-basicauth" +"download_count": 631806, +"project": "webassets" }, { -"download_count": 430248, -"project": "googletrans" +"download_count": 631595, +"project": "easyocr" }, { -"download_count": 429919, -"project": "dataclass-wizard" +"download_count": 631400, +"project": "simplegeneric" }, { -"download_count": 429706, -"project": "policyuniverse" +"download_count": 631349, +"project": "pyannote-metrics" }, { -"download_count": 429578, -"project": "swagger-spec-validator" +"download_count": 631073, +"project": "healpy" }, { -"download_count": 428790, -"project": "mlserver" +"download_count": 631058, +"project": "yellowbrick" }, { -"download_count": 428743, -"project": "pytest-cases" +"download_count": 630984, +"project": "easing-functions" }, { -"download_count": 428625, -"project": "anyconfig" +"download_count": 630606, +"project": "gpustat" }, { -"download_count": 428489, -"project": "imath" +"download_count": 630557, +"project": "mypy-boto3-batch" }, { -"download_count": 428446, -"project": "dotty-dict" +"download_count": 630470, +"project": "clldutils" }, { -"download_count": 428417, -"project": "pyairports" +"download_count": 630069, +"project": "types-openpyxl" }, { -"download_count": 428410, -"project": "ansible-base" +"download_count": 630044, +"project": "assertpy" }, { -"download_count": 428180, -"project": "locate" +"download_count": 628326, +"project": "deepl" }, { -"download_count": 427870, -"project": "casadi" +"download_count": 628305, +"project": "pyevtk" }, { -"download_count": 427755, -"project": "aresponses" +"download_count": 628297, +"project": "fastai" }, { -"download_count": 427524, -"project": "aiohttp-sse-client" +"download_count": 628131, +"project": "pdbp" }, { -"download_count": 427430, -"project": "opentelemetry-test-utils" +"download_count": 627325, +"project": "bands-inspect" }, { -"download_count": 426791, -"project": "opentelemetry-instrumentation-kafka-python" +"download_count": 627090, +"project": "fsc-hdf5-io" }, { -"download_count": 426390, -"project": "selinux" +"download_count": 626842, +"project": "opentelemetry-instrumentation-threading" }, { -"download_count": 425591, -"project": "segments" +"download_count": 626780, +"project": "tbmodels" }, { -"download_count": 425212, -"project": "django-waffle" +"download_count": 626482, +"project": "luigi" }, { -"download_count": 424959, -"project": "django-reversion" +"download_count": 626156, +"project": "cursor" }, { -"download_count": 424437, -"project": "pyvim" +"download_count": 626068, +"project": "mistral-common" }, { -"download_count": 424259, -"project": "cmakelang" +"download_count": 625415, +"project": "polyline" }, { -"download_count": 423824, -"project": "ipyparallel" +"download_count": 625097, +"project": "munkres" }, { -"download_count": 423079, -"project": "idf-component-manager" +"download_count": 624745, +"project": "aim" }, { -"download_count": 422571, -"project": "apache-airflow-providers-apache-kafka" +"download_count": 623870, +"project": "escapism" }, { -"download_count": 422457, -"project": "deepspeed" +"download_count": 623473, +"project": "roundrobin" }, { -"download_count": 422431, -"project": "rank-bm25" +"download_count": 622972, +"project": "java-manifest" }, { -"download_count": 422172, -"project": "roundrobin" +"download_count": 622956, +"project": "tangled-up-in-unicode" }, { -"download_count": 421546, -"project": "html-tag-names" +"download_count": 622684, +"project": "pythran-openblas" }, { -"download_count": 421538, -"project": "html-void-elements" +"download_count": 622444, +"project": "pyston" }, { -"download_count": 421385, -"project": "python-cinderclient" +"download_count": 622127, +"project": "locate" }, { -"download_count": 421330, -"project": "pybase62" +"download_count": 621674, +"project": "stepfunctions" }, { -"download_count": 421059, -"project": "munkres" +"download_count": 621053, +"project": "svg-path" }, { -"download_count": 420833, -"project": "kaldiio" +"download_count": 620874, +"project": "pyston-autoload" }, { -"download_count": 420739, -"project": "sphinx-sitemap" +"download_count": 620412, +"project": "vhacdx" }, { -"download_count": 420424, -"project": "tensorflow-gpu" +"download_count": 620326, +"project": "django-ses" }, { -"download_count": 420190, -"project": "dagster-dbt" +"download_count": 619936, +"project": "jstyleson" }, { -"download_count": 419239, -"project": "pretend" +"download_count": 619495, +"project": "opentelemetry-propagator-b3" }, { -"download_count": 419064, -"project": "duckduckgo-search" +"download_count": 619009, +"project": "algoliasearch" }, { -"download_count": 419052, -"project": "django-webpack-loader" +"download_count": 617217, +"project": "baron" }, { -"download_count": 418929, -"project": "nanobind" +"download_count": 616986, +"project": "hdf5plugin" }, { -"download_count": 418662, -"project": "fredapi" +"download_count": 616907, +"project": "tabcompleter" }, { -"download_count": 418235, -"project": "telethon" +"download_count": 616746, +"project": "qudida" }, { -"download_count": 418154, -"project": "routes" +"download_count": 616234, +"project": "sphinx-airflow-theme" }, { -"download_count": 417597, -"project": "asyncache" +"download_count": 616109, +"project": "perlin-noise" }, { -"download_count": 416641, -"project": "pyspellchecker" +"download_count": 614655, +"project": "redbaron" }, { -"download_count": 416440, -"project": "spandrel-extra-arches" +"download_count": 614544, +"project": "bitmath" }, { -"download_count": 415603, -"project": "pysimdjson" +"download_count": 612397, +"project": "slugify" }, { -"download_count": 415377, -"project": "phonemizer" +"download_count": 612101, +"project": "us" }, { -"download_count": 415070, -"project": "flake8-plugin-utils" +"download_count": 611517, +"project": "xsdata" }, { -"download_count": 414988, -"project": "pygam" +"download_count": 611476, +"project": "pytest-ansible" }, { -"download_count": 414782, -"project": "pytest-lazy-fixture" +"download_count": 611381, +"project": "rpaframework-pdf" }, { -"download_count": 413904, -"project": "publicsuffixlist" +"download_count": 611255, +"project": "databricks-feature-store" }, { -"download_count": 413282, -"project": "tqdm-multiprocess" +"download_count": 611246, +"project": "apache-airflow-providers-atlassian-jira" }, { -"download_count": 413172, -"project": "mypy-boto3-eks" +"download_count": 611238, +"project": "gcloud" }, { -"download_count": 413058, -"project": "simple-term-menu" +"download_count": 611203, +"project": "csvw" }, { -"download_count": 412578, -"project": "eascheduler" +"download_count": 610755, +"project": "webrtcvad-wheels" }, { -"download_count": 412266, -"project": "healpy" +"download_count": 610233, +"project": "codetiming" }, { -"download_count": 412241, -"project": "mock-alchemy" +"download_count": 609975, +"project": "stups-tokens" }, { -"download_count": 412161, -"project": "camelot-py" +"download_count": 609763, +"project": "azure-mgmt-quota" }, { -"download_count": 412020, -"project": "azureml-automl-core" +"download_count": 609442, +"project": "fastcluster" }, { -"download_count": 411969, -"project": "platformio" +"download_count": 608378, +"project": "pytest-djangoapp" }, { -"download_count": 411867, -"project": "dbt-fabric" +"download_count": 607879, +"project": "feu" }, { -"download_count": 411294, -"project": "rarfile" +"download_count": 607768, +"project": "sqlalchemy-hana" }, { -"download_count": 411093, -"project": "flake8-broken-line" +"download_count": 607311, +"project": "apipkg" }, { -"download_count": 410645, -"project": "sphinx-gallery" +"download_count": 607197, +"project": "drissionpage" }, { -"download_count": 410527, -"project": "lml" +"download_count": 606586, +"project": "robotframework-seleniumtestability" }, { -"download_count": 410441, -"project": "customtkinter" +"download_count": 606502, +"project": "jinja2-cli" }, { -"download_count": 409576, -"project": "aiopg" +"download_count": 605414, +"project": "deep-translator" }, { -"download_count": 408833, -"project": "pyexcel-io" +"download_count": 605169, +"project": "pytest-github-actions-annotate-failures" }, { -"download_count": 408429, -"project": "filesplit" +"download_count": 604885, +"project": "acryl-datahub-airflow-plugin" }, { -"download_count": 407837, -"project": "ladybug-geometry" +"download_count": 603563, +"project": "torch-complex" }, { -"download_count": 407663, -"project": "utm" +"download_count": 603411, +"project": "flask-basicauth" }, { -"download_count": 407547, -"project": "fairscale" +"download_count": 602930, +"project": "imagecodecs" }, { -"download_count": 407487, -"project": "parsy" +"download_count": 602801, +"project": "milvus-lite" }, { -"download_count": 407432, -"project": "sqlite-fts4" +"download_count": 601878, +"project": "func-args" }, { -"download_count": 406680, -"project": "hf-transfer" +"download_count": 601683, +"project": "pentapy" }, { -"download_count": 406233, -"project": "monkeytype" +"download_count": 600583, +"project": "apache-airflow-providers-redis" }, { -"download_count": 406149, -"project": "s2sphere" +"download_count": 600490, +"project": "geckodriver-autoinstaller" }, { -"download_count": 405969, -"project": "python-json-config" +"download_count": 600323, +"project": "requests-pkcs12" }, { -"download_count": 405039, -"project": "azureml-train-restclients-hyperdrive" +"download_count": 599853, +"project": "snakeviz" }, { -"download_count": 404305, -"project": "python-logstash" +"download_count": 599486, +"project": "inputimeout" }, { -"download_count": 404043, -"project": "target-hotglue" +"download_count": 599102, +"project": "robocorp-storage" }, { -"download_count": 404034, -"project": "pydrive2" +"download_count": 599071, +"project": "restructuredtext-lint" }, { -"download_count": 403860, -"project": "astpretty" +"download_count": 598599, +"project": "django-waffle" }, { -"download_count": 403836, -"project": "rpy2" +"download_count": 598577, +"project": "clr-loader" }, { -"download_count": 403526, -"project": "imutils" +"download_count": 597561, +"project": "azureml-pipeline-core" }, { -"download_count": 403167, -"project": "holoviews" +"download_count": 597403, +"project": "telethon" }, { -"download_count": 402664, -"project": "hurry-filesize" +"download_count": 597091, +"project": "red-discordbot" }, { -"download_count": 402592, -"project": "crispy-bootstrap5" +"download_count": 597031, +"project": "chalice" }, { -"download_count": 402209, -"project": "evidently" +"download_count": 595744, +"project": "mypy-boto3-cloudwatch" }, { -"download_count": 401995, -"project": "sumy" +"download_count": 595656, +"project": "textstat" }, { -"download_count": 401232, -"project": "coreforecast" +"download_count": 595594, +"project": "pydrive2" }, { -"download_count": 401114, -"project": "pre-commit-hooks" +"download_count": 595456, +"project": "formic2" }, { -"download_count": 400999, -"project": "opentelemetry-instrumentation-asyncio" +"download_count": 595427, +"project": "pyapacheatlas" }, { -"download_count": 400362, -"project": "wikitextparser" +"download_count": 595407, +"project": "pillow-avif-plugin" }, { -"download_count": 400216, -"project": "opencensus-ext-requests" +"download_count": 595180, +"project": "dotenv" }, { -"download_count": 400130, -"project": "ladybug-core" +"download_count": 594147, +"project": "splunk-sdk" }, { -"download_count": 399803, -"project": "dlinfo" +"download_count": 594109, +"project": "types-stripe" }, { -"download_count": 399615, -"project": "django-ckeditor" +"download_count": 593996, +"project": "opentelemetry-exporter-prometheus-remote-write" }, { -"download_count": 399275, -"project": "dagster-k8s" +"download_count": 593655, +"project": "sgp4" }, { -"download_count": 398740, -"project": "docformatter" +"download_count": 593551, +"project": "pygobject" }, { -"download_count": 398678, -"project": "shandy-sqlfmt" +"download_count": 593218, +"project": "sphinx-prompt" }, { -"download_count": 398299, -"project": "catkin-pkg" +"download_count": 593069, +"project": "azure-containerregistry" }, { -"download_count": 397875, -"project": "braintree" +"download_count": 592767, +"project": "opentelemetry-instrumentation-starlette" }, { -"download_count": 397755, -"project": "django-admin-rangefilter" +"download_count": 592274, +"project": "gtts" }, { -"download_count": 396890, -"project": "azure-schemaregistry-avroserializer" +"download_count": 591551, +"project": "case-conversion" }, { -"download_count": 396749, -"project": "teradataml" +"download_count": 591537, +"project": "pyre-extensions" }, { -"download_count": 396618, -"project": "coola" +"download_count": 591338, +"project": "molecule" }, { -"download_count": 396453, -"project": "sqlalchemy-hana" +"download_count": 590944, +"project": "google-cloud-recaptcha-enterprise" }, { -"download_count": 396260, -"project": "bsdiff4" +"download_count": 590748, +"project": "betamax" }, { -"download_count": 395976, -"project": "fastai" +"download_count": 590607, +"project": "pytest-nunit" }, { -"download_count": 395513, -"project": "python-frontmatter" +"download_count": 590589, +"project": "publicsuffix2" }, { -"download_count": 394825, -"project": "apache-airflow-providers-openlineage" +"download_count": 590523, +"project": "databind-core" }, { -"download_count": 394765, -"project": "flash-attn" +"download_count": 590416, +"project": "snowplow-tracker" }, { -"download_count": 393932, -"project": "databind-json" +"download_count": 590188, +"project": "py-ecc" }, { -"download_count": 393216, -"project": "pyjnius" +"download_count": 589209, +"project": "stups-zign" }, { -"download_count": 392868, -"project": "robotframework-stacktrace" +"download_count": 588925, +"project": "ntc-templates" }, { -"download_count": 392101, -"project": "types-aiofiles" +"download_count": 588560, +"project": "stups-cli-support" }, { -"download_count": 391921, -"project": "gfpgan" +"download_count": 588075, +"project": "django-widget-tweaks" }, { -"download_count": 391801, -"project": "torchdata" +"download_count": 587969, +"project": "databind-json" }, { -"download_count": 391704, -"project": "patch" +"download_count": 587328, +"project": "prefect-docker" }, { -"download_count": 391183, -"project": "pandas-market-calendars" +"download_count": 586945, +"project": "funasr" }, { -"download_count": 391065, -"project": "django-treebeard" +"download_count": 586905, +"project": "ubelt" }, { -"download_count": 390865, -"project": "uptime-kuma-api" +"download_count": 585288, +"project": "webvtt-py" }, { -"download_count": 390665, -"project": "apispec-webframeworks" +"download_count": 584976, +"project": "versioningit" }, { -"download_count": 390407, -"project": "julius" +"download_count": 584409, +"project": "xdg" }, { -"download_count": 390360, -"project": "pyjks" +"download_count": 583828, +"project": "sparqlwrapper" }, { -"download_count": 390182, -"project": "pytest-github-actions-annotate-failures" +"download_count": 583814, +"project": "aiodataloader" }, { -"download_count": 389456, -"project": "repoze-who" +"download_count": 583706, +"project": "delta" }, { -"download_count": 389270, -"project": "lime" +"download_count": 583302, +"project": "codefind" }, { -"download_count": 389261, -"project": "simplefix" +"download_count": 583152, +"project": "newrelic-telemetry-sdk" }, { -"download_count": 389242, -"project": "opentelemetry-instrumentation-boto" +"download_count": 583092, +"project": "colorzero" }, { -"download_count": 389158, -"project": "apache-airflow-providers-opsgenie" +"download_count": 582824, +"project": "httpie" }, { -"download_count": 388895, -"project": "flask-swagger-ui" +"download_count": 582667, +"project": "pycognito" }, { -"download_count": 388568, -"project": "sqlitedict" +"download_count": 582438, +"project": "vobject" }, { -"download_count": 388562, -"project": "flytekit" +"download_count": 582343, +"project": "simpleitk" }, { -"download_count": 388371, -"project": "gmpy2" +"download_count": 582048, +"project": "pyawscron" }, { -"download_count": 388327, -"project": "bayesian-optimization" +"download_count": 581878, +"project": "python-certifi-win32" }, { -"download_count": 388122, -"project": "email-reply-parser" +"download_count": 581186, +"project": "gpiozero" }, { -"download_count": 388073, -"project": "mypy-boto3-sso" +"download_count": 580140, +"project": "ably" }, { -"download_count": 388024, -"project": "flyteidl" +"download_count": 579481, +"project": "pyfzf" }, { -"download_count": 387896, -"project": "pycognito" +"download_count": 578564, +"project": "spanishconjugator" }, { -"download_count": 387531, -"project": "controlnet-aux" +"download_count": 578491, +"project": "plaid-python" }, { -"download_count": 387527, -"project": "dvc" +"download_count": 578030, +"project": "hstspreload" }, { -"download_count": 386969, -"project": "hmmlearn" +"download_count": 577934, +"project": "pyjarowinkler" }, { -"download_count": 386836, -"project": "sqlalchemy-mate" +"download_count": 577751, +"project": "bugsnag" }, { -"download_count": 386707, -"project": "coincurve" +"download_count": 577627, +"project": "mplfinance" }, { -"download_count": 386491, -"project": "python-redis-lock" +"download_count": 576748, +"project": "luqum" }, { -"download_count": 386409, -"project": "pyngrok" +"download_count": 576602, +"project": "lagom" }, { -"download_count": 386340, -"project": "docxtpl" +"download_count": 576408, +"project": "pyrepl" }, { -"download_count": 385715, -"project": "python-semantic-release" +"download_count": 576026, +"project": "extract-msg" }, { -"download_count": 385250, -"project": "fastapi-pagination" +"download_count": 575875, +"project": "resize-right" }, { -"download_count": 384993, -"project": "tdda" +"download_count": 575685, +"project": "flask-swagger-ui" }, { -"download_count": 384877, -"project": "us" +"download_count": 575214, +"project": "sphinxcontrib-websupport" }, { -"download_count": 384813, -"project": "psycogreen" +"download_count": 574632, +"project": "pytest-profiling" }, { -"download_count": 384741, -"project": "requests-ntlm3" +"download_count": 574583, +"project": "java-access-bridge-wrapper" }, { -"download_count": 384720, -"project": "python-benedict" +"download_count": 574448, +"project": "libretranslatepy" }, { -"download_count": 384676, -"project": "cartopy" +"download_count": 574423, +"project": "numpy-groupies" }, { -"download_count": 384552, -"project": "python-barcode" +"download_count": 573780, +"project": "mypy-boto3-cognito-idp" }, { -"download_count": 384268, -"project": "bzt" +"download_count": 573688, +"project": "pyyaml-include" }, { -"download_count": 384135, -"project": "types-werkzeug" +"download_count": 573539, +"project": "gputil" }, { -"download_count": 384106, -"project": "py-ecc" +"download_count": 573235, +"project": "robocorp-vault" }, { -"download_count": 383756, -"project": "mido" +"download_count": 573058, +"project": "types-werkzeug" }, { -"download_count": 383613, -"project": "mkdocs-git-revision-date-localized-plugin" +"download_count": 572582, +"project": "pytorch-wpe" }, { -"download_count": 383253, -"project": "assertpy" +"download_count": 572032, +"project": "mistralai" }, { -"download_count": 383121, -"project": "databind-core" +"download_count": 571635, +"project": "sbvirtualdisplay" }, { -"download_count": 382558, -"project": "zdaemon" +"download_count": 571618, +"project": "pynput-robocorp-fork" }, { -"download_count": 382470, -"project": "tensorflow-recommenders" +"download_count": 571117, +"project": "rank-bm25" }, { -"download_count": 382187, -"project": "grequests" +"download_count": 570938, +"project": "mypy-boto3-bedrock-runtime" }, { -"download_count": 381943, -"project": "nmslib" +"download_count": 570580, +"project": "deepspeed" }, { -"download_count": 381842, -"project": "forex-python" +"download_count": 570488, +"project": "apache-airflow-providers-apache-kafka" }, { -"download_count": 381157, -"project": "lameenc" +"download_count": 570425, +"project": "pyorc" }, { -"download_count": 380870, -"project": "tencentcloud-sdk-python" +"download_count": 569779, +"project": "translate" }, { -"download_count": 380280, -"project": "nox-poetry" +"download_count": 569253, +"project": "tensorflow-gpu" }, { -"download_count": 379764, -"project": "clickhouse-toolset" +"download_count": 568539, +"project": "pyairports" }, { -"download_count": 379522, -"project": "rdt" +"download_count": 567733, +"project": "dbfread" }, { -"download_count": 379437, -"project": "google-play-scraper" +"download_count": 567145, +"project": "locustio" }, { -"download_count": 379275, -"project": "azureml-sdk" +"download_count": 567053, +"project": "newspaper3k" }, { -"download_count": 379259, -"project": "syrupy" +"download_count": 566747, +"project": "opentelemetry-instrumentation-boto3sqs" }, { -"download_count": 378398, -"project": "tf-estimator-nightly" +"download_count": 566588, +"project": "asteroid-filterbanks" }, { -"download_count": 378111, -"project": "prometheus-api-client" +"download_count": 566054, +"project": "daiquiri" }, { -"download_count": 378102, -"project": "tink" +"download_count": 565538, +"project": "jsonfield" }, { -"download_count": 378040, -"project": "pyroute2" +"download_count": 565399, +"project": "mwparserfromhell" }, { -"download_count": 377714, -"project": "easing-functions" +"download_count": 565182, +"project": "apeye-core" }, { -"download_count": 377401, -"project": "azureml-pipeline-steps" +"download_count": 565033, +"project": "mdx-truly-sane-lists" }, { -"download_count": 376616, -"project": "f90nml" +"download_count": 564001, +"project": "grpc-gateway-protoc-gen-openapiv2" }, { -"download_count": 376552, -"project": "openapi3" +"download_count": 563879, +"project": "screeninfo" }, { -"download_count": 376226, -"project": "cppy" +"download_count": 563559, +"project": "jplephem" }, { -"download_count": 376049, -"project": "yattag" +"download_count": 562867, +"project": "dvc" }, { -"download_count": 375859, -"project": "opentelemetry-instrumentation-pymysql" +"download_count": 562802, +"project": "xinspect" }, { -"download_count": 375632, -"project": "aliyun-python-sdk-vpc" +"download_count": 562466, +"project": "asyncclick" }, { -"download_count": 375601, -"project": "azure-containerregistry" +"download_count": 562104, +"project": "flake8-bandit" }, { -"download_count": 375266, -"project": "python-interface" +"download_count": 561804, +"project": "tensorflowonspark" }, { -"download_count": 374852, -"project": "geomdl" +"download_count": 560315, +"project": "west" }, { -"download_count": 374621, -"project": "gspread-formatting" +"download_count": 560154, +"project": "office365" }, { -"download_count": 374543, -"project": "pulumi-aws" +"download_count": 558637, +"project": "pyexcel-io" }, { -"download_count": 373998, -"project": "djlint" +"download_count": 558074, +"project": "cvdupdate" }, { -"download_count": 373518, -"project": "robotframework-pabot" +"download_count": 557420, +"project": "openinference-instrumentation" }, { -"download_count": 373378, -"project": "faiss-gpu" +"download_count": 557365, +"project": "tentaclio" }, { -"download_count": 372620, -"project": "android-backup" +"download_count": 556608, +"project": "opentelemetry-instrumentation-pika" }, { -"download_count": 372317, -"project": "pandarallel" +"download_count": 556184, +"project": "yapsy" }, { -"download_count": 372259, -"project": "spotinst-agent" +"download_count": 555772, +"project": "clvm-rs" }, { -"download_count": 372242, -"project": "opentelemetry-instrumentation-elasticsearch" +"download_count": 555769, +"project": "django-polymorphic" }, { -"download_count": 371985, -"project": "azureml-inference-server-http" +"download_count": 555318, +"project": "torch-audiomentations" }, { -"download_count": 371432, -"project": "flask-swagger" +"download_count": 555188, +"project": "chomsky" }, { -"download_count": 371408, -"project": "pynetbox" +"download_count": 554740, +"project": "get-reader" }, { -"download_count": 370607, -"project": "roboflow" +"download_count": 554587, +"project": "imapclient" }, { -"download_count": 370509, -"project": "azureml-train-automl-client" +"download_count": 554383, +"project": "dgl" }, { -"download_count": 370445, -"project": "banal" +"download_count": 554174, +"project": "tinysegmenter" }, { -"download_count": 369709, -"project": "apache-airflow-microsoft-fabric-plugin" +"download_count": 554047, +"project": "primepy" }, { -"download_count": 369205, -"project": "entsoe-py" +"download_count": 554024, +"project": "braintree" }, { -"download_count": 369145, -"project": "sphinx-toolbox" +"download_count": 553892, +"project": "pytest-deadfixtures" }, { -"download_count": 369115, -"project": "pyyaml-include" +"download_count": 553642, +"project": "pyannote-audio" }, { -"download_count": 368880, -"project": "ping3" +"download_count": 553484, +"project": "torch-pitch-shift" }, { -"download_count": 368840, -"project": "presidio-anonymizer" +"download_count": 553360, +"project": "fcm-django" }, { -"download_count": 368731, -"project": "pydeprecate" +"download_count": 552874, +"project": "azureml-telemetry" }, { -"download_count": 368723, -"project": "pyzbar" +"download_count": 552663, +"project": "airbyte-cdk" }, { -"download_count": 368722, -"project": "paramiko-expect" +"download_count": 551962, +"project": "mongo-tooling-metrics" }, { -"download_count": 368617, -"project": "suds-jurko" +"download_count": 551441, +"project": "prometheus-api-client" }, { -"download_count": 368600, -"project": "flask-smorest" +"download_count": 551266, +"project": "mltable" }, { -"download_count": 368596, -"project": "opentelemetry-instrumentation-threading" +"download_count": 550856, +"project": "tentaclio-s3" }, { -"download_count": 368588, -"project": "docker-py" +"download_count": 550717, +"project": "pytest-clarity" }, { -"download_count": 368583, -"project": "securesystemslib" +"download_count": 550600, +"project": "tatsu" }, { -"download_count": 368402, -"project": "tabula-py" +"download_count": 550294, +"project": "uuid-utils" }, { -"download_count": 368158, -"project": "databend-driver" +"download_count": 549648, +"project": "flask-assets" }, { -"download_count": 367706, -"project": "decord" +"download_count": 549521, +"project": "mongo-ninja-python" }, { -"download_count": 367667, -"project": "pyfume" +"download_count": 548828, +"project": "quadprog" }, { -"download_count": 367565, -"project": "types-aiobotocore-dataexchange" +"download_count": 548179, +"project": "tensorflow-transform" }, { -"download_count": 367285, -"project": "databend-py" +"download_count": 547985, +"project": "localstack-core" }, { -"download_count": 367025, -"project": "azureml-pipeline" +"download_count": 547801, +"project": "lml" }, { -"download_count": 367010, -"project": "pyvalid" +"download_count": 547148, +"project": "s2sphere" }, { -"download_count": 366721, -"project": "graphene-django" +"download_count": 546432, +"project": "adjusttext" }, { -"download_count": 366610, -"project": "lupa" +"download_count": 546047, +"project": "opentelemetry-test-utils" }, { -"download_count": 366255, -"project": "pytest-nunit" +"download_count": 546020, +"project": "junit2html" }, { -"download_count": 365917, -"project": "acme" +"download_count": 545544, +"project": "duckdb-engine" }, { -"download_count": 365634, -"project": "python-gflags" +"download_count": 545530, +"project": "opentelemetry-instrumentation-asyncio" }, { -"download_count": 365525, -"project": "brickflows" +"download_count": 544644, +"project": "imgaug" }, { -"download_count": 365338, -"project": "cma" +"download_count": 544558, +"project": "types-xmltodict" }, { -"download_count": 364777, -"project": "id" +"download_count": 544336, +"project": "pyspark-dist-explore" }, { -"download_count": 364598, -"project": "jupyter-highlight-selected-word" +"download_count": 544207, +"project": "docker-py" }, { -"download_count": 363873, -"project": "beautifulsoup" +"download_count": 544094, +"project": "python-fsutil" }, { -"download_count": 363808, -"project": "xmldiff" +"download_count": 544023, +"project": "python-redis-lock" }, { -"download_count": 363306, -"project": "python-whois" +"download_count": 543816, +"project": "ncclient" }, { -"download_count": 363103, -"project": "ipympl" +"download_count": 543450, +"project": "infi-systray" }, { -"download_count": 362342, -"project": "pymeta3" +"download_count": 543174, +"project": "cssbeautifier" }, { -"download_count": 362302, -"project": "isal" +"download_count": 542864, +"project": "maybe-else" }, { -"download_count": 362261, -"project": "azure-cognitiveservices-speech" +"download_count": 542800, +"project": "python-logging-loki" }, { -"download_count": 362236, -"project": "fastly" +"download_count": 542493, +"project": "pymiscutils" }, { -"download_count": 362106, -"project": "types-tzlocal" +"download_count": 542151, +"project": "pyxray" }, { -"download_count": 361979, -"project": "shrub-py" +"download_count": 541959, +"project": "scooby" }, { -"download_count": 361606, -"project": "pyqtwebengine" +"download_count": 541906, +"project": "pyiotools" }, { -"download_count": 361488, -"project": "dict2css" +"download_count": 541799, +"project": "iterative-telemetry" }, { -"download_count": 361307, -"project": "mypy-boto3-ses" +"download_count": 541265, +"project": "sparkmeasure" }, { -"download_count": 361188, -"project": "bugsnag" +"download_count": 541229, +"project": "django-axes" }, { -"download_count": 361026, -"project": "leb128" +"download_count": 541192, +"project": "pysubtypes" }, { -"download_count": 360859, -"project": "glances" +"download_count": 540951, +"project": "pathmagic" }, { -"download_count": 360115, -"project": "azure-mgmt-hybridcompute" +"download_count": 540802, +"project": "prettierfier" }, { -"download_count": 359267, -"project": "sphinx-jinja2-compat" +"download_count": 540579, +"project": "neptune-client" }, { -"download_count": 359139, -"project": "pyld" +"download_count": 540531, +"project": "pyannote-pipeline" }, { -"download_count": 359096, -"project": "opencc-python-reimplemented" +"download_count": 540310, +"project": "pytest-qt" }, { -"download_count": 359022, -"project": "pem" +"download_count": 540270, +"project": "yamlordereddictloader" }, { -"download_count": 358949, -"project": "opentelemetry-instrumentation-tornado" +"download_count": 540029, +"project": "types-chardet" }, { -"download_count": 358875, -"project": "restructuredtext-lint" +"download_count": 539755, +"project": "nagiosplugin" }, { -"download_count": 358308, -"project": "jupyter-nbextensions-configurator" +"download_count": 539398, +"project": "sortednp" }, { -"download_count": 357263, -"project": "types-chardet" +"download_count": 539379, +"project": "ufal-udpipe" }, { -"download_count": 357163, -"project": "webassets" +"download_count": 539341, +"project": "hbutils" }, { -"download_count": 357107, -"project": "tslearn" +"download_count": 538727, +"project": "blosc" }, { -"download_count": 356255, -"project": "ntc-templates" +"download_count": 538722, +"project": "sparse" }, { -"download_count": 355884, -"project": "easygui" +"download_count": 538493, +"project": "memepy" }, { -"download_count": 355881, -"project": "rouge" +"download_count": 538261, +"project": "embedchain" }, { -"download_count": 355796, -"project": "ldapdomaindump" +"download_count": 537644, +"project": "tldrwl" }, { -"download_count": 355108, -"project": "tzwhere" +"download_count": 537545, +"project": "types-flask" }, { -"download_count": 355068, -"project": "llama-index-embeddings-azure-openai" +"download_count": 536976, +"project": "cbor" }, { -"download_count": 354728, -"project": "pytest-factoryboy" +"download_count": 536677, +"project": "types-tzlocal" }, { -"download_count": 354564, -"project": "xsdata" +"download_count": 536333, +"project": "dagster-slack" }, { -"download_count": 354162, -"project": "pyxray" +"download_count": 535617, +"project": "google-cloud-os-config" }, { -"download_count": 354026, -"project": "python-graphql-client" +"download_count": 534866, +"project": "publicsuffixlist" }, { -"download_count": 353635, -"project": "lomond" +"download_count": 534623, +"project": "ibm-db-sa" }, { -"download_count": 353431, -"project": "aws-cdk-asset-node-proxy-agent-v5" +"download_count": 534329, +"project": "matrix" }, { -"download_count": 352847, -"project": "flask-script" +"download_count": 533938, +"project": "darkdetect" }, { -"download_count": 352681, -"project": "cli-helpers" +"download_count": 533796, +"project": "pytest-watch" }, { -"download_count": 352544, -"project": "morecantile" +"download_count": 533453, +"project": "mypy-boto3-route53" }, { -"download_count": 352215, -"project": "cxxfilt" +"download_count": 532360, +"project": "partial-json-parser" }, { -"download_count": 352084, -"project": "mistral-common" +"download_count": 532026, +"project": "django-admin-rangefilter" }, { -"download_count": 351331, -"project": "ase" +"download_count": 531925, +"project": "glfw" }, { -"download_count": 351004, -"project": "aliyun-python-sdk-r-kvstore" +"download_count": 531603, +"project": "krb5" }, { -"download_count": 350932, -"project": "pytest-pythonpath" +"download_count": 531368, +"project": "apache-airflow-providers-github" }, { -"download_count": 350812, -"project": "flake8-variables-names" +"download_count": 531227, +"project": "osc-lib" }, { -"download_count": 350706, -"project": "pgeocode" +"download_count": 530793, +"project": "neologism" }, { -"download_count": 350589, -"project": "tcod" +"download_count": 530131, +"project": "policyuniverse" }, { -"download_count": 350527, -"project": "screeninfo" +"download_count": 529708, +"project": "mkdocs-macros-plugin" }, { -"download_count": 350271, -"project": "untokenize" +"download_count": 529185, +"project": "helpers" }, { -"download_count": 350242, -"project": "fancycompleter" +"download_count": 528644, +"project": "pyqtgraph" }, { -"download_count": 349758, -"project": "reportportal-client" +"download_count": 528541, +"project": "apeye" }, { -"download_count": 349677, -"project": "argilla" +"download_count": 528346, +"project": "apache-airflow-providers-openlineage" }, { -"download_count": 349633, -"project": "simpleitk" +"download_count": 528100, +"project": "getmac" }, { -"download_count": 349232, -"project": "pudb" +"download_count": 528071, +"project": "xrft" }, { -"download_count": 349180, -"project": "m2crypto" +"download_count": 527870, +"project": "qiskit" }, { -"download_count": 348967, -"project": "xopen" +"download_count": 527797, +"project": "app-store-scraper" }, { -"download_count": 348673, -"project": "linode-cli" +"download_count": 525968, +"project": "gurobipy" }, { -"download_count": 348003, -"project": "langid" +"download_count": 525590, +"project": "django-ratelimit" }, { -"download_count": 347561, -"project": "domain2idna" +"download_count": 525537, +"project": "rangehttpserver" }, { -"download_count": 347256, -"project": "pyro-ppl" +"download_count": 525530, +"project": "dagster-cloud-cli" }, { -"download_count": 347109, -"project": "ansible-runner" +"download_count": 525472, +"project": "mf2py" }, { -"download_count": 347018, -"project": "mypy-boto3-logs" +"download_count": 524993, +"project": "jschon" }, { -"download_count": 346880, -"project": "python-swiftclient" +"download_count": 524396, +"project": "pymannkendall" }, { -"download_count": 346838, -"project": "pymodbus" +"download_count": 523741, +"project": "crewai" }, { -"download_count": 346788, -"project": "aws-kinesis-agg" +"download_count": 522941, +"project": "pytest-celery" }, { -"download_count": 346681, -"project": "thriftpy2" +"download_count": 522716, +"project": "functools32" }, { -"download_count": 346501, -"project": "yellowbrick" +"download_count": 522472, +"project": "xmodem" }, { -"download_count": 346352, -"project": "asynch" +"download_count": 522232, +"project": "extruct" }, { -"download_count": 346002, -"project": "delighted" +"download_count": 521717, +"project": "importlib" }, { -"download_count": 345595, -"project": "gurobipy" +"download_count": 521359, +"project": "python-openstackclient" }, { -"download_count": 345578, -"project": "histlite" +"download_count": 521279, +"project": "pyrdfa3" }, { -"download_count": 345572, -"project": "pytest-clarity" +"download_count": 520882, +"project": "pydantic-yaml" }, { -"download_count": 345331, -"project": "linode-metadata" +"download_count": 520699, +"project": "readerwriterlock" }, { -"download_count": 345145, -"project": "unicorn" +"download_count": 520360, +"project": "python-cinderclient" }, { -"download_count": 344929, -"project": "flake8-commas" +"download_count": 520347, +"project": "ruamel-yaml-jinja2" }, { -"download_count": 344926, -"project": "crewai" +"download_count": 520339, +"project": "mkdocs-git-revision-date-localized-plugin" }, { -"download_count": 344398, -"project": "osmium" +"download_count": 520194, +"project": "pattern" }, { -"download_count": 344350, -"project": "localstack-core" +"download_count": 520004, +"project": "lime" }, { -"download_count": 344346, -"project": "tika" +"download_count": 519123, +"project": "tink" }, { -"download_count": 343660, -"project": "perlin-noise" +"download_count": 518710, +"project": "scriptconfig" }, { -"download_count": 343594, -"project": "jsonpath" +"download_count": 518635, +"project": "event-model" }, { -"download_count": 343523, -"project": "word2number" +"download_count": 518087, +"project": "splunk-handler" }, { -"download_count": 342953, -"project": "types-flask" +"download_count": 517792, +"project": "json-spec" }, { -"download_count": 342948, -"project": "scooby" +"download_count": 517589, +"project": "flask-script" }, { -"download_count": 342806, -"project": "window-ops" +"download_count": 516958, +"project": "teradataml" }, { -"download_count": 342509, -"project": "docstring-to-markdown" +"download_count": 516854, +"project": "skyfield" }, { -"download_count": 342452, -"project": "ladybug-display" +"download_count": 516815, +"project": "tempita" }, { -"download_count": 342072, -"project": "dagster-cloud" +"download_count": 516810, +"project": "opencc-python-reimplemented" }, { -"download_count": 341827, -"project": "pdbpp" +"download_count": 516708, +"project": "progiter" }, { -"download_count": 341679, -"project": "in-place" +"download_count": 516631, +"project": "isal" }, { -"download_count": 341600, -"project": "fs-s3fs" +"download_count": 516588, +"project": "casbin" }, { -"download_count": 341380, -"project": "quart-cors" +"download_count": 516397, +"project": "coolprop" }, { -"download_count": 341184, -"project": "whoosh" +"download_count": 516286, +"project": "pulumi-aws" }, { -"download_count": 340993, -"project": "arch" +"download_count": 515601, +"project": "unstructured-inference" }, { -"download_count": 340772, -"project": "django-mysql" +"download_count": 515579, +"project": "decord" }, { -"download_count": 340692, -"project": "click-default-group-wheel" +"download_count": 515562, +"project": "elasticsearch8" }, { -"download_count": 340539, -"project": "miscreant" +"download_count": 514449, +"project": "aws-cdk-aws-glue-alpha" }, { -"download_count": 340339, -"project": "cloudwatch" +"download_count": 514214, +"project": "skolemizer" }, { -"download_count": 340286, -"project": "cron-converter" +"download_count": 513985, +"project": "flake8-tidy-imports" }, { -"download_count": 340145, -"project": "wmctrl" +"download_count": 513722, +"project": "jenkinsapi" }, { -"download_count": 340144, -"project": "marshmallow-jsonapi" +"download_count": 513602, +"project": "autofaker" }, { -"download_count": 340132, -"project": "evdev" +"download_count": 513565, +"project": "google-python-cloud-debugger" }, { -"download_count": 340014, -"project": "mypy-boto3-elbv2" +"download_count": 512546, +"project": "lorem" }, { -"download_count": 339451, -"project": "swig" +"download_count": 512263, +"project": "icontract" }, { -"download_count": 338874, -"project": "keras-tuner" +"download_count": 512216, +"project": "cma" }, { -"download_count": 338788, -"project": "cdifflib" +"download_count": 511808, +"project": "primp" }, { -"download_count": 338759, -"project": "gin-config" +"download_count": 511464, +"project": "flash-attn" }, { -"download_count": 338690, -"project": "modelscope" +"download_count": 511435, +"project": "caproto" }, { -"download_count": 338598, -"project": "progressbar" +"download_count": 511287, +"project": "hf-transfer" }, { -"download_count": 337991, -"project": "sly" +"download_count": 511259, +"project": "expecttest" }, { -"download_count": 337885, -"project": "localstack-client" +"download_count": 510565, +"project": "flask-pymongo" }, { -"download_count": 337740, -"project": "torch-geometric" +"download_count": 510338, +"project": "stringparser" }, { -"download_count": 336786, -"project": "uszipcode" +"download_count": 510130, +"project": "check-jsonschema" }, { -"download_count": 336777, -"project": "reprint" +"download_count": 509354, +"project": "keyboard" }, { -"download_count": 336747, -"project": "codeguru-profiler-agent" +"download_count": 509248, +"project": "google-cloud-org-policy" }, { -"download_count": 336673, -"project": "beaker" +"download_count": 508844, +"project": "routes" }, { -"download_count": 336592, -"project": "accumulation-tree" +"download_count": 508613, +"project": "pybase62" }, { -"download_count": 336592, -"project": "acryl-sqlglot" +"download_count": 507376, +"project": "jinja2-pluralize" }, { -"download_count": 336449, -"project": "airflow-exporter" +"download_count": 507140, +"project": "transformations" }, { -"download_count": 336090, -"project": "pyfunceble-dev" +"download_count": 506657, +"project": "kedro" }, { -"download_count": 335862, -"project": "array-api-compat" +"download_count": 506630, +"project": "objprint" }, { -"download_count": 335613, -"project": "honcho" +"download_count": 506229, +"project": "flask-apscheduler" }, { -"download_count": 335400, -"project": "boto-session-manager" +"download_count": 506210, +"project": "rouge" }, { -"download_count": 335336, -"project": "pylas" +"download_count": 506127, +"project": "customtkinter" }, { -"download_count": 335267, -"project": "pyqtgraph" +"download_count": 506108, +"project": "fhir-resources" }, { -"download_count": 335242, -"project": "importlab" +"download_count": 506022, +"project": "guppy3" }, { -"download_count": 335203, -"project": "salib" +"download_count": 505813, +"project": "pytest-docker" }, { -"download_count": 335077, -"project": "pybars3" +"download_count": 505141, +"project": "picu" }, { -"download_count": 334994, -"project": "pydomo" +"download_count": 505001, +"project": "munidata" }, { -"download_count": 334900, -"project": "python-pptx-templater" +"download_count": 504572, +"project": "sodapy" }, { -"download_count": 334888, -"project": "pyfarmhash" +"download_count": 504547, +"project": "fava" }, { -"download_count": 334567, -"project": "hsluv" +"download_count": 504069, +"project": "tippo" }, { -"download_count": 334537, -"project": "django-colorfield" +"download_count": 503958, +"project": "delegator-py" }, { -"download_count": 334335, -"project": "crochet" +"download_count": 503770, +"project": "blendmodes" }, { -"download_count": 334084, -"project": "aws-assume-role-lib" +"download_count": 503199, +"project": "python-coveralls" }, { -"download_count": 333545, -"project": "plotly-resampler" +"download_count": 502975, +"project": "sk-dist" }, { -"download_count": 333453, -"project": "tuf" +"download_count": 502709, +"project": "brotlipy" }, { -"download_count": 333294, -"project": "random-user-agent" +"download_count": 502499, +"project": "wasmer" }, { -"download_count": 333021, -"project": "fuzzytm" +"download_count": 502467, +"project": "backports-ssl-match-hostname" }, { -"download_count": 331776, -"project": "pyloudnorm" +"download_count": 502112, +"project": "weread2notionpro" }, { -"download_count": 331340, -"project": "property-cached" +"download_count": 502046, +"project": "cantools" }, { -"download_count": 331275, -"project": "acryl-datahub-airflow-plugin" +"download_count": 502024, +"project": "gdbmongo" }, { -"download_count": 331247, -"project": "tgcrypto" +"download_count": 501438, +"project": "sigtools" }, { -"download_count": 331211, -"project": "allure-behave" +"download_count": 501415, +"project": "dbt-fabric" }, { -"download_count": 330953, -"project": "pyrogram" +"download_count": 501199, +"project": "rpy2" }, { -"download_count": 330860, -"project": "types-appdirs" +"download_count": 500386, +"project": "capstone" }, { -"download_count": 330611, -"project": "libusb-package" +"download_count": 500274, +"project": "rauth" }, { -"download_count": 330117, -"project": "fixit" +"download_count": 500077, +"project": "acryl-sqlglot" }, { -"download_count": 329942, -"project": "simpful" +"download_count": 499826, +"project": "shandy-sqlfmt" }, { -"download_count": 329831, -"project": "sigstore" +"download_count": 499605, +"project": "openmim" }, { -"download_count": 329824, -"project": "robotframework-jsonlibrary" +"download_count": 498944, +"project": "cement" }, { -"download_count": 329812, -"project": "djangorestframework-api-key" +"download_count": 498892, +"project": "bsdiff4" }, { -"download_count": 329735, -"project": "pylibmc" +"download_count": 498776, +"project": "zipfile-deflate64" }, { -"download_count": 329198, -"project": "opentelemetry-exporter-prometheus" +"download_count": 498673, +"project": "pyminizip" }, { -"download_count": 329151, -"project": "stups-tokens" +"download_count": 498584, +"project": "flask-oauthlib" }, { -"download_count": 328844, -"project": "sigstore-protobuf-specs" +"download_count": 498365, +"project": "mysql" }, { -"download_count": 328614, -"project": "kivy-garden" +"download_count": 497767, +"project": "mypy-boto3-eks" }, { -"download_count": 328552, -"project": "meshio" +"download_count": 497284, +"project": "ess-streaming-data-types" }, { -"download_count": 328143, -"project": "sphinx-data-viewer" +"download_count": 497099, +"project": "yattag" }, { -"download_count": 327989, -"project": "nagisa" +"download_count": 496888, +"project": "colander" }, { -"download_count": 327911, -"project": "pyside2" +"download_count": 496785, +"project": "localstack-ext" }, { -"download_count": 327582, -"project": "chromedriver-autoinstaller" +"download_count": 496620, +"project": "elasticsearch-dbapi" }, { -"download_count": 327391, -"project": "fernet" +"download_count": 496107, +"project": "django-treebeard" }, { -"download_count": 327156, -"project": "sigstore-rekor-types" +"download_count": 495980, +"project": "pydoe" }, { -"download_count": 326934, -"project": "cheetah3" +"download_count": 495671, +"project": "coola" }, { -"download_count": 326934, -"project": "pdm-backend" +"download_count": 495196, +"project": "apache-airflow-providers-apache-hive" }, { -"download_count": 326810, -"project": "pydoe" +"download_count": 495147, +"project": "rarfile" }, { -"download_count": 326122, -"project": "itables" +"download_count": 494998, +"project": "suds" }, { -"download_count": 326012, -"project": "pandas-profiling" +"download_count": 494810, +"project": "scikeras" }, { -"download_count": 325827, -"project": "mobly" +"download_count": 494797, +"project": "docstring-to-markdown" }, { -"download_count": 325702, -"project": "praw" +"download_count": 493819, +"project": "alexapy" }, { -"download_count": 325326, -"project": "lkml" +"download_count": 493717, +"project": "optbinning" }, { -"download_count": 325292, -"project": "tsdownsample" +"download_count": 493668, +"project": "tomesd" }, { -"download_count": 325229, -"project": "basicsr" +"download_count": 493093, +"project": "types-pyasn1" }, { -"download_count": 325060, -"project": "hdf5plugin" +"download_count": 492913, +"project": "lkml" }, { -"download_count": 324949, -"project": "kneed" +"download_count": 492679, +"project": "sqlalchemy-mate" }, { -"download_count": 324928, -"project": "pip-with-requires-python" +"download_count": 492189, +"project": "easygui" }, { -"download_count": 324770, -"project": "zake" +"download_count": 491493, +"project": "requirements-detector" }, { -"download_count": 324657, -"project": "django-modeltranslation" +"download_count": 491434, +"project": "entsoe-py" }, { -"download_count": 324555, -"project": "langchain-chroma" +"download_count": 491433, +"project": "apispec-webframeworks" }, { -"download_count": 324528, -"project": "dagster-slack" +"download_count": 491014, +"project": "scrapbook" }, { -"download_count": 324475, -"project": "python-socks" +"download_count": 490892, +"project": "scikit-plot" }, { -"download_count": 324388, -"project": "requirements-detector" +"download_count": 490791, +"project": "cookies" }, { -"download_count": 324158, -"project": "s3pathlib" +"download_count": 490773, +"project": "unyt" }, { -"download_count": 323816, -"project": "visitor" +"download_count": 490701, +"project": "keras-tuner" }, { -"download_count": 323626, -"project": "ipyvuetify" +"download_count": 490683, +"project": "seqeval" }, { -"download_count": 323557, -"project": "iterproxy" +"download_count": 489952, +"project": "asyncstdlib" }, { -"download_count": 323551, -"project": "opentelemetry-instrumentation-confluent-kafka" +"download_count": 489064, +"project": "apache-airflow-providers-opsgenie" }, { -"download_count": 323363, -"project": "kafka" +"download_count": 488960, +"project": "simple-settings" }, { -"download_count": 323186, -"project": "fiscalyear" +"download_count": 488796, +"project": "submitit" }, { -"download_count": 322892, -"project": "pyspark-pandas" +"download_count": 488790, +"project": "miscreant" }, { -"download_count": 322704, -"project": "pyudorandom" +"download_count": 488724, +"project": "types-aiobotocore-sqs" }, { -"download_count": 322400, -"project": "monty" +"download_count": 488366, +"project": "evidently" }, { -"download_count": 322300, -"project": "xdoctest" +"download_count": 487924, +"project": "stomp-py" }, { -"download_count": 322086, -"project": "awsebcli" +"download_count": 487689, +"project": "ipympl" }, { -"download_count": 322031, -"project": "ipyvue" +"download_count": 487664, +"project": "ibmcloudant" }, { -"download_count": 321761, -"project": "multiset" +"download_count": 487621, +"project": "flake8-plugin-utils" }, { -"download_count": 321751, -"project": "pygraphviz" +"download_count": 487399, +"project": "cron-schedule-triggers" }, { -"download_count": 321030, -"project": "pyscaffold" +"download_count": 487300, +"project": "celery-types" }, { -"download_count": 320658, -"project": "lxml-stubs" +"download_count": 486822, +"project": "flake8-broken-line" }, { -"download_count": 320535, -"project": "fhir-resources" +"download_count": 485678, +"project": "dimod" }, { -"download_count": 320463, -"project": "distance" +"download_count": 485128, +"project": "javaobj-py3" }, { -"download_count": 320410, -"project": "pyro-api" +"download_count": 485003, +"project": "graphene-django" }, { -"download_count": 320405, -"project": "names" +"download_count": 484959, +"project": "mypy-boto3" }, { -"download_count": 320145, -"project": "petl" +"download_count": 484939, +"project": "langchain-cohere" }, { -"download_count": 319951, -"project": "pyfunctional" +"download_count": 484384, +"project": "mkdocs-redirects" }, { -"download_count": 319907, -"project": "sphinx-needs" +"download_count": 484320, +"project": "pymodbus" }, { -"download_count": 319881, -"project": "prawcore" +"download_count": 484239, +"project": "django-ninja" }, { -"download_count": 319873, -"project": "wasmtime" +"download_count": 484073, +"project": "lpips" }, { -"download_count": 319603, -"project": "ytsaurus-client" +"download_count": 484060, +"project": "jupyter-server-proxy" }, { -"download_count": 319379, -"project": "vadersentiment" +"download_count": 483373, +"project": "httpx-ws" }, { -"download_count": 319224, -"project": "yamlordereddictloader" +"download_count": 483359, +"project": "jsonpath-rw-ext" }, { -"download_count": 318829, -"project": "mypy-boto3-route53domains" +"download_count": 483303, +"project": "dag-factory" }, { -"download_count": 318797, -"project": "oslo-log" +"download_count": 483142, +"project": "pathfinding" }, { -"download_count": 317976, -"project": "databricks-feature-engineering" +"download_count": 482681, +"project": "opentelemetry-exporter-jaeger-thrift" }, { -"download_count": 317696, -"project": "mailjet-rest" +"download_count": 482342, +"project": "assisted-service-client" }, { -"download_count": 317596, -"project": "quantities" +"download_count": 481781, +"project": "proxy-db" }, { -"download_count": 317340, -"project": "shiboken2" +"download_count": 481476, +"project": "markuppy" }, { -"download_count": 316985, -"project": "embedchain" +"download_count": 481176, +"project": "mlserver" }, { -"download_count": 316956, -"project": "ordereddict" +"download_count": 480842, +"project": "holoviews" }, { -"download_count": 316919, -"project": "django-axes" +"download_count": 480833, +"project": "tox-gh-actions" }, { -"download_count": 316830, -"project": "ytsaurus-yson" +"download_count": 479803, +"project": "azure-eventhub-checkpointstoreblob-aio" }, { -"download_count": 316716, -"project": "types-fpdf2" +"download_count": 479288, +"project": "dbt-athena-community" }, { -"download_count": 316644, -"project": "embreex" +"download_count": 478989, +"project": "dbt-duckdb" }, { -"download_count": 316524, -"project": "pcpp" +"download_count": 478760, +"project": "sqlitedict" }, { -"download_count": 316337, -"project": "lightfm" +"download_count": 478674, +"project": "ml-collections" }, { -"download_count": 316321, -"project": "xdg" +"download_count": 477636, +"project": "pygerduty" }, { -"download_count": 316274, -"project": "img2pdf" +"download_count": 477580, +"project": "xtgeo" }, { -"download_count": 316175, -"project": "wiki-fetch" +"download_count": 477388, +"project": "django-ckeditor" }, { -"download_count": 316152, -"project": "milvus-lite" +"download_count": 477353, +"project": "mypy-boto3-config" }, { -"download_count": 316029, -"project": "primp" +"download_count": 477059, +"project": "azureml-inference-server-http" }, { -"download_count": 315902, -"project": "bootstrap-flask" +"download_count": 477020, +"project": "effdet" }, { -"download_count": 315883, -"project": "django-ninja" +"download_count": 476835, +"project": "tableschema" }, { -"download_count": 315880, -"project": "pytest-trio" +"download_count": 476788, +"project": "neovim" }, { -"download_count": 315791, -"project": "flufl-lock" +"download_count": 476743, +"project": "rfc5424-logging-handler" }, { -"download_count": 315542, -"project": "taskgroup" +"download_count": 476684, +"project": "segments" }, { -"download_count": 315496, -"project": "cupy-cuda12x" +"download_count": 475471, +"project": "bearlibterminal" }, { -"download_count": 315229, -"project": "flake8-tidy-imports" +"download_count": 474704, +"project": "django-webpack-loader" }, { -"download_count": 315135, -"project": "custom-inherit" +"download_count": 474156, +"project": "comet-ml" }, { -"download_count": 315074, -"project": "mypy-boto3-emr" +"download_count": 473478, +"project": "azure-cognitiveservices-speech" }, { -"download_count": 314886, -"project": "luigi" +"download_count": 473173, +"project": "cmarkgfm" }, { -"download_count": 314875, -"project": "music21" +"download_count": 472689, +"project": "mlforecast" }, { -"download_count": 314587, -"project": "nutter" +"download_count": 472499, +"project": "wasmer-compiler-cranelift" }, { -"download_count": 314480, -"project": "trafaret" +"download_count": 472494, +"project": "import-deps" }, { -"download_count": 314046, -"project": "pydantic-yaml" +"download_count": 472458, +"project": "cli-helpers" }, { -"download_count": 313887, -"project": "types-boto" +"download_count": 472388, +"project": "types-aioboto3" }, { -"download_count": 313859, -"project": "poyo" +"download_count": 472212, +"project": "plotly-resampler" }, { -"download_count": 313841, -"project": "mkdocs-redirects" +"download_count": 471841, +"project": "copier" }, { -"download_count": 313755, -"project": "python-novaclient" +"download_count": 471839, +"project": "flogging" }, { -"download_count": 313683, -"project": "flake8-simplify" +"download_count": 471505, +"project": "tdigest" }, { -"download_count": 313579, -"project": "check-manifest" +"download_count": 471450, +"project": "flask-executor" }, { -"download_count": 313552, -"project": "prospector" +"download_count": 471305, +"project": "grequests" }, { -"download_count": 313452, -"project": "dictlib" +"download_count": 471115, +"project": "google-cloud-dns" }, { -"download_count": 313379, -"project": "grpcio-testing" +"download_count": 471107, +"project": "psycogreen" }, { -"download_count": 313324, -"project": "unstructured-inference" +"download_count": 470504, +"project": "fragile" }, { -"download_count": 313010, -"project": "crowdstrike-falconpy" +"download_count": 469701, +"project": "pbs4py" }, { -"download_count": 313003, -"project": "oslo-context" +"download_count": 469614, +"project": "judo" }, { -"download_count": 313002, -"project": "fastdtw" +"download_count": 469435, +"project": "bravado" }, { -"download_count": 313001, -"project": "django-localflavor" +"download_count": 469429, +"project": "localstack" }, { -"download_count": 312836, -"project": "httpie-edgegrid" +"download_count": 469378, +"project": "grandalf" }, { -"download_count": 312747, -"project": "brotlipy" +"download_count": 469362, +"project": "google-cloud-asset" }, { -"download_count": 312603, -"project": "yapsy" +"download_count": 469355, +"project": "pip-check" }, { -"download_count": 312361, -"project": "tatsu" +"download_count": 469288, +"project": "pyngrok" }, { -"download_count": 312214, -"project": "multiaddr" +"download_count": 469113, +"project": "deptry" }, { -"download_count": 311914, -"project": "opentelemetry-instrumentation-falcon" +"download_count": 468843, +"project": "ibm-cos-sdk-core" }, { -"download_count": 311855, -"project": "opentelemetry-instrumentation-mysqlclient" +"download_count": 468770, +"project": "importlab" }, { -"download_count": 311751, -"project": "adjusttext" +"download_count": 468662, +"project": "matrix-client" }, { -"download_count": 311465, -"project": "honeybee-core" +"download_count": 468660, +"project": "mpi4py" }, { -"download_count": 311185, -"project": "pdoc" +"download_count": 468468, +"project": "bridgecrew" }, { -"download_count": 311075, -"project": "mistletoe" +"download_count": 468178, +"project": "zha-quirks" }, { -"download_count": 311074, -"project": "python-amazon-sp-api" +"download_count": 467896, +"project": "antlr-denter" }, { -"download_count": 311008, -"project": "huaweicloudsdkcore" +"download_count": 467732, +"project": "currencyconverter" }, { -"download_count": 310798, -"project": "onnxsim" +"download_count": 467478, +"project": "tinyhtml5" }, { -"download_count": 310776, -"project": "ladybug-geometry-polyskel" +"download_count": 467474, +"project": "mkdocs-monorepo-plugin" }, { -"download_count": 310769, -"project": "sqlalchemy-trino" +"download_count": 466998, +"project": "pytest-flakefinder" }, { -"download_count": 310715, -"project": "ipfshttpclient" +"download_count": 466702, +"project": "ibm-cos-sdk-s3transfer" }, { -"download_count": 310285, -"project": "rstcheck" +"download_count": 466112, +"project": "zigpy-znp" }, { -"download_count": 310264, -"project": "honeybee-schema" +"download_count": 466040, +"project": "zigpy-deconz" }, { -"download_count": 310148, -"project": "argo-workflows" +"download_count": 465602, +"project": "cupy-cuda12x" }, { -"download_count": 310094, -"project": "mypy-boto3-ecs" +"download_count": 465521, +"project": "tree-sitter-python" }, { -"download_count": 310068, -"project": "aws-cdk-core" +"download_count": 465380, +"project": "mkdocs-gen-files" }, { -"download_count": 310048, -"project": "ncclient" +"download_count": 465206, +"project": "dvc-data" }, { -"download_count": 309943, -"project": "pyfzf" +"download_count": 465138, +"project": "flake8-commas" }, { -"download_count": 309909, -"project": "lightstep" +"download_count": 464151, +"project": "bellows" }, { -"download_count": 309901, -"project": "dataset" +"download_count": 464120, +"project": "zigpy-xbee" }, { -"download_count": 309876, -"project": "stups-zign" +"download_count": 464015, +"project": "ibm-cos-sdk" }, { -"download_count": 309850, -"project": "stups-cli-support" +"download_count": 463999, +"project": "types-boto" }, { -"download_count": 309663, -"project": "anywidget" +"download_count": 463830, +"project": "opencensus-ext-requests" }, { -"download_count": 309651, -"project": "django-user-agents" +"download_count": 463802, +"project": "sphinx-sitemap" }, { -"download_count": 309518, -"project": "molecule-plugins" +"download_count": 462961, +"project": "mpyc" }, { -"download_count": 309301, -"project": "delocate" +"download_count": 462675, +"project": "crispy-bootstrap5" }, { -"download_count": 309039, -"project": "pydrive" +"download_count": 462414, +"project": "sobol-seq" }, { -"download_count": 309029, -"project": "mypy-boto3-sagemaker" +"download_count": 462161, +"project": "docxtpl" }, { -"download_count": 308838, -"project": "elasticsearch-curator" +"download_count": 461893, +"project": "hacking" }, { -"download_count": 308800, -"project": "scrapbook" +"download_count": 461888, +"project": "graphitesend" }, { -"download_count": 308471, -"project": "django-tables2" +"download_count": 461664, +"project": "azure-monitor-ingestion" }, { -"download_count": 308466, -"project": "django-auth-ldap" +"download_count": 461525, +"project": "nudged" }, { -"download_count": 308288, -"project": "lorem" +"download_count": 461302, +"project": "sttable" }, { -"download_count": 308219, -"project": "great-expectations-experimental" +"download_count": 460452, +"project": "pyvim" }, { -"download_count": 308103, -"project": "nvidia-ml-py3" +"download_count": 459966, +"project": "mypy-boto3-pinpoint-sms-voice-v2" }, { -"download_count": 308052, -"project": "plyfile" +"download_count": 459892, +"project": "embreex" }, { -"download_count": 307934, -"project": "ml-collections" +"download_count": 459427, +"project": "pyzbar" }, { -"download_count": 307688, -"project": "opentelemetry-instrumentation-mysql" +"download_count": 459280, +"project": "final-class" }, { -"download_count": 307662, -"project": "secure" +"download_count": 459018, +"project": "openinference-instrumentation-langchain" }, { -"download_count": 307532, -"project": "partial-json-parser" +"download_count": 458946, +"project": "google-cloud-access-context-manager" }, { -"download_count": 307447, -"project": "prefect-docker" +"download_count": 458668, +"project": "pandas-flavor" }, { -"download_count": 307399, -"project": "pyobjc-core" +"download_count": 457949, +"project": "general-functions" }, { -"download_count": 307159, -"project": "libusb1" +"download_count": 457654, +"project": "pytest-retry" }, { -"download_count": 306907, -"project": "honeybee-standards" +"download_count": 457340, +"project": "aws-embedded-metrics" }, { -"download_count": 306748, -"project": "pydantic-openapi-helper" +"download_count": 457187, +"project": "langchain-chroma" }, { -"download_count": 306701, -"project": "opencc" +"download_count": 456820, +"project": "presidio-anonymizer" }, { -"download_count": 306631, -"project": "sphinx-notfound-page" +"download_count": 456114, +"project": "treq" }, { -"download_count": 306042, -"project": "prettyprinter" +"download_count": 455718, +"project": "mlog-arithmetic-runner" }, { -"download_count": 305961, -"project": "testresources" +"download_count": 455626, +"project": "azureml-automl-core" }, { -"download_count": 305951, -"project": "crontab" +"download_count": 455032, +"project": "azure-schemaregistry-avroserializer" }, { -"download_count": 305880, -"project": "aiosmtpd" +"download_count": 454857, +"project": "types-bleach" }, { -"download_count": 305855, -"project": "prefect-github" +"download_count": 454840, +"project": "azureml-train-core" }, { -"download_count": 305721, -"project": "azureml-defaults" +"download_count": 454290, +"project": "webhelpers2" }, { -"download_count": 305624, -"project": "statistics" +"download_count": 453951, +"project": "extension-helpers" }, { -"download_count": 305505, -"project": "docstring-parser-fork" +"download_count": 453886, +"project": "alibabacloud-tea" }, { -"download_count": 305242, -"project": "sphinxcontrib-drawio" +"download_count": 453682, +"project": "pycparserext-gnuc" }, { -"download_count": 304961, -"project": "antlr-denter" +"download_count": 453336, +"project": "pynetbox" }, { -"download_count": 304716, -"project": "airbyte-cdk" +"download_count": 453309, +"project": "pismosendlogs" }, { -"download_count": 304716, -"project": "dynet" +"download_count": 453191, +"project": "argparse-dataclass" }, { -"download_count": 304592, -"project": "pandas-flavor" +"download_count": 453109, +"project": "django-coverage-plugin" }, { -"download_count": 304568, -"project": "pylink-square" +"download_count": 452695, +"project": "pi-heif" }, { -"download_count": 304474, -"project": "mpld3" +"download_count": 452597, +"project": "python-socks" }, { -"download_count": 304442, -"project": "rfc8785" +"download_count": 452501, +"project": "flufl-lock" }, { -"download_count": 304370, -"project": "pyftpdlib" +"download_count": 452172, +"project": "robotframework-stacktrace" }, { -"download_count": 304142, -"project": "django-jazzmin" +"download_count": 452139, +"project": "pytest-datadir" }, { -"download_count": 303141, -"project": "nacos-sdk-python" +"download_count": 452054, +"project": "thoth-common" }, { -"download_count": 303114, -"project": "versioningit" +"download_count": 451828, +"project": "openai-whisper" }, { -"download_count": 303054, -"project": "objprint" +"download_count": 451474, +"project": "patch" }, { -"download_count": 302973, -"project": "treq" +"download_count": 451337, +"project": "django-structlog" }, { -"download_count": 302947, -"project": "webexteamssdk" +"download_count": 450939, +"project": "window-ops" }, { -"download_count": 302725, -"project": "table-logger" +"download_count": 450867, +"project": "word2number" }, { -"download_count": 302606, -"project": "sql-formatter" +"download_count": 450853, +"project": "titlecase" }, { -"download_count": 302558, -"project": "aws-cdk-aws-iam" +"download_count": 450259, +"project": "pyxirr" }, { -"download_count": 302409, -"project": "mypy-boto3-batch" +"download_count": 449493, +"project": "django-reversion" }, { -"download_count": 302247, -"project": "uuid7" +"download_count": 449492, +"project": "libusb-package" }, { -"download_count": 301586, -"project": "opentelemetry-instrumentation-pyramid" +"download_count": 449415, +"project": "flask-sso" }, { -"download_count": 301491, -"project": "ibm-watsonx-ai" +"download_count": 449259, +"project": "sqlalchemy-migrate" }, { -"download_count": 301359, -"project": "llama-index-llms-azure-openai" +"download_count": 448495, +"project": "jsoncomment" }, { -"download_count": 301233, -"project": "plantuml-markdown" +"download_count": 448331, +"project": "pydantic-xml" }, { -"download_count": 301131, -"project": "python-lsp-server" +"download_count": 448188, +"project": "flask-swagger" }, { -"download_count": 300722, -"project": "ipcqueue" +"download_count": 447517, +"project": "pysimdjson" }, { -"download_count": 300624, -"project": "pyobjc-framework-cocoa" +"download_count": 447457, +"project": "pythonping" }, { -"download_count": 300551, -"project": "yamlloader" +"download_count": 447040, +"project": "tensorflowjs" }, { -"download_count": 300409, -"project": "json-encoder" +"download_count": 446473, +"project": "opentelemetry-instrumentation-tortoiseorm" }, { -"download_count": 300399, -"project": "pyliquibase" +"download_count": 446424, +"project": "mypy-boto3-sagemaker-runtime" }, { -"download_count": 300320, -"project": "pybacklogpy" +"download_count": 446342, +"project": "thoth-python" }, { -"download_count": 300298, -"project": "django-rest-swagger" +"download_count": 446247, +"project": "codegen" }, { -"download_count": 300296, -"project": "pytest-djangoapp" +"download_count": 446002, +"project": "azure-mgmt-postgresqlflexibleservers" }, { -"download_count": 300236, -"project": "mypy-boto3-cloudwatch" +"download_count": 445804, +"project": "turbopuffer" }, { -"download_count": 300210, -"project": "dataclasses-avroschema" +"download_count": 445772, +"project": "aresponses" }, { -"download_count": 300111, -"project": "mwparserfromhell" +"download_count": 445291, +"project": "thoth-storages" }, { -"download_count": 299840, -"project": "aws-logging-handlers" +"download_count": 445187, +"project": "thoth-analyzer" }, { -"download_count": 299782, -"project": "docopt-ng" +"download_count": 444693, +"project": "xmlrunner" }, { -"download_count": 298963, -"project": "opentelemetry-instrumentation-pymemcache" +"download_count": 444464, +"project": "types-aiobotocore-dynamodb" }, { -"download_count": 298642, -"project": "xrft" +"download_count": 444039, +"project": "tencentcloud-sdk-python" }, { -"download_count": 298416, -"project": "langchain-cohere" +"download_count": 443896, +"project": "pyct" }, { -"download_count": 298274, -"project": "returns" +"download_count": 443560, +"project": "patterns" }, { -"download_count": 298086, -"project": "plux" +"download_count": 443339, +"project": "urwid-readline" }, { -"download_count": 297734, -"project": "mkdocs-techdocs-core" +"download_count": 443225, +"project": "pyrogram" }, { -"download_count": 297529, -"project": "xml-python" +"download_count": 442881, +"project": "uszipcode" }, { -"download_count": 297166, -"project": "chalice" +"download_count": 442577, +"project": "anyconfig" }, { -"download_count": 296758, -"project": "yeelight" +"download_count": 442351, +"project": "graphyte" }, { -"download_count": 295711, -"project": "google-cloud-ndb" +"download_count": 442057, +"project": "sqlean-py" }, { -"download_count": 295526, -"project": "badx12" +"download_count": 441321, +"project": "line-bot-sdk" }, { -"download_count": 295525, -"project": "pylama" +"download_count": 441042, +"project": "nlpaug" }, { -"download_count": 295511, -"project": "jsonslicer" +"download_count": 441010, +"project": "simpervisor" }, { -"download_count": 295509, -"project": "aws-error-utils" +"download_count": 440416, +"project": "pretty-errors" }, { -"download_count": 295494, -"project": "colander" +"download_count": 440283, +"project": "synchronicity" }, { -"download_count": 294994, -"project": "mypy-boto3-cognito-idp" +"download_count": 440224, +"project": "azure-mgmt-mysqlflexibleservers" }, { -"download_count": 294721, -"project": "effdet" +"download_count": 440060, +"project": "asyncio-throttle" }, { -"download_count": 294341, -"project": "djangorestframework-jwt" +"download_count": 439836, +"project": "opentelemetry-instrumentation-boto" }, { -"download_count": 294023, -"project": "types-python-slugify" +"download_count": 439719, +"project": "dictio" }, { -"download_count": 293845, -"project": "homeassistant" +"download_count": 439719, +"project": "kt-legacy" }, { -"download_count": 293729, -"project": "httpstan" +"download_count": 438966, +"project": "pytype" }, { -"download_count": 293718, -"project": "lazy-imports" +"download_count": 438651, +"project": "umodbus" }, { -"download_count": 293627, -"project": "kt-legacy" +"download_count": 438374, +"project": "glances" }, { -"download_count": 293545, -"project": "mypy-boto3-dms" +"download_count": 438207, +"project": "missingpy" }, { -"download_count": 293541, -"project": "python-etcd" +"download_count": 437404, +"project": "mypy-boto3-firehose" }, { -"download_count": 293472, -"project": "pyhdb" +"download_count": 437253, +"project": "mujoco" }, { -"download_count": 293416, -"project": "qds-sdk" +"download_count": 437249, +"project": "feast" }, { -"download_count": 293296, -"project": "mkdocs-monorepo-plugin" +"download_count": 437193, +"project": "openmath" }, { -"download_count": 293123, -"project": "opentelemetry-instrumentation-aio-pika" +"download_count": 436903, +"project": "gpyreg" }, { -"download_count": 292719, -"project": "path-py" +"download_count": 436718, +"project": "mypy-boto3-sso" }, { -"download_count": 292610, -"project": "pylightxl" +"download_count": 436465, +"project": "mike" }, { -"download_count": 292447, -"project": "kubernetes-client" +"download_count": 436229, +"project": "waiting" }, { -"download_count": 292327, -"project": "pypi-attestations" +"download_count": 436202, +"project": "sphinx-favicon" }, { -"download_count": 292322, -"project": "flake8-annotations" +"download_count": 436194, +"project": "bayesian-optimization" }, { -"download_count": 292221, -"project": "logging" +"download_count": 434671, +"project": "opentelemetry-exporter-jaeger-proto-grpc" }, { -"download_count": 291898, -"project": "pysolr" +"download_count": 434467, +"project": "python-whois" }, { -"download_count": 291632, -"project": "in-n-out" +"download_count": 434447, +"project": "pytest-testinfra" }, { -"download_count": 291575, -"project": "sphinxcontrib-plantuml" +"download_count": 433832, +"project": "thoth-license-solver" }, { -"download_count": 291440, -"project": "meteostat" +"download_count": 433476, +"project": "quantities" }, { -"download_count": 291051, -"project": "connectorx" +"download_count": 433368, +"project": "simple-term-menu" }, { -"download_count": 290885, -"project": "pbspark" +"download_count": 433309, +"project": "layoutparser" }, { -"download_count": 290168, -"project": "versionfinder" +"download_count": 433116, +"project": "proselint" }, { -"download_count": 290041, -"project": "attr" +"download_count": 432745, +"project": "opencc" }, { -"download_count": 289896, -"project": "awslimitchecker" +"download_count": 432337, +"project": "distogram" }, { -"download_count": 289871, -"project": "pybaselines" +"download_count": 432187, +"project": "telebot" }, { -"download_count": 289819, -"project": "micloud" +"download_count": 432153, +"project": "honcho" }, { -"download_count": 289738, -"project": "asn1" +"download_count": 432134, +"project": "groundingdino-py" }, { -"download_count": 289302, -"project": "hmsclient" +"download_count": 432046, +"project": "pytest-pythonpath" }, { -"download_count": 289213, -"project": "pytype" +"download_count": 432012, +"project": "testing-common-database" }, { -"download_count": 288790, -"project": "ghostscript" +"download_count": 431831, +"project": "pandas-profiling" }, { -"download_count": 288782, -"project": "mygeotab" +"download_count": 431760, +"project": "mypy-boto3-efs" }, { -"download_count": 288469, -"project": "lagom" +"download_count": 431473, +"project": "kafka" }, { -"download_count": 287968, -"project": "robocorp-log" +"download_count": 431446, +"project": "target-hotglue" }, { -"download_count": 287926, -"project": "pycarlo" +"download_count": 431179, +"project": "deap" }, { -"download_count": 287858, -"project": "pyreadline" +"download_count": 431019, +"project": "utm" }, { -"download_count": 287831, -"project": "webapp2" +"download_count": 430977, +"project": "mypy-boto3-dms" }, { -"download_count": 287708, -"project": "ragas" +"download_count": 430673, +"project": "python-benedict" }, { -"download_count": 287293, -"project": "pytools" +"download_count": 430648, +"project": "bounded-pool-executor" }, { -"download_count": 287285, -"project": "psycopg-c" +"download_count": 430543, +"project": "verspec" }, { -"download_count": 287156, -"project": "pydevd-pycharm" +"download_count": 430406, +"project": "teamcity-messages" }, { -"download_count": 287096, -"project": "transliterate" +"download_count": 430066, +"project": "mdformat" }, { -"download_count": 286961, -"project": "schwifty" +"download_count": 429922, +"project": "python-barcode" }, { -"download_count": 286809, -"project": "opentelemetry-instrumentation-aiopg" +"download_count": 429894, +"project": "uuid7" }, { -"download_count": 286641, -"project": "robocorp-tasks" +"download_count": 429876, +"project": "itables" }, { -"download_count": 286547, -"project": "testing-common-database" +"download_count": 429527, +"project": "formencode" }, { -"download_count": 286465, -"project": "brotlicffi" +"download_count": 429481, +"project": "ospx" }, { -"download_count": 286448, -"project": "paddlepaddle" +"download_count": 429267, +"project": "tabula-py" }, { -"download_count": 286400, -"project": "structlog-sentry" +"download_count": 429198, +"project": "thriftpy2" }, { -"download_count": 286366, -"project": "layoutparser" +"download_count": 429190, +"project": "pyserde" }, { -"download_count": 286207, -"project": "dbx" +"download_count": 429012, +"project": "recurring-ical-events" }, { -"download_count": 285922, -"project": "py-backwards" +"download_count": 428418, +"project": "ulid-transform" }, { -"download_count": 285813, -"project": "backports-strenum" +"download_count": 428412, +"project": "pylint-celery" }, { -"download_count": 285807, -"project": "py-backwards-astunparse" +"download_count": 428043, +"project": "aioquic" }, { -"download_count": 285765, -"project": "robocorp-workitems" +"download_count": 427688, +"project": "cirq-core" }, { -"download_count": 285604, -"project": "robotframework-browser" +"download_count": 427164, +"project": "types-aiobotocore-lambda" }, { -"download_count": 285499, -"project": "pyathenajdbc" +"download_count": 426295, +"project": "dataengineeringutils3" }, { -"download_count": 285404, -"project": "py-moneyed" +"download_count": 426096, +"project": "forex-python" }, { -"download_count": 285219, -"project": "deb-pkg-tools" +"download_count": 426034, +"project": "imutils" }, { -"download_count": 285111, -"project": "pyaudio" +"download_count": 425757, +"project": "dvclive" }, { -"download_count": 284900, -"project": "aws-cdk-aws-ec2" +"download_count": 425569, +"project": "xopen" }, { -"download_count": 284884, -"project": "robocorp" +"download_count": 425559, +"project": "jsonformatter" }, { -"download_count": 284647, -"project": "pytest-profiling" +"download_count": 425388, +"project": "azureml-train-restclients-hyperdrive" }, { -"download_count": 284560, -"project": "types-futures" +"download_count": 425282, +"project": "torch-geometric" }, { -"download_count": 284221, -"project": "spacy-wordnet" +"download_count": 424904, +"project": "voluptuous-serialize" }, { -"download_count": 283631, -"project": "h3-pyspark" +"download_count": 424679, +"project": "bzt" }, { -"download_count": 283405, -"project": "feedfinder2" +"download_count": 424460, +"project": "ttp" }, { -"download_count": 283309, -"project": "lm-eval" +"download_count": 424279, +"project": "mojap-metadata" }, { -"download_count": 283022, -"project": "pyshark" +"download_count": 424245, +"project": "dodgy" }, { -"download_count": 282829, -"project": "django-guardian" +"download_count": 423379, +"project": "django-modeltranslation" }, { -"download_count": 282799, -"project": "flask-executor" +"download_count": 423204, +"project": "async-modbus" }, { -"download_count": 282642, -"project": "opentelemetry-instrumentation-cassandra" +"download_count": 423035, +"project": "python-logstash" }, { -"download_count": 282454, -"project": "murmurhash2" +"download_count": 423030, +"project": "pyagrum-nightly" }, { -"download_count": 282434, -"project": "recurring-ical-events" +"download_count": 422793, +"project": "localstack-client" }, { -"download_count": 282375, -"project": "robotframework-assertion-engine" +"download_count": 421974, +"project": "hurry-filesize" }, { -"download_count": 282222, -"project": "jieba3k" +"download_count": 421762, +"project": "pyqrcode" }, { -"download_count": 282022, -"project": "musdb" +"download_count": 421661, +"project": "attr" }, { -"download_count": 281937, -"project": "jsonseq" +"download_count": 421512, +"project": "pytest-vcr" }, { -"download_count": 281922, -"project": "stempeg" +"download_count": 421157, +"project": "fredapi" }, { -"download_count": 281688, -"project": "virtme-ng" +"download_count": 421124, +"project": "django-localflavor" }, { -"download_count": 281633, -"project": "google-cloud-scheduler" +"download_count": 420885, +"project": "python-json-config" }, { -"download_count": 281531, -"project": "pytest-variables" +"download_count": 420876, +"project": "python-lsp-server" }, { -"download_count": 281424, -"project": "single-source" +"download_count": 420858, +"project": "result" }, { -"download_count": 281309, -"project": "torch-complex" +"download_count": 420428, +"project": "backports-abc" }, { -"download_count": 281249, -"project": "museval" +"download_count": 420191, +"project": "atomicwrites-homeassistant" }, { -"download_count": 281075, -"project": "opentelemetry-instrumentation-remoulade" +"download_count": 419999, +"project": "django-two-factor-auth" }, { -"download_count": 280987, -"project": "warcio" +"download_count": 419854, +"project": "clvm-tools-rs" }, { -"download_count": 280799, -"project": "serpent" +"download_count": 419328, +"project": "autobean-refactor" }, { -"download_count": 280681, -"project": "google-cloud-documentai" +"download_count": 418929, +"project": "appengine-python-standard" }, { -"download_count": 280525, -"project": "huaweicloudsdkdns" +"download_count": 418767, +"project": "numpy-quaternion" }, { -"download_count": 280282, -"project": "transformations" +"download_count": 418743, +"project": "ldapdomaindump" }, { -"download_count": 280200, -"project": "ariadne" +"download_count": 418732, +"project": "yalafi" }, { -"download_count": 280069, -"project": "kafka-python-ng" +"download_count": 418490, +"project": "uptime-kuma-api" }, { -"download_count": 279616, -"project": "robotframework-appiumlibrary" +"download_count": 418017, +"project": "python-swiftclient" }, { -"download_count": 279550, -"project": "path-dict" +"download_count": 417896, +"project": "selinux" }, { -"download_count": 279481, -"project": "prefect-sqlalchemy" +"download_count": 417746, +"project": "prospector" }, { -"download_count": 279461, -"project": "oic" +"download_count": 417725, +"project": "autogluon-core" }, { -"download_count": 279232, -"project": "grandalf" +"download_count": 417710, +"project": "google-play-scraper" }, { -"download_count": 279227, -"project": "h2o" +"download_count": 417395, +"project": "python-calamine" }, { -"download_count": 279045, -"project": "tox-ansible" +"download_count": 417221, +"project": "dvc-render" }, { -"download_count": 278463, -"project": "intel-openmp" +"download_count": 416605, +"project": "segno" }, { -"download_count": 278405, -"project": "cloudinary" +"download_count": 416521, +"project": "types-docopt" }, { -"download_count": 278271, -"project": "cnvrg" +"download_count": 416154, +"project": "tox-ansible" }, { -"download_count": 278211, -"project": "compressed-rtf" +"download_count": 416098, +"project": "b2sdk" }, { -"download_count": 278156, -"project": "pyiso8583" +"download_count": 415962, +"project": "stamina" }, { -"download_count": 278097, -"project": "empy" +"download_count": 415835, +"project": "djangorestframework-api-key" }, { -"download_count": 277809, -"project": "flask-apscheduler" +"download_count": 415517, +"project": "googletrans" }, { -"download_count": 277667, -"project": "quadprog" +"download_count": 415508, +"project": "autogluon-tabular" }, { -"download_count": 277604, -"project": "pyinstaller-versionfile" +"download_count": 415503, +"project": "gspread-formatting" }, { -"download_count": 277600, -"project": "gitlint" +"download_count": 415182, +"project": "celluloid" }, { -"download_count": 277537, -"project": "mozilla-django-oidc" +"download_count": 414941, +"project": "lsprotocol" }, { -"download_count": 277166, -"project": "shopifyapi" +"download_count": 414714, +"project": "u-msgpack-python" }, { -"download_count": 277058, -"project": "azure-communication-email" +"download_count": 414265, +"project": "sphinx-toolbox" }, { -"download_count": 276812, -"project": "python-schema-registry-client" +"download_count": 414243, +"project": "apache-airflow-client" }, { -"download_count": 276623, -"project": "opacus" +"download_count": 413471, +"project": "x-wr-timezone" }, { -"download_count": 276515, -"project": "gitlint-core" +"download_count": 413295, +"project": "appier" }, { -"download_count": 276337, -"project": "discord-webhook" +"download_count": 413255, +"project": "fairscale" }, { -"download_count": 276229, -"project": "tensorflowjs" +"download_count": 413229, +"project": "petname" }, { -"download_count": 276203, -"project": "lazy" +"download_count": 413124, +"project": "pem" }, { -"download_count": 276101, -"project": "pytest-datadir" +"download_count": 413015, +"project": "spandrel-extra-arches" }, { -"download_count": 276011, -"project": "ldaptor" +"download_count": 412734, +"project": "certbot" }, { -"download_count": 275367, -"project": "pythran" +"download_count": 412642, +"project": "halp" }, { -"download_count": 275229, -"project": "pyxirr" +"download_count": 412425, +"project": "azure-mgmt-costmanagement" }, { -"download_count": 275217, -"project": "pyicu-binary" +"download_count": 412274, +"project": "chromedriver-autoinstaller" }, { -"download_count": 275078, -"project": "elasticsearch6" +"download_count": 411471, +"project": "bravado-core" }, { -"download_count": 274938, -"project": "snakeviz" +"download_count": 411276, +"project": "burger" }, { -"download_count": 274906, -"project": "aws-cdk-aws-kms" +"download_count": 411154, +"project": "pykube" }, { -"download_count": 274652, -"project": "vispy" +"download_count": 411118, +"project": "nmslib" }, { -"download_count": 274495, -"project": "tm1py" +"download_count": 410621, +"project": "pymunk" }, { -"download_count": 274427, -"project": "asyncio-throttle" +"download_count": 410605, +"project": "ansible-runner" }, { -"download_count": 274363, -"project": "slicerator" +"download_count": 410474, +"project": "dvc-objects" }, { -"download_count": 274186, -"project": "viztracer" +"download_count": 410300, +"project": "types-aiobotocore-dataexchange" }, { -"download_count": 274117, -"project": "docker-image-py" +"download_count": 410007, +"project": "testing-postgresql" }, { -"download_count": 273756, -"project": "dockerfile" +"download_count": 409581, +"project": "missingno" }, { -"download_count": 273502, -"project": "asyncstdlib" +"download_count": 409470, +"project": "fastdiff" }, { -"download_count": 273275, -"project": "mplfinance" +"download_count": 409293, +"project": "wincertstore" }, { -"download_count": 273252, -"project": "mdxpy" +"download_count": 409048, +"project": "codeguru-profiler-agent" }, { -"download_count": 273135, -"project": "google-cloud-private-ca" +"download_count": 408531, +"project": "nvidia-nvcomp-cu12" }, { -"download_count": 273000, -"project": "dvc-render" +"download_count": 408519, +"project": "ansible-base" }, { -"download_count": 272974, -"project": "pytest-watch" +"download_count": 408432, +"project": "databricks-pypi-extras" }, { -"download_count": 272868, -"project": "mkdocs-awesome-pages-plugin" +"download_count": 408359, +"project": "petl" }, { -"download_count": 272819, -"project": "pyqtwebengine-qt5" +"download_count": 408304, +"project": "pan-python" }, { -"download_count": 272800, -"project": "pystac" +"download_count": 408088, +"project": "ordereddict" }, { -"download_count": 272704, -"project": "pydotplus" +"download_count": 408087, +"project": "plum-dispatch" }, { -"download_count": 272650, -"project": "plotly-express" +"download_count": 408024, +"project": "logfury" }, { -"download_count": 272270, -"project": "moepy" +"download_count": 407831, +"project": "catkin-pkg" }, { -"download_count": 272190, -"project": "pymacaroons" +"download_count": 407361, +"project": "marshmallow-jsonapi" }, { -"download_count": 272079, -"project": "draftjs-exporter" +"download_count": 407150, +"project": "atomlite" }, { -"download_count": 271909, -"project": "prefixed" +"download_count": 407085, +"project": "pdfrw" }, { -"download_count": 271887, -"project": "fuzzyset2" +"download_count": 407002, +"project": "stk" }, { -"download_count": 271859, -"project": "pytest-timestamper" +"download_count": 406825, +"project": "sqltrie" }, { -"download_count": 271681, -"project": "tf2onnx" +"download_count": 406437, +"project": "click-configfile" }, { -"download_count": 271547, -"project": "sagemaker-data-insights" +"download_count": 406362, +"project": "cmakelang" }, { -"download_count": 271356, -"project": "myst-nb" +"download_count": 406092, +"project": "pyexcel" }, { -"download_count": 271321, -"project": "databricks-utils" +"download_count": 405984, +"project": "sphinx-gallery" }, { -"download_count": 270956, -"project": "chargebee" +"download_count": 405856, +"project": "python-novaclient" }, { -"download_count": 270809, -"project": "pyocd" +"download_count": 405839, +"project": "unstructured-pytesseract" }, { -"download_count": 270212, -"project": "django-tinymce" +"download_count": 405520, +"project": "robotframework-pabot" }, { -"download_count": 270148, -"project": "clearml" +"download_count": 405467, +"project": "ropwr" }, { -"download_count": 270055, -"project": "hydra-colorlog" +"download_count": 405305, +"project": "faiss-gpu" }, { -"download_count": 270005, -"project": "reverse-geocoder" +"download_count": 405218, +"project": "wslwinreg" }, { -"download_count": 269989, -"project": "jupyter-contrib-core" +"download_count": 405216, +"project": "pysqlite3-binary" }, { -"download_count": 269910, -"project": "mypy-boto3-route53" +"download_count": 405043, +"project": "platformio" }, { -"download_count": 269867, -"project": "imap-tools" +"download_count": 404201, +"project": "spindry" }, { -"download_count": 269840, -"project": "apache-airflow-providers-apache-hive" +"download_count": 404143, +"project": "pyaudio" }, { -"download_count": 269639, -"project": "cssbeautifier" +"download_count": 404053, +"project": "types-python-jose" }, { -"download_count": 269590, -"project": "wikipedia" +"download_count": 403978, +"project": "mchammer" }, { -"download_count": 269445, -"project": "python3-xlib" +"download_count": 403909, +"project": "rmsd" }, { -"download_count": 269313, -"project": "couchbase" +"download_count": 403843, +"project": "espaloma-charge" }, { -"download_count": 269201, -"project": "pypd" +"download_count": 403783, +"project": "typing-validation" }, { -"download_count": 269141, -"project": "django-auditlog" +"download_count": 403543, +"project": "lazy-imports" }, { -"download_count": 268723, -"project": "h3ronpy" +"download_count": 403522, +"project": "jupyter-highlight-selected-word" }, { -"download_count": 268707, -"project": "aws-cdk-cx-api" +"download_count": 403314, +"project": "azureml-train-automl-client" }, { -"download_count": 268342, -"project": "types-aiobotocore-sqs" +"download_count": 403095, +"project": "tach" }, { -"download_count": 268337, -"project": "telebot" +"download_count": 402748, +"project": "cron-converter" }, { -"download_count": 267947, -"project": "intervals" +"download_count": 402747, +"project": "imap-tools" }, { -"download_count": 267857, -"project": "ocspbuilder" +"download_count": 402724, +"project": "stko" }, { -"download_count": 267809, -"project": "scrubadub" +"download_count": 402632, +"project": "pystrict" }, { -"download_count": 267618, -"project": "entrypoint2" +"download_count": 402510, +"project": "shellcheck-py" }, { -"download_count": 267589, -"project": "envparse" +"download_count": 402510, +"project": "intuit-oauth" }, { -"download_count": 267412, -"project": "event-model" +"download_count": 402412, +"project": "torchbiggraph" }, { -"download_count": 267378, -"project": "puremagic" +"download_count": 402175, +"project": "always-updates" }, { -"download_count": 267143, -"project": "prov" +"download_count": 401858, +"project": "django-rest-enumfield" }, { -"download_count": 267012, -"project": "joblibspark" +"download_count": 401759, +"project": "opentelemetry-instrumentation-kafka-python" }, { -"download_count": 266803, -"project": "sspilib" +"download_count": 401751, +"project": "segyio" }, { -"download_count": 266619, -"project": "wmill" +"download_count": 401100, +"project": "rdt" }, { -"download_count": 266550, -"project": "types-aiobotocore-dynamodb" +"download_count": 401023, +"project": "pytools" }, { -"download_count": 266542, -"project": "latex2mathml" +"download_count": 400820, +"project": "tsdownsample" }, { -"download_count": 266514, -"project": "cloudformation-cli-python-lib" +"download_count": 400754, +"project": "python-liquid" }, { -"download_count": 266500, -"project": "aws-msk-iam-sasl-signer-python" +"download_count": 400706, +"project": "email-reply-parser" }, { -"download_count": 266214, -"project": "secure-smtplib" +"download_count": 400171, +"project": "aiopg" }, { -"download_count": 266161, -"project": "pycollada" +"download_count": 399811, +"project": "arthurai" }, { -"download_count": 266139, -"project": "pymarshaler" +"download_count": 399802, +"project": "pyscaffold" }, { -"download_count": 266026, -"project": "dicomweb-client" +"download_count": 399788, +"project": "prettyprinter" }, { -"download_count": 265972, -"project": "x-wr-timezone" +"download_count": 399656, +"project": "lucopy" }, { -"download_count": 265968, -"project": "currencyconverter" +"download_count": 399565, +"project": "django-tables2" }, { -"download_count": 265927, -"project": "flask-assets" +"download_count": 399415, +"project": "snapshottest" }, { -"download_count": 265895, -"project": "varname" +"download_count": 399070, +"project": "oslo-log" }, { -"download_count": 265686, -"project": "python-subunit" +"download_count": 399028, +"project": "autogluon-features" }, { -"download_count": 265632, -"project": "curatorbin" +"download_count": 398610, +"project": "flask-authz" }, { -"download_count": 265621, -"project": "sqlalchemy-json" +"download_count": 398575, +"project": "opentelemetry-propagator-gcp" }, { -"download_count": 265572, -"project": "honeybee-energy" +"download_count": 398539, +"project": "types-aiobotocore-ec2" }, { -"download_count": 265571, -"project": "dotnetcore2" +"download_count": 398264, +"project": "mypy-boto3-cloudfront" }, { -"download_count": 265494, -"project": "tabcmd" +"download_count": 398154, +"project": "langid" }, { -"download_count": 265363, -"project": "cookies" +"download_count": 398113, +"project": "foca" }, { -"download_count": 265336, -"project": "ocspresponder" +"download_count": 397877, +"project": "brickflows" }, { -"download_count": 265208, -"project": "funcparserlib" +"download_count": 397791, +"project": "cartopy" }, { -"download_count": 265203, -"project": "click-configfile" +"download_count": 397585, +"project": "click-config-file" }, { -"download_count": 265017, -"project": "pyvista" +"download_count": 397338, +"project": "pyfunceble-dev" }, { -"download_count": 264830, -"project": "jupyter-contrib-nbextensions" +"download_count": 397303, +"project": "python-amazon-sp-api" }, { -"download_count": 264578, -"project": "pyexcel" +"download_count": 397007, +"project": "drf-spectacular-sidecar" }, { -"download_count": 264449, -"project": "awscli-local" +"download_count": 396640, +"project": "autogluon" }, { -"download_count": 264421, -"project": "noise" +"download_count": 396066, +"project": "scmrepo" }, { -"download_count": 264411, -"project": "google-cloud-artifact-registry" +"download_count": 396016, +"project": "wikipedia" }, { -"download_count": 264248, -"project": "testing-postgresql" +"download_count": 395616, +"project": "julius" }, { -"download_count": 264026, -"project": "pylance" +"download_count": 395585, +"project": "types-ipaddress" }, { -"download_count": 263805, -"project": "burr" +"download_count": 395560, +"project": "oslo-context" }, { -"download_count": 263664, -"project": "reedsolo" +"download_count": 395314, +"project": "google-search-results" }, { -"download_count": 263657, -"project": "haystack-ai" +"download_count": 395243, +"project": "kopf" }, { -"download_count": 263617, -"project": "evergreen-lint" +"download_count": 395232, +"project": "qcelemental" }, { -"download_count": 263539, -"project": "gspread-pandas" +"download_count": 395143, +"project": "blackduck" }, { -"download_count": 263137, -"project": "higher" +"download_count": 394942, +"project": "psycopg-c" }, { -"download_count": 262968, -"project": "flogging" +"download_count": 394098, +"project": "junos-eznc" }, { -"download_count": 262944, -"project": "apache-airflow-providers-elasticsearch" +"download_count": 393914, +"project": "lakefs-sdk" }, { -"download_count": 262870, -"project": "ipaddr" +"download_count": 393553, +"project": "pycaret" }, { -"download_count": 262666, -"project": "eccodes" +"download_count": 393449, +"project": "dvc-studio-client" }, { -"download_count": 262633, -"project": "coolprop" +"download_count": 393353, +"project": "google-cloud-scheduler" }, { -"download_count": 262578, -"project": "varint" +"download_count": 393285, +"project": "solders" }, { -"download_count": 262551, -"project": "sphinx-autoapi" +"download_count": 392892, +"project": "flake8-variables-names" }, { -"download_count": 262526, -"project": "napari-plugin-engine" +"download_count": 392634, +"project": "celery-redbeat" }, { -"download_count": 262466, -"project": "esp-idf-kconfig" +"download_count": 392478, +"project": "awkward0" }, { -"download_count": 262174, -"project": "proxy-protocol" +"download_count": 392309, +"project": "mkdocs-awesome-pages-plugin" }, { -"download_count": 262155, -"project": "edx-opaque-keys" +"download_count": 392197, +"project": "yara-python" }, { -"download_count": 262150, -"project": "databind" +"download_count": 392091, +"project": "jupyter-nbextensions-configurator" }, { -"download_count": 262117, -"project": "dodgy" +"download_count": 392082, +"project": "py-range-parse" }, { -"download_count": 262005, -"project": "mmhash3" +"download_count": 391884, +"project": "george" }, { -"download_count": 261962, -"project": "gpytorch" +"download_count": 391241, +"project": "uproot3" }, { -"download_count": 261951, -"project": "setuptools-download" +"download_count": 391044, +"project": "uproot3-methods" }, { -"download_count": 261950, -"project": "arthurai" +"download_count": 390906, +"project": "pyjnius" }, { -"download_count": 261947, -"project": "dagster-pandas" +"download_count": 390873, +"project": "progressbar" }, { -"download_count": 261588, -"project": "ffmpeg" +"download_count": 390478, +"project": "pylint-pydantic" }, { -"download_count": 261554, -"project": "dall-e" +"download_count": 390454, +"project": "pythran" }, { -"download_count": 261499, -"project": "dagster-cloud-cli" +"download_count": 390339, +"project": "pytest-subprocess" }, { -"download_count": 261460, -"project": "judo" +"download_count": 390309, +"project": "autodoc-pydantic" }, { -"download_count": 261443, -"project": "fragile" +"download_count": 389844, +"project": "tslearn" }, { -"download_count": 261213, -"project": "urlextract" +"download_count": 389580, +"project": "distance" }, { -"download_count": 260871, -"project": "nncf" +"download_count": 389399, +"project": "pyobjc-core" }, { -"download_count": 260842, -"project": "deap" +"download_count": 389159, +"project": "cf-xarray" }, { -"download_count": 260824, -"project": "aws-cdk-aws-lambda" +"download_count": 388897, +"project": "pygls" }, { -"download_count": 260665, -"project": "getmac" +"download_count": 388521, +"project": "mypy-boto3-cloudtrail" }, { -"download_count": 260612, -"project": "rq-dashboard" +"download_count": 388172, +"project": "azureml-pipeline-steps" }, { -"download_count": 260594, -"project": "pymc" +"download_count": 387871, +"project": "dict2css" }, { -"download_count": 260190, -"project": "ceja" +"download_count": 387742, +"project": "nvidia-cuda-nvcc-cu12" }, { -"download_count": 259991, -"project": "styleframe" +"download_count": 387229, +"project": "sphinx-jinja2-compat" }, { -"download_count": 259983, -"project": "py-grpc-prometheus" +"download_count": 387108, +"project": "moderngl" }, { -"download_count": 259765, -"project": "pdfrw" +"download_count": 386785, +"project": "plux" }, { -"download_count": 259723, -"project": "spacy-transformers" +"download_count": 386700, +"project": "pretty-midi" }, { -"download_count": 259576, -"project": "opentelemetry-exporter-jaeger-thrift" +"download_count": 386509, +"project": "mojimoji" }, { -"download_count": 259442, -"project": "aws-cdk-aws-s3" +"download_count": 386205, +"project": "usd-core" }, { -"download_count": 259291, -"project": "mypy-boto3-sagemaker-runtime" +"download_count": 386191, +"project": "paramiko-expect" }, { -"download_count": 259088, -"project": "mistralai" +"download_count": 386006, +"project": "django-auditlog" }, { -"download_count": 259071, -"project": "pycaret" +"download_count": 385906, +"project": "intel-openmp" }, { -"download_count": 258936, -"project": "tree-sitter-javascript" +"download_count": 385752, +"project": "mypy-boto3-route53domains" }, { -"download_count": 258925, -"project": "transforms3d" +"download_count": 385500, +"project": "azureml-featurestore" }, { -"download_count": 258902, -"project": "adtk" +"download_count": 385498, +"project": "fast-curator" }, { -"download_count": 258808, -"project": "ptvsd" +"download_count": 385465, +"project": "pid" }, { -"download_count": 258705, -"project": "py-consul" +"download_count": 385261, +"project": "opentelemetry-instrumentation-pymysql" }, { -"download_count": 258373, -"project": "sanitize-filename" +"download_count": 384950, +"project": "roboflow" }, { -"download_count": 258304, -"project": "python-mimeparse" +"download_count": 384744, +"project": "types-aiobotocore-rds" }, { -"download_count": 258161, -"project": "pypsrp" +"download_count": 384475, +"project": "lomond" }, { -"download_count": 257805, -"project": "azure-ml-component" +"download_count": 384414, +"project": "flask-dance" }, { -"download_count": 257715, -"project": "jupyter-cache" +"download_count": 384403, +"project": "pyathenajdbc" }, { -"download_count": 257685, -"project": "json-rpc" +"download_count": 384242, +"project": "gfpgan" }, { -"download_count": 257430, -"project": "pylint-celery" +"download_count": 384225, +"project": "pandarallel" }, { -"download_count": 257389, -"project": "pyactiveresource" +"download_count": 384169, +"project": "sqlalchemy-trino" }, { -"download_count": 257349, -"project": "qpd" +"download_count": 383985, +"project": "databind" }, { -"download_count": 257272, -"project": "kaldi-io" +"download_count": 383906, +"project": "selectolax" +}, +{ +"download_count": 383859, +"project": "sphinx-reredirects" }, { -"download_count": 257210, +"download_count": 383646, "project": "clint" }, { -"download_count": 256915, -"project": "marshmallow3-annotations" +"download_count": 383619, +"project": "hidapi" }, { -"download_count": 256903, -"project": "mkdocs-include-markdown-plugin" +"download_count": 383612, +"project": "mypy-boto3-autoscaling" }, { -"download_count": 256899, -"project": "redis-sentinel-url" +"download_count": 383159, +"project": "pycarlo" }, { -"download_count": 256897, -"project": "dagster-pyspark" +"download_count": 382975, +"project": "flexmock" }, { -"download_count": 256644, -"project": "ibm-watson-machine-learning" +"download_count": 382863, +"project": "nvidia-ml-py3" }, { -"download_count": 256496, -"project": "ladybug-rhino" +"download_count": 382755, +"project": "ipython-autotime" }, { -"download_count": 256473, -"project": "tensorboard-plugin-profile" +"download_count": 382405, +"project": "vprof" }, { -"download_count": 256341, -"project": "lancedb" +"download_count": 382373, +"project": "img2pdf" }, { -"download_count": 256239, -"project": "r2pipe" +"download_count": 382361, +"project": "monkeytype" }, { -"download_count": 256190, -"project": "pynose" +"download_count": 381852, +"project": "pyfarmhash" }, { -"download_count": 256180, -"project": "langchain-huggingface" +"download_count": 381633, +"project": "markyp" }, { -"download_count": 256173, -"project": "insightface" +"download_count": 381478, +"project": "markyp-html" }, { -"download_count": 256127, -"project": "django-constance" +"download_count": 381422, +"project": "pytest-memray" }, { -"download_count": 256064, -"project": "cpplint" +"download_count": 381352, +"project": "types-futures" }, { -"download_count": 255856, -"project": "func-args" +"download_count": 381207, +"project": "python-graphql-client" }, { -"download_count": 255553, -"project": "teamcity-messages" +"download_count": 381076, +"project": "flask-shell-ipython" }, { -"download_count": 255552, -"project": "pyemd" +"download_count": 380846, +"project": "cpymad" }, { -"download_count": 255178, -"project": "xlsx2csv" +"download_count": 380716, +"project": "allure-behave" }, { -"download_count": 255011, -"project": "cognitojwt" +"download_count": 379870, +"project": "pylightxl" }, { -"download_count": 254830, -"project": "rospkg" +"download_count": 379860, +"project": "dm-control" }, { -"download_count": 254807, -"project": "whichcraft" +"download_count": 379830, +"project": "mailjet-rest" }, { -"download_count": 254801, -"project": "apache-airflow-providers-sendgrid" +"download_count": 379759, +"project": "pyjks" }, { -"download_count": 254767, -"project": "sorl-thumbnail" +"download_count": 379677, +"project": "azureml-pipeline" }, { -"download_count": 254665, -"project": "paddleocr" +"download_count": 379647, +"project": "pqdm" }, { -"download_count": 254509, -"project": "pyinotify" +"download_count": 379371, +"project": "pyhdb" }, { -"download_count": 254340, -"project": "pyqrcode" +"download_count": 379179, +"project": "ipyanchorviz" }, { -"download_count": 254205, -"project": "prefect-shell" +"download_count": 379055, +"project": "aplr" }, { -"download_count": 254031, -"project": "onnxscript" +"download_count": 378900, +"project": "tensorflow-recommenders" }, { -"download_count": 253802, -"project": "scmrepo" +"download_count": 378865, +"project": "google-cloud-documentai" }, { -"download_count": 253798, -"project": "optbinning" +"download_count": 378819, +"project": "fastdownload" }, { -"download_count": 253113, -"project": "bindep" +"download_count": 378390, +"project": "django-colorfield" }, { -"download_count": 253111, -"project": "langchain-ibm" +"download_count": 378229, +"project": "flake8-pep3101" }, { -"download_count": 253066, -"project": "td-client" +"download_count": 378144, +"project": "smartystreets-python-sdk" }, { -"download_count": 252696, -"project": "bravado" +"download_count": 378027, +"project": "jsonpath" }, { -"download_count": 252672, -"project": "dagster-shell" +"download_count": 378010, +"project": "pgeocode" }, { -"download_count": 252511, -"project": "aiodataloader" +"download_count": 377963, +"project": "accumulation-tree" }, { -"download_count": 252427, -"project": "flit" +"download_count": 377940, +"project": "fastapi-slim" }, { -"download_count": 252382, -"project": "username" +"download_count": 377914, +"project": "pydotplus" }, { -"download_count": 252338, -"project": "aws-cdk-aws-cloudwatch" +"download_count": 377823, +"project": "array-api-compat" }, { -"download_count": 252100, -"project": "django-multiselectfield" +"download_count": 377503, +"project": "whoosh" }, { -"download_count": 252089, -"project": "google-cloud-dialogflow-cx" +"download_count": 377404, +"project": "spotipy" }, { -"download_count": 251976, -"project": "segtok" +"download_count": 377267, +"project": "pyvalid" }, { -"download_count": 251957, -"project": "rio-cogeo" +"download_count": 376983, +"project": "cloudsmith-api" }, { -"download_count": 251483, -"project": "apiclient" +"download_count": 376918, +"project": "pdfminer" }, { -"download_count": 251179, -"project": "krb5" +"download_count": 376694, +"project": "flake8-annotations" }, { -"download_count": 250923, -"project": "inference-schema" +"download_count": 376520, +"project": "django-mysql" }, { -"download_count": 250790, -"project": "onnxmltools" +"download_count": 376349, +"project": "authcaptureproxy" }, { -"download_count": 250632, -"project": "ccard" +"download_count": 376222, +"project": "usearch" }, { -"download_count": 250586, -"project": "jsonnet" +"download_count": 376217, +"project": "reportportal-client" }, { -"download_count": 250473, -"project": "sparkaid" +"download_count": 375301, +"project": "check-manifest" }, { -"download_count": 250327, -"project": "django-fsm" +"download_count": 375237, +"project": "mypy-boto3-opensearch" }, { -"download_count": 250130, -"project": "beautifultable" +"download_count": 374764, +"project": "json-rpc" }, { -"download_count": 250047, -"project": "types-tensorflow" +"download_count": 374403, +"project": "awsiotsdk" }, { -"download_count": 249971, -"project": "link" +"download_count": 374049, +"project": "pluralizer" }, { -"download_count": 249839, -"project": "libarchive-c" +"download_count": 373807, +"project": "fixit" }, { -"download_count": 249757, -"project": "google-cloud-recaptcha-enterprise" +"download_count": 373527, +"project": "curio" }, { -"download_count": 249614, -"project": "mkl" +"download_count": 373445, +"project": "great-expectations-experimental" }, { -"download_count": 249421, -"project": "robotframework-retryfailed" +"download_count": 373367, +"project": "wpilib" }, { -"download_count": 249391, -"project": "mdutils" +"download_count": 372871, +"project": "mypy-boto3-textract" }, { -"download_count": 249386, -"project": "statsig" +"download_count": 372870, +"project": "phonemizer" }, { -"download_count": 249257, -"project": "python-dynamodb-lock" +"download_count": 372621, +"project": "delegator" }, { -"download_count": 249250, -"project": "pysqlite3-binary" +"download_count": 372600, +"project": "apache-airflow-providers-elasticsearch" }, { -"download_count": 249173, -"project": "aws-cdk-region-info" +"download_count": 372255, +"project": "databricks-feature-engineering" }, { -"download_count": 249075, -"project": "wtforms-components" +"download_count": 372248, +"project": "osmium" }, { -"download_count": 249046, -"project": "elasticquery" +"download_count": 372021, +"project": "pinecone" }, { -"download_count": 249037, -"project": "kopf" +"download_count": 371955, +"project": "testresources" }, { -"download_count": 248983, -"project": "jupyter-server-proxy" +"download_count": 371928, +"project": "giving" }, { -"download_count": 248946, -"project": "aws-cdk-aws-events" +"download_count": 371888, +"project": "pyvista" }, { -"download_count": 248938, -"project": "portion" +"download_count": 371869, +"project": "tf2onnx" }, { -"download_count": 248914, -"project": "pwlf" +"download_count": 371849, +"project": "tika" }, { -"download_count": 248775, -"project": "pid" +"download_count": 371496, +"project": "mechanicalsoup" }, { -"download_count": 248724, -"project": "pytest-pylint" +"download_count": 371137, +"project": "unicorn" }, { -"download_count": 248673, -"project": "drf-spectacular-sidecar" +"download_count": 370963, +"project": "pyntcore" }, { -"download_count": 248623, -"project": "enlighten" +"download_count": 370820, +"project": "chainer" }, { -"download_count": 248498, -"project": "aliyun-python-sdk-ecs" +"download_count": 370808, +"project": "sqlalchemy-json" }, { -"download_count": 248429, -"project": "littleutils" +"download_count": 370801, +"project": "flake8-deprecated" }, { -"download_count": 248418, -"project": "rdkit-pypi" +"download_count": 370654, +"project": "nose-parameterized" }, { -"download_count": 248406, -"project": "funasr" +"download_count": 370634, +"project": "android-backup" }, { -"download_count": 247907, -"project": "pyjwkest" +"download_count": 370628, +"project": "pigpio" }, { -"download_count": 247578, -"project": "hdrpy" +"download_count": 370409, +"project": "mock-alchemy" }, { -"download_count": 247511, -"project": "zigpy-zigate" +"download_count": 370401, +"project": "sphinx-notfound-page" }, { -"download_count": 247507, -"project": "flake8-string-format" +"download_count": 370252, +"project": "capsolver" }, { -"download_count": 247492, -"project": "cli-exit-tools" +"download_count": 370052, +"project": "unittest-data-provider" }, { -"download_count": 247470, -"project": "springserve" +"download_count": 369795, +"project": "pytrends" }, { -"download_count": 247356, -"project": "mitmproxy" +"download_count": 369776, +"project": "cloudwatch" }, { -"download_count": 247344, -"project": "unstructured-pytesseract" +"download_count": 369190, +"project": "feedfinder2" }, { -"download_count": 247172, -"project": "pypubsub" +"download_count": 369145, +"project": "codacy-coverage" }, { -"download_count": 247114, -"project": "pure-pcapy3" +"download_count": 369046, +"project": "oletools" }, { -"download_count": 247026, -"project": "opentelemetry-propagator-gcp" +"download_count": 369034, +"project": "langchain-groq" }, { -"download_count": 246990, -"project": "anndata" +"download_count": 368755, +"project": "kneed" }, { -"download_count": 246938, -"project": "markdown-to-json" +"download_count": 368736, +"project": "jieba3k" }, { -"download_count": 246880, -"project": "httpx-ws" +"download_count": 368724, +"project": "dewloosh-core" }, { -"download_count": 246812, -"project": "ph-units" +"download_count": 368469, +"project": "apiclient" }, { -"download_count": 246700, -"project": "flask-session2" +"download_count": 368318, +"project": "pymediainfo" }, { -"download_count": 246639, -"project": "oletools" +"download_count": 368211, +"project": "fugashi" }, { -"download_count": 246540, -"project": "timeago" +"download_count": 367459, +"project": "dewloosh-math" }, { -"download_count": 246530, -"project": "opencensus-proto" +"download_count": 367338, +"project": "fastapi-mail" }, { -"download_count": 246436, -"project": "dvc-data" +"download_count": 367303, +"project": "opentelemetry-instrumentation-openai" }, { -"download_count": 246136, -"project": "synapseml" +"download_count": 367283, +"project": "langchain-huggingface" }, { -"download_count": 246022, -"project": "numpy-groupies" +"download_count": 367193, +"project": "dewloosh-geom" }, { -"download_count": 245931, -"project": "pyicu" +"download_count": 367013, +"project": "grpcio-testing" }, { -"download_count": 245861, -"project": "pytorch-wpe" +"download_count": 367006, +"project": "ciscoconfparse" }, { -"download_count": 245730, -"project": "pyttsx3" +"download_count": 366860, +"project": "filecheck" }, { -"download_count": 245611, -"project": "gviz-api" +"download_count": 366739, +"project": "dewloosh" }, { -"download_count": 245394, -"project": "django-structlog" +"download_count": 366713, +"project": "timeago" }, { -"download_count": 245375, -"project": "whylogs" +"download_count": 366257, +"project": "taskgroup" }, { -"download_count": 245137, -"project": "rtoml" +"download_count": 365948, +"project": "logging" }, { -"download_count": 245115, -"project": "apache-airflow-providers-papermill" +"download_count": 365922, +"project": "pydomo" }, { -"download_count": 245086, -"project": "luqum" +"download_count": 365912, +"project": "robotpy-wpiutil" }, { -"download_count": 245054, -"project": "pinecone" +"download_count": 365702, +"project": "pyqtwebengine" }, { -"download_count": 245028, -"project": "sqlalchemy-databricks" +"download_count": 365651, +"project": "py-moneyed" }, { -"download_count": 244996, -"project": "feedgen" +"download_count": 365349, +"project": "apache-airflow-providers-apache-druid" }, { -"download_count": 244685, -"project": "lib-detect-testenv" +"download_count": 364995, +"project": "bootstrap-flask" }, { -"download_count": 244276, -"project": "keras-nightly" +"download_count": 364868, +"project": "yandex-query-client" }, { -"download_count": 244091, -"project": "filecheck" +"download_count": 364797, +"project": "libarchive-c" }, { -"download_count": 243545, -"project": "pytest-parametrization" +"download_count": 364743, +"project": "lameenc" }, { -"download_count": 243471, -"project": "pykml" +"download_count": 364725, +"project": "whylogs" }, { -"download_count": 243454, -"project": "git-python" +"download_count": 364601, +"project": "swiftsimio" }, { -"download_count": 243362, -"project": "flask-pymongo" +"download_count": 364525, +"project": "types-appdirs" }, { -"download_count": 243327, -"project": "pylogbeat" +"download_count": 363946, +"project": "pymeta3" }, { -"download_count": 243291, -"project": "ibm-secrets-manager-sdk" +"download_count": 363767, +"project": "robotpy-hal" }, { -"download_count": 243250, -"project": "pcodedmp" +"download_count": 363608, +"project": "pydeprecate" }, { -"download_count": 243247, -"project": "gdal" +"download_count": 363557, +"project": "ragged-buffer" }, { -"download_count": 242951, -"project": "virtualenvwrapper" +"download_count": 363339, +"project": "pyrr" }, { -"download_count": 242872, -"project": "times" +"download_count": 363216, +"project": "hass-client" }, { -"download_count": 242867, -"project": "pytest-celery" +"download_count": 363203, +"project": "aerospike" }, { -"download_count": 242859, -"project": "datarobot" +"download_count": 363126, +"project": "aws-assume-role-lib" }, { -"download_count": 242801, -"project": "pytest-spark" +"download_count": 362947, +"project": "docstring-parser-fork" }, { -"download_count": 242713, -"project": "unyt" +"download_count": 362840, +"project": "clickhouse-toolset" }, { -"download_count": 242634, -"project": "aiodogstatsd" +"download_count": 362679, +"project": "alembic-postgresql-enum" }, { -"download_count": 242588, -"project": "django-object-actions" +"download_count": 362637, +"project": "simplefix" }, { -"download_count": 242396, -"project": "sqlvalidator" +"download_count": 362320, +"project": "opentelemetry-instrumentation-elasticsearch" }, { -"download_count": 242339, -"project": "astronomer-providers" +"download_count": 362230, +"project": "velociraptor" }, { -"download_count": 242315, -"project": "youqu3" +"download_count": 362141, +"project": "crowdstrike-falconpy" }, { -"download_count": 242296, -"project": "pykmip" +"download_count": 361732, +"project": "py-backwards" }, { -"download_count": 242227, -"project": "pinotdb" +"download_count": 361725, +"project": "django-auth-ldap" }, { -"download_count": 242201, -"project": "dbt-duckdb" +"download_count": 361613, +"project": "pcodedmp" }, { -"download_count": 242198, -"project": "django-rq" +"download_count": 361569, +"project": "sip" }, { -"download_count": 241860, -"project": "dj-rest-auth" +"download_count": 361521, +"project": "pyicu-binary" }, { -"download_count": 241699, -"project": "treelite" +"download_count": 361450, +"project": "mmhash3" }, { -"download_count": 241653, -"project": "langchainhub" +"download_count": 361383, +"project": "py-backwards-astunparse" }, { -"download_count": 241540, -"project": "clickhouse-cityhash" +"download_count": 361342, +"project": "poetry-plugin-tweak-dependencies-version" }, { -"download_count": 241496, -"project": "yara-python" +"download_count": 361273, +"project": "python-interface" }, { -"download_count": 241398, -"project": "geohash2" +"download_count": 361256, +"project": "python-louvain" }, { -"download_count": 241245, -"project": "docrepr" +"download_count": 361009, +"project": "dlinfo" }, { -"download_count": 240999, -"project": "fastdownload" +"download_count": 360904, +"project": "mypy-boto3-elasticache" }, { -"download_count": 240947, -"project": "doc-warden" +"download_count": 360738, +"project": "fastapi-users" }, { -"download_count": 240871, -"project": "aws-cdk-aws-ssm" +"download_count": 360737, +"project": "typeshed-client" }, { -"download_count": 240748, -"project": "robotframework-excellib" +"download_count": 360542, +"project": "qulacs" }, { -"download_count": 240706, -"project": "shillelagh" +"download_count": 360516, +"project": "robotpy-wpimath" }, { -"download_count": 240654, -"project": "splink" +"download_count": 360430, +"project": "random-user-agent" }, { -"download_count": 240484, -"project": "inflector" +"download_count": 360215, +"project": "flask-sock" }, { -"download_count": 240407, -"project": "streamlit-aggrid" +"download_count": 360124, +"project": "types-aiobotocore-cloudformation" }, { -"download_count": 240081, -"project": "interpret-core" +"download_count": 359924, +"project": "onnxsim" }, { -"download_count": 240080, -"project": "kedro-datasets" +"download_count": 359908, +"project": "ytmusicapi" }, { -"download_count": 239311, -"project": "tensorflow-decision-forests" +"download_count": 359865, +"project": "reprint" }, { -"download_count": 239244, -"project": "aws-cdk-aws-logs" +"download_count": 359271, +"project": "azureml-sdk" }, { -"download_count": 239166, -"project": "python-tds" +"download_count": 359208, +"project": "urlextract" }, { -"download_count": 239127, -"project": "aws-cdk-aws-s3-assets" +"download_count": 359186, +"project": "visitor" }, { -"download_count": 239101, -"project": "apache-airflow-providers-trino" +"download_count": 359009, +"project": "django-nested-admin" }, { -"download_count": 238984, -"project": "tinsel" +"download_count": 358669, +"project": "mailchimp-marketing" }, { -"download_count": 238850, -"project": "djangorestframework-xml" +"download_count": 358367, +"project": "spotinst-agent" }, { -"download_count": 238849, -"project": "doc8" +"download_count": 358334, +"project": "grafanalib" }, { -"download_count": 238820, -"project": "pyaescrypt" +"download_count": 358294, +"project": "robotpy-wpinet" }, { -"download_count": 238650, -"project": "sphinxext-opengraph" +"download_count": 358280, +"project": "opentelemetry-instrumentation-mysql" }, { -"download_count": 238559, -"project": "pygdbmi" +"download_count": 358159, +"project": "dm-env" }, { -"download_count": 238292, -"project": "django-two-factor-auth" +"download_count": 357863, +"project": "domain2idna" }, { -"download_count": 238119, -"project": "utils" +"download_count": 357333, +"project": "dvc-task" }, { -"download_count": 238092, -"project": "stanza" +"download_count": 356522, +"project": "nutter" }, { -"download_count": 237892, -"project": "calver" +"download_count": 356442, +"project": "labmaze" }, { -"download_count": 237786, -"project": "pyrr" +"download_count": 356372, +"project": "tf-estimator-nightly" }, { -"download_count": 237775, -"project": "google-search-results" +"download_count": 356071, +"project": "fluids" }, { -"download_count": 237638, -"project": "sanic-ext" +"download_count": 355672, +"project": "vadersentiment" }, { -"download_count": 237587, -"project": "azureml-fsspec" +"download_count": 355296, +"project": "pymacaroons" }, { -"download_count": 237404, -"project": "keplergl" +"download_count": 355229, +"project": "tqdm-multiprocess" }, { -"download_count": 237332, -"project": "simplekml" +"download_count": 355091, +"project": "xxtea" }, { -"download_count": 237307, -"project": "mypy-boto3-config" +"download_count": 354827, +"project": "rdrobust" }, { -"download_count": 237194, -"project": "simple-azure-blob-downloader" +"download_count": 354445, +"project": "langchainhub" }, { -"download_count": 237107, -"project": "grafanalib" +"download_count": 354213, +"project": "pynrrd" }, { -"download_count": 237052, -"project": "django-elasticsearch-dsl" +"download_count": 354084, +"project": "kafka-python-ng" }, { -"download_count": 236991, -"project": "ovmsclient" +"download_count": 353754, +"project": "docarray" }, { -"download_count": 236970, -"project": "asyncmy" +"download_count": 353490, +"project": "simplejpeg" }, { -"download_count": 236941, -"project": "mmengine" +"download_count": 353423, +"project": "pyfume" }, { -"download_count": 236714, -"project": "model-index" +"download_count": 353409, +"project": "types-httplib2" }, { -"download_count": 236628, -"project": "openapi-codec" +"download_count": 353265, +"project": "pulp-glue" }, { -"download_count": 236625, -"project": "web-fragments" +"download_count": 353100, +"project": "multiaddr" }, { -"download_count": 236593, -"project": "cmsis-pack-manager" +"download_count": 352908, +"project": "everett" }, { -"download_count": 236563, -"project": "wtforms-alchemy" +"download_count": 352775, +"project": "py2md" }, { -"download_count": 236189, -"project": "tableschema" +"download_count": 351889, +"project": "sumy" }, { -"download_count": 236182, -"project": "haystack-experimental" +"download_count": 351767, +"project": "pytest-testmon" }, { -"download_count": 236153, -"project": "litestar" +"download_count": 351574, +"project": "cognitojwt" }, { -"download_count": 236130, -"project": "comet-ml" +"download_count": 351493, +"project": "plyfile" }, { -"download_count": 236048, -"project": "generalimport" +"download_count": 351263, +"project": "crontab" }, { -"download_count": 235891, -"project": "esptool" +"download_count": 351206, +"project": "agilicus" }, { -"download_count": 235782, -"project": "feather-format" +"download_count": 350231, +"project": "aws-cdk-core" }, { -"download_count": 235651, -"project": "django-templated-mail" +"download_count": 350024, +"project": "compressed-tensors" }, { -"download_count": 235640, -"project": "langchain-groq" +"download_count": 349788, +"project": "pyobjc-framework-cocoa" }, { -"download_count": 235592, -"project": "json-spec" +"download_count": 349628, +"project": "python-jsonschema-objects" }, { -"download_count": 235248, -"project": "requests-oauth" +"download_count": 349389, +"project": "g2p-en" }, { -"download_count": 235155, -"project": "cryptocode" +"download_count": 349361, +"project": "swig" }, { -"download_count": 235046, -"project": "pyte" +"download_count": 349157, +"project": "asammdf" }, { -"download_count": 235005, -"project": "macaroonbakery" +"download_count": 348855, +"project": "plantuml-markdown" }, { -"download_count": 234778, -"project": "2captcha-python" +"download_count": 348484, +"project": "dvc-http" }, { -"download_count": 234651, -"project": "flake8-rst-docstrings" +"download_count": 348462, +"project": "pystac" }, { -"download_count": 234550, -"project": "datumaro" +"download_count": 348281, +"project": "controlnet-aux" }, { -"download_count": 234382, -"project": "aws-cdk-aws-ecr" +"download_count": 348014, +"project": "opentelemetry-instrumentation-tornado" }, { -"download_count": 234332, -"project": "mohawk" +"download_count": 347992, +"project": "crochet" }, { -"download_count": 234312, -"project": "kmodes" +"download_count": 347516, +"project": "qiskit-aer" }, { -"download_count": 234238, -"project": "invisible-watermark" +"download_count": 347329, +"project": "compressed-rtf" }, { -"download_count": 234152, -"project": "pydantic-xml" +"download_count": 347298, +"project": "robotpy-cli" }, { -"download_count": 234032, -"project": "django-recaptcha" +"download_count": 347230, +"project": "vk-api" }, { -"download_count": 234030, -"project": "pandas-read-xml" +"download_count": 346855, +"project": "pydevd-pycharm" }, { -"download_count": 233921, -"project": "shellcheck-py" +"download_count": 346842, +"project": "types-regex" }, { -"download_count": 233796, -"project": "httpbin" +"download_count": 346592, +"project": "treelite" }, { -"download_count": 233634, -"project": "ip3country" +"download_count": 346258, +"project": "m2crypto" }, { -"download_count": 233558, -"project": "dbt-clickhouse" +"download_count": 346230, +"project": "fs-s3fs" }, { -"download_count": 233427, -"project": "pynrrd" +"download_count": 345735, +"project": "morecantile" }, { -"download_count": 233423, -"project": "amundsen-common" +"download_count": 345630, +"project": "kerberos" }, { -"download_count": 233358, -"project": "aws-cdk-aws-secretsmanager" +"download_count": 345587, +"project": "apache-airflow-providers-trino" }, { -"download_count": 233259, -"project": "dagster-spark" +"download_count": 345504, +"project": "workos" }, { -"download_count": 233005, -"project": "stanfordcorenlp" +"download_count": 345485, +"project": "glcontext" }, { -"download_count": 233002, -"project": "types-aiobotocore-ec2" +"download_count": 345441, +"project": "chiapos" }, { -"download_count": 232901, -"project": "qiskit-aer" +"download_count": 345399, +"project": "elasticmock" }, { -"download_count": 232792, -"project": "pytest-reportportal" +"download_count": 345375, +"project": "djangorestframework-csv" }, { -"download_count": 232775, -"project": "pact-python" +"download_count": 345372, +"project": "llama-index-llms-azure-openai" }, { -"download_count": 232640, -"project": "drf-jwt" +"download_count": 345235, +"project": "flake8-html" }, { -"download_count": 232516, -"project": "stumpy" +"download_count": 345042, +"project": "pyspark-pandas" }, { -"download_count": 232484, -"project": "flask-apispec" +"download_count": 344958, +"project": "mypy-boto3-redshift" }, { -"download_count": 232417, -"project": "django-configurations" +"download_count": 344814, +"project": "asn1" }, { -"download_count": 232409, -"project": "glfw" +"download_count": 344807, +"project": "fernet" }, { -"download_count": 232339, -"project": "cons" +"download_count": 344732, +"project": "jupyterhub" }, { -"download_count": 232239, -"project": "twofish" +"download_count": 344649, +"project": "aws-cdk-asset-node-proxy-agent-v5" }, { -"download_count": 232234, -"project": "etuples" +"download_count": 344531, +"project": "argilla" }, { -"download_count": 232059, -"project": "sagemaker-datawrangler" +"download_count": 344492, +"project": "pycnite" }, { -"download_count": 232004, -"project": "titlecase" +"download_count": 344427, +"project": "google-api-python-client-stubs" }, { -"download_count": 231933, -"project": "logical-unification" +"download_count": 344176, +"project": "humanreadable" }, { -"download_count": 231825, -"project": "opentelemetry-semantic-conventions-ai" +"download_count": 343996, +"project": "apache-airflow-providers-sendgrid" }, { -"download_count": 231603, -"project": "rauth" +"download_count": 343805, +"project": "anndata" }, { -"download_count": 231579, -"project": "pytest-docker" +"download_count": 342959, +"project": "rake-nltk" }, { -"download_count": 231555, -"project": "types-flask-cors" +"download_count": 342810, +"project": "sphinx-markdown-builder" }, { -"download_count": 231452, -"project": "gitignore-parser" +"download_count": 342753, +"project": "setoptconf-tmp" }, { -"download_count": 231268, -"project": "youqu" +"download_count": 342399, +"project": "2captcha-python" }, { -"download_count": 230853, -"project": "opentelemetry-instrumentation-openai" +"download_count": 342313, +"project": "model-index" }, { -"download_count": 230624, -"project": "anyscale" +"download_count": 341683, +"project": "pycollada" }, { -"download_count": 230573, -"project": "pickle5" +"download_count": 341583, +"project": "django-object-actions" }, { -"download_count": 230558, -"project": "python-status" +"download_count": 341447, +"project": "lazy" }, { -"download_count": 230521, -"project": "redis-om" +"download_count": 340861, +"project": "strsimpy" }, { -"download_count": 230506, -"project": "lsprotocol" +"download_count": 340854, +"project": "django-guardian" }, { -"download_count": 230339, -"project": "stopit" +"download_count": 340720, +"project": "mypy-boto3-codepipeline" }, { -"download_count": 230238, -"project": "minikanren" +"download_count": 340687, +"project": "meteostat" }, { -"download_count": 230014, -"project": "apache-airflow-providers-apache-druid" +"download_count": 340533, +"project": "statistics" }, { -"download_count": 230005, -"project": "onepasswordconnectsdk" +"download_count": 340244, +"project": "wechaty" }, { -"download_count": 229918, -"project": "stackprinter" +"download_count": 340070, +"project": "powerlaw" }, { -"download_count": 229849, -"project": "pyvisa-py" +"download_count": 339752, +"project": "oci-cli" }, { -"download_count": 229827, -"project": "wasmer" +"download_count": 339732, +"project": "mpld3" }, { -"download_count": 229751, -"project": "aws-cdk-aws-applicationautoscaling" +"download_count": 339627, +"project": "compose" }, { -"download_count": 229735, -"project": "yoyo-migrations" +"download_count": 339610, +"project": "evdev" }, { -"download_count": 229613, -"project": "dataproc-spark-connect" +"download_count": 339585, +"project": "discord-webhook" }, { -"download_count": 229277, -"project": "mariadb" +"download_count": 339374, +"project": "django-user-agents" }, { -"download_count": 229161, -"project": "django-money" +"download_count": 339318, +"project": "apache-airflow-providers-jenkins" }, { -"download_count": 229037, -"project": "nameof" +"download_count": 338864, +"project": "draftjs-exporter" }, { -"download_count": 229019, -"project": "detect-delimiter" +"download_count": 338831, +"project": "h3-pyspark" }, { -"download_count": 228760, -"project": "inotify" +"download_count": 338593, +"project": "robotframework-jsonlibrary" }, { -"download_count": 228719, -"project": "get-reader" +"download_count": 338343, +"project": "td-client" }, { -"download_count": 228711, -"project": "pytest-retry" +"download_count": 338238, +"project": "jinja2-ansible-filters" }, { -"download_count": 228684, -"project": "blosc" +"download_count": 338094, +"project": "pydrive" }, { -"download_count": 228678, -"project": "trustme" +"download_count": 337937, +"project": "openapi3" }, { -"download_count": 228647, -"project": "pulumi-command" +"download_count": 337833, +"project": "pulp-cli" }, { -"download_count": 228587, -"project": "pyaml-env" +"download_count": 337754, +"project": "chia-rs" }, { -"download_count": 228558, -"project": "pycobertura" +"download_count": 337610, +"project": "drf-extensions" }, { -"download_count": 228466, -"project": "m3u8" +"download_count": 337600, +"project": "dagster-pyspark" }, { -"download_count": 228395, -"project": "tortoise-orm" +"download_count": 337464, +"project": "aws-cdk-cx-api" }, { -"download_count": 228318, -"project": "pan-python" +"download_count": 337440, +"project": "wechaty-puppet" }, { -"download_count": 228271, -"project": "slugify" +"download_count": 337061, +"project": "repoze-who" }, { -"download_count": 228206, -"project": "amundsen-rds" +"download_count": 337061, +"project": "sql-formatter" }, { -"download_count": 228166, -"project": "django-allow-cidr" +"download_count": 336981, +"project": "delayed-assert" }, { -"download_count": 228120, -"project": "pytest-wake" +"download_count": 336600, +"project": "pylink-square" }, { -"download_count": 228000, -"project": "openexr" +"download_count": 336390, +"project": "table-logger" }, { -"download_count": 227931, -"project": "pulumi-tls" +"download_count": 336294, +"project": "mendeleev" }, { -"download_count": 227913, -"project": "lifetimes" +"download_count": 336032, +"project": "poyo" }, { -"download_count": 227738, -"project": "django-json-widget" +"download_count": 335987, +"project": "pyftpdlib" }, { -"download_count": 227733, -"project": "logging-formatter-anticrlf" +"download_count": 335891, +"project": "llama-index-embeddings-azure-openai" }, { -"download_count": 227567, -"project": "types-ipaddress" +"download_count": 335703, +"project": "oras" }, { -"download_count": 227530, -"project": "types-aiobotocore-rds" +"download_count": 335687, +"project": "python-gflags" }, { -"download_count": 227272, -"project": "djangorestframework-csv" +"download_count": 335674, +"project": "sphinx-click" }, { -"download_count": 227212, -"project": "pytest-selenium" +"download_count": 335624, +"project": "gdal" }, { -"download_count": 227202, -"project": "pykube" +"download_count": 335547, +"project": "suds-jurko" }, { -"download_count": 227147, -"project": "certbot" +"download_count": 335518, +"project": "kr8s" }, { -"download_count": 227045, -"project": "ops" +"download_count": 335504, +"project": "genbadge" }, { -"download_count": 226939, -"project": "coverage-badge" +"download_count": 335481, +"project": "sacred" }, { -"download_count": 226914, -"project": "sklearn-crfsuite" +"download_count": 335036, +"project": "detect-delimiter" }, { -"download_count": 226907, -"project": "robotframework-robocop" +"download_count": 334746, +"project": "django-fsm" }, { -"download_count": 226870, -"project": "dead-hosts-launcher" +"download_count": 334689, +"project": "django-etc" }, { -"download_count": 226845, -"project": "types-aiobotocore-lambda" +"download_count": 334471, +"project": "simple-azure-blob-downloader" }, { -"download_count": 226801, -"project": "flake8-return" +"download_count": 334467, +"project": "flake8-simplify" }, { -"download_count": 226759, -"project": "types-openpyxl" +"download_count": 334355, +"project": "kedro-datasets" }, { -"download_count": 226749, -"project": "supermercado" +"download_count": 334088, +"project": "ada-url" }, { -"download_count": 226613, -"project": "pyang" +"download_count": 333953, +"project": "doc8" }, { -"download_count": 226461, -"project": "strsimpy" +"download_count": 333663, +"project": "anyscale" }, { -"download_count": 226319, -"project": "clearml-agent" +"download_count": 333643, +"project": "pdfminer2" }, { -"download_count": 226100, -"project": "hyper" +"download_count": 333514, +"project": "django-json-widget" }, { -"download_count": 225913, -"project": "emr-notebooks-magics" +"download_count": 333434, +"project": "nox-poetry" }, { -"download_count": 225889, -"project": "presto-client" +"download_count": 333428, +"project": "pockets" }, { -"download_count": 225653, -"project": "launchable" +"download_count": 333392, +"project": "pylama" }, { -"download_count": 225645, -"project": "simpervisor" +"download_count": 333343, +"project": "gitlint-core" }, { -"download_count": 225630, -"project": "docxcompose" +"download_count": 333271, +"project": "flupy" }, { -"download_count": 225358, -"project": "pymc3" +"download_count": 333223, +"project": "flake8-string-format" }, { -"download_count": 225228, -"project": "cmake-format" +"download_count": 333188, +"project": "periodictable" }, { -"download_count": 224731, -"project": "pytest-subprocess" +"download_count": 333120, +"project": "gitlint" }, { -"download_count": 224609, -"project": "aws-cdk-aws-sqs" +"download_count": 332980, +"project": "mypy-boto3-es" }, { -"download_count": 224561, -"project": "quantmodels" +"download_count": 332922, +"project": "multiprocessing-logging" }, { -"download_count": 224532, -"project": "finmodels" +"download_count": 332808, +"project": "chargebee" }, { -"download_count": 224513, -"project": "amundsen-databuilder" +"download_count": 332741, +"project": "aiosmtpd" }, { -"download_count": 224474, -"project": "tinybird-cli" +"download_count": 332625, +"project": "jsun" }, { -"download_count": 224452, -"project": "knapsack-algorithm" +"download_count": 332586, +"project": "paddlepaddle" }, { -"download_count": 224412, -"project": "intuit-oauth" +"download_count": 332485, +"project": "rdkit-pypi" }, { -"download_count": 224274, -"project": "aioquic" +"download_count": 332457, +"project": "gto" }, { -"download_count": 223936, -"project": "mypy-boto3-textract" +"download_count": 332452, +"project": "scenedetect" }, { -"download_count": 223887, -"project": "sagemaker-feature-store-pyspark-3-1" +"download_count": 332375, +"project": "ibm-watsonx-ai" }, { -"download_count": 223802, -"project": "base64io" +"download_count": 332346, +"project": "tree-sitter-languages" }, { -"download_count": 223793, -"project": "cpuset-py3" +"download_count": 332177, +"project": "aws-kinesis-agg" }, { -"download_count": 223760, -"project": "dynamo-pandas" +"download_count": 332142, +"project": "python-dynamodb-lock" }, { -"download_count": 223740, -"project": "slack" +"download_count": 332053, +"project": "pyannotating" }, { -"download_count": 223717, -"project": "rotary-embedding-torch" +"download_count": 331859, +"project": "asyncio-mqtt" }, { -"download_count": 223513, -"project": "better-profanity" +"download_count": 331726, +"project": "dwave-networkx" }, { -"download_count": 223470, -"project": "autologging" +"download_count": 331717, +"project": "enum" }, { -"download_count": 223056, -"project": "bravado-core" +"download_count": 331447, +"project": "delocate" }, { -"download_count": 222924, -"project": "easy-thumbnails" +"download_count": 331264, +"project": "mypy-boto3-quicksight" }, { -"download_count": 222613, -"project": "fortifyapi" +"download_count": 331150, +"project": "pylsqpack" }, { -"download_count": 222478, -"project": "xmltojson" +"download_count": 331059, +"project": "mypy-boto3-codedeploy" }, { -"download_count": 222331, -"project": "fairlearn" +"download_count": 330959, +"project": "mitmproxy" }, { -"download_count": 222311, -"project": "delayed-assert" +"download_count": 330908, +"project": "chemicals" }, { -"download_count": 222098, -"project": "awscurl" +"download_count": 330865, +"project": "fuzzytm" }, { -"download_count": 221970, -"project": "python-monkey-business" +"download_count": 330651, +"project": "mypy-boto3-organizations" }, { -"download_count": 221849, -"project": "opentelemetry-exporter-jaeger-proto-grpc" +"download_count": 330418, +"project": "csaps" }, { -"download_count": 221559, -"project": "spotipy" +"download_count": 330264, +"project": "iso4217" }, { -"download_count": 221406, -"project": "pytensor" +"download_count": 329957, +"project": "whatever" }, { -"download_count": 221322, -"project": "pdfminer" +"download_count": 329897, +"project": "clearml" }, { -"download_count": 221317, -"project": "salesforce-fuelsdk-sans" +"download_count": 329793, +"project": "python-osc" }, { -"download_count": 221301, -"project": "pylsqpack" +"download_count": 329696, +"project": "coiled" }, { -"download_count": 220839, -"project": "opentelemetry-propagator-jaeger" +"download_count": 329573, +"project": "simpful" }, { -"download_count": 220836, -"project": "pymoo" +"download_count": 329374, +"project": "delighted" }, { -"download_count": 220722, -"project": "pytest-incremental" +"download_count": 329216, +"project": "onigurumacffi" }, { -"download_count": 220719, -"project": "jsonformatter" +"download_count": 328939, +"project": "flake8-rst-docstrings" }, { -"download_count": 220706, -"project": "oci-cli" +"download_count": 328806, +"project": "djangorestframework-dataclasses" }, { -"download_count": 220689, -"project": "solc-select" +"download_count": 328717, +"project": "pylint-flask" }, { -"download_count": 220608, -"project": "timedelta" +"download_count": 328651, +"project": "asyncer" }, { -"download_count": 220553, -"project": "fugue-sql-antlr" +"download_count": 328619, +"project": "mlzlog" }, { -"download_count": 220517, -"project": "mysql-python" +"download_count": 328466, +"project": "rioxarray" }, { -"download_count": 220440, -"project": "libify" +"download_count": 328459, +"project": "tgcrypto" }, { -"download_count": 220440, -"project": "mypy-boto3-autoscaling" +"download_count": 328432, +"project": "pytest-isort" }, { -"download_count": 220434, -"project": "googlesearch-python" +"download_count": 328425, +"project": "pytest-variables" }, { -"download_count": 220419, -"project": "llama-cpp-python" +"download_count": 328365, +"project": "mypy-boto3-application-autoscaling" }, { -"download_count": 220243, -"project": "django-nested-admin" +"download_count": 328260, +"project": "chiavdf" }, { -"download_count": 220084, -"project": "sigtools" +"download_count": 328054, +"project": "sphinxcontrib-napoleon" }, { -"download_count": 219944, -"project": "aad-token-verify" +"download_count": 328031, +"project": "stopit" }, { -"download_count": 219850, -"project": "pgsanity" +"download_count": 328002, +"project": "aws-lambda-typing" }, { -"download_count": 219803, -"project": "types-aiobotocore-cloudformation" +"download_count": 327944, +"project": "minrpc" }, { -"download_count": 219789, -"project": "pyreadstat" +"download_count": 327654, +"project": "stytch" }, { -"download_count": 219770, -"project": "schedula" +"download_count": 327622, +"project": "mypy-boto3-mq" }, { -"download_count": 219647, -"project": "mypy-boto3-firehose" +"download_count": 327610, +"project": "ezdxf" }, { -"download_count": 219620, -"project": "python-baseconv" +"download_count": 327559, +"project": "types-flask-cors" }, { -"download_count": 219511, -"project": "testrail-api" +"download_count": 327513, +"project": "jsonslicer" }, { -"download_count": 219067, -"project": "aws-cdk-aws-logs-destinations" +"download_count": 327314, +"project": "rule-engine" }, { -"download_count": 219006, -"project": "aws-cdk-aws-ecr-assets" +"download_count": 327313, +"project": "robotframework-browser" }, { -"download_count": 218754, -"project": "iso4217" +"download_count": 327293, +"project": "mypy-boto3-kafka" }, { -"download_count": 218742, -"project": "bounded-pool-executor" +"download_count": 327022, +"project": "mypy-boto3-cognito-identity" }, { -"download_count": 218625, -"project": "pythainlp" +"download_count": 326997, +"project": "dagit" }, { -"download_count": 218539, -"project": "pytorch" +"download_count": 326977, +"project": "easy-logs" }, { -"download_count": 218453, -"project": "pycosat" +"download_count": 326839, +"project": "qcodes" }, { -"download_count": 218436, -"project": "ip2location" +"download_count": 326821, +"project": "rich-rst" }, { -"download_count": 218326, -"project": "xmltodict3" +"download_count": 326740, +"project": "aliyun-python-sdk-vpc" }, { -"download_count": 218303, -"project": "graphyte" +"download_count": 326610, +"project": "hydra-colorlog" }, { -"download_count": 218265, -"project": "types-pkg-resources" +"download_count": 326544, +"project": "jsonalias" }, { -"download_count": 218212, -"project": "dvc-task" +"download_count": 326453, +"project": "types-boto3" }, { -"download_count": 218148, -"project": "pyrepl" +"download_count": 326335, +"project": "aiogoogle" }, { -"download_count": 218115, -"project": "aws-cdk-aws-sns" +"download_count": 326252, +"project": "mypy-boto3-workspaces" }, { -"download_count": 218087, -"project": "tflite-model-maker-nightly" +"download_count": 326096, +"project": "cli-exit-tools" }, { -"download_count": 218000, -"project": "markdown-inline-graphviz-extension" +"download_count": 326077, +"project": "gpsoauth" }, { -"download_count": 217924, -"project": "jupyterhub" +"download_count": 326048, +"project": "azure-communication-email" }, { -"download_count": 217903, -"project": "aws-cdk-aws-efs" +"download_count": 325981, +"project": "py-sr25519-bindings" }, { -"download_count": 217816, -"project": "umodbus" +"download_count": 325884, +"project": "metaphone" }, { -"download_count": 217809, -"project": "bigquery-schema-generator" +"download_count": 325603, +"project": "ffmpegio" }, { -"download_count": 217732, -"project": "fbprophet" +"download_count": 325421, +"project": "ophyd" }, { -"download_count": 217608, -"project": "namedlist" +"download_count": 325252, +"project": "prefixed" }, { -"download_count": 217486, -"project": "pygeos" +"download_count": 325046, +"project": "thermo" }, { -"download_count": 217461, -"project": "canopen" +"download_count": 324986, +"project": "gin-config" }, { -"download_count": 217411, -"project": "scrapfly-sdk" +"download_count": 324837, +"project": "dagster-shell" }, { -"download_count": 217385, -"project": "brazilnum" +"download_count": 324662, +"project": "bluesky" }, { -"download_count": 217065, -"project": "dimod" +"download_count": 324420, +"project": "coverage-badge" }, { -"download_count": 217035, -"project": "torchinfo" +"download_count": 324406, +"project": "python-monkey-business" }, { -"download_count": 217032, -"project": "rule-engine" +"download_count": 324186, +"project": "ffmpegio-core" }, { -"download_count": 216963, -"project": "robotframework-sshlibrary" +"download_count": 324088, +"project": "asyncmy" }, { -"download_count": 216887, -"project": "formulas" +"download_count": 323918, +"project": "pyshark" }, { -"download_count": 216835, -"project": "python-jsonschema-objects" +"download_count": 323616, +"project": "django-rq" }, { -"download_count": 216795, -"project": "multiprocessing" +"download_count": 323606, +"project": "wechaty-grpc" }, { -"download_count": 216717, -"project": "aws-cdk-aws-codeguruprofiler" +"download_count": 323424, +"project": "tree-sitter-javascript" }, { -"download_count": 216521, -"project": "mypy-boto3-cognito-identity" +"download_count": 323400, +"project": "transliterate" }, { -"download_count": 216445, -"project": "saspy" +"download_count": 323386, +"project": "asyncgui" }, { -"download_count": 216439, -"project": "rioxarray" +"download_count": 323342, +"project": "pick" }, { -"download_count": 216354, -"project": "neovim" +"download_count": 323275, +"project": "kubernetes-client" }, { -"download_count": 216261, -"project": "postmarker" +"download_count": 322990, +"project": "whatthepatch" }, { -"download_count": 216248, -"project": "einops-exts" +"download_count": 322986, +"project": "autogluon-common" }, { -"download_count": 216235, -"project": "kazurator" +"download_count": 322881, +"project": "duet" }, { -"download_count": 216027, -"project": "aws-cdk-aws-certificatemanager" +"download_count": 322829, +"project": "mypy-boto3-ds" }, { -"download_count": 215736, -"project": "drissionpage" +"download_count": 322770, +"project": "secure" }, { -"download_count": 215611, -"project": "aliyun-python-sdk-core-v3" +"download_count": 322454, +"project": "mcap" }, { -"download_count": 215530, -"project": "verspec" +"download_count": 322354, +"project": "webexteamssdk" }, { -"download_count": 215487, -"project": "certvalidator" +"download_count": 322269, +"project": "lib-detect-testenv" }, { -"download_count": 215278, -"project": "tag-expressions" +"download_count": 322173, +"project": "streamlit-aggrid" }, { -"download_count": 215135, -"project": "pip-install-test" +"download_count": 321839, +"project": "pymoo" }, { -"download_count": 215071, -"project": "segno" +"download_count": 321758, +"project": "aws-cdk-aws-iam" }, { -"download_count": 215055, -"project": "pybuildkite" +"download_count": 321518, +"project": "wechaty-puppet-service" }, { -"download_count": 215017, -"project": "python-logstash-async" +"download_count": 321500, +"project": "preggy" }, { -"download_count": 214932, -"project": "nbdime" +"download_count": 321438, +"project": "alembic-utils" }, { -"download_count": 214831, -"project": "mkdocs-gen-files" +"download_count": 321300, +"project": "mypy-boto3-ce" }, { -"download_count": 214765, -"project": "lintrunner" +"download_count": 321177, +"project": "cdktf" }, { -"download_count": 214548, -"project": "azure-iot-device" +"download_count": 321167, +"project": "itchat-uos" }, { -"download_count": 214291, -"project": "drf-writable-nested" +"download_count": 320883, +"project": "bioregistry" }, { -"download_count": 214270, -"project": "metaphone" +"download_count": 320878, +"project": "cxxfilt" }, { -"download_count": 214215, -"project": "ci-info" +"download_count": 320839, +"project": "aws-cdk-region-info" }, { -"download_count": 214149, -"project": "pyspin" +"download_count": 320626, +"project": "mypy-boto3-identitystore" }, { -"download_count": 213983, -"project": "infinity" +"download_count": 320460, +"project": "paddleocr" }, { -"download_count": 213841, -"project": "radish-bdd" +"download_count": 320426, +"project": "dynamo-pandas" }, { -"download_count": 213795, -"project": "pypika-tortoise" +"download_count": 320361, +"project": "pegen" }, { -"download_count": 213660, -"project": "google-cloud-profiler" +"download_count": 320339, +"project": "clickhouse-cityhash" }, { -"download_count": 213601, -"project": "python-jwt" +"download_count": 320273, +"project": "path-py" }, { -"download_count": 213335, -"project": "autoray" +"download_count": 320199, +"project": "django-tinymce" }, { -"download_count": 213283, -"project": "mkdocs-glightbox" +"download_count": 319944, +"project": "hierarchicalforecast" }, { -"download_count": 213280, -"project": "gggdtparser" +"download_count": 319937, +"project": "aws-logging-handlers" }, { -"download_count": 213257, -"project": "whylogs-sketching" +"download_count": 319891, +"project": "awscli-local" }, { -"download_count": 213182, -"project": "robotframework-databaselibrary" +"download_count": 319491, +"project": "pyepics" }, { -"download_count": 213175, -"project": "azure-eventhub-checkpointstoreblob" +"download_count": 319489, +"project": "json-encoder" }, { -"download_count": 213141, -"project": "tsfresh" +"download_count": 319476, +"project": "sspilib" }, { -"download_count": 212976, -"project": "ttp" +"download_count": 319466, +"project": "r2pipe" }, { -"download_count": 212929, -"project": "actions-toolkit" +"download_count": 319418, +"project": "subprocrunner" }, { -"download_count": 212864, -"project": "wagtail" +"download_count": 319075, +"project": "idf-component-manager" }, { -"download_count": 212792, -"project": "pygls" +"download_count": 319011, +"project": "mypy-boto3-docdb" }, { -"download_count": 212769, -"project": "breadability" +"download_count": 318948, +"project": "django-constance" }, { -"download_count": 212650, -"project": "mypy-boto3-cloudtrail" +"download_count": 318691, +"project": "mkdocs-techdocs-core" }, { -"download_count": 212540, -"project": "pdbp" +"download_count": 318658, +"project": "keras-nightly" }, { -"download_count": 212310, -"project": "g2p-en" +"download_count": 318649, +"project": "historydict" }, { -"download_count": 212280, -"project": "etelemetry" +"download_count": 318612, +"project": "bolton-clack" }, { -"download_count": 212190, -"project": "aiven-client" +"download_count": 318351, +"project": "nagisa" }, { -"download_count": 212076, -"project": "stix2-patterns" +"download_count": 318347, +"project": "mkl" }, { -"download_count": 211995, -"project": "pylinuxauto" +"download_count": 318229, +"project": "eccodes" }, { -"download_count": 211909, -"project": "mechanize" +"download_count": 317918, +"project": "ansible-pylibssh" }, { -"download_count": 211870, -"project": "wtforms-json" +"download_count": 317578, +"project": "pytest-unordered" }, { -"download_count": 211634, -"project": "superqt" +"download_count": 317523, +"project": "rstcheck" }, { -"download_count": 211633, -"project": "python-jsonpath" +"download_count": 317518, +"project": "rtfde" }, { -"download_count": 211624, -"project": "urwid-readline" +"download_count": 317516, +"project": "dbx" }, { -"download_count": 211527, -"project": "salesforce-fuelsdk" +"download_count": 317419, +"project": "djangorestframework-camel-case" }, { -"download_count": 211522, -"project": "aliyun-python-sdk-rds" +"download_count": 317357, +"project": "fiscalyear" }, { -"download_count": 211309, -"project": "python-binance" +"download_count": 316918, +"project": "basicsr" }, { -"download_count": 211223, -"project": "fugashi" +"download_count": 316571, +"project": "azure-digitaltwins-core" }, { -"download_count": 211205, -"project": "linear-operator" +"download_count": 316302, +"project": "zake" }, { -"download_count": 211119, -"project": "pyserde" +"download_count": 316182, +"project": "nbstripout" }, { -"download_count": 211065, -"project": "apache-libcloud" +"download_count": 316159, +"project": "mypy-boto3-dax" }, { -"download_count": 211061, -"project": "stk" +"download_count": 316079, +"project": "mypy-boto3-dynamodbstreams" }, { -"download_count": 210964, -"project": "aws-cdk-aws-sam" +"download_count": 316043, +"project": "bolton-eris" }, { -"download_count": 210624, -"project": "apache-airflow-providers-jenkins" +"download_count": 316023, +"project": "magodo" }, { -"download_count": 210591, -"project": "pyexasol" +"download_count": 316023, +"project": "jsonseq" }, { -"download_count": 210459, -"project": "tapipy" +"download_count": 316005, +"project": "wiki-fetch" }, { -"download_count": 210334, -"project": "beancount" +"download_count": 315999, +"project": "mypy-boto3-wafv2" }, { -"download_count": 210253, -"project": "weread2notionpro" +"download_count": 315941, +"project": "jupyter-contrib-core" }, { -"download_count": 210167, -"project": "torch-tb-profiler" +"download_count": 315939, +"project": "faust-cchardet" }, { -"download_count": 210139, -"project": "zope-sqlalchemy" +"download_count": 315897, +"project": "utils" }, { -"download_count": 210121, -"project": "types-httplib2" +"download_count": 315650, +"project": "bolton-typist" }, { -"download_count": 209872, -"project": "konlpy" +"download_count": 315621, +"project": "bolton-logrus" }, { -"download_count": 209858, -"project": "tkinterdnd2" +"download_count": 315533, +"project": "bolton-metaman" }, { -"download_count": 209784, -"project": "torchsummary" +"download_count": 315482, +"project": "aws-msk-iam-sasl-signer-python" }, { -"download_count": 209659, -"project": "dvc-objects" +"download_count": 315427, +"project": "entrypoint2" }, { -"download_count": 209650, -"project": "pandas-schema" +"download_count": 315393, +"project": "opentelemetry-semantic-conventions-ai" }, { -"download_count": 209615, -"project": "django-classy-tags" +"download_count": 315347, +"project": "python-mimeparse" }, { -"download_count": 209445, -"project": "zeo" +"download_count": 315257, +"project": "bolton-ion" }, { -"download_count": 209387, -"project": "impacket" +"download_count": 315048, +"project": "httpie-edgegrid" }, { -"download_count": 209385, -"project": "mchammer" +"download_count": 315023, +"project": "potoroo" }, { -"download_count": 209242, -"project": "types-maxminddb" +"download_count": 314917, +"project": "varint" }, { -"download_count": 209158, -"project": "types-oauthlib" +"download_count": 314779, +"project": "mygeotab" }, { -"download_count": 209142, -"project": "stko" +"download_count": 314767, +"project": "python3-xlib" }, { -"download_count": 209136, -"project": "econml" +"download_count": 314238, +"project": "django-rest-swagger" }, { -"download_count": 209121, -"project": "rmsd" +"download_count": 314138, +"project": "janome" }, { -"download_count": 209022, -"project": "pytest-httpbin" +"download_count": 313898, +"project": "mypy-boto3-iot-data" }, { -"download_count": 208979, -"project": "spindry" +"download_count": 313894, +"project": "azure-mgmt-deploymentmanager" }, { -"download_count": 208963, -"project": "atomlite" +"download_count": 313842, +"project": "ascii-magic" }, { -"download_count": 208957, -"project": "stamina" +"download_count": 313835, +"project": "pythtb" }, { -"download_count": 208956, -"project": "mypy-boto3-efs" +"download_count": 313804, +"project": "dissect-target" }, { -"download_count": 208898, -"project": "odict" +"download_count": 313767, +"project": "tzwhere" }, { -"download_count": 208890, -"project": "deprecat" +"download_count": 313714, +"project": "opendatalab" }, { -"download_count": 208821, -"project": "pyobjc-framework-quartz" +"download_count": 313706, +"project": "mail-parser" }, { -"download_count": 208758, -"project": "pyct" +"download_count": 313655, +"project": "mkdocs-literate-nav" }, { -"download_count": 208673, -"project": "conllu" +"download_count": 313629, +"project": "fsc-export" }, { -"download_count": 208669, -"project": "geoip2-tools" +"download_count": 313616, +"project": "rq-dashboard" }, { -"download_count": 208603, -"project": "businesstimedelta" +"download_count": 313592, +"project": "django-configurations" }, { -"download_count": 208592, -"project": "pylint-gitlab" +"download_count": 313538, +"project": "maya" }, { -"download_count": 208334, -"project": "jax-jumpy" +"download_count": 313524, +"project": "pyudorandom" }, { -"download_count": 208248, -"project": "pygount" +"download_count": 313492, +"project": "mypy-boto3-acm" }, { -"download_count": 208242, -"project": "aiounittest" +"download_count": 313444, +"project": "symmetry-representation" }, { -"download_count": 208155, -"project": "sccache" +"download_count": 313332, +"project": "git-python" }, { -"download_count": 208143, -"project": "aws-cdk-aws-autoscaling-common" +"download_count": 313267, +"project": "camelot-py" }, { -"download_count": 208108, -"project": "delta-sharing" +"download_count": 313161, +"project": "quandl" }, { -"download_count": 207969, -"project": "mnemonic" +"download_count": 312986, +"project": "sphinx-togglebutton" }, { -"download_count": 207827, -"project": "littlefs-python" +"download_count": 312846, +"project": "anywidget" }, { -"download_count": 207683, -"project": "pytest-alembic" +"download_count": 312750, +"project": "rlbot" }, { -"download_count": 207671, -"project": "sphinx-click" +"download_count": 312676, +"project": "home-assistant-bluetooth" }, { -"download_count": 207666, -"project": "aiohttp-socks" +"download_count": 312666, +"project": "certvalidator" }, { -"download_count": 207600, -"project": "graphene-sqlalchemy" +"download_count": 312642, +"project": "sphinxcontrib-plantuml" }, { -"download_count": 207432, -"project": "django-admin-sortable2" +"download_count": 312611, +"project": "deepeval" }, { -"download_count": 207282, -"project": "boruta" +"download_count": 312551, +"project": "beaker" }, { -"download_count": 206988, -"project": "junos-eznc" +"download_count": 312532, +"project": "broadbean" }, { -"download_count": 206955, -"project": "pyodps" +"download_count": 312225, +"project": "django-multiselectfield" }, { -"download_count": 206923, -"project": "neotime" +"download_count": 312169, +"project": "urlobject" }, { -"download_count": 206834, -"project": "mailchimp-marketing" +"download_count": 311849, +"project": "mypy-boto3-resourcegroupstaggingapi" }, { -"download_count": 206774, -"project": "django-log-request-id" +"download_count": 311748, +"project": "pyglove" }, { -"download_count": 206651, -"project": "datadiff" +"download_count": 311669, +"project": "pysolr" }, { -"download_count": 206581, -"project": "google-compute-engine" +"download_count": 311565, +"project": "macaroonbakery" }, { -"download_count": 206569, -"project": "pyftdi" +"download_count": 311523, +"project": "nbqa" }, { -"download_count": 206561, -"project": "dataengineeringutils3" +"download_count": 311287, +"project": "mypy-boto3-rds-data" }, { -"download_count": 206338, -"project": "whylabs-client" +"download_count": 310768, +"project": "opentelemetry-instrumentation-confluent-kafka" }, { -"download_count": 206273, -"project": "airbyte-api" +"download_count": 310668, +"project": "wmill" }, { -"download_count": 206253, -"project": "mdformat" +"download_count": 310611, +"project": "fds-sdk-utils" }, { -"download_count": 206188, -"project": "ciphey" +"download_count": 310474, +"project": "ete3" }, { -"download_count": 205950, -"project": "aws-cdk-custom-resources" +"download_count": 310354, +"project": "alacorder" }, { -"download_count": 205922, -"project": "terraform-compliance" +"download_count": 310282, +"project": "haystack-experimental" }, { -"download_count": 205864, -"project": "aws-cdk-aws-cloudformation" +"download_count": 310278, +"project": "cosmotech-api" }, { -"download_count": 205739, -"project": "types-pyasn1" +"download_count": 310231, +"project": "ansimarkup" }, { -"download_count": 205705, -"project": "bingads" +"download_count": 310058, +"project": "expects" }, { -"download_count": 205615, -"project": "model-archiver" +"download_count": 309721, +"project": "redisgraph-bulk-loader" }, { -"download_count": 205486, -"project": "pockets" +"download_count": 309655, +"project": "ipfshttpclient" }, { -"download_count": 205415, -"project": "diagrams" +"download_count": 309612, +"project": "undecorated" }, { -"download_count": 205413, -"project": "safer" +"download_count": 309566, +"project": "bolton-proctor" }, { -"download_count": 205315, -"project": "asyncclick" +"download_count": 309494, +"project": "mypy-boto3-iot" }, { -"download_count": 205255, -"project": "rejson" +"download_count": 309450, +"project": "httpx-cache" }, { -"download_count": 205252, -"project": "aws-cdk-aws-signer" +"download_count": 309404, +"project": "ast-grep-py" }, { -"download_count": 205252, -"project": "streamlit-keyup" +"download_count": 309402, +"project": "robotframework-assertion-engine" }, { -"download_count": 205247, -"project": "bce-python-sdk" +"download_count": 309335, +"project": "pypd" }, { -"download_count": 205197, -"project": "drf-extensions" +"download_count": 309218, +"project": "vimala" }, { -"download_count": 204963, -"project": "mojap-metadata" +"download_count": 308945, +"project": "mdutils" }, { -"download_count": 204881, -"project": "tf-models-nightly" +"download_count": 308907, +"project": "mypy-boto3-sesv2" }, { -"download_count": 204767, -"project": "pyarmor" +"download_count": 308648, +"project": "asciichartpy" }, { -"download_count": 204728, -"project": "futurist" +"download_count": 308053, +"project": "unicodedata2" }, { -"download_count": 204699, -"project": "plumber" +"download_count": 307978, +"project": "aws-error-utils" }, { -"download_count": 204649, -"project": "tailer" +"download_count": 307932, +"project": "plotly-express" }, { -"download_count": 204585, -"project": "jupyter-server-mathjax" +"download_count": 307601, +"project": "ptvsd" }, { -"download_count": 204567, -"project": "amplitude-analytics" +"download_count": 307598, +"project": "latex2mathml" }, { -"download_count": 204524, -"project": "python-digitalocean" +"download_count": 307547, +"project": "flask-redis" }, { -"download_count": 204517, -"project": "flake8-use-fstring" +"download_count": 307530, +"project": "mrcfile" }, { -"download_count": 204377, -"project": "aws-cdk-aws-route53" +"download_count": 307342, +"project": "fuzzyset2" }, { -"download_count": 204304, -"project": "dvc-studio-client" +"download_count": 307241, +"project": "types-orjson" }, { -"download_count": 204269, -"project": "tabcompleter" +"download_count": 306830, +"project": "prefect-shell" }, { -"download_count": 204230, -"project": "tavern" +"download_count": 306826, +"project": "luaparser" }, { -"download_count": 204224, -"project": "iteration-utilities" +"download_count": 306803, +"project": "nbmake" }, { -"download_count": 204210, -"project": "djoser" +"download_count": 306739, +"project": "couchbase" }, { -"download_count": 204045, -"project": "aws-cdk-assets" +"download_count": 306661, +"project": "xlsx2csv" }, { -"download_count": 204004, -"project": "flutils" +"download_count": 306629, +"project": "mkdocs-include-markdown-plugin" }, { -"download_count": 203704, -"project": "dvc-http" +"download_count": 306586, +"project": "pwdlib" }, { -"download_count": 203609, -"project": "django-hijack" +"download_count": 306510, +"project": "sorl-thumbnail" }, { -"download_count": 203546, -"project": "pyspark-test" +"download_count": 306471, +"project": "aiohttp-socks" }, { -"download_count": 203369, -"project": "mo-future" +"download_count": 306452, +"project": "apache-airflow-providers-papermill" }, { -"download_count": 203346, -"project": "rosbags" +"download_count": 306437, +"project": "awsebcli" }, { -"download_count": 203203, -"project": "simple-settings" +"download_count": 306288, +"project": "fastly" }, { -"download_count": 203194, -"project": "click-shell" +"download_count": 306085, +"project": "opentelemetry-exporter-jaeger" }, { -"download_count": 203143, -"project": "aws-cdk-aws-stepfunctions" +"download_count": 305779, +"project": "airflow-exporter" }, { -"download_count": 202739, -"project": "mat4py" +"download_count": 305640, +"project": "mypy-boto3-transcribe" }, { -"download_count": 202721, -"project": "pysnooper" +"download_count": 305541, +"project": "persist-queue" }, { -"download_count": 202680, -"project": "requests-unixsocket2" +"download_count": 305403, +"project": "starrocks" }, { -"download_count": 202630, -"project": "copier" +"download_count": 305208, +"project": "pyproject-flake8" }, { -"download_count": 202444, -"project": "downloadkit" +"download_count": 305203, +"project": "jupyter-contrib-nbextensions" }, { -"download_count": 202427, -"project": "langchainplus-sdk" +"download_count": 305121, +"project": "redis-sentinel-url" }, { -"download_count": 202401, -"project": "mail-parser" +"download_count": 304807, +"project": "python-etcd" }, { -"download_count": 202399, -"project": "mpi4py" +"download_count": 304589, +"project": "ml-base" }, { -"download_count": 202287, -"project": "testscenarios" +"download_count": 304119, +"project": "mypy-boto3-transfer" }, { -"download_count": 202275, -"project": "async-modbus" +"download_count": 304084, +"project": "prometheus-async" }, { -"download_count": 202036, -"project": "pyzipcode" +"download_count": 303780, +"project": "pygmo" }, { -"download_count": 201647, -"project": "lcov-cobertura" +"download_count": 303572, +"project": "soda-core-snowflake" }, { -"download_count": 201516, -"project": "datarecorder" +"download_count": 303233, +"project": "mypy-boto3-codebuild" }, { -"download_count": 201466, -"project": "textract" +"download_count": 303056, +"project": "mypy-boto3-translate" }, { -"download_count": 201299, -"project": "first" +"download_count": 302965, +"project": "gherkin-official" }, { -"download_count": 201195, -"project": "stringzilla" +"download_count": 302954, +"project": "dotnetcore2" }, { -"download_count": 201061, -"project": "crhelper" +"download_count": 302903, +"project": "pyreadline" }, { -"download_count": 200943, -"project": "mypy-boto3-bedrock-runtime" +"download_count": 302765, +"project": "mypy-boto3-apigatewayv2" }, { -"download_count": 200932, -"project": "cfgrib" +"download_count": 302664, +"project": "py-grpc-prometheus" }, { -"download_count": 200910, -"project": "django-crum" +"download_count": 302342, +"project": "starlark-pyo3" }, { -"download_count": 200903, -"project": "pandoc" +"download_count": 302197, +"project": "dragonfly-core" }, { -"download_count": 200567, -"project": "pycnite" +"download_count": 302174, +"project": "ibis-framework" }, { -"download_count": 200508, -"project": "aws-cdk-aws-elasticloadbalancingv2" +"download_count": 302083, +"project": "slack" }, { -"download_count": 200501, -"project": "python-coveralls" +"download_count": 302013, +"project": "lightfm" }, { -"download_count": 200436, -"project": "snowflake-telemetry-python" +"download_count": 301926, +"project": "httptest" }, { -"download_count": 200416, -"project": "mapclassify" +"download_count": 301796, +"project": "pybars3" }, { -"download_count": 200383, -"project": "basictracer" +"download_count": 301756, +"project": "trafaret" }, { -"download_count": 200237, -"project": "records" +"download_count": 301679, +"project": "dj-rest-auth" }, { -"download_count": 200200, -"project": "chess" +"download_count": 301464, +"project": "python-tds" }, { -"download_count": 200136, -"project": "gto" +"download_count": 301141, +"project": "whylogs-sketching" }, { -"download_count": 200024, -"project": "willow" +"download_count": 301137, +"project": "odxtools" }, { -"download_count": 199962, -"project": "icontract" +"download_count": 301127, +"project": "mindsdb-sql" }, { -"download_count": 199937, -"project": "pyramid-tm" +"download_count": 301053, +"project": "mypy-boto3-bedrock" }, { -"download_count": 199855, -"project": "typed-argument-parser" +"download_count": 300926, +"project": "flask-apispec" }, { -"download_count": 199702, -"project": "toml-sort" +"download_count": 300861, +"project": "mypy-boto3-apigatewaymanagementapi" }, { -"download_count": 199620, -"project": "pyzabbix" +"download_count": 300558, +"project": "pyautogen" }, { -"download_count": 199608, -"project": "mem0ai" +"download_count": 300496, +"project": "inference-schema" }, { -"download_count": 199606, -"project": "django-braces" +"download_count": 300455, +"project": "abnf" }, { -"download_count": 199571, -"project": "snapshottest" +"download_count": 300439, +"project": "mypy-boto3-mwaa" }, { -"download_count": 199558, -"project": "django-modelcluster" +"download_count": 300425, +"project": "mypy-boto3-securityhub" }, { -"download_count": 199524, -"project": "ddapm-test-agent" +"download_count": 300320, +"project": "fastdtw" }, { -"download_count": 199457, -"project": "aws-cdk-aws-ecs" +"download_count": 299926, +"project": "django-jazzmin" }, { -"download_count": 199394, -"project": "rtfde" +"download_count": 299693, +"project": "apache-airflow-providers-apache-beam" }, { -"download_count": 199301, -"project": "kaggle" +"download_count": 299535, +"project": "robocorp-log" }, { -"download_count": 199265, -"project": "sphinx-automodapi" +"download_count": 299289, +"project": "art" }, { -"download_count": 199032, -"project": "django-lifecycle" +"download_count": 299160, +"project": "pbspark" }, { -"download_count": 199016, -"project": "pi-heif" +"download_count": 299145, +"project": "robotframework-robocop" }, { -"download_count": 198970, -"project": "dm-haiku" +"download_count": 299035, +"project": "pulp-cli-deb" }, { -"download_count": 198916, -"project": "gradio-rangeslider" +"download_count": 298858, +"project": "opentelemetry-instrumentation-falcon" }, { -"download_count": 198903, -"project": "esp-idf-monitor" +"download_count": 298850, +"project": "mypy-boto3-ec2-instance-connect" }, { -"download_count": 198752, -"project": "baron" +"download_count": 298802, +"project": "apache-airflow-providers-vertica" }, { -"download_count": 198659, -"project": "flask-restplus" +"download_count": 298786, +"project": "mypy-boto3-sso-oidc" }, { -"download_count": 198637, -"project": "pyfcm" +"download_count": 298736, +"project": "mypy-boto3-mediaconvert" }, { -"download_count": 198562, -"project": "wasmer-compiler-cranelift" +"download_count": 298444, +"project": "pulp-glue-deb" }, { -"download_count": 198518, -"project": "azure-iot-hub" +"download_count": 298400, +"project": "whylabs-client" }, { -"download_count": 198466, -"project": "google-benchmark" +"download_count": 298342, +"project": "pybacklogpy" }, { -"download_count": 198428, -"project": "mypy-boto3-emr-serverless" +"download_count": 298143, +"project": "molecule-plugins" }, { -"download_count": 198422, -"project": "wakeonlan" +"download_count": 298037, +"project": "objectory" }, { -"download_count": 198407, -"project": "nbval" +"download_count": 298011, +"project": "docxcompose" }, { -"download_count": 198169, -"project": "wrapt-timeout-decorator" +"download_count": 297921, +"project": "mypy-boto3-synthetics" }, { -"download_count": 198162, -"project": "duckdb-engine" +"download_count": 297796, +"project": "aiortc" }, { -"download_count": 198092, -"project": "sphinxcontrib-napoleon" +"download_count": 297755, +"project": "dockerfile" }, { -"download_count": 198082, -"project": "image" +"download_count": 297750, +"project": "kodi-addon-checker" }, { -"download_count": 197730, -"project": "nose-parameterized" +"download_count": 297684, +"project": "djangorestframework-jwt" }, { -"download_count": 197680, -"project": "sphinxcontrib-httpdomain" +"download_count": 297626, +"project": "pylibmc" }, { -"download_count": 197607, -"project": "fastdiff" +"download_count": 297571, +"project": "uvicorn-worker" }, { -"download_count": 197577, -"project": "django-select2" +"download_count": 297545, +"project": "bitvector" }, { -"download_count": 197387, -"project": "flake8-deprecated" +"download_count": 297535, +"project": "pandoc" }, { -"download_count": 197369, -"project": "grpc-requests" +"download_count": 297461, +"project": "mypy-boto3-servicediscovery" }, { -"download_count": 197304, -"project": "segmentation-models-pytorch" +"download_count": 297259, +"project": "mypy-boto3-ram" }, { -"download_count": 197274, -"project": "serverless-wsgi" +"download_count": 297052, +"project": "binpacking" }, { -"download_count": 197124, -"project": "aws-cdk-aws-codestarnotifications" +"download_count": 296975, +"project": "pyang" }, { -"download_count": 197072, -"project": "pypcap" +"download_count": 296956, +"project": "aws-cdk-aws-ec2" }, { -"download_count": 196932, -"project": "pennylane-lightning" +"download_count": 296955, +"project": "qds-sdk" }, { -"download_count": 196769, -"project": "objgraph" +"download_count": 296931, +"project": "click-aliases" }, { -"download_count": 196765, -"project": "pyexecjs" +"download_count": 296817, +"project": "pyvcd" }, { -"download_count": 196711, -"project": "aws-cdk-aws-apigateway" +"download_count": 296766, +"project": "virtme-ng" }, { -"download_count": 196681, -"project": "pathfinding" +"download_count": 296634, +"project": "django-money" }, { -"download_count": 196667, -"project": "mechanicalsoup" +"download_count": 296527, +"project": "mypy-boto3-pinpoint" }, { -"download_count": 196546, -"project": "codegen" +"download_count": 296374, +"project": "arize-phoenix" }, { -"download_count": 196510, -"project": "pyhs2" +"download_count": 296158, +"project": "mypy-boto3-directconnect" }, { -"download_count": 196365, -"project": "pyresidfp" +"download_count": 295997, +"project": "flask-security-too" }, { -"download_count": 196099, -"project": "py-range-parse" +"download_count": 295977, +"project": "simple-slurm" }, { -"download_count": 196083, -"project": "django-autocomplete-light" +"download_count": 295960, +"project": "docrepr" }, { -"download_count": 196050, -"project": "pytrends" +"download_count": 295767, +"project": "spacy-wordnet" }, { -"download_count": 195998, -"project": "jaro-winkler" +"download_count": 295759, +"project": "sqlalchemy-drill" }, { -"download_count": 195961, -"project": "parce" +"download_count": 295630, +"project": "fds-sdk-paengine" }, { -"download_count": 195919, -"project": "ggshield" +"download_count": 295595, +"project": "dsdobjects" }, { -"download_count": 195911, -"project": "botorch" +"download_count": 295556, +"project": "mypy-boto3-marketplace-entitlement" }, { -"download_count": 195587, -"project": "kr8s" +"download_count": 295521, +"project": "ormsgpack" }, { -"download_count": 195495, -"project": "sklearn2pmml" +"download_count": 295512, +"project": "mypy-boto3-location" }, { -"download_count": 195494, -"project": "smartystreets-python-sdk" +"download_count": 295240, +"project": "pyinstaller-versionfile" }, { -"download_count": 195472, -"project": "multi-model-server" +"download_count": 295213, +"project": "tensorboard-plugin-profile" }, { -"download_count": 195376, -"project": "blurhash" +"download_count": 295179, +"project": "fds-sdk-sparengine" }, { -"download_count": 195313, -"project": "python-debian" +"download_count": 295166, +"project": "pyvoronoi" }, { -"download_count": 195215, -"project": "databricks-vectorsearch" +"download_count": 295147, +"project": "airbyte" }, { -"download_count": 195052, -"project": "python-calamine" +"download_count": 295101, +"project": "murmurhash2" }, { -"download_count": 194948, -"project": "opentelemetry-propagator-ot-trace" +"download_count": 294838, +"project": "fds-protobuf-stach-extensions" }, { -"download_count": 194826, -"project": "httpagentparser" +"download_count": 294816, +"project": "kodistubs" }, { -"download_count": 194741, -"project": "aqtinstall" +"download_count": 294804, +"project": "mode" }, { -"download_count": 194593, -"project": "traits" +"download_count": 294746, +"project": "sqlalchemy-databricks" }, { -"download_count": 194477, -"project": "ipy" +"download_count": 294579, +"project": "onnxmltools" }, { -"download_count": 194434, -"project": "langchain-pinecone" +"download_count": 294568, +"project": "fds-protobuf-stach-v2" }, { -"download_count": 194368, -"project": "patterns" +"download_count": 294559, +"project": "mypy-boto3-elb" }, { -"download_count": 194224, -"project": "implicit" +"download_count": 294556, +"project": "dynet" }, { -"download_count": 194108, -"project": "promptflow-devkit" +"download_count": 294552, +"project": "mypy-boto3-s3control" }, { -"download_count": 194088, -"project": "whatthepatch" +"download_count": 294443, +"project": "fds-protobuf-stach" }, { -"download_count": 194029, -"project": "apache-airflow-providers-vertica" +"download_count": 294266, +"project": "cloudinary" }, { -"download_count": 194006, -"project": "rstcheck-core" +"download_count": 294261, +"project": "opentelemetry-propagator-jaeger" }, { -"download_count": 193978, -"project": "promptflow-core" +"download_count": 294089, +"project": "mypy-boto3-connect" }, { -"download_count": 193810, -"project": "mypy-boto3-identitystore" +"download_count": 293971, +"project": "aws-cdk-aws-s3" }, { -"download_count": 193804, -"project": "sqltrie" +"download_count": 293718, +"project": "aliyun-python-sdk-r-kvstore" }, { -"download_count": 193768, -"project": "fixture" +"download_count": 293555, +"project": "opentelemetry-instrumentation-aio-pika" }, { -"download_count": 193750, -"project": "pygresql" +"download_count": 293380, +"project": "highspy" }, { -"download_count": 193654, -"project": "opentelemetry-exporter-jaeger" +"download_count": 293265, +"project": "keplergl" }, { -"download_count": 193536, -"project": "hpgeom" +"download_count": 293059, +"project": "solana" }, { -"download_count": 193442, -"project": "aws-cdk-aws-cognito" +"download_count": 292985, +"project": "dbt-artifacts-parser" }, { -"download_count": 193422, -"project": "ragged-buffer" +"download_count": 292781, +"project": "construct-typing" }, { -"download_count": 193152, -"project": "pytest-qt" +"download_count": 292755, +"project": "onnxscript" }, { -"download_count": 193049, -"project": "browserstack-local" +"download_count": 292703, +"project": "mypy-boto3-codeartifact" }, { -"download_count": 192920, -"project": "asammdf" +"download_count": 292702, +"project": "mypy-boto3-ebs" }, { -"download_count": 192894, -"project": "asyncio-mqtt" +"download_count": 292625, +"project": "mypy-boto3-scheduler" }, { -"download_count": 192877, -"project": "dataflows-tabulator" +"download_count": 292558, +"project": "dagster-celery" }, { -"download_count": 192626, -"project": "treetable" +"download_count": 292440, +"project": "mypy-boto3-support" }, { -"download_count": 192415, -"project": "mastodon-py" +"download_count": 292433, +"project": "django-log-request-id" }, { -"download_count": 192353, -"project": "promptflow-tracing" +"download_count": 292365, +"project": "googlesearch-python" }, { -"download_count": 192339, -"project": "dragnet" +"download_count": 292305, +"project": "mypy-boto3-servicecatalog" }, { -"download_count": 192297, -"project": "django-nose" +"download_count": 292288, +"project": "pulumi-command" }, { -"download_count": 192212, -"project": "agate-sql" +"download_count": 292225, +"project": "caldav" }, { -"download_count": 192054, -"project": "nudged" +"download_count": 292064, +"project": "mypy-boto3-service-quotas" }, { -"download_count": 191960, -"project": "redbaron" +"download_count": 291823, +"project": "mypy-boto3-route53resolver" }, { -"download_count": 191857, -"project": "pylint-flask" +"download_count": 291807, +"project": "napalm" }, { -"download_count": 191818, -"project": "python-vagrant" +"download_count": 291665, +"project": "configcrunch" }, { -"download_count": 191768, -"project": "aws-lambda-typing" +"download_count": 291589, +"project": "django-migration-linter" }, { -"download_count": 191750, -"project": "flet" +"download_count": 291446, +"project": "pygeos" }, { -"download_count": 191744, -"project": "dagit" +"download_count": 291282, +"project": "pyarmor" }, { -"download_count": 191541, -"project": "cityhash" +"download_count": 291095, +"project": "sqlalchemy-cockroachdb" }, { -"download_count": 191484, -"project": "optparse-pretty" +"download_count": 290713, +"project": "pydoc-markdown" }, { -"download_count": 191411, -"project": "keras-nlp" +"download_count": 290304, +"project": "mypy-boto3-polly" }, { -"download_count": 191307, -"project": "aiohttp-jinja2" +"download_count": 290207, +"project": "amqpstorm" }, { -"download_count": 191092, -"project": "labelbox" +"download_count": 289950, +"project": "ordered-enum" }, { -"download_count": 191031, -"project": "mojimoji" +"download_count": 289739, +"project": "empy" }, { -"download_count": 191002, -"project": "docusign-esign" +"download_count": 289726, +"project": "sphinxext-opengraph" }, { -"download_count": 190942, -"project": "aws-cdk-aws-sns-subscriptions" +"download_count": 289689, +"project": "synapseml" }, { -"download_count": 190939, -"project": "readability-lxml" +"download_count": 289608, +"project": "mypy-boto3-dlm" }, { -"download_count": 190795, -"project": "mkdocs-mermaid2-plugin" +"download_count": 289528, +"project": "fcache" }, { -"download_count": 190781, -"project": "better-exceptions" +"download_count": 289476, +"project": "pylatex" }, { -"download_count": 190577, -"project": "mypy-boto3-ce" +"download_count": 289431, +"project": "mypy-boto3-medialive" }, { -"download_count": 190416, -"project": "rules" +"download_count": 289402, +"project": "mypy-boto3-comprehend" }, { -"download_count": 190324, -"project": "duo-client" +"download_count": 289399, +"project": "mypy-boto3-meteringmarketplace" }, { -"download_count": 190234, -"project": "aws-cdk-aws-autoscaling" +"download_count": 289335, +"project": "docspec-python" }, { -"download_count": 190226, -"project": "ipwhois" +"download_count": 289307, +"project": "bce-python-sdk" }, { -"download_count": 190207, -"project": "python-helpscout-v2" +"download_count": 289208, +"project": "torchinfo" }, { -"download_count": 190105, -"project": "autobean-refactor" +"download_count": 289189, +"project": "chiabip158" }, { -"download_count": 189892, -"project": "stable-baselines3" +"download_count": 289146, +"project": "mypy-boto3-pricing" }, { -"download_count": 189828, -"project": "canmatrix" +"download_count": 289012, +"project": "huaweicloudsdkcore" }, { -"download_count": 189810, -"project": "stix2" +"download_count": 288970, +"project": "mypy-boto3-imagebuilder" }, { -"download_count": 189754, -"project": "awsiotsdk" +"download_count": 288915, +"project": "datatest" }, { -"download_count": 189673, -"project": "py2md" +"download_count": 288849, +"project": "ibm-watson-machine-learning" }, { -"download_count": 189594, -"project": "treelite-runtime" +"download_count": 288834, +"project": "django-braces" }, { -"download_count": 189533, -"project": "pydocumentdb" +"download_count": 288701, +"project": "mypy-boto3-neptune" }, { -"download_count": 189514, -"project": "textsearch" +"download_count": 288667, +"project": "opentelemetry-instrumentation-pyramid" }, { -"download_count": 189297, -"project": "bearlibterminal" +"download_count": 288476, +"project": "opentelemetry-instrumentation-mysqlclient" }, { -"download_count": 189143, -"project": "contractions" +"download_count": 288075, +"project": "mypy-boto3-budgets" }, { -"download_count": 189132, -"project": "aws-cdk-aws-kinesis" +"download_count": 287967, +"project": "pyrs" }, { -"download_count": 189126, -"project": "megatron-core" +"download_count": 287842, +"project": "svgelements" }, { -"download_count": 189000, -"project": "sphinxcontrib-svg2pdfconverter" +"download_count": 287752, +"project": "mypy-boto3-amplify" }, { -"download_count": 188994, -"project": "simple-rest-client" +"download_count": 287724, +"project": "csr" }, { -"download_count": 188904, -"project": "vlsir" +"download_count": 287676, +"project": "linode-cli" }, { -"download_count": 188788, -"project": "pyspark-stubs" +"download_count": 287575, +"project": "dagster-gcp" }, { -"download_count": 188786, -"project": "airflow-provider-fivetran" +"download_count": 287552, +"project": "nr-stream" }, { -"download_count": 188745, -"project": "lakefs-sdk" +"download_count": 287537, +"project": "mypy-boto3-guardduty" }, { -"download_count": 188691, -"project": "vlsirtools" +"download_count": 287516, +"project": "pytest-docker-tools" }, { -"download_count": 188679, -"project": "django-test-migrations" +"download_count": 287494, +"project": "awscurl" }, { -"download_count": 188463, -"project": "optuna-integration" +"download_count": 287409, +"project": "vt-py" }, { -"download_count": 188322, -"project": "flask-redis" +"download_count": 287281, +"project": "dm-haiku" }, { -"download_count": 188215, -"project": "aliyun-python-sdk-alidns" +"download_count": 287124, +"project": "mypy-boto3-networkmanager" }, { -"download_count": 188112, -"project": "h2o-wave" +"download_count": 286966, +"project": "mkdocs-glightbox" }, { -"download_count": 188029, -"project": "yandexcloud" +"download_count": 286915, +"project": "mypy-boto3-mturk" }, { -"download_count": 187982, -"project": "google-cloud-functions" +"download_count": 286853, +"project": "pymc" }, { -"download_count": 187870, -"project": "pybit" +"download_count": 286832, +"project": "salesforce-fuelsdk-sans" }, { -"download_count": 187815, -"project": "types-python-jose" +"download_count": 286726, +"project": "mypy-boto3-mediatailor" }, { -"download_count": 187797, -"project": "mypy-boto3-organizations" +"download_count": 286718, +"project": "mypy-boto3-acm-pca" }, { -"download_count": 187725, -"project": "flet-runtime" +"download_count": 286667, +"project": "mypy-boto3-appsync" }, { -"download_count": 187670, -"project": "robocorp-browser" +"download_count": 286663, +"project": "lightstep" }, { -"download_count": 187616, -"project": "html2image" +"download_count": 286608, +"project": "elasticsearch6" }, { -"download_count": 187484, -"project": "u-msgpack-python" +"download_count": 286516, +"project": "mypy-boto3-fsx" }, { -"download_count": 187458, -"project": "agate-excel" +"download_count": 286453, +"project": "nr-util" }, { -"download_count": 187433, -"project": "os-client-config" +"download_count": 286415, +"project": "mypy-boto3-discovery" }, { -"download_count": 187400, -"project": "pyramid-jinja2" +"download_count": 286336, +"project": "mypy-boto3-personalize" }, { -"download_count": 187361, -"project": "nicegui" +"download_count": 286236, +"project": "langchain-ibm" }, { -"download_count": 187344, -"project": "captum" +"download_count": 286193, +"project": "mypy-boto3-datasync" }, { -"download_count": 187327, -"project": "everett" +"download_count": 286167, +"project": "mypy-boto3-outposts" }, { -"download_count": 187318, -"project": "azure-ai-language-questionanswering" +"download_count": 286134, +"project": "aws-cdk-aws-kms" }, { -"download_count": 187247, -"project": "flake8-logging-format" +"download_count": 285902, +"project": "mypy-boto3-mediastore" }, { -"download_count": 187132, -"project": "validator-collection" +"download_count": 285871, +"project": "mypy-boto3-mediaconnect" }, { -"download_count": 187125, -"project": "pyobjc" +"download_count": 285818, +"project": "mypy-boto3-forecastquery" }, { -"download_count": 187098, -"project": "domaintools-api" +"download_count": 285799, +"project": "geohash2" }, { -"download_count": 187087, -"project": "realesrgan" +"download_count": 285741, +"project": "mypy-boto3-mediapackage" }, { -"download_count": 186950, -"project": "solders" +"download_count": 285725, +"project": "mypy-boto3-serverlessrepo" }, { -"download_count": 186784, -"project": "cloudsmith-api" +"download_count": 285509, +"project": "mypy-boto3-pinpoint-email" }, { -"download_count": 186758, -"project": "cf-xarray" +"download_count": 285435, +"project": "mypy-boto3-storagegateway" }, { -"download_count": 186704, -"project": "faust-cchardet" +"download_count": 285430, +"project": "mypy-boto3-license-manager" }, { -"download_count": 186666, -"project": "pymap3d" +"download_count": 285399, +"project": "mypy-boto3-inspector" }, { -"download_count": 186578, -"project": "sphinx-togglebutton" +"download_count": 285331, +"project": "mypy-boto3-mgh" }, { -"download_count": 186555, -"project": "opennsfw2" +"download_count": 285162, +"project": "pytrie" }, { -"download_count": 186537, -"project": "sip" +"download_count": 285153, +"project": "sanitize-filename" }, { -"download_count": 186428, -"project": "kitchen" +"download_count": 285152, +"project": "mypy-boto3-personalize-runtime" }, { -"download_count": 186418, -"project": "pygrib" +"download_count": 285121, +"project": "google-cloud-dialogflow-cx" }, { -"download_count": 186110, -"project": "configcat-client" +"download_count": 285114, +"project": "tflite-model-maker-nightly" }, { -"download_count": 186091, -"project": "pydantic-compat" +"download_count": 285100, +"project": "docspec" }, { -"download_count": 186053, -"project": "facebook-wda" +"download_count": 285084, +"project": "mypy-boto3-mediastore-data" }, { -"download_count": 186010, -"project": "azure-cognitiveservices-knowledge-qnamaker" +"download_count": 285072, +"project": "neotime" }, { -"download_count": 185966, -"project": "azure-ai-language-conversations" +"download_count": 285059, +"project": "cx-freeze" }, { -"download_count": 185658, -"project": "rq-scheduler" +"download_count": 285035, +"project": "mypy-boto3-health" }, { -"download_count": 185632, -"project": "py3rijndael" +"download_count": 284960, +"project": "extra-streamlit-components" }, { -"download_count": 185571, -"project": "super-collections" +"download_count": 284952, +"project": "async-asgi-testclient" }, { -"download_count": 185390, -"project": "theano-pymc" +"download_count": 284832, +"project": "python-jsonpath" }, { -"download_count": 185345, -"project": "langserve" +"download_count": 284809, +"project": "viztracer" }, { -"download_count": 185286, -"project": "gorilla" +"download_count": 284709, +"project": "mypy-boto3-iot-jobs-data" }, { -"download_count": 185157, -"project": "alembic-postgresql-enum" +"download_count": 284693, +"project": "mypy-boto3-compute-optimizer" }, { -"download_count": 185022, -"project": "l18n" +"download_count": 284621, +"project": "mypy-boto3-accessanalyzer" }, { -"download_count": 184813, -"project": "cloudsearch" +"download_count": 284584, +"project": "enlighten" }, { -"download_count": 184686, -"project": "auditwheel" +"download_count": 284536, +"project": "dagster-snowflake" }, { -"download_count": 184665, -"project": "bert-score" +"download_count": 284452, +"project": "mypy-boto3-emr-containers" }, { -"download_count": 184652, -"project": "tendo" +"download_count": 284428, +"project": "yoyo-migrations" }, { -"download_count": 184634, -"project": "types-termcolor" +"download_count": 284427, +"project": "chalkpy" }, { -"download_count": 184445, -"project": "pysingleton" +"download_count": 284415, +"project": "mypy-boto3-shield" }, { -"download_count": 184357, -"project": "zcbor" +"download_count": 284410, +"project": "portion" }, { -"download_count": 184203, -"project": "hierarchical-conf" +"download_count": 284400, +"project": "pytensor" }, { -"download_count": 184155, -"project": "solana" +"download_count": 284394, +"project": "mypy-boto3-marketplace-catalog" }, { -"download_count": 183967, -"project": "jsoncomment" +"download_count": 284354, +"project": "mypy-boto3-marketplacecommerceanalytics" }, { -"download_count": 183952, -"project": "typeshed-client" +"download_count": 284353, +"project": "mypy-boto3-pi" }, { -"download_count": 183825, -"project": "mypy-boto3-rds-data" +"download_count": 284306, +"project": "m3u8" }, { -"download_count": 183798, -"project": "alchemy-mock" +"download_count": 284285, +"project": "mypy-boto3-managedblockchain" }, { -"download_count": 183627, -"project": "aliyun-python-sdk-cms" +"download_count": 284282, +"project": "haystack-ai" }, { -"download_count": 183558, -"project": "openmim" +"download_count": 284276, +"project": "mypy-boto3-opsworks" }, { -"download_count": 183544, -"project": "construct-typing" +"download_count": 284184, +"project": "mypy-boto3-iotsecuretunneling" }, { -"download_count": 183512, -"project": "mypy-boto3-bedrock" +"download_count": 284172, +"project": "mypy-boto3-machinelearning" }, { -"download_count": 183458, -"project": "rockset" +"download_count": 284127, +"project": "mypy-boto3-iot1click-devices" }, { -"download_count": 183450, -"project": "azure-mgmt-databricks" +"download_count": 284076, +"project": "mypy-boto3-cloudsearchdomain" }, { -"download_count": 183283, -"project": "types-regex" +"download_count": 284026, +"project": "django-select2" }, { -"download_count": 183268, -"project": "aliyun-python-sdk-slb" +"download_count": 284004, +"project": "mypy-boto3-timestream-query" }, { -"download_count": 183179, -"project": "deepface" +"download_count": 283942, +"project": "robocorp-tasks" }, { -"download_count": 183090, -"project": "nosexcover" +"download_count": 283925, +"project": "mypy-boto3-personalize-events" }, { -"download_count": 183067, -"project": "asyncer" +"download_count": 283916, +"project": "micloud" }, { -"download_count": 182906, -"project": "ipylab" +"download_count": 283896, +"project": "mypy-boto3-gamelift" }, { -"download_count": 182809, -"project": "motmetrics" +"download_count": 283852, +"project": "pyvisa-py" }, { -"download_count": 182751, -"project": "tf-models-official" +"download_count": 283761, +"project": "mypy-boto3-waf" }, { -"download_count": 182675, -"project": "pymediainfo" +"download_count": 283728, +"project": "mypy-boto3-forecast" }, { -"download_count": 182608, -"project": "rerun-sdk" +"download_count": 283724, +"project": "mypy-boto3-cloudsearch" }, { -"download_count": 182580, -"project": "pqdm" +"download_count": 283613, +"project": "mypy-boto3-fms" }, { -"download_count": 182522, -"project": "djangorestframework-camel-case" +"download_count": 283565, +"project": "mypy-boto3-rekognition" }, { -"download_count": 182520, -"project": "elasticmock" +"download_count": 283473, +"project": "mypy-boto3-iotevents-data" }, { -"download_count": 182435, -"project": "sbvirtualdisplay" +"download_count": 283472, +"project": "tabcmd" }, { -"download_count": 182430, -"project": "opensearch-dsl" +"download_count": 283457, +"project": "pybaselines" }, { -"download_count": 182385, -"project": "opentelemetry-resourcedetector-kubernetes" +"download_count": 283428, +"project": "mypy-boto3-importexport" }, { -"download_count": 182370, -"project": "outdated" +"download_count": 283405, +"project": "moepy" }, { -"download_count": 182230, -"project": "cloup" +"download_count": 283370, +"project": "mem0ai" }, { -"download_count": 182175, -"project": "sagemaker-training" +"download_count": 283358, +"project": "mypy-boto3-backup" }, { -"download_count": 182168, -"project": "pluralizer" +"download_count": 283283, +"project": "mypy-boto3-migrationhub-config" }, { -"download_count": 182159, -"project": "tf-slim" +"download_count": 283212, +"project": "ansicon" }, { -"download_count": 181983, -"project": "oslo-concurrency" +"download_count": 283150, +"project": "mypy-boto3-neptunedata" }, { -"download_count": 181966, -"project": "email-to" +"download_count": 283075, +"project": "streamlit-keyup" }, { -"download_count": 181869, -"project": "marrow-mailer" +"download_count": 283033, +"project": "mypy-boto3-devicefarm" }, { -"download_count": 181715, -"project": "docx" +"download_count": 282981, +"project": "mypy-boto3-ecr-public" }, { -"download_count": 181692, -"project": "nagiosplugin" +"download_count": 282977, +"project": "mypy-boto3-elasticbeanstalk" }, { -"download_count": 181692, -"project": "pysimplegui" +"download_count": 282931, +"project": "mypy-boto3-sdb" }, { -"download_count": 181504, -"project": "az-cli" +"download_count": 282928, +"project": "ffmpeg" }, { -"download_count": 181459, -"project": "bitmath" +"download_count": 282924, +"project": "mypy-boto3-mediapackage-vod" }, { -"download_count": 181388, -"project": "opentelemetry-resourcedetector-docker" +"download_count": 282917, +"project": "mypy-boto3-groundstation" }, { -"download_count": 181279, -"project": "cowsay" +"download_count": 282831, +"project": "elevenlabs" }, { -"download_count": 181250, -"project": "atlassian-jwt-auth" +"download_count": 282771, +"project": "types-oauthlib" }, { -"download_count": 181181, -"project": "agate-dbf" +"download_count": 282761, +"project": "pytest-selenium" }, { -"download_count": 181094, -"project": "fastapi-mail" +"download_count": 282646, +"project": "single-source" }, { -"download_count": 181058, -"project": "sanelogging" +"download_count": 282573, +"project": "cowsay" }, { -"download_count": 180955, -"project": "cnvrgv2" +"download_count": 282557, +"project": "amplitude-analytics" }, { -"download_count": 180812, -"project": "aws-cdk-aws-elasticloadbalancing" +"download_count": 282554, +"project": "mypy-boto3-comprehendmedical" }, { -"download_count": 180762, -"project": "marrow-util" +"download_count": 282532, +"project": "mypy-boto3-globalaccelerator" }, { -"download_count": 180688, -"project": "apache-airflow-providers-apprise" +"download_count": 282508, +"project": "mypy-boto3-frauddetector" }, { -"download_count": 180607, -"project": "helpers" +"download_count": 282415, +"project": "mypy-boto3-snowball" }, { -"download_count": 180578, -"project": "keybert" +"download_count": 282406, +"project": "mypy-boto3-elastictranscoder" }, { -"download_count": 180558, -"project": "aws-cdk-aws-autoscaling-hooktargets" +"download_count": 282256, +"project": "opentelemetry-instrumentation-aiopg" }, { -"download_count": 180507, -"project": "airtable-python-wrapper" +"download_count": 282242, +"project": "mypy-boto3-lex-runtime" }, { -"download_count": 180473, -"project": "pydoc-markdown" +"download_count": 282241, +"project": "mypy-boto3-glacier" }, { -"download_count": 180436, -"project": "dwave-networkx" +"download_count": 282215, +"project": "webapp2" }, { -"download_count": 180420, -"project": "stim" +"download_count": 282166, +"project": "scalecodec" }, { -"download_count": 180374, -"project": "linear-tsv" +"download_count": 282166, +"project": "mypy-boto3-kendra" }, { -"download_count": 180363, -"project": "prince" +"download_count": 282150, +"project": "mnemonic" }, { -"download_count": 180363, -"project": "py-meta-utils" +"download_count": 282115, +"project": "mypy-boto3-iot1click-projects" }, { -"download_count": 180308, -"project": "refinitiv-dataplatform" +"download_count": 282102, +"project": "mypy-boto3-workmail" }, { -"download_count": 180144, -"project": "curio" +"download_count": 282072, +"project": "mypy-boto3-kinesis-video-archived-media" }, { -"download_count": 180136, -"project": "google-cloud-common" +"download_count": 282041, +"project": "mypy-boto3-elastic-inference" }, { -"download_count": 180128, -"project": "django-sekizai" +"download_count": 281989, +"project": "mypy-boto3-kinesis-video-signaling" }, { -"download_count": 180111, -"project": "kedro-telemetry" +"download_count": 281906, +"project": "pennylane-lightning" }, { -"download_count": 180086, -"project": "mike" +"download_count": 281904, +"project": "mypy-boto3-waf-regional" }, { -"download_count": 180077, -"project": "types-boto3" +"download_count": 281904, +"project": "mypy-boto3-appmesh" }, { -"download_count": 180020, -"project": "esp-idf-nvs-partition-gen" +"download_count": 281849, +"project": "mypy-boto3-kinesisvideo" }, { -"download_count": 179947, -"project": "xbbg" +"download_count": 281844, +"project": "mypy-boto3-lex-models" }, { -"download_count": 179909, -"project": "django-solo" +"download_count": 281841, +"project": "mypy-boto3-greengrass" }, { -"download_count": 179884, -"project": "flask-debugtoolbar" +"download_count": 281839, +"project": "mypy-boto3-appstream" }, { -"download_count": 179865, -"project": "praat-parselmouth" +"download_count": 281755, +"project": "prov" }, { -"download_count": 179822, -"project": "docspec-python" +"download_count": 281689, +"project": "netutils" }, { -"download_count": 179714, -"project": "fab-classic" +"download_count": 281680, +"project": "mypy-boto3-iotevents" }, { -"download_count": 179608, -"project": "prefect-dbt" +"download_count": 281662, +"project": "mypy-boto3-timestream-write" }, { -"download_count": 179559, -"project": "hachoir" +"download_count": 281608, +"project": "prefect-github" +}, +{ +"download_count": 281515, +"project": "pickle5" +}, +{ +"download_count": 281488, +"project": "gviz-api" }, { -"download_count": 179408, -"project": "ibis-framework" +"download_count": 281436, +"project": "supermercado" }, { -"download_count": 179349, -"project": "click-config-file" +"download_count": 281375, +"project": "mypy-boto3-lightsail" }, { -"download_count": 179314, -"project": "aws-cdk-aws-cloudfront" +"download_count": 281371, +"project": "beancount-import" }, { -"download_count": 179267, -"project": "sphinx-favicon" +"download_count": 281366, +"project": "pystow" }, { -"download_count": 179252, -"project": "pytoml" +"download_count": 281365, +"project": "mypy-boto3-codecommit" }, { -"download_count": 179205, -"project": "imgtool" +"download_count": 281349, +"project": "mypy-boto3-workdocs" }, { -"download_count": 179180, -"project": "airflow-provider-fivetran-async" +"download_count": 281250, +"project": "honeybee-radiance" }, { -"download_count": 179088, -"project": "pytest-testmon" +"download_count": 281221, +"project": "mypy-boto3-kinesisanalytics" }, { -"download_count": 179076, -"project": "python-chess" +"download_count": 281210, +"project": "mypy-boto3-iotanalytics" }, { -"download_count": 179005, -"project": "esprima" +"download_count": 281127, +"project": "mypy-boto3-kinesis-video-media" }, { -"download_count": 179000, -"project": "efficientnet-pytorch" +"download_count": 281099, +"project": "mypy-boto3-sms-voice" }, { -"download_count": 178956, -"project": "mo-dots" +"download_count": 281085, +"project": "mypy-boto3-qldb-session" }, { -"download_count": 178925, -"project": "mcap" +"download_count": 281071, +"project": "mypy-boto3-pinpoint-sms-voice" }, { -"download_count": 178851, -"project": "mo-imports" +"download_count": 281034, +"project": "pythainlp" }, { -"download_count": 178793, -"project": "trcli" +"download_count": 280989, +"project": "mozilla-django-oidc" }, { -"download_count": 178655, -"project": "torch-fidelity" +"download_count": 280980, +"project": "mypy-boto3-datapipeline" }, { -"download_count": 178616, -"project": "fst-pso" +"download_count": 280965, +"project": "mypy-boto3-connectparticipant" }, { -"download_count": 178611, -"project": "gravis" +"download_count": 280963, +"project": "wagtail" }, { -"download_count": 178551, -"project": "pycodestyle-magic" +"download_count": 280958, +"project": "mypy-boto3-iotthingsgraph" }, { -"download_count": 178521, -"project": "mypy-boto3-cloudfront" +"download_count": 280902, +"project": "mypy-boto3-swf" }, { -"download_count": 178505, -"project": "lapx" +"download_count": 280841, +"project": "magika" }, { -"download_count": 178447, -"project": "pytest-csv" +"download_count": 280840, +"project": "mypy-boto3-opsworkscm" }, { -"download_count": 178400, -"project": "google-cloud-filestore" +"download_count": 280837, +"project": "einops-exts" }, { -"download_count": 178363, -"project": "aliyun-python-sdk-cdn" +"download_count": 280799, +"project": "robocorp-workitems" }, { -"download_count": 178262, -"project": "cyksuid" +"download_count": 280791, +"project": "aws-cdk-aws-events" }, { -"download_count": 178233, -"project": "english-words" +"download_count": 280791, +"project": "mypy-boto3-kinesisanalyticsv2" }, { -"download_count": 178206, -"project": "miniful" +"download_count": 280788, +"project": "mypy-boto3-cur" }, { -"download_count": 178065, -"project": "pdblp" +"download_count": 280737, +"project": "mypy-boto3-workmailmessageflow" }, { -"download_count": 178023, -"project": "beam-nuggets" +"download_count": 280647, +"project": "smart-importer" }, { -"download_count": 177981, -"project": "nipype" +"download_count": 280623, +"project": "xraydb" }, { -"download_count": 177964, -"project": "uvicorn-worker" +"download_count": 280492, +"project": "mypy-boto3-detective" }, { -"download_count": 177930, -"project": "aliyun-python-sdk-cs" +"download_count": 280464, +"project": "amundsen-databuilder" }, { -"download_count": 177916, -"project": "visdom" +"download_count": 280459, +"project": "nbsphinx-link" }, { -"download_count": 177884, -"project": "opensimplex" +"download_count": 280451, +"project": "mypy-boto3-sms" }, { -"download_count": 177842, -"project": "aws-cdk-aws-codebuild" +"download_count": 280365, +"project": "mypy-boto3-savingsplans" }, { -"download_count": 177826, -"project": "feature-engine" +"download_count": 280333, +"project": "robocorp" }, { -"download_count": 177647, -"project": "mypy-boto3-location" +"download_count": 280314, +"project": "redlock-py" }, { -"download_count": 177583, -"project": "python-redmine" +"download_count": 280224, +"project": "elasticsearch-curator" }, { -"download_count": 177568, -"project": "yagmail" +"download_count": 280091, +"project": "mypy-boto3-qldb" }, { -"download_count": 177558, -"project": "zmq" +"download_count": 280082, +"project": "mypy-boto3-chime" }, { -"download_count": 177502, -"project": "types-docopt" +"download_count": 279992, +"project": "interpret-core" }, { -"download_count": 177490, -"project": "fuzzysearch" +"download_count": 279982, +"project": "prefect-sqlalchemy" }, { -"download_count": 177432, -"project": "pyro4" +"download_count": 279906, +"project": "mypy-boto3-cloudhsm" }, { -"download_count": 177431, -"project": "unicodedata2" +"download_count": 279873, +"project": "mypy-boto3-sagemaker-a2i-runtime" }, { -"download_count": 177405, -"project": "awsiotpythonsdk" +"download_count": 279751, +"project": "mypy-boto3-cloudhsmv2" }, { -"download_count": 177399, -"project": "binpacking" +"download_count": 279745, +"project": "awslimitchecker" }, { -"download_count": 177397, -"project": "jinja2-ansible-filters" +"download_count": 279691, +"project": "cognite-sdk" }, { -"download_count": 177316, -"project": "celery-types" +"download_count": 279560, +"project": "mypy-boto3-application-insights" }, { -"download_count": 177314, -"project": "genshi" +"download_count": 279531, +"project": "stix2-patterns" }, { -"download_count": 177223, -"project": "pyuegc" +"download_count": 279376, +"project": "h3ronpy" }, { -"download_count": 177222, -"project": "flet-core" +"download_count": 279367, +"project": "pandas-ta" }, { -"download_count": 177146, -"project": "pypi-simple" +"download_count": 279306, +"project": "mypy-boto3-codestar-notifications" }, { -"download_count": 177139, -"project": "marrow-interface" +"download_count": 279296, +"project": "drf-jwt" }, { -"download_count": 177039, -"project": "dbnd" +"download_count": 279151, +"project": "mypy-boto3-autoscaling-plans" }, { -"download_count": 177003, -"project": "json-schema-for-humans" +"download_count": 279093, +"project": "mypy-boto3-cognito-sync" }, { -"download_count": 176954, -"project": "pyvo" +"download_count": 279064, +"project": "mock-serial" }, { -"download_count": 176909, -"project": "untangle" +"download_count": 279058, +"project": "mypy-boto3-network-firewall" }, { -"download_count": 176693, -"project": "json2xml" +"download_count": 279013, +"project": "google-cloud-private-ca" }, { -"download_count": 176592, -"project": "plum-dispatch" +"download_count": 278963, +"project": "stackprinter" }, { -"download_count": 176526, -"project": "azure-mgmt-automation" +"download_count": 278954, +"project": "rtry" }, { -"download_count": 176488, -"project": "xlwings" +"download_count": 278691, +"project": "langchain-pinecone" }, { -"download_count": 176478, -"project": "bioframe" +"download_count": 278660, +"project": "cpplint" }, { -"download_count": 176436, -"project": "docspec" +"download_count": 278658, +"project": "mypy-boto3-macie2" }, { -"download_count": 176387, -"project": "stringparser" +"download_count": 278614, +"project": "mypy-boto3-sso-admin" }, { -"download_count": 176369, -"project": "workadays" +"download_count": 278571, +"project": "dbt-clickhouse" }, { -"download_count": 176340, -"project": "mailchimp3" +"download_count": 278532, +"project": "packed" }, { -"download_count": 176271, -"project": "ciscoconfparse" +"download_count": 278500, +"project": "wheel-filename" }, { -"download_count": 176271, -"project": "pydantic-factories" +"download_count": 278479, +"project": "mypy-boto3-iotsitewise" }, { -"download_count": 176202, -"project": "mypy-boto3-servicecatalog" +"download_count": 278408, +"project": "mypy-boto3-resource-groups" }, { -"download_count": 176043, -"project": "guppy3" +"download_count": 278388, +"project": "mypy-boto3-codeguru-reviewer" }, { -"download_count": 175956, -"project": "torchcrepe" +"download_count": 278376, +"project": "django-elasticsearch-dsl" }, { -"download_count": 175869, -"project": "aws-cdk-aws-route53-targets" +"download_count": 278306, +"project": "pytmc" }, { -"download_count": 175863, -"project": "django-sortedm2m" +"download_count": 278239, +"project": "mypy-boto3-codestar-connections" }, { -"download_count": 175823, -"project": "jmp" +"download_count": 278202, +"project": "mypy-boto3-clouddirectory" }, { -"download_count": 175815, -"project": "inotify-simple" +"download_count": 278154, +"project": "spacy-transformers" }, { -"download_count": 175798, -"project": "mypy-boto3-mwaa" +"download_count": 278057, +"project": "linode-metadata" }, { -"download_count": 175787, -"project": "art" +"download_count": 278005, +"project": "mypy-boto3-robomaker" }, { -"download_count": 175710, -"project": "dramatiq" +"download_count": 277966, +"project": "mypy-boto3-codeguruprofiler" }, { -"download_count": 175601, -"project": "tree-sitter-languages" +"download_count": 277959, +"project": "mypy-boto3-cloud9" }, { -"download_count": 175396, -"project": "tf-nightly" +"download_count": 277952, +"project": "typeapi" }, { -"download_count": 175378, -"project": "tf-keras-nightly" +"download_count": 277799, +"project": "apache-airflow-providers-hashicorp" }, { -"download_count": 175364, -"project": "jinxed" +"download_count": 277414, +"project": "abqpy" }, { -"download_count": 175360, -"project": "poethepoet" +"download_count": 277413, +"project": "delta-sharing" }, { -"download_count": 175116, -"project": "opendatalab" +"download_count": 277373, +"project": "langchain-postgres" }, { -"download_count": 175058, -"project": "jschon" +"download_count": 277293, +"project": "jmp" }, { -"download_count": 175052, -"project": "aws-cdk-aws-codecommit" +"download_count": 277278, +"project": "together" }, { -"download_count": 174983, -"project": "telepath" +"download_count": 277179, +"project": "sphinx-data-viewer" }, { -"download_count": 174792, -"project": "aws-cdk-aws-servicediscovery" +"download_count": 277117, +"project": "mypy-boto3-ivs-realtime" }, { -"download_count": 174758, -"project": "pytest-testrail" +"download_count": 276989, +"project": "pytest-pylint" }, { -"download_count": 174689, -"project": "nr-stream" +"download_count": 276983, +"project": "python-binance" }, { -"download_count": 174584, -"project": "nbsphinx-link" +"download_count": 276875, +"project": "neptune" }, { -"download_count": 174495, -"project": "mypy-boto3-transcribe" +"download_count": 276766, +"project": "httpstan" }, { -"download_count": 174473, -"project": "pyxll" +"download_count": 276766, +"project": "amundsen-common" }, { -"download_count": 174443, -"project": "pysparkip" +"download_count": 276724, +"project": "inform" }, { -"download_count": 174349, -"project": "pretty-errors" +"download_count": 276586, +"project": "pip-install-test" }, { -"download_count": 174314, -"project": "nvidia-nvcomp-cu12" +"download_count": 276450, +"project": "lifetimes" }, { -"download_count": 174264, -"project": "circus" +"download_count": 276289, +"project": "mypy-boto3-ivs" }, { -"download_count": 174176, -"project": "pycoingecko" +"download_count": 276183, +"project": "faust" }, { -"download_count": 174100, -"project": "tox-uv" +"download_count": 276034, +"project": "sqlalchemy-continuum" }, { -"download_count": 173979, -"project": "flake8-functions" +"download_count": 275905, +"project": "galois" }, { -"download_count": 173972, -"project": "antsibull-changelog" +"download_count": 275893, +"project": "xraylib" }, { -"download_count": 173776, -"project": "mypy-boto3-resourcegroupstaggingapi" +"download_count": 275873, +"project": "django-hijack" }, { -"download_count": 173772, -"project": "mmdet" +"download_count": 275812, +"project": "certipy" }, { -"download_count": 173743, -"project": "typeapi" +"download_count": 275697, +"project": "pyscipopt" }, { -"download_count": 173707, -"project": "cysignals" +"download_count": 275565, +"project": "rejson" }, { -"download_count": 173700, -"project": "cloudfoundry-client" +"download_count": 275496, +"project": "pulumi-tls" }, { -"download_count": 173642, -"project": "prefect-snowflake" +"download_count": 275306, +"project": "pyro-ppl" }, { -"download_count": 173590, -"project": "py-dateutil" +"download_count": 275278, +"project": "opentelemetry-instrumentation-pymemcache" }, { -"download_count": 173577, -"project": "missingno" +"download_count": 275162, +"project": "bert-score" }, { -"download_count": 173421, -"project": "bigquery" +"download_count": 275101, +"project": "captum" }, { -"download_count": 173272, -"project": "nr-date" +"download_count": 274996, +"project": "reverse-geocoder" }, { -"download_count": 173239, -"project": "setuptools-odoo" +"download_count": 274880, +"project": "pylint-gitlab" }, { -"download_count": 173194, -"project": "types-bleach" +"download_count": 274870, +"project": "serpent" }, { -"download_count": 173127, -"project": "google-cloud-appengine-admin" +"download_count": 274795, +"project": "aws-cdk-aws-cloudwatch" }, { -"download_count": 172945, -"project": "wheel-filename" +"download_count": 274670, +"project": "cssmin" }, { -"download_count": 172924, -"project": "aws-cdk-aws-dynamodb" +"download_count": 274639, +"project": "pymarshaler" }, { -"download_count": 172922, -"project": "aws-cdk-aws-acmpca" +"download_count": 274586, +"project": "nr-date" }, { -"download_count": 172700, -"project": "nr-util" +"download_count": 274502, +"project": "futurist" }, { -"download_count": 172635, -"project": "lazy-model" +"download_count": 274496, +"project": "django-htmx" }, { -"download_count": 172567, -"project": "langchain-ollama" +"download_count": 274430, +"project": "runtests" }, { -"download_count": 172438, -"project": "sqlalchemy-cockroachdb" +"download_count": 274289, +"project": "toml-sort" }, { -"download_count": 172417, -"project": "maya" +"download_count": 274249, +"project": "deepface" }, { -"download_count": 172150, -"project": "mypy-boto3-quicksight" +"download_count": 273964, +"project": "pyreadstat" }, { -"download_count": 172083, -"project": "ansicon" +"download_count": 273831, +"project": "django-autocomplete-light" }, { -"download_count": 172077, -"project": "mypy-boto3-scheduler" +"download_count": 273768, +"project": "pylogbeat" }, { -"download_count": 172070, -"project": "beanie" +"download_count": 273624, +"project": "stream-inflate" }, { -"download_count": 172027, -"project": "betamax" +"download_count": 273401, +"project": "willow" }, { -"download_count": 171916, -"project": "nbmake" +"download_count": 273313, +"project": "tailer" }, { -"download_count": 171883, -"project": "cloud-tpu-client" +"download_count": 273248, +"project": "django-recaptcha" }, { -"download_count": 171766, -"project": "mypy-boto3-translate" +"download_count": 272841, +"project": "versionfinder" }, { -"download_count": 171681, -"project": "powerlaw" +"download_count": 272792, +"project": "py-consul" }, { -"download_count": 171567, -"project": "apify-client" +"download_count": 272709, +"project": "robinhood-aiokafka" }, { -"download_count": 171541, -"project": "mypy-boto3-iot-data" +"download_count": 272506, +"project": "webauthn" }, { -"download_count": 171494, -"project": "jsonalias" +"download_count": 272460, +"project": "mypy-boto3-braket" }, { -"download_count": 171472, -"project": "flake8-noqa" +"download_count": 272328, +"project": "tf-models-nightly" }, { -"download_count": 171419, -"project": "snowflake-ingest" +"download_count": 272321, +"project": "oslash" }, { -"download_count": 171249, -"project": "hl7" +"download_count": 272280, +"project": "feature-engine" }, { -"download_count": 171192, -"project": "ubelt" +"download_count": 272213, +"project": "tm1py" }, { -"download_count": 171143, -"project": "mdformat-tables" +"download_count": 271987, +"project": "osmnx" }, { -"download_count": 171005, -"project": "nbtlib" +"download_count": 271974, +"project": "tinybird-cli" }, { -"download_count": 170982, -"project": "pymatching" +"download_count": 271783, +"project": "mwtypes" }, { -"download_count": 170948, -"project": "mujoco" +"download_count": 271736, +"project": "backports-strenum" }, { -"download_count": 170944, -"project": "mailchecker" +"download_count": 271474, +"project": "sparkaid" }, { -"download_count": 170868, -"project": "gcloud-rest-auth" +"download_count": 271457, +"project": "happi" }, { -"download_count": 170762, -"project": "pyramid-debugtoolbar" +"download_count": 271395, +"project": "pcdsutils" }, { -"download_count": 170710, -"project": "mlflow-watsonml" +"download_count": 271392, +"project": "sphinx-needs" }, { -"download_count": 170633, -"project": "cachey" +"download_count": 271368, +"project": "callee" }, { -"download_count": 170570, -"project": "pytest-tinybird" +"download_count": 270999, +"project": "pcdsdevices" }, { -"download_count": 170523, -"project": "pygtail" +"download_count": 270916, +"project": "pytest-parametrization" }, { -"download_count": 170438, -"project": "coralogix-logger" +"download_count": 270894, +"project": "mypy-boto3-amp" }, { -"download_count": 170426, -"project": "vt-py" +"download_count": 270889, +"project": "py-bip39-bindings" }, { -"download_count": 170387, -"project": "aiotask-context" +"download_count": 270882, +"project": "py-algorand-sdk" }, { -"download_count": 170351, -"project": "onnxslim" +"download_count": 270871, +"project": "qtpyinheritance" }, { -"download_count": 170255, -"project": "mypy-boto3-apigatewayv2" +"download_count": 270549, +"project": "segmentation-models-pytorch" }, { -"download_count": 170243, -"project": "oauth2-client" +"download_count": 270528, +"project": "mypy-boto3-devops-guru" }, { -"download_count": 170208, -"project": "chkpkg" +"download_count": 270494, +"project": "pcdscalc" }, { -"download_count": 170148, -"project": "neatest" +"download_count": 270395, +"project": "dagster-celery-k8s" }, { -"download_count": 170117, -"project": "vector-quantize-pytorch" +"download_count": 270391, +"project": "mobly" }, { -"download_count": 170116, -"project": "venv-pack" +"download_count": 270366, +"project": "lightpath" }, { -"download_count": 170080, -"project": "robotframework-faker" +"download_count": 270357, +"project": "mypy-boto3-iotwireless" }, { -"download_count": 170024, -"project": "adjust-precision-for-schema" +"download_count": 270351, +"project": "mypy-boto3-greengrassv2" }, { -"download_count": 169926, -"project": "swapper" +"download_count": 270294, +"project": "polars-lts-cpu" }, { -"download_count": 169809, -"project": "mode" +"download_count": 270090, +"project": "nestedtext" }, { -"download_count": 169807, -"project": "cdsapi" +"download_count": 269939, +"project": "nncf" }, { -"download_count": 169731, -"project": "airbyte" +"download_count": 269898, +"project": "canopen" }, { -"download_count": 169694, -"project": "healpix" +"download_count": 269839, +"project": "tortoise-orm" }, { -"download_count": 169645, -"project": "opentelemetry-instrumentation-aiohttp-server" +"download_count": 269656, +"project": "mypy-boto3-wellarchitected" }, { -"download_count": 169473, -"project": "crispy-bootstrap4" +"download_count": 269572, +"project": "mypy-boto3-sagemaker-featurestore-runtime" }, { -"download_count": 169472, -"project": "local-attention" +"download_count": 269565, +"project": "python-schema-registry-client" }, { -"download_count": 169460, -"project": "flake8-expression-complexity" +"download_count": 269565, +"project": "cityhash" }, { -"download_count": 169425, -"project": "delegator" +"download_count": 269398, +"project": "mypy-boto3-amplifybackend" }, { -"download_count": 169392, -"project": "injectool" +"download_count": 269386, +"project": "super-collections" }, { -"download_count": 169182, -"project": "filechunkio" +"download_count": 269367, +"project": "mypy-boto3-lookoutvision" }, { -"download_count": 169141, -"project": "clarifai" +"download_count": 269340, +"project": "mypy-boto3-customer-profiles" }, { -"download_count": 169140, -"project": "django-webtest" +"download_count": 269300, +"project": "geojson-pydantic" }, { -"download_count": 168966, -"project": "extra-streamlit-components" +"download_count": 269277, +"project": "cmsis-pack-manager" }, { -"download_count": 168946, -"project": "celery-redbeat" +"download_count": 269257, +"project": "markdown-to-json" }, { -"download_count": 168907, -"project": "pyobjc-framework-applicationservices" +"download_count": 269123, +"project": "mypy-boto3-iotfleethub" }, { -"download_count": 168858, -"project": "jwskate" +"download_count": 269051, +"project": "autoray" }, { -"download_count": 168857, -"project": "gaussiancl" +"download_count": 268981, +"project": "mypy-boto3-healthlake" }, { -"download_count": 168839, -"project": "mypy-boto3-ec2-instance-connect" +"download_count": 268968, +"project": "mypy-boto3-databrew" }, { -"download_count": 168788, -"project": "mypy-boto3-pinpoint" +"download_count": 268926, +"project": "mypy-boto3-iotdeviceadvisor" }, { -"download_count": 168787, -"project": "daiquiri" +"download_count": 268824, +"project": "mypy-boto3-appintegrations" }, { -"download_count": 168776, -"project": "json-logic" +"download_count": 268773, +"project": "opentracing-utils" }, { -"download_count": 168773, -"project": "prowler" +"download_count": 268744, +"project": "lingua-language-detector" }, { -"download_count": 168744, -"project": "sphinxcontrib-katex" +"download_count": 268658, +"project": "mypy-boto3-sagemaker-edge" }, { -"download_count": 168637, -"project": "flt" +"download_count": 268614, +"project": "jsonable" }, { -"download_count": 168571, -"project": "osmnx" +"download_count": 268449, +"project": "shillelagh" }, { -"download_count": 168555, -"project": "mypy-boto3-kafka" +"download_count": 268406, +"project": "more-click" }, { -"download_count": 168534, -"project": "anyjson" +"download_count": 268384, +"project": "aws-cdk-aws-lambda" }, { -"download_count": 168378, -"project": "embedding-reader" +"download_count": 268383, +"project": "mypy-boto3-s3outposts" }, { -"download_count": 168324, -"project": "mr-proper" +"download_count": 268325, +"project": "ipaddr" }, { -"download_count": 168112, -"project": "pandavro" +"download_count": 268302, +"project": "launchable" }, { -"download_count": 168105, -"project": "pymongocrypt" +"download_count": 268288, +"project": "py-ed25519-zebra-bindings" }, { -"download_count": 168085, -"project": "mypy-boto3-sesv2" +"download_count": 268227, +"project": "mmengine" }, { -"download_count": 168055, -"project": "elevenlabs" +"download_count": 268197, +"project": "mypy-boto3-auditmanager" }, { -"download_count": 167970, -"project": "ledgerblue" +"download_count": 268179, +"project": "mdxpy" }, { -"download_count": 167882, -"project": "amazon-textract-response-parser" +"download_count": 268132, +"project": "aliyun-python-sdk-ecs" }, { -"download_count": 167794, -"project": "sox" +"download_count": 268042, +"project": "secure-smtplib" }, { -"download_count": 167757, -"project": "repath" +"download_count": 268042, +"project": "amazon-textract-response-parser" }, { -"download_count": 167749, -"project": "vintage" +"download_count": 267999, +"project": "py-markdown-table" }, { -"download_count": 167714, -"project": "httptest" +"download_count": 267990, +"project": "aws-cdk-aws-logs" }, { -"download_count": 167691, -"project": "metaflow" +"download_count": 267952, +"project": "warcio" }, { -"download_count": 167549, -"project": "chia-rs" +"download_count": 267917, +"project": "mypy-boto3-servicecatalog-appregistry" }, { -"download_count": 167477, -"project": "pyobjc-framework-coretext" +"download_count": 267911, +"project": "mypy-boto3-lexv2-runtime" }, { -"download_count": 167394, -"project": "csscompressor" +"download_count": 267869, +"project": "mypy-boto3-lexv2-models" }, { -"download_count": 167366, -"project": "casbin" +"download_count": 267840, +"project": "pytest-mpl" }, { -"download_count": 167282, -"project": "rasa" +"download_count": 267735, +"project": "kedro-telemetry" }, { -"download_count": 167277, -"project": "binapy" +"download_count": 267712, +"project": "os-client-config" }, { -"download_count": 167096, -"project": "cloudml-hypertune" +"download_count": 267615, +"project": "mypy-boto3-connect-contact-lens" }, { -"download_count": 167046, -"project": "robotframework-tidy" +"download_count": 267364, +"project": "autologging" }, { -"download_count": 166975, -"project": "pygal" +"download_count": 267236, +"project": "sanic-ext" }, { -"download_count": 166974, -"project": "airflow-dbt" +"download_count": 266814, +"project": "qpd" }, { -"download_count": 166900, -"project": "polars-lts-cpu" +"download_count": 266710, +"project": "cvss" }, { -"download_count": 166881, -"project": "pgzip" +"download_count": 266613, +"project": "pyjson5" }, { -"download_count": 166873, -"project": "pysnow" +"download_count": 266353, +"project": "simplekml" }, { -"download_count": 166854, -"project": "basicauth" +"download_count": 266300, +"project": "mapclassify" }, { -"download_count": 166837, -"project": "django-dirtyfields" +"download_count": 266036, +"project": "pact-python" }, { -"download_count": 166820, -"project": "geffnet" +"download_count": 265738, +"project": "easy-thumbnails" }, { -"download_count": 166819, -"project": "sphinx-reredirects" +"download_count": 265590, +"project": "nbimporter" }, { -"download_count": 166704, -"project": "mypy-boto3-elasticache" +"download_count": 265508, +"project": "mypy-boto3-mgn" }, { -"download_count": 166639, -"project": "websocket" +"download_count": 265363, +"project": "types-pkg-resources" }, { -"download_count": 166629, -"project": "mypy-boto3-codebuild" +"download_count": 265353, +"project": "zmq" }, { -"download_count": 166626, -"project": "aerospike" +"download_count": 265329, +"project": "docstr-coverage" }, { -"download_count": 166611, -"project": "translators" +"download_count": 265260, +"project": "aws-cdk-aws-s3-assets" }, { -"download_count": 166608, -"project": "django-autoslug" +"download_count": 265188, +"project": "deb-pkg-tools" }, { -"download_count": 166558, -"project": "caldav" +"download_count": 265182, +"project": "flake8-return" }, { -"download_count": 166554, -"project": "django-migration-linter" +"download_count": 265174, +"project": "parametrize-from-file" }, { -"download_count": 166481, -"project": "types-xmltodict" +"download_count": 265165, +"project": "mypy-boto3-fis" }, { -"download_count": 166423, -"project": "eli5" +"download_count": 265161, +"project": "files-com" }, { -"download_count": 166330, -"project": "jinjanator" +"download_count": 265155, +"project": "types-fpdf2" }, { -"download_count": 166318, -"project": "jinjanator-plugins" +"download_count": 265049, +"project": "inline-snapshot" }, { -"download_count": 166145, -"project": "pyop" +"download_count": 265045, +"project": "username" }, { -"download_count": 166137, -"project": "general-functions" +"download_count": 265000, +"project": "google-api" }, { -"download_count": 166133, -"project": "ropwr" +"download_count": 264968, +"project": "replicate" }, { -"download_count": 166057, -"project": "html-sanitizer" +"download_count": 264914, +"project": "sty" }, { -"download_count": 166042, -"project": "dbldatagen" +"download_count": 264843, +"project": "filesplit" }, { -"download_count": 166039, -"project": "classify-imports" +"download_count": 264806, +"project": "tf-nightly" }, { -"download_count": 165988, -"project": "posix-ipc" +"download_count": 264626, +"project": "mariadb" }, { -"download_count": 165938, -"project": "pyproject-flake8" +"download_count": 264490, +"project": "ttp-templates" }, { -"download_count": 165911, -"project": "mypy-boto3-application-autoscaling" +"download_count": 264259, +"project": "kaggle" }, { -"download_count": 165887, -"project": "django-rest-knox" +"download_count": 264245, +"project": "mypy-boto3-lookoutmetrics" }, { -"download_count": 165861, -"project": "safehttpx" +"download_count": 264053, +"project": "tidyexc" }, { -"download_count": 165851, -"project": "halp" +"download_count": 264013, +"project": "mypy-boto3-lookoutequipment" }, { -"download_count": 165799, -"project": "typer-cli" +"download_count": 263805, +"project": "ailever" }, { -"download_count": 165769, -"project": "pip-autoremove" +"download_count": 263784, +"project": "storops" }, { -"download_count": 165630, -"project": "deepgram-sdk" +"download_count": 263460, +"project": "mypy-boto3-ssm-incidents" }, { -"download_count": 165472, -"project": "pymonet" +"download_count": 263379, +"project": "elasticquery" }, { -"download_count": 165414, -"project": "py-markdown-table" +"download_count": 263286, +"project": "mypy-boto3-finspace-data" }, { -"download_count": 165365, -"project": "jupyter-latex-envs" +"download_count": 263266, +"project": "tensorflow-decision-forests" }, { -"download_count": 165248, -"project": "pykcs11" +"download_count": 263222, +"project": "traits" }, { -"download_count": 165157, -"project": "pandas-ta" +"download_count": 263195, +"project": "treelite-runtime" }, { -"download_count": 165156, -"project": "zlib-ng" +"download_count": 263181, +"project": "jinxed" }, { -"download_count": 165155, -"project": "dagster-datadog" +"download_count": 263179, +"project": "mypy-boto3-finspace" }, { -"download_count": 164999, -"project": "aws-cdk-aws-globalaccelerator" +"download_count": 263109, +"project": "chess" }, { -"download_count": 164937, -"project": "web-py" +"download_count": 263094, +"project": "crewai-tools" }, { -"download_count": 164874, -"project": "target-jsonl" +"download_count": 263032, +"project": "rio-cogeo" }, { -"download_count": 164680, -"project": "kedro-viz" +"download_count": 262964, +"project": "panda3d" }, { -"download_count": 164663, -"project": "janome" +"download_count": 262952, +"project": "instructorembedding" }, { -"download_count": 164589, -"project": "pscript" +"download_count": 262935, +"project": "spirack" }, { -"download_count": 164580, -"project": "neobolt" +"download_count": 262844, +"project": "mypy-boto3-apprunner" }, { -"download_count": 164498, -"project": "mypy-boto3-emr-containers" +"download_count": 262650, +"project": "tensorly" }, { -"download_count": 164474, -"project": "pinterest-generated-client" +"download_count": 262572, +"project": "aws-cdk-aws-ecr" }, { -"download_count": 164396, -"project": "mypy-boto3-elb" +"download_count": 262552, +"project": "esp-idf-nvs-partition-gen" }, { -"download_count": 164354, -"project": "flask-bootstrap4" +"download_count": 262516, +"project": "lazy-model" }, { -"download_count": 164315, -"project": "pinterest-api-sdk" +"download_count": 262428, +"project": "lalsuite" }, { -"download_count": 164313, -"project": "robotframework-selenium2library" +"download_count": 262362, +"project": "wavefront-cli" }, { -"download_count": 164301, -"project": "urlobject" +"download_count": 262224, +"project": "feather-format" }, { -"download_count": 164262, -"project": "mypy-boto3-ram" +"download_count": 262200, +"project": "aws-cdk-aws-ssm" }, { -"download_count": 164218, -"project": "vllm-flash-attn" +"download_count": 262199, +"project": "ccard" }, { -"download_count": 164027, -"project": "app-model" +"download_count": 262064, +"project": "azure-iot-device" }, { -"download_count": 163978, -"project": "jsonify" +"download_count": 262048, +"project": "mypy-boto3-ssm-contacts" }, { -"download_count": 163953, -"project": "rdrobust" +"download_count": 262033, +"project": "pamela" }, { -"download_count": 163923, -"project": "warlock" +"download_count": 261933, +"project": "pytest-wake" }, { -"download_count": 163847, -"project": "dbt" +"download_count": 261825, +"project": "vector-quantize-pytorch" }, { -"download_count": 163771, -"project": "mypy-boto3-synthetics" +"download_count": 261706, +"project": "django-templated-mail" }, { -"download_count": 163770, -"project": "modal" +"download_count": 261675, +"project": "dataflows-tabulator" }, { -"download_count": 163726, -"project": "autofaiss" +"download_count": 261613, +"project": "pyocd" }, { -"download_count": 163562, -"project": "qdarkstyle" +"download_count": 261569, +"project": "retryz" }, { -"download_count": 163514, -"project": "gradio-imageslider" +"download_count": 261558, +"project": "python-jwt" }, { -"download_count": 163397, -"project": "robotframework-datadriver" +"download_count": 261447, +"project": "pyqtwebengine-qt5" }, { -"download_count": 163171, -"project": "mypy-boto3-codepipeline" +"download_count": 261426, +"project": "python-redmine" }, { -"download_count": 163087, -"project": "mypy-boto3-apigatewaymanagementapi" +"download_count": 261368, +"project": "pytest-doctestplus" }, { -"download_count": 162974, -"project": "recombee-api-client" +"download_count": 261358, +"project": "mypy-boto3-applicationcostprofiler" }, { -"download_count": 162965, -"project": "mozfile" +"download_count": 261267, +"project": "types-google-cloud-ndb" }, { -"download_count": 162926, -"project": "sphinx-inline-tabs" +"download_count": 261198, +"project": "slicerator" }, { -"download_count": 162873, -"project": "salt-lint" +"download_count": 261144, +"project": "autogluon-timeseries" }, { -"download_count": 162707, -"project": "mypy-boto3-codeartifact" +"download_count": 261122, +"project": "virtualenvwrapper" }, { -"download_count": 162454, -"project": "chiavdf" +"download_count": 261118, +"project": "dramatiq" }, { -"download_count": 162432, -"project": "django-sslserver" +"download_count": 261093, +"project": "gcloud-aio-pubsub" }, { -"download_count": 162306, -"project": "djangorestframework-dataclasses" +"download_count": 261090, +"project": "django-admin-autocomplete-filter" }, { -"download_count": 162269, -"project": "cvss" +"download_count": 261069, +"project": "substrate-interface" }, { -"download_count": 162256, -"project": "cfnresponse" +"download_count": 260993, +"project": "openexr" }, { -"download_count": 162234, -"project": "mypy-boto3-acm" +"download_count": 260984, +"project": "cachez" }, { -"download_count": 162208, -"project": "visualdl" +"download_count": 260906, +"project": "mypy-boto3-appconfigdata" }, { -"download_count": 162185, -"project": "shipyard-bp-utils" +"download_count": 260881, +"project": "mypy-boto3-grafana" }, { -"download_count": 162103, -"project": "setoptconf-tmp" +"download_count": 260799, +"project": "untangle" }, { -"download_count": 162085, -"project": "nbstripout" +"download_count": 260781, +"project": "flask-principal" }, { -"download_count": 162052, -"project": "flask-dance" +"download_count": 260731, +"project": "splink" }, { -"download_count": 162023, -"project": "magicgui" +"download_count": 260710, +"project": "pyroscope-io" }, { -"download_count": 162003, -"project": "textile" +"download_count": 260650, +"project": "mypy-boto3-bedrock-agent-runtime" }, { -"download_count": 161966, -"project": "moderngl" +"download_count": 260613, +"project": "whichcraft" }, { -"download_count": 161950, -"project": "petastorm" +"download_count": 260529, +"project": "sklearn-crfsuite" }, { -"download_count": 161938, -"project": "meraki" +"download_count": 260509, +"project": "types-maxminddb" }, { -"download_count": 161888, -"project": "scylla-driver" +"download_count": 260471, +"project": "mypy-boto3-proton" }, { -"download_count": 161853, -"project": "pdftopng" +"download_count": 260430, +"project": "scrubadub" }, { -"download_count": 161823, -"project": "wait-for" +"download_count": 260404, +"project": "marshmallow3-annotations" }, { -"download_count": 161771, -"project": "django-mathfilters" +"download_count": 260300, +"project": "mypy-boto3-bedrock-agent" }, { -"download_count": 161769, -"project": "crytic-compile" +"download_count": 260105, +"project": "ytsaurus-client" }, { -"download_count": 161618, -"project": "cads-api-client" +"download_count": 260036, +"project": "drf-writable-nested" }, { -"download_count": 161565, -"project": "google-cloud-certificate-manager" +"download_count": 259969, +"project": "djangorestframework-xml" }, { -"download_count": 161519, -"project": "apache-superset" +"download_count": 259929, +"project": "fastexcel" }, { -"download_count": 161471, -"project": "m2r2" +"download_count": 259832, +"project": "abstra" }, { -"download_count": 161272, -"project": "mypy-boto3-securityhub" +"download_count": 259668, +"project": "mypy-boto3-inspector2" }, { -"download_count": 161271, -"project": "colorlover" +"download_count": 259667, +"project": "stanza" }, { -"download_count": 161270, -"project": "flake8-pep3101" +"download_count": 259662, +"project": "times" }, { -"download_count": 161253, -"project": "schemachange" +"download_count": 259662, +"project": "mypy-boto3-redshift-serverless" }, { -"download_count": 161233, -"project": "apache-airflow-providers-grpc" +"download_count": 259644, +"project": "mailchimp-transactional" }, { -"download_count": 161225, -"project": "sphinx-mdinclude" +"download_count": 259597, +"project": "allennlp-pvt-nightly" }, { -"download_count": 161219, -"project": "lingua-language-detector" +"download_count": 259518, +"project": "mypy-boto3-account" }, { -"download_count": 161156, -"project": "zhinst-timing-models" +"download_count": 259478, +"project": "in-place" }, { -"download_count": 161138, -"project": "mypy-boto3-marketplace-entitlement" +"download_count": 259277, +"project": "google-cloud-ndb" }, { -"download_count": 160898, -"project": "mypy-boto3-iot" +"download_count": 259141, +"project": "opensearch-dsl" }, { -"download_count": 160808, -"project": "azureml-train-automl" +"download_count": 259051, +"project": "mypy-boto3-memorydb" }, { -"download_count": 160692, -"project": "imgkit" +"download_count": 258876, +"project": "sphinxcontrib-drawio" }, { -"download_count": 160669, -"project": "airflow-clickhouse-plugin" +"download_count": 258874, +"project": "streamlit-extras" }, { -"download_count": 160621, -"project": "mypy-boto3-s3control" +"download_count": 258758, +"project": "pyarrow-stubs" }, { -"download_count": 160539, -"project": "napari" +"download_count": 258733, +"project": "vintage" }, { -"download_count": 160433, -"project": "django-cryptography" +"download_count": 258352, +"project": "beanie" }, { -"download_count": 160412, -"project": "logger" +"download_count": 258089, +"project": "pwlf" }, { -"download_count": 160397, -"project": "mypy-boto3-codedeploy" +"download_count": 258067, +"project": "mypy-boto3-route53-recovery-control-config" }, { -"download_count": 160395, -"project": "csvkit" +"download_count": 258042, +"project": "mypy-boto3-chime-sdk-messaging" }, { -"download_count": 160390, -"project": "user-agent" +"download_count": 258037, +"project": "mypy-boto3-snow-device-management" }, { -"download_count": 160383, -"project": "vbuild" +"download_count": 257996, +"project": "stix2" }, { -"download_count": 160360, -"project": "pymysqllock" +"download_count": 257941, +"project": "first" }, { -"download_count": 160313, -"project": "threadloop" +"download_count": 257862, +"project": "equinox" }, { -"download_count": 160309, -"project": "ngram" +"download_count": 257802, +"project": "ahocorapy" }, { -"download_count": 160290, -"project": "systemd-python" +"download_count": 257784, +"project": "mypy-boto3-chime-sdk-identity" }, { -"download_count": 160259, -"project": "django-permissionedforms" +"download_count": 257753, +"project": "pyjwkest" }, { -"download_count": 160259, -"project": "bidsschematools" +"download_count": 257679, +"project": "mypy-boto3-cloudcontrol" }, { -"download_count": 160200, -"project": "mypy-boto3-ebs" +"download_count": 257568, +"project": "mypy-boto3-keyspaces" }, { -"download_count": 160199, -"project": "hierarchicalforecast" +"download_count": 257517, +"project": "huaweicloudsdkdns" }, { -"download_count": 160164, -"project": "mypy-boto3-polly" +"download_count": 257444, +"project": "insightface" }, { -"download_count": 160130, -"project": "yaml-config" +"download_count": 257332, +"project": "zxcvbn" }, { -"download_count": 160041, -"project": "pystoi" +"download_count": 257293, +"project": "sliceline" }, { -"download_count": 159972, -"project": "mkdocs-minify-plugin" +"download_count": 257220, +"project": "pycobertura" }, { -"download_count": 159935, -"project": "mdformat-frontmatter" +"download_count": 257147, +"project": "mypy-boto3-wisdom" }, { -"download_count": 159913, -"project": "django-grappelli" +"download_count": 257096, +"project": "ipy" }, { -"download_count": 159872, -"project": "mypy-boto3" +"download_count": 257096, +"project": "mypy-boto3-route53-recovery-cluster" }, { -"download_count": 159737, -"project": "autowrapt" +"download_count": 257001, +"project": "mypy-boto3-route53-recovery-readiness" }, { -"download_count": 159699, -"project": "olefileio-pl" +"download_count": 256950, +"project": "mypy-boto3-kafkaconnect" }, { -"download_count": 159686, -"project": "pytest-reportlog" +"download_count": 256767, +"project": "pyiso8583" }, { -"download_count": 159657, -"project": "mypy-boto3-mediaconvert" +"download_count": 256710, +"project": "mypy-boto3-voice-id" }, { -"download_count": 159624, -"project": "mypy-boto3-budgets" +"download_count": 256646, +"project": "oic" }, { -"download_count": 159572, -"project": "django-admin-autocomplete-filter" +"download_count": 256643, +"project": "mcap-protobuf-support" }, { -"download_count": 159422, -"project": "jaeger-client" +"download_count": 256629, +"project": "bech32" }, { -"download_count": 159277, -"project": "mypy-boto3-comprehend" +"download_count": 256566, +"project": "mypy-boto3-omics" }, { -"download_count": 159274, -"project": "napari-console" +"download_count": 256438, +"project": "pydantic-factories" }, { -"download_count": 159053, -"project": "google-cloud-notebooks" +"download_count": 256418, +"project": "xmltojson" }, { -"download_count": 158883, -"project": "htpasswd" +"download_count": 256336, +"project": "aiodogstatsd" }, { -"download_count": 158872, -"project": "progressbar33" +"download_count": 256317, +"project": "rospkg" }, { -"download_count": 158833, -"project": "mypy-boto3-redshift" +"download_count": 256303, +"project": "mypy-boto3-workspaces-web" }, { -"download_count": 158814, -"project": "mypy-boto3-timestream-write" +"download_count": 256158, +"project": "django-modelcluster" }, { -"download_count": 158796, -"project": "inference-gpu" +"download_count": 256132, +"project": "pyinotify" }, { -"download_count": 158780, -"project": "json-tricks" +"download_count": 256010, +"project": "flask-accepts" }, { -"download_count": 158770, -"project": "streamlit-extras" +"download_count": 255993, +"project": "ibm-secrets-manager-sdk" }, { -"download_count": 158675, -"project": "requests-oauth2client" +"download_count": 255865, +"project": "mypy-boto3-iotfleetwise" }, { -"download_count": 158633, -"project": "inputimeout" +"download_count": 255855, +"project": "mypy-boto3-cleanrooms" }, { -"download_count": 158628, -"project": "googleauthentication" +"download_count": 255843, +"project": "mypy-boto3-opensearchserverless" }, { -"download_count": 158595, -"project": "hacking" +"download_count": 255767, +"project": "aiodocker" }, { -"download_count": 158553, -"project": "aws" +"download_count": 255733, +"project": "airflow-dbt" }, { -"download_count": 158492, -"project": "mypy-boto3-appsync" +"download_count": 255685, +"project": "jinjanator" }, { -"download_count": 158489, -"project": "mypy-boto3-bedrock-agent-runtime" +"download_count": 255666, +"project": "argparse2" }, { -"download_count": 158477, -"project": "tensorflow-data-validation" +"download_count": 255507, +"project": "jinjanator-plugins" }, { -"download_count": 158477, -"project": "replicate" +"download_count": 255464, +"project": "mypy-boto3-panorama" }, { -"download_count": 158462, -"project": "apache-airflow-providers-apache-beam" +"download_count": 255358, +"project": "mypy-boto3-verifiedpermissions" }, { -"download_count": 158447, -"project": "python-glanceclient" +"download_count": 255309, +"project": "mypy-boto3-resiliencehub" }, { -"download_count": 158413, -"project": "mkdocs-exclude" +"download_count": 255288, +"project": "unleashclient" }, { -"download_count": 158386, -"project": "misaka" +"download_count": 255270, +"project": "zlib-ng" }, { -"download_count": 158286, -"project": "napari-svg" +"download_count": 255209, +"project": "mypy-boto3-ivschat" }, { -"download_count": 158236, -"project": "watchdog-gevent" +"download_count": 255183, +"project": "mypy-boto3-chime-sdk-media-pipelines" }, { -"download_count": 158219, -"project": "pyobjc-framework-systemconfiguration" +"download_count": 255158, +"project": "apache-libcloud" }, { -"download_count": 158138, -"project": "unidic" +"download_count": 255095, +"project": "mypy-boto3-chime-sdk-meetings" }, { -"download_count": 158132, -"project": "mypy-boto3-transfer" +"download_count": 255012, +"project": "mypy-boto3-amplifyuibuilder" }, { -"download_count": 158125, -"project": "django-bootstrap4" +"download_count": 255008, +"project": "mypy-boto3-evidently" }, { -"download_count": 158059, -"project": "ff3" +"download_count": 254910, +"project": "mypy-boto3-controltower" }, { -"download_count": 158016, -"project": "usaddress-scourgify" +"download_count": 254817, +"project": "pyttsx3" }, { -"download_count": 157958, -"project": "testbook" +"download_count": 254770, +"project": "mypy-boto3-drs" }, { -"download_count": 157954, -"project": "mypy-boto3-amplify" +"download_count": 254744, +"project": "recordclass" }, { -"download_count": 157948, -"project": "openvino-dev" +"download_count": 254720, +"project": "pytest-reportlog" }, { -"download_count": 157936, -"project": "mypy-boto3-service-quotas" +"download_count": 254667, +"project": "ytsaurus-yson" }, { -"download_count": 157885, -"project": "chiapos" +"download_count": 254658, +"project": "mypy-boto3-backup-gateway" }, { -"download_count": 157869, -"project": "mypy-boto3-opensearch" +"download_count": 254618, +"project": "mypy-boto3-qbusiness" }, { -"download_count": 157840, -"project": "cyclonedx-bom" +"download_count": 254562, +"project": "dragnet" }, { -"download_count": 157837, -"project": "npe2" +"download_count": 254484, +"project": "mypy-boto3-migrationhubstrategy" }, { -"download_count": 157833, -"project": "facebook-sdk" +"download_count": 254457, +"project": "mypy-boto3-iottwinmaker" }, { -"download_count": 157793, -"project": "mypy-boto3-serverlessrepo" +"download_count": 254453, +"project": "mypy-boto3-billingconductor" }, { -"download_count": 157773, -"project": "databricks-test" +"download_count": 254438, +"project": "stream-unzip" }, { -"download_count": 157760, -"project": "pyconify" +"download_count": 254430, +"project": "mypy-boto3-migration-hub-refactor-spaces" }, { -"download_count": 157678, -"project": "collate-sqllineage" +"download_count": 254368, +"project": "postmarker" }, { -"download_count": 157660, -"project": "pyexcelerate" +"download_count": 254361, +"project": "mypy-boto3-datazone" }, { -"download_count": 157652, -"project": "mypy-boto3-dynamodbstreams" +"download_count": 254336, +"project": "mypy-boto3-mediapackagev2" }, { -"download_count": 157599, -"project": "oschmod" +"download_count": 254260, +"project": "mypy-boto3-rbin" }, { -"download_count": 157520, -"project": "findlibs" +"download_count": 254212, +"project": "xlwings" }, { -"download_count": 157497, -"project": "mypy-boto3-meteringmarketplace" +"download_count": 254206, +"project": "mypy-boto3-m2" }, { -"download_count": 157455, -"project": "mozinfo" +"download_count": 254169, +"project": "bluetooth-adapters" }, { -"download_count": 157442, -"project": "mypy-boto3-wafv2" +"download_count": 254051, +"project": "mypy-boto3-internetmonitor" }, { -"download_count": 157273, -"project": "mypy-boto3-servicediscovery" +"download_count": 254039, +"project": "mypy-boto3-payment-cryptography" }, { -"download_count": 157247, -"project": "pick" +"download_count": 254006, +"project": "autogluon-multimodal" }, { -"download_count": 157106, -"project": "djangorestframework-gis" +"download_count": 253928, +"project": "mypy-boto3-b2bi" }, { -"download_count": 157057, -"project": "certipy" +"download_count": 253897, +"project": "mypy-boto3-pipes" }, { -"download_count": 157049, -"project": "types-emoji" +"download_count": 253810, +"project": "mypy-boto3-docdb-elastic" }, { -"download_count": 157047, -"project": "astroquery" +"download_count": 253792, +"project": "mypy-boto3-rum" }, { -"download_count": 157043, -"project": "chiabip158" +"download_count": 253776, +"project": "mkdocs-section-index" }, { -"download_count": 156949, -"project": "mypy-boto3-compute-optimizer" +"download_count": 253774, +"project": "mypy-boto3-payment-cryptography-data" }, { -"download_count": 156946, -"project": "mypy-boto3-bedrock-agent" +"download_count": 253722, +"project": "sqlakeyset" }, { -"download_count": 156901, -"project": "moz-sql-parser" +"download_count": 253665, +"project": "mypy-boto3-osis" }, { -"download_count": 156885, -"project": "monai" +"download_count": 253655, +"project": "jsonschema-rs" }, { -"download_count": 156873, -"project": "zxcvbn" +"download_count": 253646, +"project": "mypy-boto3-chime-sdk-voice" }, { -"download_count": 156862, -"project": "apache-airflow-providers-jira" +"download_count": 253582, +"project": "pyro-api" }, { -"download_count": 156854, -"project": "libvirt-python" +"download_count": 253573, +"project": "mypy-boto3-resource-explorer-2" }, { -"download_count": 156837, -"project": "mypy-boto3-network-firewall" +"download_count": 253453, +"project": "mypy-boto3-support-app" }, { -"download_count": 156823, -"project": "mypy-boto3-support" +"download_count": 253402, +"project": "mypy-boto3-ssm-sap" }, { -"download_count": 156804, -"project": "mypy-boto3-timestream-query" +"download_count": 253391, +"project": "mypy-boto3-connectcases" }, { -"download_count": 156787, -"project": "mypy-boto3-sdb" +"download_count": 253356, +"project": "alibabacloud-credentials" }, { -"download_count": 156671, -"project": "sagemaker-scikit-learn-extension" +"download_count": 253348, +"project": "mypy-boto3-securitylake" }, { -"download_count": 156638, -"project": "optimizely-sdk" +"download_count": 253346, +"project": "mypy-boto3-workspaces-thin-client" }, { -"download_count": 156565, -"project": "mypy-boto3-sso-admin" +"download_count": 253292, +"project": "mypy-boto3-cleanroomsml" }, { -"download_count": 156466, -"project": "mypy-boto3-pricing" +"download_count": 253287, +"project": "mypy-boto3-connectcampaigns" }, { -"download_count": 156396, -"project": "gekko" +"download_count": 253269, +"project": "mypy-boto3-simspaceweaver" }, { -"download_count": 156383, -"project": "mypy-boto3-codecommit" +"download_count": 253261, +"project": "mypy-boto3-supplychain" }, { -"download_count": 156296, -"project": "arxiv" +"download_count": 253204, +"project": "mypy-boto3-timestream-influxdb" }, { -"download_count": 156168, -"project": "glcontext" +"download_count": 253020, +"project": "mypy-boto3-taxsettings" }, { -"download_count": 156145, -"project": "mypy-boto3-acm-pca" +"download_count": 253014, +"project": "opentelemetry-instrumentation-cassandra" }, { -"download_count": 156088, -"project": "mypy-boto3-account" +"download_count": 253003, +"project": "mypy-boto3-sagemaker-metrics" }, { -"download_count": 156063, -"project": "remote-pdb" +"download_count": 252990, +"project": "mypy-boto3-vpc-lattice" }, { -"download_count": 155989, -"project": "ewah-bool-utils" +"download_count": 252962, +"project": "mypy-boto3-tnb" }, { -"download_count": 155868, -"project": "pytest-unordered" +"download_count": 252932, +"project": "docusign-esign" }, { -"download_count": 155794, -"project": "mypy-boto3-backup" +"download_count": 252884, +"project": "mypy-boto3-license-manager-user-subscriptions" }, { -"download_count": 155779, -"project": "mypy-boto3-cloudsearchdomain" +"download_count": 252851, +"project": "sqlalchemy-mixins" }, { -"download_count": 155761, -"project": "randomname" +"download_count": 252844, +"project": "flutils" }, { -"download_count": 155706, -"project": "pyworld" +"download_count": 252843, +"project": "mypy-boto3-rolesanywhere" }, { -"download_count": 155699, -"project": "mypy-boto3-cloudsearch" +"download_count": 252777, +"project": "mypy-boto3-arc-zonal-shift" }, { -"download_count": 155498, -"project": "ete3" +"download_count": 252766, +"project": "opentelemetry-instrumentation-remoulade" }, { -"download_count": 155468, -"project": "roslibpy" +"download_count": 252724, +"project": "mypy-boto3-migrationhuborchestrator" }, { -"download_count": 155448, -"project": "mypy-boto3-imagebuilder" +"download_count": 252712, +"project": "pypika-tortoise" }, { -"download_count": 155434, -"project": "pamela" +"download_count": 252706, +"project": "mypy-boto3-qapps" }, { -"download_count": 155393, -"project": "fcache" +"download_count": 252701, +"project": "mypy-boto3-neptune-graph" }, { -"download_count": 155356, -"project": "commonregex" +"download_count": 252684, +"project": "mypy-boto3-codecatalyst" }, { -"download_count": 155265, -"project": "mypy-boto3-apprunner" +"download_count": 252631, +"project": "exifread" }, { -"download_count": 155213, -"project": "mypy-boto3-braket" +"download_count": 252591, +"project": "mypy-boto3-medical-imaging" }, { -"download_count": 155207, -"project": "mypy-boto3-inspector2" +"download_count": 252567, +"project": "mypy-boto3-application-signals" }, { -"download_count": 155169, -"project": "mypy-boto3-ecr-public" +"download_count": 252537, +"project": "mypy-boto3-cloudtrail-data" }, { -"download_count": 155135, -"project": "mypy-boto3-docdb" +"download_count": 252527, +"project": "mypy-boto3-appfabric" }, { -"download_count": 155093, -"project": "openai-messages-token-helper" +"download_count": 252446, +"project": "mypy-boto3-launch-wizard" }, { -"download_count": 155033, -"project": "apify-shared" +"download_count": 252423, +"project": "mypy-boto3-trustedadvisor" }, { -"download_count": 155030, -"project": "async-asgi-testclient" +"download_count": 252399, +"project": "mypy-boto3-kinesis-video-webrtc-storage" }, { -"download_count": 154790, -"project": "artifactory" +"download_count": 252362, +"project": "mypy-boto3-codeguru-security" }, { -"download_count": 154717, -"project": "mssql-cli" +"download_count": 252350, +"project": "mypy-boto3-privatenetworks" }, { -"download_count": 154712, -"project": "flake8-cognitive-complexity" +"download_count": 252342, +"project": "mypy-boto3-cost-optimization-hub" }, { -"download_count": 154709, -"project": "opentelemetry-instrumentation-psycopg" +"download_count": 252309, +"project": "mypy-boto3-chatbot" }, { -"download_count": 154695, -"project": "requests-credssp" +"download_count": 252278, +"project": "mypy-boto3-mailmanager" }, { -"download_count": 154621, -"project": "mypy-boto3-directconnect" +"download_count": 252263, +"project": "mypy-boto3-kendra-ranking" }, { -"download_count": 154556, -"project": "mypy-boto3-rekognition" +"download_count": 252233, +"project": "mypy-boto3-bcm-data-exports" }, { -"download_count": 154519, -"project": "mypy-boto3-shield" +"download_count": 252230, +"project": "pyodps" }, { -"download_count": 154488, -"project": "pytest-md" +"download_count": 252223, +"project": "mypy-boto3-qconnect" }, { -"download_count": 154470, -"project": "selectolax" +"download_count": 252218, +"project": "mypy-boto3-controlcatalog" }, { -"download_count": 154406, -"project": "hvplot" +"download_count": 252176, +"project": "mypy-boto3-entityresolution" }, { -"download_count": 154399, -"project": "mypy-boto3-workspaces" +"download_count": 252159, +"project": "mypy-boto3-deadline" }, { -"download_count": 154368, -"project": "mypy-boto3-glacier" +"download_count": 252132, +"project": "mypy-boto3-repostspace" }, { -"download_count": 154364, -"project": "apache-airflow-client" +"download_count": 252117, +"project": "mypy-boto3-oam" }, { -"download_count": 154347, -"project": "mypy-boto3-forecastquery" +"download_count": 252092, +"project": "mypy-boto3-sagemaker-geospatial" }, { -"download_count": 154255, -"project": "pytest-vcr" +"download_count": 252031, +"project": "a-bigelow-cdk-eventbridge-partner-processors" }, { -"download_count": 154237, -"project": "mypy-boto3-machinelearning" +"download_count": 251944, +"project": "django-test-migrations" }, { -"download_count": 154227, -"project": "mypy-boto3-redshift-serverless" +"download_count": 251920, +"project": "mypy-boto3-artifact" }, { -"download_count": 154226, -"project": "mypy-boto3-health" +"download_count": 251912, +"project": "robotframework-retryfailed" }, { -"download_count": 154212, -"project": "mypy-boto3-es" +"download_count": 251889, +"project": "mypy-boto3-managedblockchain-query" }, { -"download_count": 154125, -"project": "mypy-boto3-connect" +"download_count": 251847, +"project": "wrapt-timeout-decorator" }, { -"download_count": 154093, -"project": "mypy-boto3-accessanalyzer" +"download_count": 251828, +"project": "pyliquibase" }, { -"download_count": 154060, -"project": "mypy-boto3-pinpoint-email" +"download_count": 251796, +"project": "mypy-boto3-eks-auth" }, { -"download_count": 153987, -"project": "hashin" +"download_count": 251778, +"project": "mypy-boto3-cloudfront-keyvaluestore" }, { -"download_count": 153953, -"project": "mypy-boto3-mturk" +"download_count": 251762, +"project": "mypy-boto3-license-manager-linux-subscriptions" }, { -"download_count": 153948, -"project": "lap" +"download_count": 251679, +"project": "mypy-boto3-codeconnections" }, { -"download_count": 153940, -"project": "mypy-boto3-appstream" +"download_count": 251646, +"project": "mypy-boto3-freetier" }, { -"download_count": 153916, -"project": "cmyt" +"download_count": 251607, +"project": "mypy-boto3-apptest" }, { -"download_count": 153916, -"project": "mypy-boto3-datasync" +"download_count": 251591, +"project": "mypy-boto3-marketplace-agreement" }, { -"download_count": 153888, -"project": "mypy-boto3-marketplace-catalog" +"download_count": 251559, +"project": "catboost-dev" }, { -"download_count": 153869, -"project": "gcloud-aio-pubsub" +"download_count": 251463, +"project": "mypy-boto3-pca-connector-ad" }, { -"download_count": 153717, -"project": "pymel" +"download_count": 251462, +"project": "pysnooper" }, { -"download_count": 153692, -"project": "speedtest-cli" +"download_count": 251454, +"project": "google-cloud-common" }, { -"download_count": 153659, -"project": "mypy-boto3-sagemaker-edge" +"download_count": 251423, +"project": "mypy-boto3-marketplace-deployment" }, { -"download_count": 153636, -"project": "mypy-boto3-ivschat" +"download_count": 251396, +"project": "beautifulsoup" }, { -"download_count": 153605, -"project": "ops-scenario" +"download_count": 251194, +"project": "mypy-boto3-inspector-scan" }, { -"download_count": 153577, -"project": "mne" +"download_count": 251099, +"project": "apify-client" }, { -"download_count": 153572, -"project": "mypy-boto3-workmail" +"download_count": 251001, +"project": "mypy-boto3-networkmonitor" }, { -"download_count": 153481, -"project": "mypy-boto3-workspaces-web" +"download_count": 250972, +"project": "robotframework-appiumlibrary" }, { -"download_count": 153462, -"project": "sortedcollections" +"download_count": 250956, +"project": "mypy-boto3-route53profiles" }, { -"download_count": 153434, -"project": "mypy-boto3-ssm-incidents" +"download_count": 250895, +"project": "pytest-reportportal" }, { -"download_count": 153434, -"project": "mypy-boto3-qbusiness" +"download_count": 250880, +"project": "jc" }, { -"download_count": 153419, -"project": "icmplib" +"download_count": 250866, +"project": "google-cloud-filestore" }, { -"download_count": 153404, -"project": "nfoursid" +"download_count": 250748, +"project": "mypy-boto3-pca-connector-scep" }, { -"download_count": 153329, -"project": "mypy-boto3-resource-groups" +"download_count": 250704, +"project": "mypy-boto3-ssm-quicksetup" }, { -"download_count": 153306, -"project": "mypy-boto3-workdocs" +"download_count": 250685, +"project": "namedentities" }, { -"download_count": 153294, -"project": "mypy-boto3-appconfigdata" +"download_count": 250674, +"project": "watchdog-gevent" }, { -"download_count": 153284, -"project": "mypy-boto3-dlm" +"download_count": 250432, +"project": "langchain-ollama" }, { -"download_count": 153279, -"project": "mypy-boto3-wisdom" +"download_count": 250424, +"project": "mypy-boto3-pcs" }, { -"download_count": 153276, -"project": "mypy-boto3-codestar-notifications" +"download_count": 250246, +"project": "cdk8s" }, { -"download_count": 153268, -"project": "cupy-cuda11x" +"download_count": 250226, +"project": "stumpy" }, { -"download_count": 153260, -"project": "mypy-boto3-waf-regional" +"download_count": 250204, +"project": "django-allow-cidr" }, { -"download_count": 153256, -"project": "mypy-boto3-iotfleetwise" +"download_count": 250152, +"project": "pyftdi" }, { -"download_count": 153246, -"project": "mypy-boto3-workspaces-thin-client" +"download_count": 250134, +"project": "google-cloud-profiler" }, { -"download_count": 153244, -"project": "memepy" +"download_count": 250085, +"project": "mypy-boto3-marketplace-reporting" }, { -"download_count": 153241, -"project": "mypy-boto3-simspaceweaver" +"download_count": 249878, +"project": "aws-cdk-aws-applicationautoscaling" }, { -"download_count": 153232, -"project": "mypy-boto3-route53-recovery-control-config" +"download_count": 249864, +"project": "alibabacloud-tea-openapi" }, { -"download_count": 153216, -"project": "mypy-boto3-memorydb" +"download_count": 249795, +"project": "arxiv" }, { -"download_count": 153182, -"project": "kthread" +"download_count": 249789, +"project": "aioesphomeapi" }, { -"download_count": 153163, -"project": "mypy-boto3-wellarchitected" +"download_count": 249705, +"project": "jsonnet" }, { -"download_count": 153122, -"project": "mypy-boto3-voice-id" +"download_count": 249671, +"project": "circus" }, { -"download_count": 153121, -"project": "mypy-boto3-qapps" +"download_count": 249631, +"project": "types-lxml" }, { -"download_count": 153112, -"project": "mypy-boto3-fsx" +"download_count": 249604, +"project": "mypy-boto3-ds-data" }, { -"download_count": 153102, -"project": "cloudant" +"download_count": 249458, +"project": "apache-airflow-providers-apache-livy" }, { -"download_count": 153096, -"project": "mypy-boto3-cloudhsm" +"download_count": 249154, +"project": "cfgrib" }, { -"download_count": 153094, -"project": "mypy-boto3-workmailmessageflow" +"download_count": 248712, +"project": "h2o" }, { -"download_count": 153075, -"project": "elasticsearch5" +"download_count": 248679, +"project": "litestar" }, { -"download_count": 153061, -"project": "yt" +"download_count": 248556, +"project": "sphinx-bootstrap-theme" }, { -"download_count": 153058, -"project": "mypy-boto3-cognito-sync" +"download_count": 248498, +"project": "duo-client" }, { -"download_count": 153054, -"project": "mypy-boto3-mediastore" +"download_count": 248487, +"project": "robotframework-excellib" }, { -"download_count": 153051, -"project": "mypy-boto3-support-app" +"download_count": 248424, +"project": "aws-cdk-aws-sqs" }, { -"download_count": 153051, -"project": "mypy-boto3-iotwireless" +"download_count": 248385, +"project": "json-schema-for-humans" }, { -"download_count": 153041, -"project": "mypy-boto3-waf" +"download_count": 248324, +"project": "mo-future" }, { -"download_count": 153026, -"project": "mypy-boto3-clouddirectory" +"download_count": 248193, +"project": "urllib3-mock" }, { -"download_count": 153007, -"project": "pybreaker" +"download_count": 248157, +"project": "pytorch-ignite" }, { -"download_count": 152984, -"project": "mypy-boto3-mq" +"download_count": 248156, +"project": "aws-cdk-aws-logs-destinations" }, { -"download_count": 152972, -"project": "mypy-boto3-iotdeviceadvisor" +"download_count": 248065, +"project": "lhotse" }, { -"download_count": 152953, -"project": "mypy-boto3-sagemaker-metrics" +"download_count": 247958, +"project": "macresources" }, { -"download_count": 152951, -"project": "mypy-boto3-amp" +"download_count": 247954, +"project": "pyutilib" }, { -"download_count": 152949, -"project": "mypy-boto3-application-insights" +"download_count": 247896, +"project": "fastapi-cache2" }, { -"download_count": 152939, -"project": "mypy-boto3-cloudcontrol" +"download_count": 247765, +"project": "databricks-utils" }, { -"download_count": 152915, -"project": "mypy-boto3-ssm-sap" +"download_count": 247723, +"project": "pytest-spark" }, { -"download_count": 152822, -"project": "mypy-boto3-route53resolver" +"download_count": 247714, +"project": "nbdime" }, { -"download_count": 152780, -"project": "mypy-boto3-guardduty" +"download_count": 247530, +"project": "apache-airflow-providers-presto" }, { -"download_count": 152767, -"project": "mypy-boto3-storagegateway" +"download_count": 247220, +"project": "reedsolo" }, { -"download_count": 152763, -"project": "mypy-boto3-snowball" +"download_count": 247040, +"project": "aws-cdk-aws-ecr-assets" }, { -"download_count": 152747, -"project": "mypy-boto3-kinesisvideo" +"download_count": 246893, +"project": "bingads" }, { -"download_count": 152744, -"project": "pynmea2" +"download_count": 246890, +"project": "wordninja" }, { -"download_count": 152739, -"project": "mypy-boto3-elasticbeanstalk" +"download_count": 246764, +"project": "gspread-pandas" }, { -"download_count": 152732, -"project": "mypy-boto3-iotevents" +"download_count": 246601, +"project": "django-admin-sortable2" }, { -"download_count": 152722, -"project": "drf-extra-fields" +"download_count": 246487, +"project": "comet-maths" }, { -"download_count": 152716, -"project": "dlib" +"download_count": 246327, +"project": "bigquery-schema-generator" }, { -"download_count": 152715, -"project": "mypy-boto3-sagemaker-featurestore-runtime" +"download_count": 246218, +"project": "sagemaker-experiments" }, { -"download_count": 152711, -"project": "mypy-boto3-swf" +"download_count": 246143, +"project": "alibabacloud-tea-util" }, { -"download_count": 152709, -"project": "mypy-boto3-chime" +"download_count": 246133, +"project": "python-status" }, { -"download_count": 152709, -"project": "mypy-boto3-kinesis-video-media" +"download_count": 246044, +"project": "easydev" }, { -"download_count": 152706, -"project": "mypy-boto3-inspector" +"download_count": 246037, +"project": "yagmail" }, { -"download_count": 152699, -"project": "mypy-boto3-kinesisanalyticsv2" +"download_count": 245880, +"project": "punpy" }, { -"download_count": 152686, -"project": "mypy-boto3-opensearchserverless" +"download_count": 245713, +"project": "bindep" }, { -"download_count": 152681, -"project": "mypy-boto3-migrationhubstrategy" +"download_count": 245584, +"project": "arelle-release" }, { -"download_count": 152670, -"project": "mypy-boto3-savingsplans" +"download_count": 245503, +"project": "canmatrix" }, { -"download_count": 152664, -"project": "sqloxide" +"download_count": 245455, +"project": "roslibpy" }, { -"download_count": 152663, -"project": "mypy-boto3-mediapackage-vod" +"download_count": 245280, +"project": "openapi-codec" }, { -"download_count": 152658, -"project": "mypy-boto3-snow-device-management" +"download_count": 245192, +"project": "lilcom" }, { -"download_count": 152658, -"project": "mypy-boto3-chime-sdk-messaging" +"download_count": 245019, +"project": "pymc3" }, { -"download_count": 152646, -"project": "mypy-boto3-qldb" +"download_count": 244819, +"project": "konlpy" }, { -"download_count": 152645, -"project": "mypy-boto3-verifiedpermissions" +"download_count": 244586, +"project": "pydoe2" }, { -"download_count": 152637, -"project": "mypy-boto3-kinesis-video-archived-media" +"download_count": 244586, +"project": "pyobjc-framework-quartz" }, { -"download_count": 152619, -"project": "glpk" +"download_count": 244314, +"project": "djoser" }, { -"download_count": 152601, -"project": "mypy-boto3-amplifybackend" +"download_count": 244286, +"project": "anycrc" }, { -"download_count": 152599, -"project": "mypy-boto3-osis" +"download_count": 244265, +"project": "types-passlib" }, { -"download_count": 152594, -"project": "mypy-boto3-chime-sdk-media-pipelines" +"download_count": 244171, +"project": "pymel" }, { -"download_count": 152576, -"project": "mypy-boto3-ds" +"download_count": 244054, +"project": "dragonfly-schema" }, { -"download_count": 152573, -"project": "flask-flatpages" +"download_count": 243991, +"project": "joblibspark" }, { -"download_count": 152572, -"project": "mypy-boto3-cloudhsmv2" +"download_count": 243920, +"project": "cybox" }, { -"download_count": 152562, -"project": "mypy-boto3-launch-wizard" +"download_count": 243888, +"project": "ci-info" }, { -"download_count": 152553, -"project": "mypy-boto3-billingconductor" +"download_count": 243650, +"project": "syne-tune" }, { -"download_count": 152553, -"project": "mypy-boto3-backup-gateway" +"download_count": 243413, +"project": "rules" }, { -"download_count": 152542, -"project": "mypy-boto3-grafana" +"download_count": 243374, +"project": "aws-cdk-aws-sns" }, { -"download_count": 152536, -"project": "mypy-boto3-auditmanager" +"download_count": 243308, +"project": "pytest-timestamper" }, { -"download_count": 152534, -"project": "ecpy" +"download_count": 242893, +"project": "mixbox" }, { -"download_count": 152524, -"project": "mypy-boto3-comprehendmedical" +"download_count": 242893, +"project": "aws-cdk-aws-efs" }, { -"download_count": 152514, -"project": "mypy-boto3-networkmanager" +"download_count": 242606, +"project": "azure-messaging-webpubsubservice" }, { -"download_count": 152512, -"project": "mypy-boto3-neptune" +"download_count": 242244, +"project": "amundsen-rds" }, { -"download_count": 152510, -"project": "mypy-boto3-chime-sdk-identity" +"download_count": 242240, +"project": "stix" }, { -"download_count": 152507, -"project": "mypy-boto3-ssm-contacts" +"download_count": 242236, +"project": "azure-cognitiveservices-vision-computervision" }, { -"download_count": 152502, -"project": "mypy-boto3-mediapackage" +"download_count": 242205, +"project": "etelemetry" }, { -"download_count": 152497, -"project": "mypy-boto3-greengrassv2" +"download_count": 242186, +"project": "humiolib" }, { -"download_count": 152492, -"project": "mypy-boto3-autoscaling-plans" +"download_count": 242051, +"project": "websocket" }, { -"download_count": 152490, -"project": "mypy-boto3-datapipeline" +"download_count": 241994, +"project": "pypi-simple" }, { -"download_count": 152480, -"project": "mypy-boto3-sms" +"download_count": 241992, +"project": "mitmproxy-rs" }, { -"download_count": 152478, -"project": "mypy-boto3-sso-oidc" +"download_count": 241963, +"project": "adtk" }, { -"download_count": 152476, -"project": "mypy-boto3-databrew" +"download_count": 241890, +"project": "biscuit-python" }, { -"download_count": 152469, -"project": "mypy-boto3-appmesh" +"download_count": 241821, +"project": "alibabacloud-openapi-util" }, { -"download_count": 152464, -"project": "prefect-kubernetes" +"download_count": 241784, +"project": "gptcache" }, { -"download_count": 152462, -"project": "mypy-boto3-kinesisanalytics" +"download_count": 241717, +"project": "rcon" }, { -"download_count": 152461, -"project": "mypy-boto3-amplifyuibuilder" +"download_count": 241629, +"project": "pyicu" }, { -"download_count": 152458, -"project": "mypy-boto3-proton" +"download_count": 241619, +"project": "pykml" }, { -"download_count": 152427, -"project": "mypy-boto3-chime-sdk-meetings" +"download_count": 241538, +"project": "python-logstash-async" }, { -"download_count": 152421, -"project": "mypy-boto3-codeguru-reviewer" +"download_count": 241471, +"project": "businesstimedelta" }, { -"download_count": 152418, -"project": "mypy-boto3-managedblockchain" +"download_count": 241290, +"project": "testrail-api" }, { -"download_count": 152417, -"project": "mypy-boto3-lexv2-runtime" +"download_count": 241262, +"project": "patchwork" }, { -"download_count": 152416, -"project": "mypy-boto3-devicefarm" +"download_count": 241161, +"project": "kmodes" }, { -"download_count": 152415, -"project": "mypy-boto3-connectparticipant" +"download_count": 240822, +"project": "warlock" }, { -"download_count": 152407, -"project": "mypy-boto3-timestream-influxdb" +"download_count": 240717, +"project": "py-manga" }, { -"download_count": 152403, -"project": "mypy-boto3-appintegrations" +"download_count": 240685, +"project": "unitypy" }, { -"download_count": 152393, -"project": "mypy-boto3-elastictranscoder" +"download_count": 240444, +"project": "aiotools" }, { -"download_count": 152388, -"project": "mypy-boto3-sms-voice" +"download_count": 240412, +"project": "jax-cuda12-plugin" }, { -"download_count": 152382, -"project": "pyjq" +"download_count": 240362, +"project": "better-exceptions" }, { -"download_count": 152371, -"project": "mypy-boto3-applicationcostprofiler" +"download_count": 240343, +"project": "bleak-retry-connector" }, { -"download_count": 152360, -"project": "mypy-boto3-cloud9" +"download_count": 240303, +"project": "assemblyai" }, { -"download_count": 152357, -"project": "mypy-boto3-codestar-connections" +"download_count": 240265, +"project": "setuptools-download" }, { -"download_count": 152339, -"project": "mypy-boto3-lookoutvision" +"download_count": 240264, +"project": "yeelight" }, { -"download_count": 152336, -"project": "mypy-boto3-sagemaker-a2i-runtime" +"download_count": 240260, +"project": "tinsel" }, { -"download_count": 152331, -"project": "mypy-boto3-trustedadvisor" +"download_count": 240236, +"project": "pypubsub" }, { -"download_count": 152307, -"project": "mypy-boto3-detective" +"download_count": 240199, +"project": "hahomematic" }, { -"download_count": 152304, -"project": "mypy-boto3-tnb" +"download_count": 240147, +"project": "pytest-freezer" }, { -"download_count": 152302, -"project": "mypy-boto3-groundstation" +"download_count": 240083, +"project": "python-markdown-math" }, { -"download_count": 152297, -"project": "mypy-boto3-pi" +"download_count": 239997, +"project": "pandas-schema" }, { -"download_count": 152296, -"project": "mypy-boto3-discovery" +"download_count": 239925, +"project": "dead-hosts-launcher" }, { -"download_count": 152293, -"project": "mypy-boto3-docdb-elastic" +"download_count": 239858, +"project": "calver" }, { -"download_count": 152290, -"project": "mypy-boto3-keyspaces" +"download_count": 239720, +"project": "hdrpy" }, { -"download_count": 152288, -"project": "mypy-boto3-greengrass" +"download_count": 239672, +"project": "newick" }, { -"download_count": 152283, -"project": "mypy-boto3-license-manager" +"download_count": 239641, +"project": "amplpy" }, { -"download_count": 152277, -"project": "mypy-boto3-iotfleethub" +"download_count": 239611, +"project": "gitignore-parser" }, { -"download_count": 152275, -"project": "mypy-boto3-marketplacecommerceanalytics" +"download_count": 239572, +"project": "aws-cdk-aws-certificatemanager" }, { -"download_count": 152275, -"project": "htmlmin2" +"download_count": 239506, +"project": "aws-cdk-aws-secretsmanager" }, { -"download_count": 152257, -"project": "mypy-boto3-mediaconnect" +"download_count": 239471, +"project": "nameof" }, { -"download_count": 152240, -"project": "mypy-boto3-servicecatalog-appregistry" +"download_count": 239347, +"project": "aiomoex" }, { -"download_count": 152237, -"project": "mypy-boto3-omics" +"download_count": 239342, +"project": "dh-utils" }, { -"download_count": 152234, -"project": "mypy-boto3-iotsitewise" +"download_count": 239275, +"project": "cdk-gitlab-runner" }, { -"download_count": 152227, -"project": "mypy-boto3-kendra" +"download_count": 239237, +"project": "pygal" }, { -"download_count": 152202, -"project": "mypy-boto3-panorama" +"download_count": 238827, +"project": "arize-phoenix-evals" }, { -"download_count": 152200, -"project": "mypy-boto3-lex-models" +"download_count": 238782, +"project": "tdda" }, { -"download_count": 152200, -"project": "mypy-boto3-ivs" +"download_count": 238494, +"project": "pyxll" }, { -"download_count": 152196, -"project": "mypy-boto3-vpc-lattice" +"download_count": 238430, +"project": "pysqlite3" }, { -"download_count": 152186, -"project": "mypy-boto3-pinpoint-sms-voice-v2" +"download_count": 238208, +"project": "types-enum34" }, { -"download_count": 152182, -"project": "mypy-boto3-lookoutequipment" +"download_count": 238092, +"project": "zigpy-zigate" }, { -"download_count": 152173, -"project": "mypy-boto3-healthlake" +"download_count": 238079, +"project": "rpm" }, { -"download_count": 152171, -"project": "mypy-boto3-customer-profiles" +"download_count": 238019, +"project": "bump-my-version" }, { -"download_count": 152169, -"project": "mypy-boto3-iotsecuretunneling" +"download_count": 237763, +"project": "datarobot" }, { -"download_count": 152162, -"project": "mypy-boto3-connectcampaigns" +"download_count": 237669, +"project": "pyutils-hep" }, { -"download_count": 152161, -"project": "mypy-boto3-mgh" +"download_count": 237544, +"project": "patchy" }, { -"download_count": 152160, -"project": "mypy-boto3-devops-guru" +"download_count": 237411, +"project": "pytest-remotedata" }, { -"download_count": 152151, -"project": "mypy-boto3-iot1click-devices" +"download_count": 237329, +"project": "zope-sqlalchemy" }, { -"download_count": 152135, -"project": "mypy-boto3-rolesanywhere" +"download_count": 237277, +"project": "tapipy" }, { -"download_count": 152133, -"project": "mypy-boto3-iotanalytics" +"download_count": 237276, +"project": "bidsschematools" }, { -"download_count": 152131, -"project": "mpyc" +"download_count": 236910, +"project": "labelbox" }, { -"download_count": 152115, -"project": "mypy-boto3-qldb-session" +"download_count": 236794, +"project": "google-cloud-functions" }, { -"download_count": 152112, -"project": "mypy-boto3-gamelift" +"download_count": 236620, +"project": "tavern" }, { -"download_count": 152112, -"project": "mypy-boto3-forecast" +"download_count": 236413, +"project": "disposable-email-domains" }, { -"download_count": 152102, -"project": "tinybird-cdk" +"download_count": 236375, +"project": "flake8-use-fstring" }, { -"download_count": 152100, -"project": "mypy-boto3-kafkaconnect" +"download_count": 236361, +"project": "generic-iterative-stemmer" }, { -"download_count": 152091, -"project": "mypy-boto3-supplychain" +"download_count": 236316, +"project": "python-quickbooks" }, { -"download_count": 152085, -"project": "gptcache" +"download_count": 236216, +"project": "llama-cpp-python" }, { -"download_count": 152072, -"project": "mypy-boto3-cur" +"download_count": 236100, +"project": "types-aiobotocore-elbv2" }, { -"download_count": 152072, -"project": "mypy-boto3-evidently" +"download_count": 235965, +"project": "alchemy-mock" }, { -"download_count": 152072, -"project": "mypy-boto3-cleanroomsml" +"download_count": 235902, +"project": "sox" }, { -"download_count": 152071, -"project": "mypy-boto3-codeguruprofiler" +"download_count": 235815, +"project": "saxonche" }, { -"download_count": 152067, -"project": "mypy-boto3-connect-contact-lens" +"download_count": 235773, +"project": "databricks-vectorsearch" }, { -"download_count": 152065, -"project": "mypy-boto3-controltower" +"download_count": 235718, +"project": "pyarmor-cli-core" }, { -"download_count": 152063, -"project": "mypy-boto3-finspace-data" +"download_count": 235647, +"project": "pglast" }, { -"download_count": 152058, -"project": "mypy-boto3-globalaccelerator" +"download_count": 235643, +"project": "qcodes-contrib-drivers" }, { -"download_count": 152057, -"project": "pyxnat" +"download_count": 235541, +"project": "fsd" }, { -"download_count": 152053, -"project": "mypy-boto3-medialive" +"download_count": 235523, +"project": "htmltools" }, { -"download_count": 152047, -"project": "mypy-boto3-robomaker" +"download_count": 235415, +"project": "teamhack-nmap" }, { -"download_count": 152047, -"project": "mypy-boto3-dax" +"download_count": 235360, +"project": "logger" }, { -"download_count": 152038, -"project": "mypy-boto3-rbin" +"download_count": 235312, +"project": "timedelta" }, { -"download_count": 152036, -"project": "mypy-boto3-kinesis-video-signaling" +"download_count": 235239, +"project": "async-interrupt" }, { -"download_count": 152034, -"project": "mypy-boto3-b2bi" +"download_count": 235121, +"project": "langserve" }, { -"download_count": 152027, -"project": "mypy-boto3-iottwinmaker" +"download_count": 234791, +"project": "jupyter-server-mathjax" }, { -"download_count": 152012, -"project": "mypy-boto3-fis" +"download_count": 234747, +"project": "aiooui" }, { -"download_count": 152010, -"project": "mypy-boto3-arc-zonal-shift" +"download_count": 234653, +"project": "link" }, { -"download_count": 152000, -"project": "mypy-boto3-elastic-inference" +"download_count": 234645, +"project": "pystac-client" }, { -"download_count": 151991, -"project": "mypy-boto3-personalize" +"download_count": 234597, +"project": "python-glanceclient" }, { -"download_count": 151990, -"project": "mypy-boto3-opsworks" +"download_count": 234560, +"project": "aimmo" }, { -"download_count": 151983, -"project": "mypy-boto3-route53-recovery-cluster" +"download_count": 234510, +"project": "llamaindex-py-client" }, { -"download_count": 151982, -"project": "mypy-boto3-migrationhub-config" +"download_count": 234451, +"project": "deepgram-sdk" }, { -"download_count": 151979, -"project": "mypy-boto3-mgn" +"download_count": 234400, +"project": "textsearch" }, { -"download_count": 151970, -"project": "cognitive-complexity" +"download_count": 234352, +"project": "timing-asgi" }, { -"download_count": 151966, -"project": "mypy-boto3-m2" +"download_count": 234295, +"project": "ipyleaflet" }, { -"download_count": 151950, -"project": "mypy-boto3-opsworkscm" +"download_count": 234264, +"project": "conllu" }, { -"download_count": 151949, -"project": "mypy-boto3-personalize-runtime" +"download_count": 234039, +"project": "alibabacloud-gateway-spi" }, { -"download_count": 151948, -"project": "mypy-boto3-mediatailor" +"download_count": 233824, +"project": "svix" }, { -"download_count": 151947, -"project": "mypy-boto3-connectcases" +"download_count": 233709, +"project": "django-dirtyfields" }, { -"download_count": 151945, -"project": "mypy-boto3-iot1click-projects" +"download_count": 233670, +"project": "jax-cuda12-pjrt" }, { -"download_count": 151944, -"project": "mypy-boto3-lookoutmetrics" +"download_count": 233639, +"project": "alchemlyb" }, { -"download_count": 151935, -"project": "mypy-boto3-lightsail" +"download_count": 233614, +"project": "aws-cdk-aws-autoscaling-common" }, { -"download_count": 151917, -"project": "mypy-boto3-bcm-data-exports" +"download_count": 233473, +"project": "ipwhois" }, { -"download_count": 151906, -"project": "mypy-boto3-rum" +"download_count": 233429, +"project": "pyspark-test" }, { -"download_count": 151905, -"project": "mypy-boto3-resiliencehub" +"download_count": 233427, +"project": "pyramid-tm" }, { -"download_count": 151903, -"project": "mypy-boto3-migration-hub-refactor-spaces" +"download_count": 233361, +"project": "twofish" }, { -"download_count": 151892, -"project": "hiyapyco" +"download_count": 233042, +"project": "pure-pcapy3" }, { -"download_count": 151873, -"project": "mypy-boto3-frauddetector" +"download_count": 232992, +"project": "aws-cdk-aws-codeguruprofiler" }, { -"download_count": 151872, -"project": "mypy-boto3-drs" +"download_count": 232951, +"project": "great-tables" }, { -"download_count": 151870, -"project": "mypy-boto3-payment-cryptography" +"download_count": 232934, +"project": "l18n" }, { -"download_count": 151864, -"project": "mypy-boto3-taxsettings" +"download_count": 232888, +"project": "aws-cdk-aws-route53" }, { -"download_count": 151861, -"project": "mypy-boto3-lex-runtime" +"download_count": 232858, +"project": "ast-grep-cli" }, { -"download_count": 151859, -"project": "mypy-boto3-finspace" +"download_count": 232835, +"project": "mwclient" }, { -"download_count": 151842, -"project": "azure-ai-textanalytics" +"download_count": 232787, +"project": "aws-cdk-assets" }, { -"download_count": 151840, -"project": "mypy-boto3-migrationhuborchestrator" +"download_count": 232483, +"project": "propka" }, { -"download_count": 151832, -"project": "mypy-boto3-cost-optimization-hub" +"download_count": 232424, +"project": "google-cloud-certificate-manager" }, { -"download_count": 151817, -"project": "mypy-boto3-lexv2-models" +"download_count": 232310, +"project": "honeybee-radiance-folder" }, { -"download_count": 151816, -"project": "mypy-boto3-kendra-ranking" +"download_count": 232294, +"project": "alibabacloud-endpoint-util" }, { -"download_count": 151811, -"project": "mypy-boto3-cloudtrail-data" +"download_count": 232293, +"project": "alibabacloud-tea-xml" }, { -"download_count": 151781, -"project": "pims" +"download_count": 232285, +"project": "airflow-provider-fivetran-async" }, { -"download_count": 151770, -"project": "mypy-boto3-securitylake" +"download_count": 232266, +"project": "honeybee-radiance-command" }, { -"download_count": 151751, -"project": "mypy-boto3-outposts" +"download_count": 232018, +"project": "pandas-read-xml" }, { -"download_count": 151749, -"project": "mypy-boto3-iotthingsgraph" +"download_count": 231917, +"project": "optparse-pretty" }, { -"download_count": 151735, -"project": "mypy-boto3-iot-jobs-data" +"download_count": 231895, +"project": "mmcif-pdbx" }, { -"download_count": 151735, -"project": "mypy-boto3-personalize-events" +"download_count": 231705, +"project": "springserve" }, { -"download_count": 151734, -"project": "mypy-boto3-importexport" +"download_count": 231573, +"project": "datetype" }, { -"download_count": 151725, -"project": "mypy-boto3-iotevents-data" +"download_count": 231512, +"project": "python-debian" }, { -"download_count": 151701, -"project": "mypy-boto3-route53-recovery-readiness" +"download_count": 231432, +"project": "impacket" }, { -"download_count": 151683, -"project": "mypy-boto3-artifact" +"download_count": 231311, +"project": "adbc-driver-manager" }, { -"download_count": 151681, -"project": "mypy-boto3-medical-imaging" +"download_count": 231262, +"project": "sphinx-mdinclude" }, { -"download_count": 151680, -"project": "mypy-boto3-cleanrooms" +"download_count": 231177, +"project": "aiohttp-jinja2" }, { -"download_count": 151673, -"project": "mypy-boto3-mediastore-data" +"download_count": 231137, +"project": "observable" }, { -"download_count": 151669, -"project": "clu" +"download_count": 231084, +"project": "sortedcollections" }, { -"download_count": 151663, -"project": "mypy-boto3-macie2" +"download_count": 230999, +"project": "libify" }, { -"download_count": 151660, -"project": "mypy-boto3-kinesis-video-webrtc-storage" +"download_count": 230948, +"project": "markdown-inline-graphviz-extension" }, { -"download_count": 151657, -"project": "jc" +"download_count": 230935, +"project": "yasoo" }, { -"download_count": 151647, -"project": "mypy-boto3-codecatalyst" +"download_count": 230868, +"project": "sphinxcontrib-apidoc" }, { -"download_count": 151634, -"project": "mypy-boto3-apptest" +"download_count": 230778, +"project": "cons" }, { -"download_count": 151628, -"project": "mypy-boto3-license-manager-user-subscriptions" +"download_count": 230675, +"project": "cdk-aurora-globaldatabase" }, { -"download_count": 151622, -"project": "mypy-boto3-sagemaker-geospatial" +"download_count": 230534, +"project": "higlass-schema" }, { -"download_count": 151618, -"project": "mypy-boto3-resource-explorer-2" +"download_count": 230519, +"project": "pafy" }, { -"download_count": 151612, -"project": "mypy-boto3-fms" +"download_count": 230419, +"project": "stdiomask" }, { -"download_count": 151608, -"project": "mypy-boto3-privatenetworks" +"download_count": 230277, +"project": "etuples" }, { -"download_count": 151606, -"project": "mypy-boto3-eks-auth" +"download_count": 230184, +"project": "bluetooth-data-tools" }, { -"download_count": 151605, -"project": "pyobjc-framework-coreservices" +"download_count": 230116, +"project": "ceja" }, { -"download_count": 151605, -"project": "mypy-boto3-deadline" +"download_count": 230107, +"project": "pdb2pqr" }, { -"download_count": 151597, -"project": "mypy-boto3-pipes" +"download_count": 230051, +"project": "openapi-pydantic" }, { -"download_count": 151582, -"project": "mypy-boto3-pinpoint-sms-voice" +"download_count": 230047, +"project": "servir" }, { -"download_count": 151567, -"project": "mypy-boto3-codeguru-security" +"download_count": 229951, +"project": "tsfresh" }, { -"download_count": 151567, -"project": "mypy-boto3-marketplace-deployment" +"download_count": 229943, +"project": "aws-cdk-aws-cloudformation" }, { -"download_count": 151551, -"project": "mypy-boto3-appfabric" +"download_count": 229933, +"project": "pytorch" }, { -"download_count": 151544, -"project": "tldrwl" +"download_count": 229881, +"project": "logical-unification" }, { -"download_count": 151526, -"project": "mypy-boto3-payment-cryptography-data" +"download_count": 229776, +"project": "brewer2mpl" }, { -"download_count": 151476, -"project": "mypy-boto3-chatbot" +"download_count": 229479, +"project": "readability-lxml" }, { -"download_count": 151470, -"project": "mypy-boto3-cloudfront-keyvaluestore" +"download_count": 229288, +"project": "aiven-client" }, { -"download_count": 151467, -"project": "mypy-boto3-codeconnections" +"download_count": 229079, +"project": "pyvo" }, { -"download_count": 151467, -"project": "mypy-boto3-datazone" +"download_count": 228990, +"project": "ggplot" }, { -"download_count": 151455, -"project": "mypy-boto3-qconnect" +"download_count": 228938, +"project": "bqplot" }, { -"download_count": 151439, -"project": "mypy-boto3-chime-sdk-voice" +"download_count": 228878, +"project": "pyeapi" }, { -"download_count": 151435, -"project": "mypy-boto3-mediapackagev2" +"download_count": 228821, +"project": "requests-ntlm3" }, { -"download_count": 151434, -"project": "mypy-boto3-ssm-quicksetup" +"download_count": 228807, +"project": "habluetooth" }, { -"download_count": 151430, -"project": "mypy-boto3-s3outposts" +"download_count": 228676, +"project": "kestra" }, { -"download_count": 151426, -"project": "mypy-boto3-freetier" +"download_count": 228601, +"project": "argparse-helper" }, { -"download_count": 151425, -"project": "mypy-boto3-neptunedata" +"download_count": 228587, +"project": "logging-formatter-anticrlf" }, { -"download_count": 151406, -"project": "mypy-boto3-marketplace-agreement" +"download_count": 228405, +"project": "iteration-utilities" }, { -"download_count": 151372, -"project": "mypy-boto3-internetmonitor" +"download_count": 228392, +"project": "config-dir" }, { -"download_count": 151365, -"project": "mypy-boto3-ivs-realtime" +"download_count": 228391, +"project": "pyzipcode" }, { -"download_count": 151363, -"project": "mypy-boto3-pca-connector-ad" +"download_count": 228349, +"project": "aws-cdk-custom-resources" }, { -"download_count": 151326, -"project": "aiocontextvars" +"download_count": 228297, +"project": "args" }, { -"download_count": 151324, -"project": "mypy-boto3-repostspace" +"download_count": 228189, +"project": "rq-scheduler" }, { -"download_count": 151287, -"project": "mypy-boto3-route53profiles" +"download_count": 228146, +"project": "findiff" }, { -"download_count": 151268, -"project": "mypy-boto3-application-signals" +"download_count": 228011, +"project": "contractions" }, { -"download_count": 151237, -"project": "mypy-boto3-oam" +"download_count": 227963, +"project": "depthai" }, { -"download_count": 151201, -"project": "mypy-boto3-mailmanager" +"download_count": 227847, +"project": "langchain-mistralai" }, { -"download_count": 151197, -"project": "pyecharts" +"download_count": 227769, +"project": "pyroma" }, { -"download_count": 151190, -"project": "xdsl" +"download_count": 227715, +"project": "defcon" }, { -"download_count": 151180, -"project": "clvm-rs" +"download_count": 227592, +"project": "cmake-format" }, { -"download_count": 151176, -"project": "mypy-boto3-pcs" +"download_count": 227560, +"project": "trustme" }, { -"download_count": 151104, -"project": "mypy-boto3-entityresolution" +"download_count": 227523, +"project": "google-compute-engine" }, { -"download_count": 151085, -"project": "meltanolabs-target-snowflake" +"download_count": 227515, +"project": "tkmacosx" }, { -"download_count": 151080, -"project": "mypy-boto3-inspector-scan" +"download_count": 227491, +"project": "segtok" }, { -"download_count": 151043, -"project": "mypy-boto3-license-manager-linux-subscriptions" +"download_count": 227276, +"project": "posix-ipc" }, { -"download_count": 151026, -"project": "mypy-boto3-managedblockchain-query" +"download_count": 227264, +"project": "dask-cuda" }, { -"download_count": 150957, -"project": "mypy-boto3-neptune-graph" +"download_count": 227163, +"project": "opentelemetry-instrumentation-psycopg" }, { -"download_count": 150929, -"project": "pypyr" +"download_count": 227121, +"project": "gpytorch" }, { -"download_count": 150900, -"project": "mypy-boto3-controlcatalog" +"download_count": 226974, +"project": "azureml-fsspec" }, { -"download_count": 150758, -"project": "mypy-boto3-networkmonitor" +"download_count": 226968, +"project": "pyaml-env" }, { -"download_count": 150723, -"project": "openmath" +"download_count": 226956, +"project": "case-class" }, { -"download_count": 150717, -"project": "represent" +"download_count": 226882, +"project": "minikanren" }, { -"download_count": 150693, -"project": "mypy-boto3-pca-connector-scep" +"download_count": 226869, +"project": "tqdm-loggable" }, { -"download_count": 150556, -"project": "python-markdown-math" +"download_count": 226857, +"project": "curies" }, { -"download_count": 150430, -"project": "interpret-community" +"download_count": 226828, +"project": "types-backports" }, { -"download_count": 150405, -"project": "delegator-py" +"download_count": 226813, +"project": "solc-select" }, { -"download_count": 150371, -"project": "pydes" +"download_count": 226718, +"project": "llama-index-vector-stores-postgres" }, { -"download_count": 150363, -"project": "placekey" +"download_count": 226709, +"project": "lbt-dragonfly" }, { -"download_count": 150261, -"project": "azureml-contrib-services" +"download_count": 226701, +"project": "aws-cdk-aws-elasticloadbalancingv2" }, { -"download_count": 150246, -"project": "ta" +"download_count": 226598, +"project": "apache-airflow-providers-grpc" }, { -"download_count": 150245, -"project": "mozprocess" +"download_count": 226336, +"project": "zeo" }, { -"download_count": 150236, -"project": "dbstream" +"download_count": 226282, +"project": "deprecat" }, { -"download_count": 150131, -"project": "pydot-ng" +"download_count": 226070, +"project": "flake8-blind-except" }, { -"download_count": 149977, -"project": "msg-parser" +"download_count": 226033, +"project": "auditwheel" }, { -"download_count": 149939, -"project": "cron-schedule-triggers" +"download_count": 225928, +"project": "python-statemachine" }, { -"download_count": 149787, -"project": "favicon" +"download_count": 225889, +"project": "liccheck" }, { -"download_count": 149770, -"project": "javalang" +"download_count": 225855, +"project": "invisible-watermark" }, { -"download_count": 149731, -"project": "azure-schemaregistry-avroencoder" +"download_count": 225840, +"project": "plan-tools" }, { -"download_count": 149616, -"project": "hbutils" +"download_count": 225656, +"project": "opencensus-proto" }, { -"download_count": 149582, -"project": "pycountry-convert" +"download_count": 225581, +"project": "cdk-events-notify" }, { -"download_count": 149473, -"project": "pigpio" +"download_count": 225420, +"project": "unidic" }, { -"download_count": 149467, -"project": "robinhood-aiokafka" +"download_count": 225392, +"project": "opentelemetry-instrumentation-aiohttp-server" }, { -"download_count": 149430, -"project": "ml-wrappers" +"download_count": 225253, +"project": "flask-restplus" }, { -"download_count": 149420, -"project": "pilkit" +"download_count": 224996, +"project": "hypothesis-jsonschema" }, { -"download_count": 149375, -"project": "tabulator" +"download_count": 224982, +"project": "mxnet-mkl" }, { -"download_count": 149362, -"project": "ufal-udpipe" +"download_count": 224882, +"project": "mo-dots" }, { -"download_count": 149350, -"project": "flake8-html" +"download_count": 224765, +"project": "sinethesizer" }, { -"download_count": 149260, -"project": "faust" +"download_count": 224755, +"project": "types-aiobotocore-acm" }, { -"download_count": 149197, -"project": "airflow-dbt-python" +"download_count": 224720, +"project": "pdm-pep517" }, { -"download_count": 149170, -"project": "rpmfile" +"download_count": 224595, +"project": "cdktf-cdktf-provider-aws" }, { -"download_count": 149092, -"project": "psycopg2-pool" +"download_count": 224538, +"project": "pgspecial" }, { -"download_count": 149070, -"project": "mypy-boto3-nimble" +"download_count": 224335, +"project": "django-classy-tags" }, { -"download_count": 149047, -"project": "google-oauth2-tool" +"download_count": 224283, +"project": "telepath" }, { -"download_count": 148970, -"project": "pycparserext-gnuc" +"download_count": 224058, +"project": "types-aiobotocore-iam" }, { -"download_count": 148819, -"project": "django-imagekit" +"download_count": 223713, +"project": "pytest-incremental" }, { -"download_count": 148735, -"project": "sqlalchemy-continuum" +"download_count": 223697, +"project": "remote-pdb" }, { -"download_count": 148554, -"project": "yake" +"download_count": 223685, +"project": "actions-toolkit" }, { -"download_count": 148535, -"project": "config-formatter" +"download_count": 223619, +"project": "types-aiobotocore-route53" }, { -"download_count": 148519, -"project": "hgtk" +"download_count": 223492, +"project": "pydynamodb" }, { -"download_count": 148503, -"project": "flake8-class-attributes-order" +"download_count": 223486, +"project": "ipylab" }, { -"download_count": 148395, -"project": "yaql" +"download_count": 223219, +"project": "flake8-logging-format" }, { -"download_count": 148368, -"project": "openai-clip" +"download_count": 223215, +"project": "browserstack-local" }, { -"download_count": 148286, -"project": "namedentities" +"download_count": 223194, +"project": "skqulacs" }, { -"download_count": 148195, -"project": "smbus2" +"download_count": 223136, +"project": "nipype" }, { -"download_count": 148190, -"project": "pytenable" +"download_count": 223047, +"project": "python-vagrant" }, { -"download_count": 148125, -"project": "azure-functions-durable" +"download_count": 222890, +"project": "flet" }, { -"download_count": 148043, -"project": "delorean" +"download_count": 222867, +"project": "astronomer-providers" }, { -"download_count": 147989, -"project": "datetime-quarter" +"download_count": 222851, +"project": "fauxfactory" }, { -"download_count": 147748, -"project": "raiutils" +"download_count": 222793, +"project": "icalevents" }, { -"download_count": 147697, -"project": "mlog-arithmetic-runner" +"download_count": 222680, +"project": "twython" }, { -"download_count": 147644, -"project": "mssql-django" +"download_count": 222646, +"project": "pgsanity" }, { -"download_count": 147614, -"project": "dirac" +"download_count": 222640, +"project": "typed-argument-parser" }, { -"download_count": 147487, -"project": "tqdm-loggable" +"download_count": 222588, +"project": "bigdl-nano" }, { -"download_count": 147430, -"project": "python-neutronclient" +"download_count": 222492, +"project": "django-solo" }, { -"download_count": 147424, -"project": "yorm" +"download_count": 222304, +"project": "datarecorder" }, { -"download_count": 147413, -"project": "pyobjc-framework-launchservices" +"download_count": 222269, +"project": "tickforge-client" }, { -"download_count": 147409, -"project": "python-levenshtein-wheels" +"download_count": 222229, +"project": "pyteomics" }, { -"download_count": 147331, -"project": "sphinx-bootstrap-theme" +"download_count": 222205, +"project": "usb-devices" }, { -"download_count": 147206, -"project": "jpholiday" +"download_count": 222165, +"project": "hausdorff" }, { -"download_count": 147179, -"project": "mysql-connector-python-rf" +"download_count": 221693, +"project": "favicon" }, { -"download_count": 146965, -"project": "xenon" +"download_count": 221665, +"project": "atlassian-jwt-auth" }, { -"download_count": 146884, -"project": "pysnyk" +"download_count": 221584, +"project": "lapx" }, { -"download_count": 146869, -"project": "python-terraform" +"download_count": 221521, +"project": "esprima" }, { -"download_count": 146858, -"project": "fsc-hdf5-io" +"download_count": 221445, +"project": "emr-notebooks-magics" }, { -"download_count": 146835, -"project": "bands-inspect" +"download_count": 221433, +"project": "daal" }, { -"download_count": 146802, -"project": "dukpy" +"download_count": 221393, +"project": "pylsl" }, { -"download_count": 146783, -"project": "flake8-json" +"download_count": 221375, +"project": "presto-client" }, { -"download_count": 146748, -"project": "tbmodels" +"download_count": 221250, +"project": "envparse" }, { -"download_count": 146642, -"project": "lpc-checksum" +"download_count": 221197, +"project": "arize-phoenix-otel" }, { -"download_count": 146614, -"project": "python-openid" +"download_count": 221080, +"project": "maison" }, { -"download_count": 146605, -"project": "xinspect" +"download_count": 221040, +"project": "fugue-sql-antlr" }, { -"download_count": 146597, -"project": "nvitop" +"download_count": 220988, +"project": "serverless-wsgi" }, { -"download_count": 146595, -"project": "fastapi-cache2" +"download_count": 220866, +"project": "downloadkit" }, { -"download_count": 146576, -"project": "django-nine" +"download_count": 220564, +"project": "prefect-dbt" }, { -"download_count": 146548, -"project": "prefect-dask" +"download_count": 220519, +"project": "pycosat" }, { -"download_count": 146455, -"project": "bech32" +"download_count": 220467, +"project": "aioice" }, { -"download_count": 146451, -"project": "fmpy" +"download_count": 220370, +"project": "baby-steps" }, { -"download_count": 146446, -"project": "rapids-dependency-file-generator" +"download_count": 220263, +"project": "mergepythonclient" }, { -"download_count": 146418, -"project": "sagemaker-inference" +"download_count": 220257, +"project": "widdy" }, { -"download_count": 146353, -"project": "pemja" +"download_count": 220194, +"project": "praat-parselmouth" }, { -"download_count": 146280, -"project": "dacktool" +"download_count": 220186, +"project": "basicauth" }, { -"download_count": 146204, -"project": "mo-logs" +"download_count": 219988, +"project": "multi-model-server" }, { -"download_count": 146149, -"project": "mo-kwargs" +"download_count": 219971, +"project": "bids-validator" }, { -"download_count": 146050, -"project": "pyvcd" +"download_count": 219940, +"project": "cybrid-api-organization-python" }, { -"download_count": 146010, -"project": "skorch" +"download_count": 219934, +"project": "pycron" }, { -"download_count": 145953, -"project": "dataengine" +"download_count": 219918, +"project": "mo-imports" }, { -"download_count": 145853, -"project": "bump-my-version" +"download_count": 219897, +"project": "fortifyapi" }, { -"download_count": 145802, -"project": "lilcom" +"download_count": 219830, +"project": "json2xml" }, { -"download_count": 145702, -"project": "args" +"download_count": 219763, +"project": "piccolo" }, { -"download_count": 145512, -"project": "pretrainedmodels" +"download_count": 219602, +"project": "algokit-utils" }, { -"download_count": 145387, -"project": "pyobjc-framework-exceptionhandling" +"download_count": 219581, +"project": "motifcluster" }, { -"download_count": 145362, -"project": "pytest-memray" +"download_count": 219473, +"project": "keras-nlp" }, { -"download_count": 145248, -"project": "django-sendgrid-v5" +"download_count": 219434, +"project": "emails" }, { -"download_count": 145143, -"project": "keyrings-cryptfile" +"download_count": 219337, +"project": "aws-cdk-aws-codestarnotifications" }, { -"download_count": 145031, -"project": "scikit-survival" +"download_count": 219197, +"project": "prowler" }, { -"download_count": 144905, -"project": "fs-gcsfs" +"download_count": 219157, +"project": "fast-query-parsers" }, { -"download_count": 144884, -"project": "firebolt-sdk" +"download_count": 219095, +"project": "nacos-sdk-python" }, { -"download_count": 144802, -"project": "pyevtk" +"download_count": 219086, +"project": "airflow-provider-great-expectations" }, { -"download_count": 144703, -"project": "no-manylinux" +"download_count": 218667, +"project": "efficientnet-pytorch" }, { -"download_count": 144668, -"project": "pingouin" +"download_count": 218552, +"project": "aws-cdk-aws-ecs" }, { -"download_count": 144599, -"project": "pygltflib" +"download_count": 218360, +"project": "mypy-boto3-nimble" }, { -"download_count": 144593, -"project": "sparkdantic" +"download_count": 218341, +"project": "mkdocs-mermaid2-plugin" }, { -"download_count": 144582, -"project": "jeedomdaemon" +"download_count": 218334, +"project": "apache-airflow-providers-samba" }, { -"download_count": 144534, -"project": "prometheus-async" +"download_count": 218216, +"project": "pyfcm" }, { -"download_count": 144483, -"project": "py3dmol" +"download_count": 218189, +"project": "selenium-stealth" }, { -"download_count": 144481, -"project": "multiprocessing-logging" +"download_count": 218171, +"project": "wakeonlan" }, { -"download_count": 144405, -"project": "usd-core" +"download_count": 217984, +"project": "scanpy" }, { -"download_count": 144272, -"project": "pytest-helpers-namespace" +"download_count": 217922, +"project": "mechanize" }, { -"download_count": 144211, -"project": "mdformat-gfm" +"download_count": 217886, +"project": "aws-cdk-aws-sam" }, { -"download_count": 144184, -"project": "trie" +"download_count": 217826, +"project": "python-hosts" }, { -"download_count": 144181, -"project": "django-crontab" +"download_count": 217772, +"project": "slipcover" }, { -"download_count": 144156, -"project": "pytest-docker-tools" +"download_count": 217771, +"project": "testscenarios" }, { -"download_count": 144154, -"project": "git-pylint-commit-hook" +"download_count": 217707, +"project": "smbus2" }, { -"download_count": 144076, -"project": "exifread" +"download_count": 217706, +"project": "aws-cdk-aws-cognito" }, { -"download_count": 144058, -"project": "easydev" +"download_count": 217560, +"project": "pylibsrtp" }, { -"download_count": 144010, -"project": "airflow-provider-great-expectations" +"download_count": 217386, +"project": "ovld" }, { -"download_count": 143990, -"project": "handpick" +"download_count": 217326, +"project": "growthbook" }, { -"download_count": 143922, -"project": "types-aiobotocore-elbv2" +"download_count": 217270, +"project": "represent" }, { -"download_count": 143759, -"project": "flake8-tuple" +"download_count": 217168, +"project": "pook" }, { -"download_count": 143560, -"project": "pytrie" +"download_count": 216925, +"project": "cybrid-api-id-python" }, { -"download_count": 143532, -"project": "httpx-auth" +"download_count": 216903, +"project": "xml-python" }, { -"download_count": 143531, -"project": "google-api-python-client-stubs" +"download_count": 216898, +"project": "csscompressor" }, { -"download_count": 143525, -"project": "pangres" +"download_count": 216641, +"project": "handpick" }, { -"download_count": 143502, -"project": "teradata" +"download_count": 216634, +"project": "async-stripe" }, { -"download_count": 143465, -"project": "dagster-celery" +"download_count": 216563, +"project": "pygrib" }, { -"download_count": 143422, -"project": "compress-pickle" +"download_count": 216519, +"project": "rotary-embedding-torch" }, { -"download_count": 143389, -"project": "scann" +"download_count": 216433, +"project": "allpairspy" }, { -"download_count": 143308, -"project": "dgl" +"download_count": 216397, +"project": "brazilnum" }, { -"download_count": 143288, -"project": "dagster-celery-k8s" +"download_count": 216275, +"project": "scylla-driver" }, { -"download_count": 143284, -"project": "lhotse" +"download_count": 216249, +"project": "torchsummary" }, { -"download_count": 143273, -"project": "datetimerange" +"download_count": 216164, +"project": "wtforms-json" }, { -"download_count": 143166, -"project": "plotbin" +"download_count": 216113, +"project": "valid8" }, { -"download_count": 143110, -"project": "pygrok" +"download_count": 216084, +"project": "aws-cdk-aws-stepfunctions" }, { -"download_count": 143088, -"project": "neo4j-driver" +"download_count": 215899, +"project": "apysc" }, { -"download_count": 143008, -"project": "pyobjc-framework-coreaudio" +"download_count": 215835, +"project": "azure-cognitiveservices-knowledge-qnamaker" }, { -"download_count": 143001, -"project": "ocviapy" +"download_count": 215820, +"project": "clearml-agent" }, { -"download_count": 142948, -"project": "pyscreenshot" +"download_count": 215535, +"project": "bumpver" }, { -"download_count": 142945, -"project": "wordninja" +"download_count": 215440, +"project": "fairlearn" }, { -"download_count": 142905, -"project": "preggy" +"download_count": 215427, +"project": "aws-cdk-aws-signer" }, { -"download_count": 142811, -"project": "hatch-nodejs-version" +"download_count": 215412, +"project": "astroquery" }, { -"download_count": 142807, -"project": "loess" +"download_count": 215411, +"project": "tdparser" }, { -"download_count": 142782, -"project": "objectpath" +"download_count": 215233, +"project": "pytest-codspeed" }, { -"download_count": 142681, -"project": "setfit" +"download_count": 215160, +"project": "py3rijndael" }, { -"download_count": 142423, -"project": "pyobjc-framework-cfnetwork" +"download_count": 214950, +"project": "price-parser" }, { -"download_count": 142284, -"project": "grafana-client" +"download_count": 214909, +"project": "theano-pymc" }, { -"download_count": 142241, -"project": "bids-validator" +"download_count": 214895, +"project": "iden" }, { -"download_count": 142210, -"project": "dynamicprompts" +"download_count": 214880, +"project": "records" }, { -"download_count": 142194, -"project": "picu" +"download_count": 214836, +"project": "mdformat-tables" }, { -"download_count": 142143, -"project": "pybids" +"download_count": 214816, +"project": "dagster-datadog" }, { -"download_count": 142094, -"project": "pyobjc-framework-automator" +"download_count": 214763, +"project": "jurigged" }, { -"download_count": 142086, -"project": "dh-utils" +"download_count": 214582, +"project": "swimbundle-utils" }, { -"download_count": 142077, -"project": "munidata" +"download_count": 214576, +"project": "gggdtparser" }, { -"download_count": 142074, -"project": "fast-query-parsers" +"download_count": 214481, +"project": "scikit-learn-intelex" }, { -"download_count": 141969, -"project": "widdy" +"download_count": 214448, +"project": "graphene-sqlalchemy" }, { -"download_count": 141910, -"project": "djangosaml2" +"download_count": 214379, +"project": "azure-ai-language-questionanswering" }, { -"download_count": 141891, -"project": "voluptuous-serialize" +"download_count": 214305, +"project": "pyfields" }, { -"download_count": 141788, -"project": "clip-anytorch" +"download_count": 214167, +"project": "autofaiss" }, { -"download_count": 141779, -"project": "pycocoevalcap" +"download_count": 214120, +"project": "aws-cdk-aws-sns-subscriptions" }, { -"download_count": 141768, -"project": "antsibull-docs-parser" +"download_count": 214081, +"project": "rosbags" }, { -"download_count": 141753, -"project": "types-dateparser" +"download_count": 214074, +"project": "simpleparse" }, { -"download_count": 141683, -"project": "zi-api-auth-client" +"download_count": 213986, +"project": "azure-ai-language-conversations" }, { -"download_count": 141597, -"project": "rocksdict" +"download_count": 213845, +"project": "cloup" }, { -"download_count": 141594, -"project": "razorpay" +"download_count": 213753, +"project": "spotpy" }, { -"download_count": 141564, -"project": "aws-opentelemetry-distro" +"download_count": 213733, +"project": "nicegui" }, { -"download_count": 141531, -"project": "pyobjc-framework-addressbook" +"download_count": 213704, +"project": "pygresql" }, { -"download_count": 141515, -"project": "fuzzyfinder" +"download_count": 213361, +"project": "uart-devices" }, { -"download_count": 141506, -"project": "print-color" +"download_count": 213356, +"project": "niltype" }, { -"download_count": 141408, -"project": "pyautogen" +"download_count": 213196, +"project": "pytest-black" }, { -"download_count": 141390, -"project": "sagemaker-experiments" +"download_count": 213189, +"project": "ursina" }, { -"download_count": 141343, -"project": "pyedbglib" +"download_count": 213166, +"project": "cloudsearch" }, { -"download_count": 141337, -"project": "tinynetrc" +"download_count": 213118, +"project": "rlpycairo" }, { -"download_count": 141295, -"project": "pymcuprog" +"download_count": 213118, +"project": "sockio" }, { -"download_count": 141295, -"project": "pyexcel-xlsx" +"download_count": 212982, +"project": "cpuset-py3" }, { -"download_count": 141276, -"project": "pytest-reporter" +"download_count": 212933, +"project": "pycoingecko" }, { -"download_count": 141256, -"project": "setoptconf" +"download_count": 212906, +"project": "tavily-python" }, { -"download_count": 141235, -"project": "requests-ratelimiter" +"download_count": 212894, +"project": "htmlmin2" }, { -"download_count": 141181, -"project": "ecmwflibs" +"download_count": 212793, +"project": "cdifflib" }, { -"download_count": 141112, -"project": "bamboolib" +"download_count": 212783, +"project": "embedding-reader" }, { -"download_count": 141090, -"project": "emojis" +"download_count": 212730, +"project": "unicode-slugify" }, { -"download_count": 141072, -"project": "mkdocs-literate-nav" +"download_count": 212721, +"project": "sunshine-conversations-client" }, { -"download_count": 141002, -"project": "ics" +"download_count": 212716, +"project": "dspy-ai" }, { -"download_count": 140924, -"project": "python-lzf" +"download_count": 212660, +"project": "ip2location" }, { -"download_count": 140904, -"project": "pyobjc-framework-diskarbitration" +"download_count": 212658, +"project": "pymap3d" }, { -"download_count": 140904, -"project": "promptflow" +"download_count": 212604, +"project": "robotframework-databaselibrary" }, { -"download_count": 140847, -"project": "geojson-pydantic" +"download_count": 212426, +"project": "django-pgtrigger" }, { -"download_count": 140826, -"project": "scanpy" +"download_count": 212412, +"project": "serialio" }, { -"download_count": 140809, -"project": "workos" +"download_count": 212374, +"project": "swapper" }, { -"download_count": 140743, -"project": "email" +"download_count": 212305, +"project": "json-ref-dict" }, { -"download_count": 140618, -"project": "lorem-text" +"download_count": 212292, +"project": "html2image" }, { -"download_count": 140568, -"project": "libsast" +"download_count": 212282, +"project": "pytest-timeouts" }, { -"download_count": 140566, -"project": "spaces" +"download_count": 212120, +"project": "robotframework-tidy" }, { -"download_count": 140550, -"project": "pycdlib" +"download_count": 212020, +"project": "connio" }, { -"download_count": 140517, -"project": "mitmproxy-rs" +"download_count": 211985, +"project": "covdefaults" }, { -"download_count": 140468, -"project": "cx-freeze" +"download_count": 211570, +"project": "mohawk" }, { -"download_count": 140366, -"project": "pyobjc-framework-osakit" +"download_count": 211464, +"project": "crossplane" }, { -"download_count": 140291, -"project": "django-elasticsearch-dsl-drf" +"download_count": 211388, +"project": "doc-warden" }, { -"download_count": 140278, -"project": "laspy" +"download_count": 211275, +"project": "nbval" }, { -"download_count": 140244, -"project": "mip" +"download_count": 211146, +"project": "aws-cdk-aws-apigateway" }, { -"download_count": 140166, -"project": "numpyro" +"download_count": 211059, +"project": "colorist" }, { -"download_count": 140154, -"project": "flask-cloudflared" +"download_count": 210923, +"project": "certifi-linux" }, { -"download_count": 140031, -"project": "parquet-metadata" +"download_count": 210899, +"project": "streamlit-image-coordinates" }, { -"download_count": 139948, -"project": "htbuilder" +"download_count": 210839, +"project": "phpserialize" }, { -"download_count": 139807, -"project": "rbx" +"download_count": 210814, +"project": "linear-operator" }, { -"download_count": 139787, -"project": "rawpy" +"download_count": 210793, +"project": "ecpy" }, { -"download_count": 139674, -"project": "pyramid-mako" +"download_count": 210690, +"project": "multiprocessing" }, { -"download_count": 139653, -"project": "apache-flink" +"download_count": 210687, +"project": "aws-cdk-aws-kinesis" }, { -"download_count": 139604, -"project": "humanreadable" +"download_count": 210560, +"project": "pykerberos" }, { -"download_count": 139595, -"project": "flask-cognito-lib" +"download_count": 210477, +"project": "lm-eval" }, { -"download_count": 139527, -"project": "mkdocs-section-index" +"download_count": 210453, +"project": "linetools" }, { -"download_count": 139522, -"project": "swimbundle-utils" +"download_count": 210411, +"project": "better-profanity" }, { -"download_count": 139446, -"project": "hl7apy" +"download_count": 210361, +"project": "cybrid-api-bank-python" }, { -"download_count": 139386, -"project": "captcha" +"download_count": 210295, +"project": "linear-tsv" }, { -"download_count": 139377, -"project": "django-admin-interface" +"download_count": 210282, +"project": "geoip2-tools" }, { -"download_count": 139348, -"project": "pygelf" +"download_count": 210276, +"project": "yaml-config" }, { -"download_count": 139339, -"project": "quandl" +"download_count": 210128, +"project": "httpagentparser" }, { -"download_count": 139338, -"project": "fastexcel" +"download_count": 210124, +"project": "yamlfix" }, { -"download_count": 139273, -"project": "pyobjc-framework-fsevents" +"download_count": 210067, +"project": "streamlit-card" }, { -"download_count": 139167, -"project": "requests-gssapi" +"download_count": 210063, +"project": "google-benchmark" }, { -"download_count": 139132, -"project": "pyobjc-framework-applescriptkit" +"download_count": 210049, +"project": "flachtex" }, { -"download_count": 139116, -"project": "sphinxcontrib-confluencebuilder" +"download_count": 210024, +"project": "pymonet" }, { -"download_count": 138958, -"project": "spacy-alignments" +"download_count": 210004, +"project": "kcli" }, { -"download_count": 138936, -"project": "dagster-gcp" +"download_count": 209827, +"project": "pot" }, { -"download_count": 138877, -"project": "pytest-shard" +"download_count": 209818, +"project": "neo4j-driver" }, { -"download_count": 138812, -"project": "mozterm" +"download_count": 209770, +"project": "hvplot" }, { -"download_count": 138762, -"project": "multiping" +"download_count": 209586, +"project": "robotframework-sshlibrary" }, { -"download_count": 138758, -"project": "deep-merge" +"download_count": 209514, +"project": "pybids" }, { -"download_count": 138749, -"project": "ipython-autotime" +"download_count": 209438, +"project": "cdk-certbot-dns-route53" }, { -"download_count": 138688, -"project": "okta-jwt-verifier" +"download_count": 209362, +"project": "snowflake-telemetry-python" }, { -"download_count": 138669, -"project": "pylint-pytest" +"download_count": 209299, +"project": "pyplugs" }, { -"download_count": 138451, -"project": "sklearn-pandas" +"download_count": 209196, +"project": "opacus" }, { -"download_count": 138434, -"project": "hug" +"download_count": 209191, +"project": "qdarkstyle" }, { -"download_count": 138428, -"project": "pyobjc-framework-libdispatch" +"download_count": 209175, +"project": "hass-nabucasa" }, { -"download_count": 138363, -"project": "locustio" +"download_count": 209035, +"project": "fuzzysearch" }, { -"download_count": 138361, -"project": "acachecontrol" +"download_count": 208815, +"project": "boruta" }, { -"download_count": 138321, -"project": "esp-coredump" +"download_count": 208691, +"project": "django-permissionedforms" }, { -"download_count": 138204, -"project": "www-authenticate" +"download_count": 208665, +"project": "stanfordcorenlp" }, { -"download_count": 138016, -"project": "django-bulk-update" +"download_count": 208661, +"project": "fbprophet" }, { -"download_count": 137940, -"project": "inscriptis" +"download_count": 208580, +"project": "airflow-mcd" }, { -"download_count": 137868, -"project": "throttler" +"download_count": 208478, +"project": "smllib" }, { -"download_count": 137849, -"project": "slack-webhook" +"download_count": 208436, +"project": "py-meta-utils" }, { -"download_count": 137827, -"project": "boilerpy3" +"download_count": 208362, +"project": "async-exit-stack" }, { -"download_count": 137795, -"project": "cogapp" +"download_count": 208343, +"project": "abacusai" }, { -"download_count": 137732, -"project": "mergepythonclient" +"download_count": 208175, +"project": "aws-cdk-aws-autoscaling" }, { -"download_count": 137724, -"project": "pyuca" +"download_count": 207906, +"project": "clarifai" }, { -"download_count": 137671, -"project": "pytest-logger" +"download_count": 207891, +"project": "agate-sql" }, { -"download_count": 137647, -"project": "pyobjc-framework-coredata" +"download_count": 207886, +"project": "linetable" }, { -"download_count": 137644, -"project": "python3-ldap" +"download_count": 207806, +"project": "sagemaker-data-insights" }, { -"download_count": 137626, -"project": "encodec" +"download_count": 207800, +"project": "certbot-dns-route53" }, { -"download_count": 137441, -"project": "python-louvain" +"download_count": 207748, +"project": "pydocumentdb" }, { -"download_count": 137424, -"project": "crewai-tools" +"download_count": 207745, +"project": "stempeg" }, { -"download_count": 137296, -"project": "pyobjc-framework-latentsemanticmapping" +"download_count": 207737, +"project": "littlefs-python" }, { -"download_count": 137244, -"project": "recordclass" +"download_count": 207728, +"project": "usaddress-scourgify" }, { -"download_count": 137229, -"project": "pixelmatch" +"download_count": 207621, +"project": "musdb" }, { -"download_count": 137196, -"project": "pyobjc-framework-preferencepanes" +"download_count": 207618, +"project": "grpc-requests" }, { -"download_count": 137174, -"project": "pyobjc-framework-installerplugins" +"download_count": 207617, +"project": "st-annotated-text" }, { -"download_count": 137173, -"project": "postgres" +"download_count": 207595, +"project": "base64io" }, { -"download_count": 137154, -"project": "pyartifactory" +"download_count": 207552, +"project": "ddapm-test-agent" }, { -"download_count": 137144, -"project": "protoc-gen-validate" +"download_count": 207289, +"project": "xbbg" }, { -"download_count": 137111, -"project": "pdoc3" +"download_count": 207168, +"project": "flask-unittest" }, { -"download_count": 137090, -"project": "twython" +"download_count": 206836, +"project": "restfly" }, { -"download_count": 137021, -"project": "pyobjc-framework-discrecording" +"download_count": 206813, +"project": "esptool" }, { -"download_count": 136914, -"project": "pyobjc-framework-coreaudiokit" +"download_count": 206733, +"project": "dukpy" }, { -"download_count": 136851, -"project": "dagster-snowflake" +"download_count": 206681, +"project": "museval" }, { -"download_count": 136817, -"project": "wemake-python-styleguide" +"download_count": 206664, +"project": "pybreaker" }, { -"download_count": 136705, -"project": "pypi" +"download_count": 206657, +"project": "lazr-uri" }, { -"download_count": 136701, -"project": "control" +"download_count": 206637, +"project": "keybert" }, { -"download_count": 136699, -"project": "autodoc-pydantic" +"download_count": 206632, +"project": "cupy-cuda11x" }, { -"download_count": 136668, -"project": "xxtea" +"download_count": 206567, +"project": "x-transformers" }, { -"download_count": 136632, -"project": "objectory" +"download_count": 206518, +"project": "julia" }, { -"download_count": 136563, -"project": "pyobjc-framework-discrecordingui" +"download_count": 206498, +"project": "docdata" }, { -"download_count": 136555, -"project": "pylint-exit" +"download_count": 206378, +"project": "openqa-client" }, { -"download_count": 136493, -"project": "pyobjc-framework-dvdplayback" +"download_count": 206294, +"project": "acryl-datahub-classify" }, { -"download_count": 136465, -"project": "intake" +"download_count": 206130, +"project": "textract" }, { -"download_count": 136413, -"project": "apache-airflow-providers-apache-livy" +"download_count": 206122, +"project": "css-inline" }, { -"download_count": 136362, -"project": "pyobjc-framework-corebluetooth" +"download_count": 206106, +"project": "jaeger-client" }, { -"download_count": 136331, -"project": "pygitguardian" +"download_count": 205964, +"project": "ics" }, { -"download_count": 136313, -"project": "mmhash2" +"download_count": 205690, +"project": "flake8-expression-complexity" }, { -"download_count": 136219, -"project": "pybind11-global" +"download_count": 205669, +"project": "meross-iot" }, { -"download_count": 136140, -"project": "face-recognition" +"download_count": 205644, +"project": "sccache" }, { -"download_count": 136089, -"project": "meshtastic" +"download_count": 205529, +"project": "esp-idf-kconfig" }, { -"download_count": 136033, -"project": "types-aiobotocore-route53" +"download_count": 205459, +"project": "coralogix-logger" }, { -"download_count": 135970, -"project": "pyeapi" +"download_count": 205441, +"project": "assemblyline-core" }, { -"download_count": 135940, -"project": "sphinxcontrib-spelling" +"download_count": 205440, +"project": "saspy" }, { -"download_count": 135924, -"project": "gcloud-aio-datastore" +"download_count": 205316, +"project": "demjson3" }, { -"download_count": 135829, -"project": "mrcfile" +"download_count": 205213, +"project": "optimizely-sdk" }, { -"download_count": 135722, -"project": "syllapy" +"download_count": 205166, +"project": "actfast" }, { -"download_count": 135708, -"project": "loadimg" +"download_count": 205099, +"project": "scanf" }, { -"download_count": 135658, -"project": "async-interrupt" +"download_count": 205095, +"project": "m2r2" }, { -"download_count": 135621, -"project": "pynliner" +"download_count": 204857, +"project": "docx" }, { -"download_count": 135618, -"project": "flask-bootstrap" +"download_count": 204661, +"project": "healpix" }, { -"download_count": 135537, -"project": "cypari2" +"download_count": 204635, +"project": "cachebox" }, { -"download_count": 135502, -"project": "pyobjc-framework-security" +"download_count": 204362, +"project": "vininfo" }, { -"download_count": 135457, -"project": "types-aiobotocore-acm" +"download_count": 204316, +"project": "panda3d-simplepbr" }, { -"download_count": 135456, -"project": "symspellpy" +"download_count": 204275, +"project": "lintrunner" }, { -"download_count": 135439, -"project": "django-rest-auth" +"download_count": 204234, +"project": "aliyun-python-sdk-rds" }, { -"download_count": 135430, -"project": "st-annotated-text" +"download_count": 204127, +"project": "pywebpush" }, { -"download_count": 135422, -"project": "types-orjson" +"download_count": 204053, +"project": "markdownlit" }, { -"download_count": 135398, -"project": "pyunpack" +"download_count": 204012, +"project": "aws-cdk-aws-elasticloadbalancing" }, { -"download_count": 135303, -"project": "flake8-literal" +"download_count": 203928, +"project": "lcov-cobertura" }, { -"download_count": 135152, -"project": "ezdxf" +"download_count": 203823, +"project": "panda3d-gltf" }, { -"download_count": 135109, -"project": "pdf2docx" +"download_count": 203587, +"project": "crispy-bootstrap4" }, { -"download_count": 135073, -"project": "pymunk" +"download_count": 203479, +"project": "tensorflow-model-analysis" }, { -"download_count": 134922, -"project": "pytest-reraise" +"download_count": 203445, +"project": "zipcodes" }, { -"download_count": 134892, -"project": "aws-cdk-aws-redshift-alpha" +"download_count": 203361, +"project": "prefect-snowflake" }, { -"download_count": 134874, -"project": "pyscipopt" +"download_count": 203306, +"project": "pyecharts" }, { -"download_count": 134871, -"project": "bluetooth-adapters" +"download_count": 202775, +"project": "pysimplevalidate" }, { -"download_count": 134855, -"project": "streamlit-image-coordinates" +"download_count": 202759, +"project": "dagster-azure" }, { -"download_count": 134854, -"project": "atomicwrites-homeassistant" +"download_count": 202725, +"project": "livekit-api" }, { -"download_count": 134816, -"project": "dewloosh-core" +"download_count": 202643, +"project": "aws-cdk-aws-route53-targets" }, { -"download_count": 134789, -"project": "pyobjc-framework-webkit" +"download_count": 202639, +"project": "pdblp" }, { -"download_count": 134763, -"project": "netapp-ontap" +"download_count": 202636, +"project": "mwtextextractor" }, { -"download_count": 134682, -"project": "python-statemachine" +"download_count": 202626, +"project": "airtable" }, { -"download_count": 134634, -"project": "interrogate" +"download_count": 202617, +"project": "pyinputplus" }, { -"download_count": 134621, -"project": "libpysal" +"download_count": 202551, +"project": "mkdocs-minify-plugin" }, { -"download_count": 134606, -"project": "spark-expectations" +"download_count": 202524, +"project": "trcli" }, { -"download_count": 134605, -"project": "purecloudplatformclientv2" +"download_count": 202509, +"project": "threadloop" }, { -"download_count": 134602, -"project": "azure-cognitiveservices-vision-computervision" +"download_count": 202320, +"project": "megatron-core" }, { -"download_count": 134600, -"project": "columnar" +"download_count": 202297, +"project": "kuzu" }, { -"download_count": 134596, -"project": "smartypants" +"download_count": 202273, +"project": "justbases" }, { -"download_count": 134545, -"project": "runstats" +"download_count": 202203, +"project": "mdformat-frontmatter" }, { -"download_count": 134426, -"project": "pyobjc-framework-coremedia" +"download_count": 202051, +"project": "namedlist" }, { -"download_count": 134426, -"project": "nvidia-cuda-nvcc-cu12" +"download_count": 201985, +"project": "pymcubes" }, { -"download_count": 134420, -"project": "streamlit-card" +"download_count": 201916, +"project": "pandavro" }, { -"download_count": 134367, -"project": "colour-science" +"download_count": 201862, +"project": "ds2" }, { -"download_count": 134281, -"project": "llamaindex-py-client" +"download_count": 201744, +"project": "agate-excel" }, { -"download_count": 134256, -"project": "robotframework-debuglibrary" +"download_count": 201728, +"project": "pyexcelerate" }, { -"download_count": 134155, -"project": "cirq-core" +"download_count": 201715, +"project": "apache-airflow-providers-apache-pinot" }, { -"download_count": 134142, -"project": "lion-pytorch" +"download_count": 201678, +"project": "vabene" }, { -"download_count": 134138, -"project": "flake8-pytest-style" +"download_count": 201660, +"project": "streamlit-embedcode" }, { -"download_count": 134122, -"project": "google-oauth" +"download_count": 201601, +"project": "zcbor" }, { -"download_count": 134006, -"project": "flake8-fixme" +"download_count": 201555, +"project": "hl7" }, { -"download_count": 134003, -"project": "fairseq" +"download_count": 201511, +"project": "metricspaces" }, { -"download_count": 133934, -"project": "wells" +"download_count": 201478, +"project": "qpsolvers" }, { -"download_count": 133927, -"project": "placebo" +"download_count": 201380, +"project": "bluetooth-auto-recovery" }, { -"download_count": 133888, -"project": "types-lxml" +"download_count": 201362, +"project": "pytest-filter-subpackage" }, { -"download_count": 133852, -"project": "langkit" +"download_count": 201220, +"project": "rstcheck-core" }, { -"download_count": 133835, -"project": "mxnet-mkl" +"download_count": 201152, +"project": "autowrapt" }, { -"download_count": 133824, -"project": "flask-principal" +"download_count": 201065, +"project": "flpc" }, { -"download_count": 133730, -"project": "synchronicity" +"download_count": 201061, +"project": "tensorrt" }, { -"download_count": 133655, -"project": "langchain-mistralai" +"download_count": 200993, +"project": "pgcli" }, { -"download_count": 133573, -"project": "py-evm" +"download_count": 200952, +"project": "django-webtest" }, { -"download_count": 133535, -"project": "telegraph" +"download_count": 200928, +"project": "streamlit-toggle-switch" }, { -"download_count": 133503, -"project": "types-aiobotocore-iam" +"download_count": 200921, +"project": "pymonetdb" }, { -"download_count": 133425, -"project": "pykerberos" +"download_count": 200907, +"project": "paypalrestsdk" }, { -"download_count": 133422, -"project": "dbus-python" +"download_count": 200863, +"project": "dbnd" }, { -"download_count": 133350, -"project": "pystrict" +"download_count": 200844, +"project": "lexid" }, { -"download_count": 133347, -"project": "mcap-protobuf-support" +"download_count": 200807, +"project": "pyzabbix" }, { -"download_count": 133327, -"project": "japanize-matplotlib" +"download_count": 200740, +"project": "mmdet" }, { -"download_count": 133146, -"project": "promptflow-azure" +"download_count": 200704, +"project": "htbuilder" }, { -"download_count": 133117, -"project": "salesforce-api" +"download_count": 200604, +"project": "flask-debugtoolbar" }, { -"download_count": 133064, -"project": "pyjavaproperties3" +"download_count": 200589, +"project": "blinker-herald" }, { -"download_count": 132883, -"project": "flask-mongoengine" +"download_count": 200516, +"project": "libhoney" }, { -"download_count": 132777, -"project": "oras" +"download_count": 200511, +"project": "model-archiver" }, { -"download_count": 132761, -"project": "zappa" +"download_count": 200468, +"project": "jaro-winkler" }, { -"download_count": 132732, -"project": "pyfaidx" +"download_count": 200430, +"project": "girth" }, { -"download_count": 132729, -"project": "pytorch-ranger" +"download_count": 200245, +"project": "snakes" }, { -"download_count": 132701, -"project": "trogon" +"download_count": 200173, +"project": "hl7apy" }, { -"download_count": 132522, -"project": "lookml" +"download_count": 200128, +"project": "azure-iot-hub" }, { -"download_count": 132516, -"project": "packaging-legacy" +"download_count": 200126, +"project": "assemblyline-ui" }, { -"download_count": 132515, -"project": "rich-rst" +"download_count": 200007, +"project": "implicit" }, { -"download_count": 132512, -"project": "initools" +"download_count": 199931, +"project": "aws-cdk-aws-cloudfront" }, { -"download_count": 132469, -"project": "python-liquid" +"download_count": 199853, +"project": "django-deprecate-fields" }, { -"download_count": 132433, -"project": "python-tools-scripts" +"download_count": 199846, +"project": "aws-cdk-aws-servicediscovery" }, { -"download_count": 132159, -"project": "x-transformers" +"download_count": 199752, +"project": "ical" }, { -"download_count": 132064, -"project": "bqplot" +"download_count": 199612, +"project": "streamlit-camera-input-live" }, { -"download_count": 131993, -"project": "duet" +"download_count": 199586, +"project": "streamlit-faker" }, { -"download_count": 131985, -"project": "tensorrt" +"download_count": 199578, +"project": "airflow-provider-fivetran" }, { -"download_count": 131807, -"project": "redlock-py" +"download_count": 199516, +"project": "image" }, { -"download_count": 131803, -"project": "qulacs" +"download_count": 199485, +"project": "cyclonedx-bom" }, { -"download_count": 131778, -"project": "pytdigest" +"download_count": 199350, +"project": "pytest-mock-resources" }, { -"download_count": 131739, -"project": "hypothesis-jsonschema" +"download_count": 199314, +"project": "granian" }, { -"download_count": 131713, -"project": "drug-named-entity-recognition" +"download_count": 199300, +"project": "django-autoslug" }, { -"download_count": 131657, -"project": "sphinx-markdown-builder" +"download_count": 199240, +"project": "llama-index-embeddings-huggingface" }, { -"download_count": 131627, -"project": "bolton-clack" +"download_count": 199146, +"project": "pyresidfp" }, { -"download_count": 131610, -"project": "dewloosh-math" +"download_count": 199146, +"project": "yamlloader" }, { -"download_count": 131589, -"project": "pyobjc-framework-avfoundation" +"download_count": 199095, +"project": "livekit-protocol" }, { -"download_count": 131580, -"project": "dynamic-yaml" +"download_count": 199063, +"project": "slackweb" }, { -"download_count": 131577, -"project": "dagster-docker" +"download_count": 198946, +"project": "flet-core" }, { -"download_count": 131572, -"project": "progiter" +"download_count": 198930, +"project": "pyxnat" }, { -"download_count": 131558, -"project": "scriptconfig" +"download_count": 198794, +"project": "django-admin-list-filter-dropdown" }, { -"download_count": 131534, -"project": "fastnumbers" +"download_count": 198787, +"project": "simple-rest-client" }, { -"download_count": 131527, -"project": "whylabs-textstat" +"download_count": 198743, +"project": "aqtinstall" }, { -"download_count": 131516, -"project": "edk2-pytool-library" +"download_count": 198716, +"project": "onepasswordconnectsdk" }, { -"download_count": 131497, -"project": "pysqlite3" +"download_count": 198707, +"project": "django-crum" }, { -"download_count": 131482, -"project": "mailchimp-transactional" +"download_count": 198646, +"project": "pinterest-api-sdk" }, { -"download_count": 131471, -"project": "pyobjc-framework-screensaver" +"download_count": 198608, +"project": "pinterest-generated-client" }, { -"download_count": 131236, -"project": "pyobjc-framework-syncservices" +"download_count": 198590, +"project": "aws-cdk-aws-autoscaling-hooktargets" }, { -"download_count": 131224, -"project": "bolton-eris" +"download_count": 198584, +"project": "conda-package-streaming" }, { -"download_count": 131218, -"project": "bolton-metaman" +"download_count": 198554, +"project": "compress-pickle" }, { -"download_count": 131210, -"project": "bolton-typist" +"download_count": 198527, +"project": "filechunkio" }, { -"download_count": 131202, -"project": "bolton-ion" +"download_count": 198461, +"project": "pip-upgrader" }, { -"download_count": 131145, -"project": "ursina" +"download_count": 198312, +"project": "pyinquirer" }, { -"download_count": 131092, -"project": "selenium-stealth" +"download_count": 198271, +"project": "streamlit-vertical-slider" }, { -"download_count": 131066, -"project": "together" +"download_count": 198203, +"project": "securesystemslib" }, { -"download_count": 131046, -"project": "ulid-transform" +"download_count": 198096, +"project": "rocksdict" }, { -"download_count": 131041, -"project": "pyobjc-framework-searchkit" +"download_count": 198027, +"project": "az-cli" }, { -"download_count": 130978, -"project": "markdownlit" +"download_count": 197862, +"project": "aws-cdk-aws-codecommit" }, { -"download_count": 130936, -"project": "proto-google-cloud-datastore-v1" +"download_count": 197856, +"project": "blowfish" }, { -"download_count": 130905, -"project": "awslogs" +"download_count": 197855, +"project": "ops" }, { -"download_count": 130867, -"project": "business-duration" +"download_count": 197855, +"project": "delorean" }, { -"download_count": 130825, -"project": "ascvd" +"download_count": 197800, +"project": "aws-cdk-aws-codebuild" }, { -"download_count": 130752, -"project": "bertopic" +"download_count": 197573, +"project": "types-emoji" }, { -"download_count": 130715, -"project": "pycld2" +"download_count": 197569, +"project": "mapz" }, { -"download_count": 130711, -"project": "aspy-yaml" +"download_count": 197471, +"project": "ormar" }, { -"download_count": 130700, -"project": "bolton-logrus" +"download_count": 197379, +"project": "scrapfly-sdk" }, { -"download_count": 130687, -"project": "gcloud-rest-datastore" +"download_count": 197368, +"project": "toolium" }, { -"download_count": 130645, -"project": "pyobjc-framework-coreml" +"download_count": 197272, +"project": "ptable" }, { -"download_count": 130621, -"project": "airflow-provider-hightouch" +"download_count": 197259, +"project": "django-linear-migrations" }, { -"download_count": 130607, -"project": "flock" +"download_count": 197084, +"project": "econml" }, { -"download_count": 130555, -"project": "streamlit-toggle-switch" +"download_count": 197046, +"project": "flt" }, { -"download_count": 130465, -"project": "ssh2-python" +"download_count": 196859, +"project": "drawille" }, { -"download_count": 130458, -"project": "pyobjc-framework-colorsync" +"download_count": 196809, +"project": "business-duration" }, { -"download_count": 130432, -"project": "magodo" +"download_count": 196744, +"project": "python-sat" }, { -"download_count": 130317, -"project": "flake8-no-implicit-concat" +"download_count": 196677, +"project": "flet-runtime" }, { -"download_count": 130285, -"project": "patchwork" +"download_count": 196547, +"project": "para" }, { -"download_count": 130278, -"project": "wxpython" +"download_count": 196440, +"project": "pylint-pytest" }, { -"download_count": 130207, -"project": "neo" +"download_count": 196395, +"project": "eli5" }, { -"download_count": 130164, -"project": "ftputil" +"download_count": 196372, +"project": "bapy" }, { -"download_count": 130149, -"project": "pyobjc-framework-servicemanagement" +"download_count": 196311, +"project": "axiom-py" }, { -"download_count": 130093, -"project": "potoroo" +"download_count": 196279, +"project": "visualdl" }, { -"download_count": 130087, -"project": "lumigo-opentelemetry" +"download_count": 196213, +"project": "slackbot" }, { -"download_count": 130077, -"project": "vprof" +"download_count": 196117, +"project": "btsocket" }, { -"download_count": 130029, -"project": "cloudsmith-cli" +"download_count": 195997, +"project": "asn1ate" }, { -"download_count": 129930, -"project": "git-filter-repo" +"download_count": 195932, +"project": "soda-core-duckdb" }, { -"download_count": 129901, -"project": "langchain-postgres" +"download_count": 195609, +"project": "rasa" }, { -"download_count": 129825, -"project": "flake8-blind-except" +"download_count": 195560, +"project": "fabric3" }, { -"download_count": 129811, -"project": "sample-helper-aws-appconfig" +"download_count": 195366, +"project": "gravis" }, { -"download_count": 129804, -"project": "ipyanchorviz" +"download_count": 195259, +"project": "aiounittest" }, { -"download_count": 129654, -"project": "dewloosh" +"download_count": 195080, +"project": "httpx-oauth" }, { -"download_count": 129627, -"project": "dewloosh-geom" +"download_count": 194951, +"project": "validator-collection" }, { -"download_count": 129413, -"project": "gamma-pytools" +"download_count": 194880, +"project": "crhelper" }, { -"download_count": 129404, -"project": "asciichartpy" +"download_count": 194819, +"project": "torch-fidelity" }, { -"download_count": 129294, -"project": "pyobjc-framework-corewlan" +"download_count": 194760, +"project": "oslo-concurrency" }, { -"download_count": 129278, -"project": "apache-airflow-providers-hashicorp" +"download_count": 194720, +"project": "monai" }, { -"download_count": 129271, -"project": "brainstem" +"download_count": 194719, +"project": "azure-eventhub-checkpointstoreblob" }, { -"download_count": 129267, -"project": "os-sys" +"download_count": 194626, +"project": "agate-dbf" }, { -"download_count": 129261, -"project": "azureml-designer-serving" +"download_count": 194606, +"project": "dbt" }, { -"download_count": 129258, -"project": "bleak-retry-connector" +"download_count": 194601, +"project": "django-imagekit" }, { -"download_count": 129256, -"project": "flexmock" +"download_count": 194498, +"project": "mwcli" }, { -"download_count": 129209, -"project": "pyobjc-framework-eventkit" +"download_count": 194391, +"project": "kitchen" }, { -"download_count": 129150, -"project": "zhinst-core" +"download_count": 194390, +"project": "bioframe" }, { -"download_count": 129116, -"project": "pyobjc-framework-accounts" +"download_count": 194183, +"project": "mwxml" }, { -"download_count": 129111, -"project": "pybboxes" +"download_count": 194011, +"project": "gaussiancl" }, { -"download_count": 129085, -"project": "py-sr25519-bindings" +"download_count": 193987, +"project": "kubernetes-stubs" }, { -"download_count": 129037, -"project": "pyannotating" +"download_count": 193982, +"project": "apify-shared" }, { -"download_count": 129011, -"project": "aiortc" +"download_count": 193930, +"project": "arize" }, { -"download_count": 128918, -"project": "pyobjc-framework-dictionaryservices" +"download_count": 193908, +"project": "sqlvalidator" }, { -"download_count": 128879, -"project": "django-annoying" +"download_count": 193892, +"project": "daal4py" }, { -"download_count": 128852, -"project": "molotov" +"download_count": 193871, +"project": "tkinterdnd2" }, { -"download_count": 128795, -"project": "pyobjc-framework-netfs" +"download_count": 193693, +"project": "flake8-cognitive-complexity" }, { -"download_count": 128792, -"project": "streamlit-faker" +"download_count": 193554, +"project": "aikif" }, { -"download_count": 128790, -"project": "pyobjc-framework-instantmessage" +"download_count": 193455, +"project": "hierarchical-conf" }, { -"download_count": 128784, -"project": "pymobiledetect" +"download_count": 193425, +"project": "aws-cdk-aws-dynamodb" }, { -"download_count": 128780, -"project": "pep562" +"download_count": 193422, +"project": "findlibs" }, { -"download_count": 128770, -"project": "pyobjc-framework-coremediaio" +"download_count": 193298, +"project": "vllm-flash-attn" }, { -"download_count": 128763, -"project": "chainer" +"download_count": 193255, +"project": "iterative-ensemble-smoother" }, { -"download_count": 128741, -"project": "pystac-client" +"download_count": 193243, +"project": "nemo-toolkit" }, { -"download_count": 128740, -"project": "pyobjc-framework-avkit" +"download_count": 193065, +"project": "dol" }, { -"download_count": 128737, -"project": "pyobjc-framework-notificationcenter" +"download_count": 192951, +"project": "tonyg-rfc3339" }, { -"download_count": 128698, -"project": "pyobjc-framework-multipeerconnectivity" +"download_count": 192738, +"project": "django-grappelli" }, { -"download_count": 128687, -"project": "django-cte" +"download_count": 192731, +"project": "hydra-zen" }, { -"download_count": 128673, -"project": "opencensus-ext-flask" +"download_count": 192700, +"project": "pyobjc-framework-applicationservices" }, { -"download_count": 128658, -"project": "django-cacheops" +"download_count": 192680, +"project": "sklearn2pmml" }, { -"download_count": 128633, -"project": "cbitstruct" +"download_count": 192656, +"project": "snitun" }, { -"download_count": 128629, -"project": "moment" +"download_count": 192591, +"project": "cognitive-complexity" }, { -"download_count": 128621, -"project": "ipython-sql" +"download_count": 192382, +"project": "apache-airflow-providers-microsoft-winrm" }, { -"download_count": 128610, -"project": "pyobjc-framework-findersync" +"download_count": 192377, +"project": "django-bootstrap5" }, { -"download_count": 128610, -"project": "openseespy" +"download_count": 192289, +"project": "pyobjc" }, { -"download_count": 128585, -"project": "pinocchio" +"download_count": 192228, +"project": "pyobjc-framework-coretext" }, { -"download_count": 128579, -"project": "streamlit-camera-input-live" +"download_count": 192070, +"project": "django-sekizai" }, { -"download_count": 128556, -"project": "gcloud-rest-bigquery" +"download_count": 191941, +"project": "email-to" }, { -"download_count": 128540, -"project": "click-aliases" +"download_count": 191870, +"project": "acryl-pyhive" }, { -"download_count": 128514, -"project": "ronkyuu" +"download_count": 191827, +"project": "emojis" }, { -"download_count": 128509, -"project": "stdiomask" +"download_count": 191814, +"project": "airtable-python-wrapper" }, { -"download_count": 128492, -"project": "python-magic-bin" +"download_count": 191805, +"project": "asn1tools" }, { -"download_count": 128408, -"project": "django-dotenv" +"download_count": 191767, +"project": "requests-gssapi" }, { -"download_count": 128408, -"project": "fastnlp" +"download_count": 191759, +"project": "unidic-lite" }, { -"download_count": 128386, -"project": "fitz" +"download_count": 191740, +"project": "mixer" }, { -"download_count": 128378, -"project": "pyobjc-framework-network" +"download_count": 191689, +"project": "kazurator" }, { -"download_count": 128359, -"project": "frida-tools" +"download_count": 191684, +"project": "wemake-python-styleguide" }, { -"download_count": 128352, -"project": "django-admin-list-filter-dropdown" +"download_count": 191520, +"project": "breadability" }, { -"download_count": 128346, -"project": "pydantic-openapi-schema" +"download_count": 191463, +"project": "azureml-train-automl" }, { -"download_count": 128320, -"project": "pyobjc-framework-naturallanguage" +"download_count": 191324, +"project": "fab-classic" }, { -"download_count": 128265, -"project": "streamlit-embedcode" +"download_count": 191290, +"project": "pybit" }, { -"download_count": 128242, -"project": "sklearndf" +"download_count": 191274, +"project": "id" }, { -"download_count": 128216, -"project": "starlite" +"download_count": 191261, +"project": "higher" }, { -"download_count": 128171, -"project": "css-inline" +"download_count": 191174, +"project": "targ" }, { -"download_count": 128149, -"project": "pytest-flakefinder" +"download_count": 191127, +"project": "cloudscale-sdk" }, { -"download_count": 127967, -"project": "pansi" +"download_count": 191111, +"project": "pyglm" }, { -"download_count": 127929, -"project": "torch-optimizer" +"download_count": 190960, +"project": "sphinxcontrib-svg2pdfconverter" }, { -"download_count": 127816, -"project": "pyobjc-framework-spritekit" +"download_count": 190838, +"project": "cloudant" }, { -"download_count": 127804, -"project": "gcloud-aio-taskqueue" +"download_count": 190807, +"project": "graphql-server-core" }, { -"download_count": 127783, -"project": "final-class" +"download_count": 190765, +"project": "pyspark-stubs" }, { -"download_count": 127658, -"project": "bolton-proctor" +"download_count": 190647, +"project": "flask-pydantic" }, { -"download_count": 127657, -"project": "pyutilib" +"download_count": 190599, +"project": "indexed" }, { -"download_count": 127613, -"project": "vimala" +"download_count": 190598, +"project": "python-irodsclient" }, { -"download_count": 127605, -"project": "uri" +"download_count": 190376, +"project": "aioconsole" }, { -"download_count": 127583, -"project": "django-ordered-model" +"download_count": 190316, +"project": "nosexcover" }, { -"download_count": 127580, -"project": "broadbean" +"download_count": 190294, +"project": "repath" }, { -"download_count": 127579, -"project": "darts" +"download_count": 190251, +"project": "drgn" }, { -"download_count": 127568, -"project": "pystaticconfiguration" +"download_count": 190228, +"project": "fast-depends" }, { -"download_count": 127524, -"project": "streamlit-vertical-slider" +"download_count": 190145, +"project": "abstract-ai" }, { -"download_count": 127464, -"project": "axe-selenium-python" +"download_count": 190018, +"project": "llama-index-embeddings-bedrock" }, { -"download_count": 127389, -"project": "qcodes" +"download_count": 190015, +"project": "pycrdt" }, { -"download_count": 127366, -"project": "pyobjc-framework-securityfoundation" +"download_count": 189974, +"project": "assemblyline" }, { -"download_count": 127364, -"project": "proselint" +"download_count": 189933, +"project": "pilkit" }, { -"download_count": 127347, -"project": "drgn" +"download_count": 189812, +"project": "junit-xml-2" }, { -"download_count": 127326, -"project": "unidic-lite" +"download_count": 189811, +"project": "mtmlib" }, { -"download_count": 127290, -"project": "appier" +"download_count": 189791, +"project": "ftputil" }, { -"download_count": 127182, -"project": "pyobjc-framework-applescriptobjc" +"download_count": 189745, +"project": "requests-unixsocket2" }, { -"download_count": 127152, -"project": "sdcclient" +"download_count": 189708, +"project": "pyhpke" }, { -"download_count": 127097, -"project": "ptable" +"download_count": 189696, +"project": "python-documentcloud" }, { -"download_count": 127090, -"project": "great-tables" +"download_count": 189657, +"project": "djangosaml2" }, { -"download_count": 127080, -"project": "tuspy" +"download_count": 189470, +"project": "cysignals" }, { -"download_count": 127067, -"project": "pyobjc-framework-securityinterface" +"download_count": 189465, +"project": "rerun-sdk" }, { -"download_count": 127024, -"project": "pyobjc-framework-vision" +"download_count": 189416, +"project": "sqlalchemy-pytds" }, { -"download_count": 127009, -"project": "pyobjc-framework-corelocation" +"download_count": 189338, +"project": "unsloth-zoo" }, { -"download_count": 126993, -"project": "cardboardlint" +"download_count": 189334, +"project": "hyper" }, { -"download_count": 126987, -"project": "threaded" +"download_count": 189308, +"project": "bencode2" }, { -"download_count": 126941, -"project": "django-rest-passwordreset" +"download_count": 189276, +"project": "mux-python" }, { -"download_count": 126784, -"project": "llama-index-embeddings-huggingface" +"download_count": 189150, +"project": "fastembed" }, { -"download_count": 126675, -"project": "distogram" +"download_count": 189136, +"project": "sphinxcontrib-confluencebuilder" }, { -"download_count": 126557, -"project": "aws-cdk-aws-batch" +"download_count": 189122, +"project": "robocorp-browser" }, { -"download_count": 126554, -"project": "pyobjc-framework-scriptingbridge" +"download_count": 189030, +"project": "abcli" }, { -"download_count": 126526, -"project": "pyobjc-framework-localauthentication" +"download_count": 189017, +"project": "aws-cdk-aws-acmpca" }, { -"download_count": 126502, -"project": "singlestoredb" +"download_count": 188953, +"project": "yaql" }, { -"download_count": 126489, -"project": "gherkin-official" +"download_count": 188864, +"project": "azure-schemaregistry-avroencoder" }, { -"download_count": 126379, -"project": "pypcd4" +"download_count": 188845, +"project": "assemblyline-service-server" }, { -"download_count": 126373, -"project": "pydantic-avro" +"download_count": 188832, +"project": "inscriptis" }, { -"download_count": 126355, -"project": "gcloud-rest-taskqueue" +"download_count": 188698, +"project": "ale-py" }, { -"download_count": 126329, -"project": "uptime" +"download_count": 188696, +"project": "pygad" }, { -"download_count": 126275, -"project": "ophyd" +"download_count": 188647, +"project": "typesystem" }, { -"download_count": 126043, -"project": "ipyleaflet" +"download_count": 188572, +"project": "collate-sqllineage" }, { -"download_count": 125922, -"project": "pyobjc-framework-contacts" +"download_count": 188527, +"project": "dvc-s3" }, { -"download_count": 125917, -"project": "pyobjc-framework-photos" +"download_count": 188499, +"project": "setuptools-odoo" }, { -"download_count": 125866, -"project": "lazr-uri" +"download_count": 188349, +"project": "spotdl" }, { -"download_count": 125856, -"project": "pymavlink" +"download_count": 188197, +"project": "aiotieba" }, { -"download_count": 125740, -"project": "pyobjc-framework-opendirectory" +"download_count": 188062, +"project": "databricks-labs-blueprint" }, { -"download_count": 125667, -"project": "c7n-mailer" +"download_count": 188062, +"project": "gcloud-rest-auth" }, { -"download_count": 125605, -"project": "snakebite-py3" +"download_count": 188026, +"project": "django-sendgrid-v5" }, { -"download_count": 125603, -"project": "dbt-artifacts-parser" +"download_count": 187930, +"project": "mmtf-python" }, { -"download_count": 125494, -"project": "emails" +"download_count": 187781, +"project": "ghostscript" }, { -"download_count": 125490, -"project": "filehash" +"download_count": 187771, +"project": "beam-nuggets" }, { -"download_count": 125422, -"project": "meilisearch" +"download_count": 187752, +"project": "dall-e" }, { -"download_count": 125382, -"project": "python-mecab-ko" +"download_count": 187707, +"project": "single-version" }, { -"download_count": 125349, -"project": "arelle-release" +"download_count": 187651, +"project": "mdformat-gfm" }, { -"download_count": 125198, -"project": "pyobjc-framework-social" +"download_count": 187641, +"project": "pycolab" }, { -"download_count": 125179, -"project": "ldap" +"download_count": 187597, +"project": "wiremock" }, { -"download_count": 125176, -"project": "pyobjc-framework-inputmethodkit" +"download_count": 187555, +"project": "mtmai" }, { -"download_count": 125136, -"project": "html-to-json" +"download_count": 187554, +"project": "compynator" }, { -"download_count": 125109, -"project": "pyobjc-framework-imagecapturecore" +"download_count": 187418, +"project": "realesrgan" }, { -"download_count": 125029, -"project": "pyobjc-framework-gamekit" +"download_count": 187394, +"project": "typos" }, { -"download_count": 125011, -"project": "pyobjc-framework-gamecenter" +"download_count": 187348, +"project": "taskipy" }, { -"download_count": 124999, -"project": "pyobjc-framework-storekit" +"download_count": 187334, +"project": "siphon" }, { -"download_count": 124982, -"project": "pyobjc-framework-cryptotokenkit" +"download_count": 187177, +"project": "aider-chat" }, { -"download_count": 124969, -"project": "pyobjc-framework-scenekit" +"download_count": 187125, +"project": "crazy-thursday" }, { -"download_count": 124964, -"project": "pyobjc-framework-gamecontroller" +"download_count": 186838, +"project": "arraykit" }, { -"download_count": 124947, -"project": "flake8-use-pathlib" +"download_count": 186782, +"project": "aliyun-python-sdk-core-v3" }, { -"download_count": 124937, -"project": "pyobjc-framework-mapkit" +"download_count": 186746, +"project": "gorilla" }, { -"download_count": 124914, -"project": "pyobjc-framework-contactsui" +"download_count": 186606, +"project": "evilunit" }, { -"download_count": 124913, -"project": "dbf" +"download_count": 186511, +"project": "flake8-mutable" }, { -"download_count": 124901, -"project": "pyobjc-framework-iosurface" +"download_count": 186442, +"project": "schemathesis" }, { -"download_count": 124899, -"project": "pyobjc-framework-ituneslibrary" +"download_count": 186392, +"project": "pybel" }, { -"download_count": 124885, -"project": "pyobjc-framework-modelio" +"download_count": 186381, +"project": "robotframework-datadriver" }, { -"download_count": 124880, -"project": "youtube-search-python" +"download_count": 186300, +"project": "langchainplus-sdk" }, { -"download_count": 124879, -"project": "pyobjc-framework-collaboration" +"download_count": 186237, +"project": "types-sqlalchemy" }, { -"download_count": 124877, -"project": "pyobjc-framework-corespotlight" +"download_count": 186080, +"project": "imgtool" }, { -"download_count": 124876, -"project": "clyent" +"download_count": 186076, +"project": "clvm-tools" }, { -"download_count": 124866, -"project": "evo" +"download_count": 186044, +"project": "python-libsbml" }, { -"download_count": 124859, -"project": "pyobjc-framework-mediatoolbox" +"download_count": 186012, +"project": "ziglang" }, { -"download_count": 124853, -"project": "pyobjc-framework-networkextension" +"download_count": 185883, +"project": "google-cloud-billing" }, { -"download_count": 124850, -"project": "pyobjc-framework-videotoolbox" +"download_count": 185872, +"project": "aioextensions" }, { -"download_count": 124838, -"project": "pyobjc-framework-safariservices" +"download_count": 185843, +"project": "django-lifecycle" }, { -"download_count": 124838, -"project": "pyobjc-framework-gameplaykit" +"download_count": 185725, +"project": "facebook-wda" }, { -"download_count": 124836, -"project": "pyobjc-framework-intents" +"download_count": 185719, +"project": "clvm" }, { -"download_count": 124834, -"project": "rocketchat-api" +"download_count": 185630, +"project": "django-cte" }, { -"download_count": 124816, -"project": "pyobjc-framework-photosui" +"download_count": 185620, +"project": "listcrunch" }, { -"download_count": 124793, -"project": "pyobjc-framework-externalaccessory" +"download_count": 185605, +"project": "meraki" }, { -"download_count": 124770, -"project": "pyobjc-framework-mediaplayer" +"download_count": 185555, +"project": "pygount" }, { -"download_count": 124755, -"project": "flake8-unused-arguments" +"download_count": 185521, +"project": "pyexecjs" }, { -"download_count": 124752, -"project": "pyobjc-framework-medialibrary" +"download_count": 185517, +"project": "py-dateutil" }, { -"download_count": 124744, -"project": "pyobjc-framework-cloudkit" +"download_count": 185487, +"project": "django-cacheops" }, { -"download_count": 124711, -"project": "zip-files" +"download_count": 185463, +"project": "djangorestframework-gis" }, { -"download_count": 124687, -"project": "aiooui" +"download_count": 185422, +"project": "django-yaa-settings" }, { -"download_count": 124682, -"project": "pyobjc-framework-mediaaccessibility" +"download_count": 185253, +"project": "pypylon" }, { -"download_count": 124672, -"project": "pyobjc-framework-usernotifications" +"download_count": 185115, +"project": "advertools" }, { -"download_count": 124668, -"project": "interchange" +"download_count": 185096, +"project": "cg" }, { -"download_count": 124656, -"project": "celluloid" +"download_count": 185066, +"project": "pyrealsense2" }, { -"download_count": 124614, -"project": "ipranger" +"download_count": 185017, +"project": "gkeepapi" }, { -"download_count": 124533, -"project": "python-mecab-ko-dic" +"download_count": 184825, +"project": "gradio-rangeslider" }, { -"download_count": 124526, -"project": "databricksapi" +"download_count": 184751, +"project": "django-cryptography" }, { -"download_count": 124502, -"project": "pyobjc-framework-calendarstore" +"download_count": 184666, +"project": "class-registry" }, { -"download_count": 124460, -"project": "pyobjc-framework-businesschat" +"download_count": 184630, +"project": "mailchimp3" }, { -"download_count": 124432, -"project": "typer-slim" +"download_count": 184600, +"project": "cobra" }, { -"download_count": 124391, -"project": "cssmin" +"download_count": 184248, +"project": "httpx-auth" }, { -"download_count": 124357, -"project": "curtsies" +"download_count": 184232, +"project": "wait-for" }, { -"download_count": 124338, -"project": "pyobjc-framework-adsupport" +"download_count": 184229, +"project": "pyro4" }, { -"download_count": 124327, -"project": "apispec-oneofschema" +"download_count": 184226, +"project": "pytest-pretty" }, { -"download_count": 124270, -"project": "pyobjc-framework-videosubscriberaccount" +"download_count": 184156, +"project": "opentelemetry-resourcedetector-kubernetes" }, { -"download_count": 124227, -"project": "cacheout" +"download_count": 184029, +"project": "django-sortedm2m" }, { -"download_count": 124210, -"project": "cmreshandler" +"download_count": 184014, +"project": "moz-sql-parser" }, { -"download_count": 124080, -"project": "softlayer" +"download_count": 183986, +"project": "msgpack-types" }, { -"download_count": 123951, -"project": "pretty-midi" +"download_count": 183937, +"project": "django-rest-knox" }, { -"download_count": 123915, -"project": "fuzzy" +"download_count": 183827, +"project": "cwcwidth" }, { -"download_count": 123884, -"project": "callee" +"download_count": 183727, +"project": "mne" }, { -"download_count": 123799, -"project": "rfc5424-logging-handler" +"download_count": 183588, +"project": "kaldi-io" }, { -"download_count": 123774, -"project": "jupyterlab-git" +"download_count": 183533, +"project": "workadays" }, { -"download_count": 123733, -"project": "fava" +"download_count": 183463, +"project": "fuzzy" }, { -"download_count": 123636, -"project": "pytest-recording" +"download_count": 183450, +"project": "prefect-kubernetes" }, { -"download_count": 123608, -"project": "cron-validator" +"download_count": 183416, +"project": "pretrainedmodels" }, { -"download_count": 123593, -"project": "types-geoip2" +"download_count": 183374, +"project": "dspy" }, { -"download_count": 123562, -"project": "sphinx-markdown-tables" +"download_count": 183372, +"project": "kiwipiepy" }, { -"download_count": 123514, -"project": "usb-devices" +"download_count": 183336, +"project": "torch-tb-profiler" }, { -"download_count": 123501, -"project": "unsloth" +"download_count": 183244, +"project": "cpe" }, { -"download_count": 123470, -"project": "historydict" +"download_count": 183188, +"project": "django-nose" }, { -"download_count": 123456, -"project": "veracode-api-signing" +"download_count": 183187, +"project": "python-helpscout-v2" }, { -"download_count": 123449, -"project": "conda" +"download_count": 183142, +"project": "javalang" }, { -"download_count": 123442, -"project": "julia" +"download_count": 183063, +"project": "bertopic" }, { -"download_count": 123422, -"project": "pyts" +"download_count": 183024, +"project": "mysql-python" }, { -"download_count": 123276, -"project": "dartsclone" +"download_count": 182971, +"project": "pykcs11" }, { -"download_count": 123252, -"project": "mixer" +"download_count": 182971, +"project": "fslpy" }, { -"download_count": 123140, -"project": "methoddispatch" +"download_count": 182906, +"project": "flake8-noqa" }, { -"download_count": 123104, -"project": "flake8-formatter-junit-xml" +"download_count": 182785, +"project": "pytest-shard" }, { -"download_count": 123091, -"project": "docx2pdf" +"download_count": 182757, +"project": "pedalboard" }, { -"download_count": 123067, -"project": "findiff" +"download_count": 182754, +"project": "pypugjs" }, { -"download_count": 122976, -"project": "pyjokes" +"download_count": 182695, +"project": "bel-resources" }, { -"download_count": 122955, -"project": "aioice" +"download_count": 182660, +"project": "aggdraw" }, { -"download_count": 122876, -"project": "flake8-annotations-complexity" +"download_count": 182636, +"project": "adafruit-blinka" }, { -"download_count": 122849, -"project": "sanic-testing" +"download_count": 182622, +"project": "mip" }, { -"download_count": 122835, -"project": "apache-airflow-providers-samba" +"download_count": 182614, +"project": "runez" }, { -"download_count": 122830, -"project": "meross-iot" +"download_count": 182609, +"project": "xenon" }, { -"download_count": 122823, -"project": "mlforecast" +"download_count": 182566, +"project": "st-theme" }, { -"download_count": 122797, -"project": "pyatlan" +"download_count": 182544, +"project": "jupyterlab-git" }, { -"download_count": 122784, -"project": "syne-tune" +"download_count": 182468, +"project": "cwrap" }, { -"download_count": 122768, -"project": "mtcnn" +"download_count": 182350, +"project": "tcmlib" }, { -"download_count": 122637, -"project": "ml-base" +"download_count": 182287, +"project": "opentelemetry-resourcedetector-docker" }, { -"download_count": 122627, -"project": "bluesky" +"download_count": 182284, +"project": "py3langid" }, { -"download_count": 122572, -"project": "pytutils" +"download_count": 182279, +"project": "apache-airflow-providers-exasol" }, { -"download_count": 122544, -"project": "zhinst-toolkit" +"download_count": 182229, +"project": "llama-index-vector-stores-azureaisearch" }, { -"download_count": 122538, -"project": "unicode-slugify" +"download_count": 182224, +"project": "multisplitby" }, { -"download_count": 122495, -"project": "pywebpush" +"download_count": 182221, +"project": "pytest-structlog" }, { -"download_count": 122406, -"project": "zhinst-utils" +"download_count": 182177, +"project": "google-oauth2-tool" }, { -"download_count": 122295, -"project": "flupy" +"download_count": 182125, +"project": "flake8-functions" }, { -"download_count": 122250, -"project": "sauceclient" +"download_count": 182093, +"project": "starlite" }, { -"download_count": 122214, -"project": "nbqa" +"download_count": 182036, +"project": "html-sanitizer" }, { -"download_count": 122191, -"project": "pyldavis" +"download_count": 181843, +"project": "snaptime" }, { -"download_count": 122172, -"project": "urnparse" +"download_count": 181818, +"project": "kedro-viz" }, { -"download_count": 122164, -"project": "pylibsrtp" +"download_count": 181803, +"project": "measurement" }, { -"download_count": 122070, -"project": "sseclient" +"download_count": 181727, +"project": "flask-gravatar" }, { -"download_count": 122052, -"project": "django-pipeline" +"download_count": 181677, +"project": "inotify-simple" }, { -"download_count": 121898, -"project": "django-utils-six" +"download_count": 181657, +"project": "xmltodict3" }, { -"download_count": 121828, -"project": "django-bootstrap5" +"download_count": 181624, +"project": "jeedomdaemon" }, { -"download_count": 121818, -"project": "astro-sdk-python" +"download_count": 181572, +"project": "local-attention" }, { -"download_count": 121754, -"project": "loralib" +"download_count": 181546, +"project": "tryingsnake" }, { -"download_count": 121731, -"project": "pyros-genmsg" +"download_count": 181530, +"project": "assemblyline-v4-service" }, { -"download_count": 121726, -"project": "aioconsole" +"download_count": 181474, +"project": "openinference-instrumentation-openai" }, { -"download_count": 121649, -"project": "requests-ntlm2" +"download_count": 181450, +"project": "humps" }, { -"download_count": 121620, -"project": "streamlit-authenticator" +"download_count": 181417, +"project": "py-expression-eval" }, { -"download_count": 121616, -"project": "test-results-parser" +"download_count": 181346, +"project": "prefect-dask" }, { -"download_count": 121464, -"project": "proxy-py" +"download_count": 181321, +"project": "ta" }, { -"download_count": 121377, -"project": "random2" +"download_count": 181246, +"project": "cdk-secret-manager-wrapper-layer" }, { -"download_count": 121372, -"project": "ansimarkup" +"download_count": 181076, +"project": "azure-mgmt-automation" }, { -"download_count": 121346, -"project": "price-parser" +"download_count": 181059, +"project": "pylint-junit" }, { -"download_count": 121310, -"project": "onnx-graphsurgeon" +"download_count": 180957, +"project": "tf-models-official" }, { -"download_count": 121234, -"project": "openseespylinux" +"download_count": 180865, +"project": "cdsapi" }, { -"download_count": 121232, -"project": "css-html-js-minify" +"download_count": 180844, +"project": "tushare" }, { -"download_count": 121226, -"project": "flask-sock" +"download_count": 180822, +"project": "grain-nightly" }, { -"download_count": 121214, -"project": "qiskit-ibm-runtime" +"download_count": 180732, +"project": "loky" }, { -"download_count": 121191, -"project": "pottery" +"download_count": 180725, +"project": "rpmfile" }, { -"download_count": 121190, -"project": "google-events" +"download_count": 180513, +"project": "fastnumbers" }, { -"download_count": 121159, -"project": "panda3d" +"download_count": 180385, +"project": "aws-cdk-aws-globalaccelerator" }, { -"download_count": 121122, -"project": "llama-index-vector-stores-azureaisearch" +"download_count": 180244, +"project": "iniparse" }, { -"download_count": 121037, -"project": "phonetics" +"download_count": 180173, +"project": "geffnet" }, { -"download_count": 121027, -"project": "genbadge" +"download_count": 180062, +"project": "pingouin" }, { -"download_count": 120917, -"project": "wiremock" +"download_count": 180050, +"project": "numpyro" }, { -"download_count": 120912, -"project": "google-api" +"download_count": 179971, +"project": "google-cloud-bigquery-reservation" }, { -"download_count": 120912, -"project": "django-pgtrigger" +"download_count": 179788, +"project": "unicode" }, { -"download_count": 120755, -"project": "dbnd-spark" +"download_count": 179718, +"project": "django-bulk-update" }, { -"download_count": 120692, -"project": "srt" +"download_count": 179644, +"project": "os-sys" }, { -"download_count": 120426, -"project": "phpserialize" +"download_count": 179622, +"project": "neobolt" }, { -"download_count": 120407, -"project": "oslo-policy" +"download_count": 179583, +"project": "coredis" }, { -"download_count": 120392, -"project": "crc" +"download_count": 179571, +"project": "radish-bdd" }, { -"download_count": 120382, -"project": "openunmix" +"download_count": 179567, +"project": "ssh2-python" }, { -"download_count": 120334, -"project": "macaddress" +"download_count": 179548, +"project": "inference-gpu" }, { -"download_count": 120307, -"project": "flake8-pie" +"download_count": 179540, +"project": "sanelogging" }, { -"download_count": 120280, -"project": "highspy" +"download_count": 179514, +"project": "curtsies" }, { -"download_count": 120220, -"project": "wslink" +"download_count": 179428, +"project": "dash-mantine-components" }, { -"download_count": 120182, -"project": "airbyte-protocol-models-pdv2" +"download_count": 179227, +"project": "terraform-compliance" }, { -"download_count": 120158, -"project": "tach" +"download_count": 179135, +"project": "basictracer" }, { -"download_count": 120056, -"project": "allpairspy" +"download_count": 179132, +"project": "salt-lint" }, { -"download_count": 120047, -"project": "mm" +"download_count": 179103, +"project": "dbldatagen" }, { -"download_count": 120000, -"project": "pytest-faker" +"download_count": 178963, +"project": "pureport-python" }, { -"download_count": 119893, -"project": "pysnmpcrypto" +"download_count": 178925, +"project": "tag-expressions" }, { -"download_count": 119887, -"project": "hcloud" +"download_count": 178878, +"project": "lusid-sdk" }, { -"download_count": 119845, -"project": "waiter" +"download_count": 178841, +"project": "pybluez" }, { -"download_count": 119777, -"project": "pgmpy" +"download_count": 178814, +"project": "pixelmatch" }, { -"download_count": 119756, -"project": "prodigyopt" +"download_count": 178768, +"project": "libpysal" }, { -"download_count": 119753, -"project": "dvc-s3" +"download_count": 178735, +"project": "cfnresponse" }, { -"download_count": 119719, -"project": "mixbox" +"download_count": 178689, +"project": "hsms" }, { -"download_count": 119666, -"project": "apache-flink-libraries" +"download_count": 178508, +"project": "fst-pso" }, { -"download_count": 119589, -"project": "whatever" +"download_count": 178432, +"project": "kagglehub" }, { -"download_count": 119554, -"project": "verlib2" +"download_count": 178359, +"project": "iterators" }, { -"download_count": 119541, -"project": "kerberos" +"download_count": 178251, +"project": "soundcloud-v2" }, { -"download_count": 119503, -"project": "pulumi-oci" +"download_count": 178177, +"project": "apache-airflow-providers-apprise" }, { -"download_count": 119496, -"project": "censys" +"download_count": 178167, +"project": "cacheout" }, { -"download_count": 119446, -"project": "qh3" +"download_count": 178055, +"project": "dbf" }, { -"download_count": 119413, -"project": "contextily" +"download_count": 178009, +"project": "sphinx-inline-tabs" }, { -"download_count": 119391, -"project": "case-converter" +"download_count": 177873, +"project": "systemd-python" }, { -"download_count": 119374, -"project": "cybox" +"download_count": 177731, +"project": "columnar" }, { -"download_count": 119164, -"project": "matrix" +"download_count": 177648, +"project": "pygdbmi" }, { -"download_count": 119157, -"project": "napalm" +"download_count": 177415, +"project": "requests-ratelimiter" }, { -"download_count": 119029, -"project": "eth-bloom" +"download_count": 177395, +"project": "bigquery" }, { -"download_count": 119006, -"project": "simple-slurm" +"download_count": 177345, +"project": "flask-graphql" }, { -"download_count": 118980, -"project": "dlint" +"download_count": 177250, +"project": "py-mini-racer" }, { -"download_count": 118903, -"project": "jump-consistent-hash" +"download_count": 177234, +"project": "csvkit" }, { -"download_count": 118860, -"project": "markdown-include" +"download_count": 177233, +"project": "azure-functions-durable" }, { -"download_count": 118858, -"project": "argparse-manpage" +"download_count": 177210, +"project": "configcat-client" }, { -"download_count": 118842, -"project": "text-generation" +"download_count": 177173, +"project": "tuf" }, { -"download_count": 118823, -"project": "django-bootstrap3" +"download_count": 176913, +"project": "bincopy" }, { -"download_count": 118739, -"project": "red-black-tree-mod" +"download_count": 176827, +"project": "ais-dom" }, { -"download_count": 118718, -"project": "dagster-azure" +"download_count": 176776, +"project": "google-cloud-notebooks" }, { -"download_count": 118710, -"project": "airflow-code-editor" +"download_count": 176748, +"project": "mtmtrain" }, { -"download_count": 118664, -"project": "sahi" +"download_count": 176635, +"project": "retry-requests" }, { -"download_count": 118643, -"project": "tts" +"download_count": 176629, +"project": "assemblyline-service-client" }, { -"download_count": 118557, -"project": "osprofiler" +"download_count": 176589, +"project": "airflow-dbt-python" }, { -"download_count": 118519, -"project": "appdirs-stubs" +"download_count": 176545, +"project": "motmetrics" }, { -"download_count": 118393, -"project": "stix" +"download_count": 176540, +"project": "syncedlyrics" }, { -"download_count": 118361, -"project": "fifolock" +"download_count": 176530, +"project": "red-black-tree-mod" }, { -"download_count": 118307, -"project": "pydivert" +"download_count": 176419, +"project": "pycountry-convert" }, { -"download_count": 118300, -"project": "django-rosetta" +"download_count": 176386, +"project": "hier-config" }, { -"download_count": 118270, -"project": "json-ref-dict" +"download_count": 176338, +"project": "s3m" }, { -"download_count": 118161, -"project": "splinter" +"download_count": 176304, +"project": "pyatlan" }, { -"download_count": 118149, -"project": "prefect-slack" +"download_count": 176269, +"project": "adjust-precision-for-schema" }, { -"download_count": 118125, -"project": "seedir" +"download_count": 176237, +"project": "miniful" }, { -"download_count": 118027, -"project": "junit-xml-2" +"download_count": 176193, +"project": "mr-proper" }, { -"download_count": 117987, -"project": "pykafka" +"download_count": 176077, +"project": "devicecheck" }, { -"download_count": 117763, -"project": "django-activity-stream" +"download_count": 176009, +"project": "libarchive" }, { -"download_count": 117697, -"project": "pytest-cpp" +"download_count": 175874, +"project": "apache-airflow-providers-asana" }, { -"download_count": 117595, -"project": "xpinyin" +"download_count": 175781, +"project": "cads-api-client" }, { -"download_count": 117553, -"project": "liccheck" +"download_count": 175750, +"project": "pytest-watcher" }, { -"download_count": 117531, -"project": "uart-devices" +"download_count": 175741, +"project": "aiocsv" }, { -"download_count": 117480, -"project": "tap-py" +"download_count": 175719, +"project": "sigstore" }, { -"download_count": 117406, -"project": "password-strength" +"download_count": 175701, +"project": "sphinxcontrib-datatemplates" }, { -"download_count": 117349, -"project": "dirty-equals" +"download_count": 175571, +"project": "tox-py" }, { -"download_count": 117132, -"project": "can-isotp" +"download_count": 175561, +"project": "types-defusedxml" }, { -"download_count": 117123, -"project": "aws-sso-lib" +"download_count": 175495, +"project": "pyobjc-framework-systemconfiguration" }, { -"download_count": 117080, -"project": "typing-validation" +"download_count": 175471, +"project": "django-sslserver" }, { -"download_count": 117067, -"project": "amazon-textract-caller" +"download_count": 175447, +"project": "pydantic-openapi-schema" }, { -"download_count": 117048, -"project": "mcap-ros2-support" +"download_count": 175429, +"project": "hunspell" }, { -"download_count": 117004, -"project": "zipcodes" +"download_count": 175396, +"project": "unsloth" }, { -"download_count": 116980, -"project": "types-google-cloud-ndb" +"download_count": 175333, +"project": "nglview" }, { -"download_count": 116889, -"project": "spython" +"download_count": 175314, +"project": "validate-docbr" }, { -"download_count": 116882, -"project": "home-assistant-bluetooth" +"download_count": 175301, +"project": "opentelemetry-exporter-gcp-monitoring" }, { -"download_count": 116801, -"project": "aiodocker" +"download_count": 175265, +"project": "openvisus" }, { -"download_count": 116795, -"project": "sqlalchemy-mixins" +"download_count": 175248, +"project": "paypalhttp" }, { -"download_count": 116781, -"project": "daal" +"download_count": 175149, +"project": "acachecontrol" }, { -"download_count": 116694, -"project": "alembic-utils" +"download_count": 175121, +"project": "jupyter-book" }, { -"download_count": 116661, -"project": "python-quickbooks" +"download_count": 175088, +"project": "pdoc3" }, { -"download_count": 116632, -"project": "memory-tempfile" +"download_count": 175075, +"project": "imgkit" }, { -"download_count": 116573, -"project": "azureml" +"download_count": 174992, +"project": "pyperform" }, -{ -"download_count": 116561, -"project": "expects" +{ +"download_count": 174917, +"project": "pytoml" }, { -"download_count": 116558, -"project": "swebench" +"download_count": 174910, +"project": "faststream" }, { -"download_count": 116538, -"project": "yalafi" +"download_count": 174726, +"project": "django-types" }, { -"download_count": 116498, -"project": "galois" +"download_count": 174714, +"project": "antsibull-changelog" }, { -"download_count": 116456, -"project": "pandasai" +"download_count": 174662, +"project": "sphinx-external-toc" }, { -"download_count": 116410, -"project": "django-dbbackup" +"download_count": 174538, +"project": "sagemaker-feature-store-pyspark-3-1" }, { -"download_count": 116371, -"project": "financepy" +"download_count": 174514, +"project": "pysimplegui" }, { -"download_count": 116361, -"project": "parquet" +"download_count": 174508, +"project": "python-heatclient" }, { -"download_count": 116327, -"project": "types-pycurl" +"download_count": 174402, +"project": "venv-pack" }, { -"download_count": 116291, -"project": "parallel-ssh" +"download_count": 174169, +"project": "aliyun-python-sdk-alidns" }, { -"download_count": 116283, -"project": "django-split-settings" +"download_count": 174067, +"project": "django-mathfilters" }, { -"download_count": 116221, -"project": "style" +"download_count": 174030, +"project": "e2b" }, { -"download_count": 116015, -"project": "types-typed-ast" +"download_count": 173926, +"project": "vowpalwabbit" }, { -"download_count": 115941, -"project": "dagster-pagerduty" +"download_count": 173865, +"project": "nemo-text-processing" }, { -"download_count": 115889, -"project": "pipe" +"download_count": 173861, +"project": "pyheif" }, { -"download_count": 115881, -"project": "locust-plugins" +"download_count": 173739, +"project": "pytenable" }, { -"download_count": 115857, -"project": "dm-env" +"download_count": 173562, +"project": "interrogate" }, { -"download_count": 115828, -"project": "forbiddenfruit" +"download_count": 173537, +"project": "apache-airflow-providers-telegram" }, { -"download_count": 115722, -"project": "chainlit" +"download_count": 173422, +"project": "openinference-instrumentation-llama-index" }, { -"download_count": 115656, -"project": "betacal" +"download_count": 173378, +"project": "edx-enterprise" }, { -"download_count": 115597, -"project": "earthengine-api" +"download_count": 173362, +"project": "text-generation" }, { -"download_count": 115567, -"project": "clvm-tools-rs" +"download_count": 173254, +"project": "jsonrpcclient" }, { -"download_count": 115529, -"project": "unleashclient" +"download_count": 173192, +"project": "jbxapi" }, { -"download_count": 115459, -"project": "ppscore" +"download_count": 172963, +"project": "cloudml-hypertune" }, { -"download_count": 115396, -"project": "emmet-core" +"download_count": 172917, +"project": "openapi-python-client" }, { -"download_count": 115291, -"project": "ipynbname" +"download_count": 172796, +"project": "dlib" }, { -"download_count": 115220, -"project": "deepeval" +"download_count": 172739, +"project": "okta-jwt-verifier" }, { -"download_count": 115214, -"project": "dawg-python" +"download_count": 172648, +"project": "ropt" }, { -"download_count": 115188, -"project": "pytest-tornasync" +"download_count": 172580, +"project": "apache-airflow-providers-influxdb" }, { -"download_count": 115176, -"project": "oslo-db" +"download_count": 172358, +"project": "azure-ai-textanalytics" }, { -"download_count": 115150, -"project": "cognite-sdk" +"download_count": 172328, +"project": "cityseer" }, { -"download_count": 115111, -"project": "flex" +"download_count": 172293, +"project": "drf-extra-fields" }, { -"download_count": 115064, -"project": "iso-639" +"download_count": 172236, +"project": "jsonify" }, { -"download_count": 114975, -"project": "pwntools" +"download_count": 172160, +"project": "python-neutronclient" }, { -"download_count": 114926, -"project": "django-simple-captcha" +"download_count": 172151, +"project": "facebook-sdk" }, { -"download_count": 114833, -"project": "httpx-cache" +"download_count": 172142, +"project": "abstract-singleton" }, { -"download_count": 114833, -"project": "stream-zip" +"download_count": 172105, +"project": "apache-superset" }, { -"download_count": 114818, -"project": "b2sdk" +"download_count": 172076, +"project": "teradata" }, { -"download_count": 114813, -"project": "coqpit" +"download_count": 172072, +"project": "schemachange" }, { -"download_count": 114803, -"project": "buildkite-test-collector" +"download_count": 172039, +"project": "botorch" }, { -"download_count": 114749, -"project": "maison" +"download_count": 172029, +"project": "typer-slim" }, { -"download_count": 114718, -"project": "python-irodsclient" +"download_count": 171932, +"project": "opennsfw2" }, { -"download_count": 114718, -"project": "openapi-python-client" +"download_count": 171914, +"project": "trufflehog" }, { -"download_count": 114639, -"project": "django-safedelete" +"download_count": 171781, +"project": "pytest-csv" }, { -"download_count": 114620, -"project": "pdfminer2" +"download_count": 171737, +"project": "pgzip" }, { -"download_count": 114609, -"project": "pyrad" +"download_count": 171711, +"project": "amazon-textract-caller" }, { -"download_count": 114598, -"project": "sparse-dot-topn" +"download_count": 171544, +"project": "flake8-class-attributes-order" }, { -"download_count": 114483, -"project": "unlzw3" +"download_count": 171478, +"project": "acquire" }, { -"download_count": 114455, -"project": "subprocess-run" +"download_count": 171403, +"project": "fhirclient" }, { -"download_count": 114453, -"project": "spacy-curated-transformers" +"download_count": 171354, +"project": "lbt-honeybee" }, { -"download_count": 114439, -"project": "colorhash" +"download_count": 171307, +"project": "mailchecker" }, { -"download_count": 114426, -"project": "tgi" +"download_count": 171219, +"project": "elabjournal" }, { -"download_count": 114340, -"project": "wsaccel" +"download_count": 171174, +"project": "swiglpk" }, { -"download_count": 114337, -"project": "subprocrunner" +"download_count": 171111, +"project": "pytorch-ranger" }, { -"download_count": 114316, -"project": "django-cache-memoize" +"download_count": 171073, +"project": "django-annoying" }, { -"download_count": 114213, -"project": "fastembed" +"download_count": 171051, +"project": "ff3" }, { -"download_count": 114135, -"project": "pyglove" +"download_count": 171029, +"project": "rigelcore" }, { -"download_count": 114103, -"project": "pyepics" +"download_count": 170908, +"project": "apache-airflow-providers-facebook" }, { -"download_count": 114101, -"project": "clip-interrogator" +"download_count": 170769, +"project": "qsharp" }, { -"download_count": 114092, -"project": "panphon" +"download_count": 170734, +"project": "cgroupspy" }, { -"download_count": 113998, -"project": "types-enum34" +"download_count": 170650, +"project": "mode-streaming" }, { -"download_count": 113985, -"project": "gpsoauth" +"download_count": 170649, +"project": "rigel-hpl" }, { -"download_count": 113959, -"project": "cwcwidth" +"download_count": 170623, +"project": "botbuilder-schema" }, { -"download_count": 113948, -"project": "azure-communication-sms" +"download_count": 170547, +"project": "jpholiday" }, { -"download_count": 113911, -"project": "kiwipiepy" +"download_count": 170417, +"project": "conda-package-handling" }, { -"download_count": 113891, -"project": "subgrounds" +"download_count": 170389, +"project": "target-jsonl" }, { -"download_count": 113865, -"project": "pyqt5-tools" +"download_count": 170380, +"project": "kolo" }, { -"download_count": 113784, -"project": "logstash-formatter" +"download_count": 170351, +"project": "pydeps" }, { -"download_count": 113740, -"project": "databricks-labs-blueprint" +"download_count": 170307, +"project": "tensorrt-cu12" }, { -"download_count": 113734, -"project": "aiogoogle" +"download_count": 170276, +"project": "pulumi-kubernetes" }, { -"download_count": 113734, -"project": "phx-class-registry" +"download_count": 170272, +"project": "logging-json" }, { -"download_count": 113720, -"project": "oslo-messaging" +"download_count": 170248, +"project": "vpype" }, { -"download_count": 113700, -"project": "ssh-python" +"download_count": 170215, +"project": "pip-autoremove" }, { -"download_count": 113673, -"project": "mlzlog" +"download_count": 170186, +"project": "ipyevents" }, { -"download_count": 113628, -"project": "onnxoptimizer" +"download_count": 170168, +"project": "robotframework-faker" }, { -"download_count": 113610, -"project": "airflow-mcd" +"download_count": 170068, +"project": "aws" }, { -"download_count": 113601, -"project": "apache-airflow-providers-presto" +"download_count": 170067, +"project": "owlrl" }, { -"download_count": 113591, -"project": "pyjson5" +"download_count": 170063, +"project": "torch-optimizer" }, { -"download_count": 113517, -"project": "django-vite" +"download_count": 170059, +"project": "dagster-prometheus" }, { -"download_count": 113423, -"project": "nvtx" +"download_count": 170016, +"project": "scikit-survival" }, { -"download_count": 113391, -"project": "transparent-background" +"download_count": 169970, +"project": "pyobjc-framework-libdispatch" }, { -"download_count": 113321, -"project": "hunspell" +"download_count": 169935, +"project": "hachoir" }, { -"download_count": 113078, -"project": "nlpaug" +"download_count": 169928, +"project": "chia-base" }, { -"download_count": 113020, -"project": "eciespy" +"download_count": 169908, +"project": "urnparse" }, { -"download_count": 112926, -"project": "editdistpy" +"download_count": 169858, +"project": "json-logic" }, { -"download_count": 112873, -"project": "llama-index-llms-ibm" +"download_count": 169833, +"project": "timeflux" }, { -"download_count": 112768, -"project": "ale-py" +"download_count": 169797, +"project": "juju" }, { -"download_count": 112651, -"project": "intel-cmplr-lib-ur" +"download_count": 169736, +"project": "pygelf" }, { -"download_count": 112627, -"project": "autogluon-core" +"download_count": 169699, +"project": "chialisp-loader" }, { -"download_count": 112627, -"project": "torchlibrosa" +"download_count": 169676, +"project": "sparkdantic" }, { -"download_count": 112567, -"project": "curated-transformers" +"download_count": 169656, +"project": "pydantic-avro" }, { -"download_count": 112494, -"project": "libarchive" +"download_count": 169643, +"project": "chialisp-builder" }, { -"download_count": 112417, -"project": "sagemaker-containers" +"download_count": 169618, +"project": "runtime-builder" }, { -"download_count": 112415, -"project": "bloom-filter2" +"download_count": 169589, +"project": "chialisp-puzzles" }, { -"download_count": 112322, -"project": "ropgadget" +"download_count": 169572, +"project": "linopy" }, { -"download_count": 112242, -"project": "awkward0" +"download_count": 169555, +"project": "pnoise" }, { -"download_count": 112165, -"project": "llama-index-embeddings-ibm" +"download_count": 169554, +"project": "chialisp-stdlib" }, { -"download_count": 111991, -"project": "flask-pydantic" +"download_count": 169516, +"project": "onnxslim" }, { -"download_count": 111935, -"project": "geonamescache" +"download_count": 169367, +"project": "reno" }, { -"download_count": 111887, -"project": "dictances" +"download_count": 169203, +"project": "sagemaker-datawrangler" }, { -"download_count": 111876, -"project": "wagon" +"download_count": 169090, +"project": "mlflow-watsonml" }, { -"download_count": 111863, -"project": "opentracing-utils" +"download_count": 169048, +"project": "mkdocs-exclude" }, { -"download_count": 111858, -"project": "django-sass-processor" +"download_count": 169036, +"project": "timg" }, { -"download_count": 111856, -"project": "k-diffusion" +"download_count": 168936, +"project": "firecrawl-py" }, { -"download_count": 111830, -"project": "uproot3" +"download_count": 168823, +"project": "vsketch" }, { -"download_count": 111828, -"project": "uproot3-methods" +"download_count": 168774, +"project": "interpret-community" }, { -"download_count": 111700, -"project": "oslo-service" +"download_count": 168697, +"project": "breakword" }, { -"download_count": 111650, -"project": "schema-salad" +"download_count": 168492, +"project": "crytic-compile" }, { -"download_count": 111620, -"project": "pywatchman" +"download_count": 168433, +"project": "tensordict-nightly" }, { -"download_count": 111618, -"project": "django-hosts" +"download_count": 168383, +"project": "py3dmol" }, { -"download_count": 111567, -"project": "python-math" +"download_count": 168338, +"project": "spark-expectations" }, { -"download_count": 111554, -"project": "opencensus-ext-stackdriver" +"download_count": 168282, +"project": "flask-bootstrap" }, { -"download_count": 111524, -"project": "curated-tokenizers" +"download_count": 168179, +"project": "sqlmesh" }, { -"download_count": 111464, -"project": "saxonche" +"download_count": 168059, +"project": "auto-gpt-plugin-template" }, { -"download_count": 111428, -"project": "timg" +"download_count": 168003, +"project": "treetable" }, { -"download_count": 111412, -"project": "codacy-coverage" +"download_count": 167876, +"project": "fs-sshfs" }, { -"download_count": 111374, -"project": "getschema" +"download_count": 167874, +"project": "pyobjc-framework-coreservices" }, { -"download_count": 111363, -"project": "fds-sdk-utils" +"download_count": 167772, +"project": "pytdigest" }, { -"download_count": 111305, -"project": "squarify" +"download_count": 167704, +"project": "slack-webhook" }, { -"download_count": 111251, -"project": "otel-extensions" +"download_count": 167700, +"project": "music-tag" }, { -"download_count": 111192, -"project": "readthedocs-sphinx-ext" +"download_count": 167511, +"project": "pycocoevalcap" }, { -"download_count": 111179, -"project": "st-theme" +"download_count": 167411, +"project": "ncls" }, { -"download_count": 111161, -"project": "databricks-sql" +"download_count": 167367, +"project": "apache-airflow-providers-openai" }, { -"download_count": 111139, -"project": "undecorated" +"download_count": 167353, +"project": "spaces" }, { -"download_count": 111057, -"project": "sceptre" +"download_count": 167315, +"project": "pyunpack" }, { -"download_count": 111029, -"project": "django-haystack" +"download_count": 167308, +"project": "chainlit" }, { -"download_count": 110988, -"project": "oslo-middleware" +"download_count": 167246, +"project": "hexdump" }, { -"download_count": 110984, -"project": "paver" +"download_count": 167112, +"project": "typer-cli" }, { -"download_count": 110878, -"project": "pycron" +"download_count": 167099, +"project": "bpython" }, { -"download_count": 110827, -"project": "cwltool" +"download_count": 166920, +"project": "nerfacc" }, { -"download_count": 110810, -"project": "fonts" +"download_count": 166847, +"project": "flake8-pytest-style" }, { -"download_count": 110742, -"project": "sanic-cors" +"download_count": 166826, +"project": "easypost" }, { -"download_count": 110738, -"project": "logfury" +"download_count": 166773, +"project": "cdk-lambda-layer-curl" }, { -"download_count": 110696, -"project": "sqlacodegen" +"download_count": 166643, +"project": "fastremap" }, { -"download_count": 110633, -"project": "python-hosts" +"download_count": 166586, +"project": "nevergrad" }, { -"download_count": 110517, -"project": "hubspot" +"download_count": 166561, +"project": "yapps" }, { -"download_count": 110451, -"project": "brewer2mpl" +"download_count": 166549, +"project": "locust-plugins" }, { -"download_count": 110401, -"project": "pytest-shutil" +"download_count": 166521, +"project": "clevercsv" }, { -"download_count": 110345, -"project": "types-aioboto3" +"download_count": 166415, +"project": "salesforce-fuelsdk" }, { -"download_count": 110322, -"project": "xvfbwrapper" +"download_count": 166222, +"project": "mo-logs" }, { -"download_count": 110289, -"project": "duplocloud-client" +"download_count": 166147, +"project": "keyrings-cryptfile" }, { -"download_count": 110284, -"project": "schedulefree" +"download_count": 166045, +"project": "ocrmypdf" }, { -"download_count": 110232, -"project": "minijinja" +"download_count": 165965, +"project": "methoddispatch" }, { -"download_count": 110183, -"project": "skolemizer" +"download_count": 165851, +"project": "snakebite-py3" }, { -"download_count": 110164, -"project": "pyarabic" +"download_count": 165832, +"project": "qh3" }, { -"download_count": 110109, -"project": "snakes" +"download_count": 165799, +"project": "emmet-core" }, { -"download_count": 110104, -"project": "secweb" +"download_count": 165785, +"project": "azure-messaging-webpubsubclient" }, { -"download_count": 110059, -"project": "simplejpeg" +"download_count": 165740, +"project": "ib3" }, { -"download_count": 110023, -"project": "rpm" +"download_count": 165670, +"project": "django-nine" }, { -"download_count": 110009, -"project": "yamlfix" +"download_count": 165616, +"project": "mo-kwargs" }, { -"download_count": 109959, -"project": "types-stripe" +"download_count": 165472, +"project": "netapp-ontap" }, { -"download_count": 109922, -"project": "stestr" +"download_count": 165450, +"project": "pangu" }, { -"download_count": 109887, -"project": "cycode" +"download_count": 165434, +"project": "macaddress" }, { -"download_count": 109874, -"project": "colored-traceback" +"download_count": 165320, +"project": "pyaescrypt" }, { -"download_count": 109753, -"project": "pyyml" +"download_count": 165296, +"project": "tensorflow-data-validation" }, { -"download_count": 109640, -"project": "datapackage" +"download_count": 165251, +"project": "bcdoc" }, { -"download_count": 109631, -"project": "jsun" +"download_count": 165160, +"project": "botframework-connector" }, { -"download_count": 109595, -"project": "dtw-python" +"download_count": 165084, +"project": "purecloudplatformclientv2" }, { -"download_count": 109442, -"project": "dspy-ai" +"download_count": 165079, +"project": "pygltflib" }, { -"download_count": 109423, -"project": "redislite" +"download_count": 165036, +"project": "arcade" }, { -"download_count": 109414, -"project": "collectfast" +"download_count": 164901, +"project": "pystaticconfiguration" }, { -"download_count": 109393, -"project": "setuptools-dso" +"download_count": 164840, +"project": "opengraph-py3" }, { -"download_count": 109343, -"project": "periodictable" +"download_count": 164808, +"project": "tendo" }, { -"download_count": 109328, -"project": "chomsky" +"download_count": 164719, +"project": "pyobjc-framework-coreaudio" }, { -"download_count": 109283, -"project": "datashader" +"download_count": 164640, +"project": "types-pycurl" }, { -"download_count": 109282, -"project": "sudachidict-full" +"download_count": 164632, +"project": "google-cloud-appengine-admin" }, { -"download_count": 109263, -"project": "keyphrase-vectorizers" +"download_count": 164615, +"project": "cnvrg" }, { -"download_count": 109259, -"project": "yolov5" +"download_count": 164609, +"project": "cloudsmith-cli" }, { -"download_count": 109246, -"project": "python-vlc" +"download_count": 164579, +"project": "paypal-checkout-serversdk" }, { -"download_count": 109246, -"project": "autogluon-features" +"download_count": 164578, +"project": "raiutils" }, { -"download_count": 109199, -"project": "locales" +"download_count": 164510, +"project": "nvidia-nvimgcodec-cu12" }, { -"download_count": 109139, -"project": "python-heatclient" +"download_count": 164356, +"project": "ggshield" }, { -"download_count": 109118, -"project": "dash-auth" +"download_count": 164353, +"project": "mkdocs-jupyter" }, { -"download_count": 109074, -"project": "click-completion" +"download_count": 164347, +"project": "monthdelta" }, { -"download_count": 109068, -"project": "serverlessrepo" +"download_count": 164171, +"project": "hatch-nodejs-version" }, { -"download_count": 109068, -"project": "icu" +"download_count": 164131, +"project": "psd-tools" }, { -"download_count": 109063, -"project": "bullet" +"download_count": 164026, +"project": "ocviapy" }, { -"download_count": 109054, -"project": "pot" +"download_count": 163952, +"project": "ml-wrappers" }, { -"download_count": 109027, -"project": "types-mysqlclient" +"download_count": 163898, +"project": "openvpn-status" }, { -"download_count": 108973, -"project": "rcon" +"download_count": 163785, +"project": "pydot-ng" }, { -"download_count": 108925, -"project": "tap-aftership" +"download_count": 163759, +"project": "promptflow-tracing" }, { -"download_count": 108917, -"project": "tap-gladly" +"download_count": 163755, +"project": "dawg-python" }, { -"download_count": 108900, -"project": "cpymad" +"download_count": 163698, +"project": "textile" }, { -"download_count": 108897, -"project": "pytest-reporter-html1" +"download_count": 163667, +"project": "types-pywin32" }, { -"download_count": 108818, -"project": "dol" +"download_count": 163661, +"project": "py-vapid" }, { -"download_count": 108776, -"project": "django-jsonfield" +"download_count": 163581, +"project": "a9x-webstatistics" }, { -"download_count": 108742, -"project": "minrpc" +"download_count": 163512, +"project": "krippendorff" }, { -"download_count": 108734, -"project": "luhn" +"download_count": 163480, +"project": "types-geoip2" }, { -"download_count": 108732, -"project": "autogluon-tabular" +"download_count": 163369, +"project": "click-pathlib" }, { -"download_count": 108732, -"project": "huggingface" +"download_count": 163362, +"project": "qiskit-terra" }, { -"download_count": 108708, -"project": "supervisely" +"download_count": 163335, +"project": "pyobjc-framework-corebluetooth" }, { -"download_count": 108599, -"project": "smartlingapisdk" +"download_count": 163325, +"project": "databricks-labs-lsql" }, { -"download_count": 108594, -"project": "async-exit-stack" +"download_count": 163323, +"project": "conda-forge-metadata" }, { -"download_count": 108593, -"project": "sas7bdat" +"download_count": 163297, +"project": "datasette" }, { -"download_count": 108570, -"project": "tls-client" +"download_count": 163287, +"project": "pylebedev" }, { -"download_count": 108537, -"project": "django-heroku" +"download_count": 163215, +"project": "colorlover" }, { -"download_count": 108439, -"project": "lumigo-core" +"download_count": 163211, +"project": "pypsexec" }, { -"download_count": 108310, -"project": "django-timestampable" +"download_count": 163186, +"project": "django-ordered-model" }, { -"download_count": 108260, -"project": "devpi-common" +"download_count": 163168, +"project": "py-healthcheck" }, { -"download_count": 108215, -"project": "dm-control" +"download_count": 163154, +"project": "djangoql" }, { -"download_count": 108178, -"project": "owlrl" +"download_count": 163122, +"project": "lob" }, { -"download_count": 108166, -"project": "git-url-parse" +"download_count": 163073, +"project": "pyclean" }, { -"download_count": 108127, -"project": "distinctipy" +"download_count": 162950, +"project": "sagemaker-training" }, { -"download_count": 108124, -"project": "pgi" +"download_count": 162944, +"project": "jina" }, { -"download_count": 108097, -"project": "dearpygui" +"download_count": 162930, +"project": "dagster-pagerduty" }, { -"download_count": 108093, -"project": "pyqt-builder" +"download_count": 162903, +"project": "dtlpymetrics" }, { -"download_count": 108076, -"project": "streamlit-profiler" +"download_count": 162813, +"project": "pinocchio" }, { -"download_count": 107995, -"project": "sarif-tools" +"download_count": 162756, +"project": "datetimerange" }, { -"download_count": 107921, -"project": "datetime-truncate" +"download_count": 162741, +"project": "pytkdocs" }, { -"download_count": 107912, -"project": "eth-tester" +"download_count": 162665, +"project": "gpy" }, { -"download_count": 107866, -"project": "fast-curator" +"download_count": 162556, +"project": "django-loginas" }, { -"download_count": 107863, -"project": "mrjob" +"download_count": 162517, +"project": "abstract-solcatcher" }, { -"download_count": 107801, -"project": "ggplot" +"download_count": 162383, +"project": "pyobjc-framework-launchservices" }, { -"download_count": 107799, -"project": "hive-metastore-client" +"download_count": 162363, +"project": "speedtest-cli" }, { -"download_count": 107798, -"project": "pymsalruntime" +"download_count": 162357, +"project": "solara" }, { -"download_count": 107768, -"project": "rst2pdf" +"download_count": 162348, +"project": "pysnow" }, { -"download_count": 107692, -"project": "notifications-python-client" +"download_count": 162309, +"project": "pytest-mongodb" }, { -"download_count": 107663, -"project": "nassl" +"download_count": 162247, +"project": "openai-messages-token-helper" }, { -"download_count": 107624, -"project": "reno" +"download_count": 162228, +"project": "pytest-testrail" }, { -"download_count": 107589, -"project": "nvgpu" +"download_count": 162178, +"project": "wslink" }, { -"download_count": 107530, -"project": "slugid" +"download_count": 162151, +"project": "pytutils" }, { -"download_count": 107496, -"project": "asyncua" +"download_count": 162110, +"project": "pyranges" }, { -"download_count": 107435, -"project": "ccimport" +"download_count": 162075, +"project": "anyjson" }, { -"download_count": 107382, -"project": "ansible-pylibssh" +"download_count": 162053, +"project": "aiocontextvars" }, { -"download_count": 107373, -"project": "bpython" +"download_count": 161946, +"project": "aliyun-python-sdk-cdn" }, { -"download_count": 107312, -"project": "alibabacloud-tea" +"download_count": 161895, +"project": "encodec" }, { -"download_count": 107309, -"project": "flake8-mutable" +"download_count": 161808, +"project": "fixturefilehandler" }, { -"download_count": 107286, -"project": "py-cord" +"download_count": 161774, +"project": "langgraph-checkpoint-postgres" }, { -"download_count": 107256, -"project": "is-disposable-email" +"download_count": 161734, +"project": "types-babel" }, { -"download_count": 107215, -"project": "exrex" +"download_count": 161689, +"project": "pypcap" }, { -"download_count": 107060, -"project": "gmr" +"download_count": 161655, +"project": "oauth2-client" }, { -"download_count": 107052, -"project": "pccm" +"download_count": 161506, +"project": "pytest-md" }, { -"download_count": 106997, -"project": "scikit-learn-intelex" +"download_count": 161297, +"project": "promptflow-devkit" }, { -"download_count": 106897, -"project": "pdfreader" +"download_count": 161277, +"project": "gradio-imageslider" }, { -"download_count": 106799, -"project": "pylint-junit" +"download_count": 161257, +"project": "poppler-utils" }, { -"download_count": 106690, -"project": "ansible-builder" +"download_count": 161207, +"project": "fixture" }, { -"download_count": 106676, -"project": "pystyle" +"download_count": 161180, +"project": "mssql-django" }, { -"download_count": 106651, -"project": "xdis" +"download_count": 161139, +"project": "aimrocks" }, { -"download_count": 106630, -"project": "daal4py" +"download_count": 161138, +"project": "promptflow-core" }, { -"download_count": 106622, -"project": "fabric3" +"download_count": 161077, +"project": "blacken-docs" }, { -"download_count": 106615, -"project": "pyrender" +"download_count": 160958, +"project": "union" }, { -"download_count": 106530, -"project": "python-consul2" +"download_count": 160952, +"project": "meilisearch" }, { -"download_count": 106519, -"project": "unix-ar" +"download_count": 160947, +"project": "sphinx-thebe" }, { -"download_count": 106518, -"project": "pytest-insta" +"download_count": 160887, +"project": "django-split-settings" }, { -"download_count": 106501, -"project": "google-cloud-retail" +"download_count": 160820, +"project": "classify-imports" }, { -"download_count": 106455, -"project": "ilock" +"download_count": 160820, +"project": "django-hosts" }, { -"download_count": 106451, -"project": "wtforms-validators" +"download_count": 160798, +"project": "django-better-admin-arrayfield" }, { -"download_count": 106404, -"project": "awscli-plugin-s3-proxy" +"download_count": 160696, +"project": "datasketches" }, { -"download_count": 106404, -"project": "koheesio" +"download_count": 160669, +"project": "runpod" }, { -"download_count": 106349, -"project": "csv23" +"download_count": 160667, +"project": "nplusone" }, { -"download_count": 106279, -"project": "django-encrypted-model-fields" +"download_count": 160662, +"project": "ga4gh-testbed-lib" }, { -"download_count": 106260, -"project": "libtmux" +"download_count": 160605, +"project": "japanize-matplotlib" }, { -"download_count": 106223, -"project": "types-jmespath" +"download_count": 160580, +"project": "pyobjc-framework-addressbook" }, { -"download_count": 106190, -"project": "pypugjs" +"download_count": 160532, +"project": "randomname" }, { -"download_count": 106102, -"project": "dj-stripe" +"download_count": 160508, +"project": "pytest-helpers-namespace" }, { -"download_count": 106087, -"project": "csaps" +"download_count": 160457, +"project": "azure-ai-inference" }, { -"download_count": 106084, -"project": "ruamel-base" +"download_count": 160390, +"project": "prefect-azure" }, { -"download_count": 105992, -"project": "dash-daq" +"download_count": 160301, +"project": "dtw-python" }, { -"download_count": 105989, -"project": "llama-index-llms-watsonx" +"download_count": 160298, +"project": "pyobjc-framework-exceptionhandling" }, { -"download_count": 105977, -"project": "update" +"download_count": 160207, +"project": "python3-ldap" }, { -"download_count": 105964, -"project": "unittest-data-provider" +"download_count": 160195, +"project": "numpy-indexed" }, { -"download_count": 105947, -"project": "ansible-vault" +"download_count": 160192, +"project": "flask-misaka" }, { -"download_count": 105860, -"project": "vabene" +"download_count": 160191, +"project": "nvtx" }, { -"download_count": 105782, -"project": "pafy" +"download_count": 160111, +"project": "awsiotpythonsdk" }, { -"download_count": 105665, -"project": "luaparser" +"download_count": 160110, +"project": "pypinyin-dict" }, { -"download_count": 105644, -"project": "pgspecial" +"download_count": 160095, +"project": "pyobjc-framework-cfnetwork" }, { -"download_count": 105501, -"project": "dctorch" +"download_count": 160008, +"project": "sorted-nearest" }, { -"download_count": 105491, -"project": "mt-940" +"download_count": 159992, +"project": "http-ece" }, { -"download_count": 105470, -"project": "django-parler" +"download_count": 159971, +"project": "fissix" }, { -"download_count": 105454, -"project": "bnunicodenormalizer" +"download_count": 159938, +"project": "aws-cdk-aws-batch" }, { -"download_count": 105450, -"project": "oslo-cache" +"download_count": 159873, +"project": "django-bootstrap4" }, { -"download_count": 105437, -"project": "g2pkk" +"download_count": 159868, +"project": "xtgeoviz" }, { -"download_count": 105422, -"project": "ultimate-hosts-blacklist-helpers" +"download_count": 159859, +"project": "types-typed-ast" }, { -"download_count": 105410, -"project": "reretry" +"download_count": 159798, +"project": "pymysqllock" }, { -"download_count": 105378, -"project": "flask-openapi3" +"download_count": 159774, +"project": "earthengine-api" }, { -"download_count": 105341, -"project": "nemo-text-processing" +"download_count": 159727, +"project": "cirq" }, { -"download_count": 105279, -"project": "seeq" +"download_count": 159586, +"project": "mediapy" }, { -"download_count": 105250, -"project": "persist-queue" +"download_count": 159490, +"project": "graphene-file-upload" }, { -"download_count": 105200, -"project": "snaptime" +"download_count": 159479, +"project": "badapted" }, { -"download_count": 105110, -"project": "devpi-client" +"download_count": 159400, +"project": "pyobjc-framework-security" }, { -"download_count": 104996, -"project": "pyangbind" +"download_count": 159388, +"project": "grafana-client" }, { -"download_count": 104935, -"project": "doublemetaphone" +"download_count": 159320, +"project": "twarc" }, { -"download_count": 104879, -"project": "tushare" +"download_count": 159288, +"project": "test-results-parser" }, { -"download_count": 104779, -"project": "mwclient" +"download_count": 159274, +"project": "intel-cmplr-lib-ur" }, { -"download_count": 104713, -"project": "cqlsh" +"download_count": 159172, +"project": "autogluon-vision" }, { -"download_count": 104666, -"project": "jupyter-dash" +"download_count": 159114, +"project": "pymavlink" }, { -"download_count": 104574, -"project": "flake8-typing-imports" +"download_count": 159066, +"project": "dragonfly2" }, { -"download_count": 104506, -"project": "pygtrans" +"download_count": 159034, +"project": "aliyun-python-sdk-cms" }, { -"download_count": 104457, -"project": "kagglehub" +"download_count": 158981, +"project": "sshkeyboard" }, { -"download_count": 104437, -"project": "zxing-cpp" +"download_count": 158871, +"project": "olefileio-pl" }, { -"download_count": 104405, -"project": "cython-bbox" +"download_count": 158802, +"project": "pyobjc-framework-automator" }, { -"download_count": 104340, -"project": "mutf8" +"download_count": 158770, +"project": "aws-lambda-context" }, { -"download_count": 104298, -"project": "fds-protobuf-stach-v2" +"download_count": 158752, +"project": "python-chess" }, { -"download_count": 104294, -"project": "fds-protobuf-stach" +"download_count": 158709, +"project": "aliyun-python-sdk-slb" }, { -"download_count": 104292, -"project": "shipyard-templates" +"download_count": 158702, +"project": "robotframework-selenium2library" }, { -"download_count": 104286, -"project": "fds-protobuf-stach-extensions" +"download_count": 158691, +"project": "commonregex" }, { -"download_count": 104270, -"project": "iterators" +"download_count": 158666, +"project": "aliyundrive-webdav" }, { -"download_count": 104218, -"project": "flask-celery" +"download_count": 158606, +"project": "llama-index-embeddings-langchain" }, { -"download_count": 104192, -"project": "azure-databricks-api" +"download_count": 158566, +"project": "vanna" }, { -"download_count": 104190, -"project": "playsound" +"download_count": 158558, +"project": "pystemmer" }, { -"download_count": 104186, -"project": "pip-compile-multi" +"download_count": 158382, +"project": "nordpool" }, { -"download_count": 104156, -"project": "flask-json" +"download_count": 158328, +"project": "resdata" }, { -"download_count": 104111, -"project": "plexapi" +"download_count": 158228, +"project": "validated-dc" }, { -"download_count": 104108, -"project": "keystonemiddleware" +"download_count": 158207, +"project": "pyobjc-framework-fsevents" }, { -"download_count": 104090, -"project": "font-roboto" +"download_count": 158170, +"project": "nfoursid" }, { -"download_count": 104085, -"project": "dumb-init" +"download_count": 158163, +"project": "petastorm" }, { -"download_count": 104075, -"project": "rasterstats" +"download_count": 158103, +"project": "datashader" }, { -"download_count": 104063, -"project": "spark-parser" +"download_count": 158005, +"project": "api4jenkins" }, { -"download_count": 104046, -"project": "vokativ" +"download_count": 157933, +"project": "autogluon-text" }, { -"download_count": 104011, -"project": "google-cloud-alloydb-connector" +"download_count": 157870, +"project": "pottery" }, { -"download_count": 103943, -"project": "contexttimer" +"download_count": 157796, +"project": "django-admin-interface" }, { -"download_count": 103911, -"project": "tavily-python" +"download_count": 157726, +"project": "bamboolib" }, { -"download_count": 103861, -"project": "lastversion" +"download_count": 157671, +"project": "icmplib" }, { -"download_count": 103815, -"project": "fds-sdk-paengine" +"download_count": 157547, +"project": "pyobjc-framework-applescriptkit" }, { -"download_count": 103763, -"project": "githubpy" +"download_count": 157538, +"project": "seedir" }, { -"download_count": 103742, -"project": "simpleparse" +"download_count": 157494, +"project": "flask-bootstrap4" }, { -"download_count": 103740, -"project": "django-statici18n" +"download_count": 157451, +"project": "mjml-python" }, { -"download_count": 103670, -"project": "fds-sdk-sparengine" +"download_count": 157321, +"project": "parallel-ssh" }, { -"download_count": 103666, -"project": "django-postgres-extra" +"download_count": 157214, +"project": "pyobjc-framework-coredata" }, { -"download_count": 103485, -"project": "loky" +"download_count": 157196, +"project": "aws-cdk-aws-redshift-alpha" }, { -"download_count": 103467, -"project": "netutils" +"download_count": 157050, +"project": "qiskit-ibm-runtime" }, { -"download_count": 103447, -"project": "djangorestframework-recursive" +"download_count": 157047, +"project": "cdk-ecr-deployment" }, { -"download_count": 103427, -"project": "strsim" +"download_count": 157017, +"project": "apache-airflow-providers-cloudant" }, { -"download_count": 103396, -"project": "sqlalchemy-pytds" +"download_count": 156973, +"project": "botbuilder-core" }, { -"download_count": 103395, -"project": "geolib" +"download_count": 156910, +"project": "crc" }, { -"download_count": 103369, -"project": "sshfs" +"download_count": 156820, +"project": "requests-credssp" }, { -"download_count": 103319, -"project": "compose" +"download_count": 156819, +"project": "pangres" }, { -"download_count": 103283, -"project": "shodan" +"download_count": 156804, +"project": "django-safedelete" }, { -"download_count": 103273, -"project": "tensorflow-ranking" +"download_count": 156799, +"project": "pysnyk" }, { -"download_count": 103203, -"project": "api4jenkins" +"download_count": 156744, +"project": "googleauthentication" }, { -"download_count": 103199, -"project": "knnimpute" +"download_count": 156727, +"project": "schema-salad" }, { -"download_count": 103195, -"project": "pyexcel-xls" +"download_count": 156632, +"project": "pyobjc-framework-coremedia" }, { -"download_count": 103006, -"project": "dataframe-image" +"download_count": 156604, +"project": "punch-py" }, { -"download_count": 102974, -"project": "parameters-validation" +"download_count": 156430, +"project": "django-vite" }, { -"download_count": 102960, -"project": "seeq-spy" +"download_count": 156359, +"project": "hkdf" }, { -"download_count": 102938, -"project": "recurrent" +"download_count": 156191, +"project": "glocaltokens" }, { -"download_count": 102934, -"project": "mozlog" +"download_count": 156189, +"project": "lorem-text" }, { -"download_count": 102909, -"project": "punch-py" +"download_count": 156162, +"project": "types-jmespath" }, { -"download_count": 102887, -"project": "2to3" +"download_count": 156103, +"project": "pyobjc-framework-osakit" }, { -"download_count": 102887, -"project": "taskcluster-urls" +"download_count": 156060, +"project": "dagster-snowflake-pandas" }, { -"download_count": 102814, -"project": "dagster-prometheus" +"download_count": 156003, +"project": "hypothesis-graphql" }, { -"download_count": 102814, -"project": "dataclasses-jsonschema" +"download_count": 155969, +"project": "cosmospy-protobuf" }, { -"download_count": 102750, -"project": "yamlpath" +"download_count": 155827, +"project": "fastapi-better-logger" }, { -"download_count": 102742, -"project": "lesscpy" +"download_count": 155797, +"project": "sigstore-protobuf-specs" }, { -"download_count": 102696, -"project": "torchvinecopulib" +"download_count": 155769, +"project": "dash-ag-grid" }, { -"download_count": 102689, -"project": "sphinxcontrib-apidoc" +"download_count": 155756, +"project": "pyobjc-framework-diskarbitration" }, { -"download_count": 102682, -"project": "stop-words" +"download_count": 155752, +"project": "pddlgym" }, { -"download_count": 102676, -"project": "mindsdb-sql" +"download_count": 155701, +"project": "airflow-provider-hightouch" }, { -"download_count": 102650, -"project": "cloudscale-sdk" +"download_count": 155685, +"project": "rocketchat-api" }, { -"download_count": 102649, -"project": "zodb3" +"download_count": 155684, +"project": "python-levenshtein-wheels" }, { -"download_count": 102644, -"project": "aspy-refactor-imports" +"download_count": 155613, +"project": "curated-tokenizers" }, { -"download_count": 102522, -"project": "hangul-romanize" +"download_count": 155609, +"project": "apache-airflow-providers-jira" }, { -"download_count": 102493, -"project": "asdf" +"download_count": 155603, +"project": "zoomus" }, { -"download_count": 102448, -"project": "neptune" +"download_count": 155540, +"project": "psycopg2-pool" }, { -"download_count": 102418, -"project": "basemap" +"download_count": 155512, +"project": "pyuwsgi" }, { -"download_count": 102378, -"project": "scikit-surprise" +"download_count": 155493, +"project": "paramz" }, { -"download_count": 102372, -"project": "dynamodb-encryption-sdk" +"download_count": 155487, +"project": "lpc-checksum" }, { -"download_count": 102336, -"project": "pip-upgrader" +"download_count": 155462, +"project": "google-cloud-datacatalog-lineage" }, { -"download_count": 102274, -"project": "stytch" +"download_count": 155352, +"project": "sphinx-markdown-tables" }, { -"download_count": 102273, -"project": "django-browser-reload" +"download_count": 155324, +"project": "pylint-exit" }, { -"download_count": 102259, -"project": "pyroma" +"download_count": 155231, +"project": "legacy-api-wrap" }, { -"download_count": 102257, -"project": "fastapi-users" +"download_count": 155224, +"project": "tabpfn" }, { -"download_count": 102256, -"project": "jupyter-leaflet" +"download_count": 155207, +"project": "sample-helper-aws-appconfig" }, { -"download_count": 102235, -"project": "pycln" +"download_count": 155182, +"project": "libsast" }, { -"download_count": 102218, -"project": "edge-tts" +"download_count": 155181, +"project": "envd" }, { -"download_count": 102198, -"project": "htag" +"download_count": 155168, +"project": "choreographer" }, { -"download_count": 102177, -"project": "mkdocs-include-dir-to-nav" +"download_count": 155157, +"project": "cirq-google" }, { -"download_count": 102111, -"project": "pytest-freezer" +"download_count": 155089, +"project": "dearpygui" }, { -"download_count": 102106, -"project": "pyarmor-cli-core" +"download_count": 155033, +"project": "hcloud" }, { -"download_count": 102077, -"project": "flask-log-request-id" +"download_count": 154979, +"project": "tf-slim" }, { -"download_count": 102049, -"project": "scalecodec" +"download_count": 154966, +"project": "coqpit" }, { -"download_count": 102018, -"project": "contrast-agent-lib" +"download_count": 154961, +"project": "colorhash" }, { -"download_count": 101878, -"project": "htmllistparse" +"download_count": 154736, +"project": "yorm" }, { -"download_count": 101839, -"project": "google-cloud-billing" +"download_count": 154723, +"project": "aspy-yaml" }, { -"download_count": 101807, -"project": "pybind11-stubgen" +"download_count": 154712, +"project": "pyobjc-framework-discrecording" }, { -"download_count": 101787, -"project": "svgelements" +"download_count": 154676, +"project": "pyobjc-framework-coreaudiokit" }, { -"download_count": 101783, -"project": "horovod" +"download_count": 154674, +"project": "protoc-gen-validate" }, { -"download_count": 101772, -"project": "pyhdfe" +"download_count": 154344, +"project": "apache-airflow-providers-apache-cassandra" }, { -"download_count": 101765, -"project": "opencensus-ext-threading" +"download_count": 154279, +"project": "progressbar33" }, { -"download_count": 101653, -"project": "lakefs-client" +"download_count": 154277, +"project": "python-statsd" }, { -"download_count": 101601, -"project": "sockio" +"download_count": 154238, +"project": "user-agent" }, { -"download_count": 101578, -"project": "ultimate-hosts-blacklist-test-launcher" +"download_count": 154217, +"project": "pyjq" }, { -"download_count": 101563, -"project": "ema-pytorch" +"download_count": 154209, +"project": "fatamorgana" }, { -"download_count": 101500, -"project": "taskcluster" +"download_count": 154187, +"project": "argparse-manpage" }, { -"download_count": 101499, -"project": "serialio" +"download_count": 154175, +"project": "pyobjc-framework-installerplugins" }, { -"download_count": 101484, -"project": "trufflehogregexes" +"download_count": 154162, +"project": "pyobjc-framework-preferencepanes" }, { -"download_count": 101458, -"project": "django-pandas" +"download_count": 154147, +"project": "pyobjc-framework-latentsemanticmapping" }, { -"download_count": 101454, -"project": "ax-platform" +"download_count": 154069, +"project": "git-filter-repo" }, { -"download_count": 101439, -"project": "connio" +"download_count": 154068, +"project": "pyobjc-framework-webkit" }, { -"download_count": 101383, -"project": "asyncmock" +"download_count": 154022, +"project": "pysodium" }, { -"download_count": 101344, -"project": "labmaze" +"download_count": 153988, +"project": "pyscreenshot" }, { -"download_count": 101310, -"project": "alt-profanity-check" +"download_count": 153932, +"project": "pulumi-gcp" }, { -"download_count": 101308, -"project": "cyvcf2" +"download_count": 153897, +"project": "tuspy" }, { -"download_count": 101250, -"project": "datasetsforecast" +"download_count": 153885, +"project": "python-digitalocean" }, { -"download_count": 101211, -"project": "skyfield-data" +"download_count": 153885, +"project": "cron-validator" }, { -"download_count": 101144, -"project": "sphinx-external-toc" +"download_count": 153846, +"project": "r7insight-python" }, { -"download_count": 101060, -"project": "fluids" +"download_count": 153767, +"project": "pyviews" }, { -"download_count": 100995, -"project": "uuid-utils" +"download_count": 153755, +"project": "dagster-databricks" }, { -"download_count": 100970, -"project": "quantulum3" +"download_count": 153749, +"project": "tf-keras-nightly" }, { -"download_count": 100958, -"project": "fal-client" +"download_count": 153745, +"project": "rodi" }, { -"download_count": 100899, -"project": "aws-lambda-context" +"download_count": 153719, +"project": "flex" }, { -"download_count": 100876, -"project": "check-wheel-contents" +"download_count": 153619, +"project": "fitz" }, { -"download_count": 100834, -"project": "compressed-tensors" +"download_count": 153614, +"project": "optlang" }, { -"download_count": 100806, -"project": "botbuilder-schema" +"download_count": 153602, +"project": "speedtest" }, { -"download_count": 100803, -"project": "axiom-py" +"download_count": 153470, +"project": "pywatchman" }, { -"download_count": 100780, -"project": "auto-py-to-exe" +"download_count": 153462, +"project": "pdf2docx" }, { -"download_count": 100768, -"project": "pyone" +"download_count": 153357, +"project": "sphinx-jupyterbook-latex" }, { -"download_count": 100739, -"project": "sumologic-sdk" +"download_count": 153328, +"project": "jupyter-latex-envs" }, { -"download_count": 100693, -"project": "fireblocks-sdk" +"download_count": 153318, +"project": "proxy-py" }, { -"download_count": 100670, -"project": "flake8-django" +"download_count": 153223, +"project": "bloom-filter2" }, { -"download_count": 100598, -"project": "islpy" +"download_count": 153216, +"project": "django-revproxy" }, { -"download_count": 100598, -"project": "stream-inflate" +"download_count": 153156, +"project": "mozprocess" }, { -"download_count": 100440, -"project": "numpyencoder" +"download_count": 153000, +"project": "django-elasticsearch-dsl-drf" }, { -"download_count": 100403, -"project": "openvpn-status" +"download_count": 152976, +"project": "pytapo" }, { -"download_count": 100389, -"project": "epitran" +"download_count": 152918, +"project": "sqloxide" }, { -"download_count": 100365, -"project": "codefind" +"download_count": 152870, +"project": "axe-selenium-python" }, { -"download_count": 100338, -"project": "pyspelling" +"download_count": 152822, +"project": "python-openid" }, { -"download_count": 100306, -"project": "tensorly" +"download_count": 152817, +"project": "voila" }, { -"download_count": 100268, -"project": "launchpadlib" +"download_count": 152777, +"project": "json-tricks" }, { -"download_count": 100256, -"project": "ipyevents" +"download_count": 152760, +"project": "apache-airflow-providers-alibaba" }, { -"download_count": 100242, -"project": "datashape" +"download_count": 152649, +"project": "sumologic-sdk" }, { -"download_count": 100235, -"project": "python-facebook-api" +"download_count": 152601, +"project": "flexget" }, { -"download_count": 100201, -"project": "airportsdata" +"download_count": 152598, +"project": "faust-streaming" }, { -"download_count": 100194, -"project": "blockdiag" +"download_count": 152594, +"project": "pyobjc-framework-dvdplayback" }, { -"download_count": 100187, -"project": "exhale" +"download_count": 152584, +"project": "eth-tester" }, { -"download_count": 100187, -"project": "inference-cli" +"download_count": 152571, +"project": "pyobjc-framework-discrecordingui" }, { -"download_count": 100170, -"project": "pystow" +"download_count": 152544, +"project": "benchling-api-client" }, { -"download_count": 100076, -"project": "noiseprotocol" +"download_count": 152514, +"project": "dynamixel-sdk" }, { -"download_count": 100014, -"project": "traceback-with-variables" +"download_count": 152440, +"project": "genshi" }, { -"download_count": 99992, -"project": "pytest-cache" +"download_count": 152401, +"project": "pynliner" }, { -"download_count": 99942, -"project": "pytest-grpc" +"download_count": 152348, +"project": "pytest-cpp" }, { -"download_count": 99824, -"project": "copulas" +"download_count": 152298, +"project": "shiny" }, { -"download_count": 99814, -"project": "juju" +"download_count": 152269, +"project": "dynamicprompts" }, { -"download_count": 99801, -"project": "dsdobjects" +"download_count": 152201, +"project": "depinfo" }, { -"download_count": 99682, -"project": "sinethesizer" +"download_count": 152179, +"project": "pyobjc-framework-avfoundation" }, { -"download_count": 99581, -"project": "ahocorapy" +"download_count": 152088, +"project": "python-terraform" }, { -"download_count": 99543, -"project": "pypi-json" +"download_count": 152081, +"project": "scann" }, { -"download_count": 99540, -"project": "read" +"download_count": 152068, +"project": "mat4py" }, { -"download_count": 99495, -"project": "types-backports" +"download_count": 152024, +"project": "datetime-quarter" }, { -"download_count": 99426, -"project": "flask-security-too" +"download_count": 151993, +"project": "sphinx-multitoc-numbering" }, { -"download_count": 99409, -"project": "jsoncsv" +"download_count": 151985, +"project": "unlzw3" }, { -"download_count": 99386, -"project": "python-barbicanclient" +"download_count": 151943, +"project": "optuna-integration" }, { -"download_count": 99352, -"project": "fissix" +"download_count": 151931, +"project": "password-strength" }, { -"download_count": 99345, -"project": "ara" +"download_count": 151836, +"project": "cdktf-cdktf-provider-newrelic" }, { -"download_count": 99249, -"project": "pytest-mpl" +"download_count": 151827, +"project": "threaded" }, { -"download_count": 99209, -"project": "assemblyai" +"download_count": 151792, +"project": "cornice" }, { -"download_count": 99195, -"project": "pandas-access" +"download_count": 151786, +"project": "types-toposort" }, { -"download_count": 99191, -"project": "tensorrt-cu12" +"download_count": 151780, +"project": "pyartifactory" }, { -"download_count": 99146, -"project": "unsloth-zoo" +"download_count": 151659, +"project": "psqlpy" }, { -"download_count": 99129, -"project": "aws-sso-util" +"download_count": 151620, +"project": "sweeps" }, { -"download_count": 99113, -"project": "qualname" +"download_count": 151603, +"project": "imodels" }, { -"download_count": 99007, -"project": "pykalman" +"download_count": 151598, +"project": "artifactory" }, { -"download_count": 98979, -"project": "pyro5" +"download_count": 151582, +"project": "django-rosetta" }, { -"download_count": 98970, -"project": "deprecation-alias" +"download_count": 151581, +"project": "asgi-tools" }, { -"download_count": 98924, -"project": "vessl" +"download_count": 151571, +"project": "pyobjc-framework-screensaver" }, { -"download_count": 98872, -"project": "fontawesome-markdown" +"download_count": 151556, +"project": "alibabacloud-dingtalk" }, { -"download_count": 98856, -"project": "python-gdcm" +"download_count": 151552, +"project": "sklearn-pandas" }, { -"download_count": 98809, -"project": "dtreeviz" +"download_count": 151533, +"project": "pyexcel-xlsx" }, { -"download_count": 98808, -"project": "edk2-pytool-extensions" +"download_count": 151524, +"project": "streamlit-folium" }, { -"download_count": 98802, -"project": "mgzip" +"download_count": 151509, +"project": "pyobjc-framework-syncservices" }, { -"download_count": 98796, -"project": "pycld3" +"download_count": 151444, +"project": "bullet" }, { -"download_count": 98773, -"project": "wavefront-sdk-python" +"download_count": 151437, +"project": "scout-apm" }, { -"download_count": 98748, -"project": "pystemmer" +"download_count": 151376, +"project": "pytest-insta" }, { -"download_count": 98639, -"project": "dsnparse" +"download_count": 151334, +"project": "enum-tools" }, { -"download_count": 98514, -"project": "google-cloud-bigquery-connection" +"download_count": 151271, +"project": "sure" }, { -"download_count": 98406, -"project": "colcon-core" +"download_count": 151252, +"project": "openvino-dev" }, { -"download_count": 98293, -"project": "pytest-explicit" +"download_count": 151220, +"project": "markdown-include" }, { -"download_count": 98286, -"project": "paramz" +"download_count": 151177, +"project": "sseclient" }, { -"download_count": 98271, -"project": "oslo-metrics" +"download_count": 151177, +"project": "pyobjc-framework-coreml" }, { -"download_count": 98267, -"project": "shimmy" +"download_count": 151164, +"project": "pypeg2" }, { -"download_count": 98173, -"project": "drf-standardized-errors" +"download_count": 151160, +"project": "mozfile" }, { -"download_count": 98132, -"project": "envsubst" +"download_count": 151128, +"project": "alien" }, { -"download_count": 98127, -"project": "cruft" +"download_count": 151047, +"project": "robotframework-debuglibrary" }, { -"download_count": 98080, -"project": "consolekit" +"download_count": 150984, +"project": "databricks-test" }, { -"download_count": 98075, -"project": "sceptre-cmd-resolver" +"download_count": 150937, +"project": "torchcrepe" }, { -"download_count": 98017, -"project": "flake8-pyi" +"download_count": 150891, +"project": "ruamel-base" }, { -"download_count": 97997, -"project": "asdf-standard" +"download_count": 150877, +"project": "pytubefix" }, { -"download_count": 97981, -"project": "panda3d-gltf" +"download_count": 150777, +"project": "aiosonos" }, { -"download_count": 97930, -"project": "asdf-transform-schemas" +"download_count": 150679, +"project": "pyobjc-framework-spritekit" }, { -"download_count": 97883, -"project": "oslo-upgradecheck" +"download_count": 150634, +"project": "django-pipeline" }, { -"download_count": 97877, -"project": "flake8-colors" +"download_count": 150570, +"project": "qcg-pilotjob" }, { -"download_count": 97813, -"project": "sphinx-issues" +"download_count": 150503, +"project": "asyncpg-stubs" }, { -"download_count": 97806, -"project": "colcon-devtools" +"download_count": 150499, +"project": "marrow-util" }, { -"download_count": 97751, -"project": "sslyze" +"download_count": 150491, +"project": "pystoi" }, { -"download_count": 97731, -"project": "kodi-addon-checker" +"download_count": 150474, +"project": "resend" }, { -"download_count": 97731, -"project": "sceptre-file-resolver" +"download_count": 150345, +"project": "python-gdcm" }, { -"download_count": 97723, -"project": "panda3d-simplepbr" +"download_count": 150321, +"project": "libipld" }, { -"download_count": 97710, -"project": "laces" +"download_count": 150310, +"project": "cdk-common" }, { -"download_count": 97695, -"project": "globus-sdk" +"download_count": 150272, +"project": "meshtastic" }, { -"download_count": 97646, -"project": "aesara" +"download_count": 150263, +"project": "osfclient" }, { -"download_count": 97539, -"project": "dtaidistance" +"download_count": 150243, +"project": "openunmix" }, { -"download_count": 97530, -"project": "bangla" +"download_count": 150123, +"project": "grizz" }, { -"download_count": 97529, -"project": "django-graphql-jwt" +"download_count": 150087, +"project": "astro-sdk-python" }, { -"download_count": 97500, -"project": "pytest-cover" +"download_count": 150031, +"project": "sigstore-rekor-types" }, { -"download_count": 97387, -"project": "poster3" +"download_count": 149985, +"project": "py-cord" }, { -"download_count": 97332, -"project": "onigurumacffi" +"download_count": 149969, +"project": "ai-flow-nightly" }, { -"download_count": 97304, -"project": "dagster-snowflake-pandas" +"download_count": 149905, +"project": "pims" }, { -"download_count": 97295, -"project": "hdmf" +"download_count": 149828, +"project": "shot-scraper" }, { -"download_count": 97233, -"project": "gluonnlp" +"download_count": 149781, +"project": "flake8-formatter-junit-xml" }, { -"download_count": 97211, -"project": "endesive" +"download_count": 149672, +"project": "esdbclient" }, { -"download_count": 97200, -"project": "python-libsbml" +"download_count": 149658, +"project": "dbnd-spark" }, { -"download_count": 97198, -"project": "mda-xdrlib" +"download_count": 149618, +"project": "exponent-server-sdk" }, { -"download_count": 97182, -"project": "argostranslate" +"download_count": 149613, +"project": "sagemaker-inference" }, { -"download_count": 97158, -"project": "mmcv" +"download_count": 149574, +"project": "python-magic-bin" }, { -"download_count": 97139, -"project": "aiojobs" +"download_count": 149499, +"project": "marrow-mailer" }, { -"download_count": 97135, -"project": "dedupe-variable-datetime" +"download_count": 149492, +"project": "pycdlib" }, { -"download_count": 97096, -"project": "sexpdata" +"download_count": 149478, +"project": "clu" }, { -"download_count": 97081, -"project": "aioodbc" +"download_count": 149417, +"project": "msg-parser" }, { -"download_count": 97074, -"project": "gpyreg" +"download_count": 149370, +"project": "case-converter" }, { -"download_count": 97074, -"project": "django-rest-polymorphic" +"download_count": 149322, +"project": "django-rest-passwordreset" }, { -"download_count": 97068, -"project": "slackweb" +"download_count": 149311, +"project": "django-sesame" }, { -"download_count": 97055, -"project": "pycadf" +"download_count": 149289, +"project": "pydes" }, { -"download_count": 97011, -"project": "python-i18n" +"download_count": 149230, +"project": "pybboxes" }, { -"download_count": 97009, -"project": "pytest-depends" +"download_count": 149230, +"project": "rapidocr-onnxruntime" }, { -"download_count": 96915, -"project": "onnx-simplifier" +"download_count": 149181, +"project": "pyobjc-framework-corewlan" }, { -"download_count": 96902, -"project": "pypsexec" +"download_count": 149167, +"project": "sahi" }, { -"download_count": 96887, -"project": "fancyimpute" +"download_count": 149132, +"project": "pypeln" }, { -"download_count": 96863, -"project": "gruut-lang-en" +"download_count": 149109, +"project": "hdmf" }, { -"download_count": 96816, -"project": "django-better-admin-arrayfield" +"download_count": 149064, +"project": "pyobjc-framework-avkit" }, { -"download_count": 96804, -"project": "ultimate-hosts-blacklist-whitelist" +"download_count": 149060, +"project": "packaging-legacy" }, { -"download_count": 96789, -"project": "pytest-isort" +"download_count": 149057, +"project": "pyobjc-framework-searchkit" }, { -"download_count": 96775, -"project": "dash-mantine-components" +"download_count": 149021, +"project": "symspellpy" }, { -"download_count": 96736, -"project": "sacred" +"download_count": 149015, +"project": "ipcqueue" }, { -"download_count": 96714, -"project": "dask-ml" +"download_count": 148985, +"project": "apache-airflow-providers-apache-flink" }, { -"download_count": 96707, -"project": "json-e" +"download_count": 148969, +"project": "perpetual" }, { -"download_count": 96693, -"project": "legacy-api-wrap" +"download_count": 148942, +"project": "contexttimer" }, { -"download_count": 96693, -"project": "opentelemetry-instrumentation-sklearn" +"download_count": 148913, +"project": "types-factory-boy" }, { -"download_count": 96689, -"project": "habluetooth" +"download_count": 148824, +"project": "pyobjc-framework-notificationcenter" }, { -"download_count": 96650, -"project": "snakemake" +"download_count": 148788, +"project": "streamlit-option-menu" }, { -"download_count": 96647, -"project": "enmerkar" +"download_count": 148741, +"project": "dbstream" }, { -"download_count": 96606, -"project": "pyap" +"download_count": 148678, +"project": "pyobjc-framework-multipeerconnectivity" }, { -"download_count": 96601, -"project": "apache-airflow-providers-apache-pinot" +"download_count": 148594, +"project": "awslogs" }, { -"download_count": 96588, -"project": "pyinvoke" +"download_count": 148552, +"project": "sshfs" }, { -"download_count": 96571, -"project": "alibabacloud-tea-openapi" +"download_count": 148549, +"project": "opentelemetry-propagator-ot-trace" }, { -"download_count": 96533, -"project": "gruut-ipa" +"download_count": 148454, +"project": "no-manylinux" }, { -"download_count": 96517, -"project": "flair" +"download_count": 148443, +"project": "apache-airflow-providers-zendesk" }, { -"download_count": 96477, -"project": "aiohttp-session" +"download_count": 148424, +"project": "aliyun-python-sdk-cs" }, { -"download_count": 96461, -"project": "functools" +"download_count": 148334, +"project": "ngram" }, { -"download_count": 96250, -"project": "lazr-restfulclient" +"download_count": 148305, +"project": "hsaudiotag3k" }, { -"download_count": 96249, -"project": "tensorflow-cpu-aws" +"download_count": 148301, +"project": "botframework-streaming" }, { -"download_count": 96194, -"project": "g2pk" +"download_count": 148301, +"project": "pykdtree" }, { -"download_count": 96142, -"project": "ucimlrepo" +"download_count": 148285, +"project": "objectpath" }, { -"download_count": 96136, -"project": "flake8-import-restrictions" +"download_count": 148211, +"project": "pyobjc-framework-servicemanagement" }, { -"download_count": 96135, -"project": "django-jsonform" +"download_count": 148175, +"project": "attrs-mate" }, { -"download_count": 96112, -"project": "botframework-connector" +"download_count": 147987, +"project": "skorch" }, { -"download_count": 96085, -"project": "bridgecrew" +"download_count": 147974, +"project": "pyqt5-tools" }, { -"download_count": 96074, -"project": "hdijupyterutils" +"download_count": 147960, +"project": "setfit" }, { -"download_count": 96053, -"project": "sphinxemoji" +"download_count": 147959, +"project": "schedulefree" }, { -"download_count": 96012, -"project": "vat-utils" +"download_count": 147937, +"project": "llama-index-vector-stores-milvus" }, { -"download_count": 95907, -"project": "passwordgenerator" +"download_count": 147841, +"project": "tts" }, { -"download_count": 95903, -"project": "flask-sso" +"download_count": 147760, +"project": "curated-transformers" }, { -"download_count": 95815, -"project": "thoth-common" +"download_count": 147759, +"project": "tls-client" }, { -"download_count": 95776, -"project": "pyduktape" +"download_count": 147751, +"project": "pyobjc-framework-corelocation" }, { -"download_count": 95771, -"project": "pymcubes" +"download_count": 147738, +"project": "apache-airflow-providers-discord" }, { -"download_count": 95724, -"project": "bagit" +"download_count": 147571, +"project": "spacy-curated-transformers" }, { -"download_count": 95674, -"project": "pytest-tap" +"download_count": 147564, +"project": "control" }, { -"download_count": 95666, -"project": "pyuwsgi" +"download_count": 147555, +"project": "pyobjc-framework-coremediaio" }, { -"download_count": 95649, -"project": "thoth-python" +"download_count": 147512, +"project": "django-rest-auth" }, { -"download_count": 95615, -"project": "django-push-notifications" +"download_count": 147475, +"project": "colour-science" }, { -"download_count": 95610, -"project": "mailer" +"download_count": 147425, +"project": "fontbakery" }, { -"download_count": 95593, -"project": "sphinx-immaterial" +"download_count": 147322, +"project": "fuc" }, { -"download_count": 95525, -"project": "ezodf" +"download_count": 147316, +"project": "vonage" }, { -"download_count": 95515, -"project": "thoth-analyzer" +"download_count": 147199, +"project": "sphinx-comments" }, { -"download_count": 95512, -"project": "virustotal3" +"download_count": 147188, +"project": "mosek" }, { -"download_count": 95509, -"project": "urllib3-future" +"download_count": 147177, +"project": "quantconnect-stubs" }, { -"download_count": 95456, -"project": "ncnn" +"download_count": 147159, +"project": "face-recognition" }, { -"download_count": 95451, -"project": "plan-tools" +"download_count": 147144, +"project": "pyobjc-framework-vision" }, { -"download_count": 95444, -"project": "flake8-markdown" +"download_count": 147116, +"project": "captcha" }, { -"download_count": 95387, -"project": "django-rest-framework" +"download_count": 147105, +"project": "ur-rtde" }, { -"download_count": 95345, -"project": "python-osc" +"download_count": 147038, +"project": "flake8-json" }, { -"download_count": 95305, -"project": "nemo-toolkit" +"download_count": 147020, +"project": "pyobjc-framework-accounts" }, { -"download_count": 95295, -"project": "traceml" +"download_count": 146970, +"project": "hype-html" }, { -"download_count": 95285, -"project": "recurly" +"download_count": 146914, +"project": "pyobjc-framework-eventkit" }, { -"download_count": 95245, -"project": "colcon-python-setup-py" +"download_count": 146906, +"project": "cycode" }, { -"download_count": 95241, -"project": "pysrt" +"download_count": 146880, +"project": "llama-index-postprocessor-cohere-rerank" }, { -"download_count": 95183, -"project": "arize" +"download_count": 146862, +"project": "fastapi-azure-auth" }, { -"download_count": 95072, -"project": "eql" +"download_count": 146853, +"project": "prince" }, { -"download_count": 95045, -"project": "leval" +"download_count": 146842, +"project": "pyobjc-framework-securityinterface" }, { -"download_count": 95025, -"project": "autovizwidget" +"download_count": 146803, +"project": "pydevicetree" }, { -"download_count": 95010, -"project": "spacy-pkuseg" +"download_count": 146724, +"project": "pyobjc-framework-colorsync" }, { -"download_count": 94987, -"project": "qiskit-terra" +"download_count": 146711, +"project": "pyobjc-framework-contacts" }, { -"download_count": 94960, -"project": "frappe-bench" +"download_count": 146641, +"project": "pyobjc-framework-network" }, { -"download_count": 94950, -"project": "spyne" +"download_count": 146628, +"project": "pyobjc-framework-applescriptobjc" }, { -"download_count": 94903, -"project": "colcon-test-result" +"download_count": 146540, +"project": "pysingleton" }, { -"download_count": 94898, -"project": "compel" +"download_count": 146527, +"project": "linearmodels" }, { -"download_count": 94894, -"project": "pyclean" +"download_count": 146523, +"project": "badx12" }, { -"download_count": 94834, -"project": "samsungtvws" +"download_count": 146518, +"project": "llama-index-llms-langchain" }, { -"download_count": 94826, -"project": "tkmacosx" +"download_count": 146513, +"project": "multiping" }, { -"download_count": 94789, -"project": "autogluon-common" +"download_count": 146505, +"project": "reg" }, { -"download_count": 94784, -"project": "aws-cdk-aws-events-targets" +"download_count": 146500, +"project": "mssql-cli" }, { -"download_count": 94761, -"project": "colcon-cmake" +"download_count": 146463, +"project": "pyobjc-framework-photos" }, { -"download_count": 94760, -"project": "colcon-ros" +"download_count": 146457, +"project": "pytest-reporter" }, { -"download_count": 94735, -"project": "polygon-geohasher" +"download_count": 146423, +"project": "flake8-annotations-complexity" }, { -"download_count": 94710, -"project": "firebase-functions" +"download_count": 146399, +"project": "pyobjc-framework-netfs" }, { -"download_count": 94689, -"project": "hass-nabucasa" +"download_count": 146380, +"project": "glpk" }, { -"download_count": 94573, -"project": "django-q" +"download_count": 146347, +"project": "pypsa" }, { -"download_count": 94563, -"project": "colcon-recursive-crawl" +"download_count": 146296, +"project": "pyobjc-framework-findersync" }, { -"download_count": 94515, -"project": "simdkalman" +"download_count": 146194, +"project": "starlette-testclient" }, { -"download_count": 94442, -"project": "basemap-data" +"download_count": 146071, +"project": "traceback-with-variables" }, { -"download_count": 94441, -"project": "mozilla-version" +"download_count": 146053, +"project": "testbook" }, { -"download_count": 94420, -"project": "colcon-library-path" +"download_count": 146041, +"project": "unionai-actor" }, { -"download_count": 94413, -"project": "simsimd" +"download_count": 146031, +"project": "collective-checkdocs" }, { -"download_count": 94410, -"project": "gidgethub" +"download_count": 146013, +"project": "pandasai" }, { -"download_count": 94383, -"project": "curies" +"download_count": 146001, +"project": "apache-airflow-providers-neo4j" }, { -"download_count": 94340, -"project": "pbkdf2" +"download_count": 145964, +"project": "cython-bbox" }, { -"download_count": 94334, -"project": "ytmusicapi" +"download_count": 145944, +"project": "phidata" }, { -"download_count": 94310, -"project": "rapidocr-onnxruntime" +"download_count": 145916, +"project": "azureml-contrib-services" }, { -"download_count": 94289, -"project": "mlserver-mlflow" +"download_count": 145746, +"project": "telegraph" }, { -"download_count": 94271, -"project": "kodistubs" +"download_count": 145663, +"project": "pyobjc-framework-imagecapturecore" }, { -"download_count": 94165, -"project": "pyroscope-io" +"download_count": 145652, +"project": "mozinfo" }, { -"download_count": 94154, -"project": "stream-unzip" +"download_count": 145633, +"project": "deep-merge" }, { -"download_count": 94034, -"project": "epicscorelibs" +"download_count": 145572, +"project": "pyobjc-framework-scenekit" }, { -"download_count": 94028, -"project": "windows-curses" +"download_count": 145561, +"project": "pyobjc-framework-mapkit" }, { -"download_count": 93986, -"project": "colcon-common-extensions" +"download_count": 145458, +"project": "aiohttp-middlewares" }, { -"download_count": 93977, -"project": "edx-django-utils" +"download_count": 145448, +"project": "flake8-literal" }, { -"download_count": 93970, -"project": "clamd" +"download_count": 145395, +"project": "pyobjc-framework-gamecenter" }, { -"download_count": 93940, -"project": "bleach-allowlist" +"download_count": 145388, +"project": "meutils" }, { -"download_count": 93938, -"project": "dbt-trino" +"download_count": 145385, +"project": "pyworld" }, { -"download_count": 93868, -"project": "fold-to-ascii" +"download_count": 145352, +"project": "pyobjc-framework-storekit" }, { -"download_count": 93864, -"project": "skypilot" +"download_count": 145344, +"project": "pyobjc-framework-naturallanguage" }, { -"download_count": 93858, -"project": "pyinputplus" +"download_count": 145323, +"project": "tflite-runtime-nightly" }, { -"download_count": 93837, -"project": "validated-dc" +"download_count": 145282, +"project": "pyobjc-framework-intents" }, { -"download_count": 93769, -"project": "pysimplevalidate" +"download_count": 145272, +"project": "pyuca" }, { -"download_count": 93722, -"project": "sortednp" +"download_count": 145219, +"project": "fairseq" }, { -"download_count": 93707, -"project": "rjieba" +"download_count": 145212, +"project": "pyobjc-framework-networkextension" }, { -"download_count": 93617, -"project": "dash-extensions" +"download_count": 145197, +"project": "pyobjc-framework-cryptotokenkit" }, { -"download_count": 93582, -"project": "enum-tools" +"download_count": 145188, +"project": "pyobjc-framework-contactsui" }, { -"download_count": 93551, -"project": "colcon-notification" +"download_count": 145172, +"project": "pyobjc-framework-photosui" }, { -"download_count": 93541, -"project": "gruut-lang-de" +"download_count": 145160, +"project": "pyobjc-framework-safariservices" }, { -"download_count": 93521, -"project": "torch-stoi" +"download_count": 145147, +"project": "sanic-testing" }, { -"download_count": 93486, -"project": "aws-cdk-aws-imagebuilder" +"download_count": 145133, +"project": "pyobjc-framework-gamekit" }, { -"download_count": 93462, -"project": "colcon-package-information" +"download_count": 145131, +"project": "airbyte-protocol-models-pdv2" }, { -"download_count": 93426, -"project": "colcon-powershell" +"download_count": 145100, +"project": "pyobjc-framework-modelio" }, { -"download_count": 93415, -"project": "more-click" +"download_count": 145087, +"project": "sweetener" }, { -"download_count": 93409, -"project": "colcon-defaults" +"download_count": 145079, +"project": "rels" }, { -"download_count": 93400, -"project": "colcon-parallel-executor" +"download_count": 145042, +"project": "stringbender" }, { -"download_count": 93395, -"project": "colcon-output" +"download_count": 144992, +"project": "pyobjc-framework-corespotlight" }, { -"download_count": 93366, -"project": "whois" +"download_count": 144889, +"project": "python-mecab-ko" }, { -"download_count": 93348, -"project": "anymarkup-core" +"download_count": 144885, +"project": "pyobjc-framework-localauthentication" }, { -"download_count": 93347, -"project": "aristaproto" +"download_count": 144819, +"project": "pyobjc-framework-gameplaykit" }, { -"download_count": 93297, -"project": "sphinx-lint" +"download_count": 144769, +"project": "voyageai" }, { -"download_count": 93289, -"project": "colcon-pkg-config" +"download_count": 144763, +"project": "pyobjc-framework-externalaccessory" }, { -"download_count": 93271, -"project": "cornice" +"download_count": 144718, +"project": "openvds" }, { -"download_count": 93249, -"project": "growthbook" +"download_count": 144653, +"project": "mcrcon" }, { -"download_count": 93235, -"project": "colcon-package-selection" +"download_count": 144605, +"project": "pyodata" }, { -"download_count": 93215, -"project": "json-flatten" +"download_count": 144599, +"project": "pyobjc-framework-securityfoundation" }, { -"download_count": 93204, -"project": "str2bool" +"download_count": 144586, +"project": "orb-billing" }, { -"download_count": 93194, -"project": "colcon-metadata" +"download_count": 144573, +"project": "jupyter-leaflet" }, { -"download_count": 93081, -"project": "gruut-lang-es" +"download_count": 144559, +"project": "pybind11-stubgen" }, { -"download_count": 93008, -"project": "vici" +"download_count": 144513, +"project": "ipyfilechooser" }, { -"download_count": 92969, -"project": "anymarkup" +"download_count": 144473, +"project": "cirq-ionq" }, { -"download_count": 92957, -"project": "gruut" +"download_count": 144381, +"project": "pyrender" }, { -"download_count": 92934, -"project": "spconv-cu120" +"download_count": 144367, +"project": "pymupdf4llm" }, { -"download_count": 92933, -"project": "pastescript" +"download_count": 144353, +"project": "icu" }, { -"download_count": 92923, -"project": "manifestoo-core" +"download_count": 144321, +"project": "bag" }, { -"download_count": 92916, -"project": "dash-renderer" +"download_count": 144315, +"project": "uptime" }, { -"download_count": 92874, -"project": "ttp-templates" +"download_count": 144299, +"project": "tabulator" }, { -"download_count": 92849, -"project": "logtail-python" +"download_count": 144299, +"project": "hookery" }, { -"download_count": 92800, -"project": "pytrec-eval-terrier" +"download_count": 144279, +"project": "django-browser-reload" }, { -"download_count": 92784, -"project": "ebooklib" +"download_count": 144084, +"project": "uharfbuzz" }, { -"download_count": 92738, -"project": "kivy-deps-sdl2" +"download_count": 144058, +"project": "jose" }, { -"download_count": 92622, -"project": "trainer" +"download_count": 144014, +"project": "pyobjc-framework-mediatoolbox" }, { -"download_count": 92581, -"project": "iniparse" +"download_count": 143990, +"project": "flytekitplugins-ray" }, { -"download_count": 92518, -"project": "kappa" +"download_count": 143969, +"project": "pyobjc-framework-opendirectory" }, { -"download_count": 92512, -"project": "cgroupspy" +"download_count": 143924, +"project": "pyobjc-framework-scriptingbridge" }, { -"download_count": 92503, -"project": "transformers-stream-generator" +"download_count": 143879, +"project": "loess" }, { -"download_count": 92456, -"project": "azureml-automl-runtime" +"download_count": 143836, +"project": "pyobjc-framework-gamecontroller" }, { -"download_count": 92447, -"project": "multiurl" +"download_count": 143811, +"project": "flytekitplugins-envd" }, { -"download_count": 92428, -"project": "docdata" +"download_count": 143800, +"project": "pyobjc-framework-videotoolbox" }, { -"download_count": 92254, -"project": "flask-opentracing" +"download_count": 143791, +"project": "pytest-test-groups" }, { -"download_count": 92237, -"project": "pdqhash" +"download_count": 143763, +"project": "selenium-page-factory" }, { -"download_count": 92205, -"project": "nuscenes-devkit" +"download_count": 143704, +"project": "apiflask" }, { -"download_count": 92199, -"project": "pedalboard" +"download_count": 143687, +"project": "sfsimodels" }, { -"download_count": 92146, -"project": "supermorecado" +"download_count": 143651, +"project": "iminuit" }, { -"download_count": 92080, -"project": "types-filelock" +"download_count": 143529, +"project": "spur" }, { -"download_count": 92073, -"project": "jupyter-book" +"download_count": 143517, +"project": "wxpython" }, { -"download_count": 91948, -"project": "pylatex" +"download_count": 143511, +"project": "boilerpy3" }, { -"download_count": 91875, -"project": "aqtp" +"download_count": 143491, +"project": "bpyutils" }, { -"download_count": 91857, -"project": "auto-gptq" +"download_count": 143459, +"project": "exrex" }, { -"download_count": 91818, -"project": "wait-for-it" +"download_count": 143395, +"project": "pyobjc-framework-social" }, { -"download_count": 91807, -"project": "docopts" +"download_count": 143365, +"project": "pyhdfe" }, { -"download_count": 91805, -"project": "ipyslickgrid" +"download_count": 143332, +"project": "pytest-describe" }, { -"download_count": 91779, -"project": "elabjournal" +"download_count": 143326, +"project": "apache-airflow-providers-apache-drill" }, { -"download_count": 91745, -"project": "zhon" +"download_count": 143321, +"project": "singlestoredb" }, { -"download_count": 91714, -"project": "niquests" +"download_count": 143314, +"project": "pyobjc-framework-usernotifications" }, { -"download_count": 91677, -"project": "djangoql" +"download_count": 143198, +"project": "plotbin" }, { -"download_count": 91670, -"project": "rigelcore" +"download_count": 143196, +"project": "pyuegc" }, { -"download_count": 91660, -"project": "desert" +"download_count": 143185, +"project": "rtoml" }, { -"download_count": 91649, -"project": "snitun" +"download_count": 143159, +"project": "taming-transformers" }, { -"download_count": 91626, -"project": "redmail" +"download_count": 143076, +"project": "marrow-interface" }, { -"download_count": 91604, -"project": "proxy-tools" +"download_count": 143009, +"project": "blackfire" }, { -"download_count": 91599, -"project": "pylsl" +"download_count": 142944, +"project": "bentoml" }, { -"download_count": 91534, -"project": "httpsig" +"download_count": 142861, +"project": "pyobjc-framework-mediaplayer" }, { -"download_count": 91482, -"project": "fastapi-azure-auth" +"download_count": 142858, +"project": "pyobjc-framework-medialibrary" }, { -"download_count": 91453, -"project": "colorspacious" +"download_count": 142856, +"project": "meltanolabs-target-snowflake" }, { -"download_count": 91407, -"project": "soundcard" +"download_count": 142840, +"project": "pyobjc-framework-dictionaryservices" }, { -"download_count": 91398, -"project": "adbc-driver-manager" +"download_count": 142823, +"project": "datetime-truncate" }, { -"download_count": 91398, -"project": "django-bootstrap-form" +"download_count": 142811, +"project": "pyobjc-framework-cloudkit" }, { -"download_count": 91377, -"project": "bluetooth-data-tools" +"download_count": 142805, +"project": "airflow-clickhouse-plugin" }, { -"download_count": 91359, -"project": "codecov-cli" +"download_count": 142786, +"project": "pyobjc-framework-mediaaccessibility" }, { -"download_count": 91354, -"project": "ipyfilechooser" +"download_count": 142786, +"project": "pyobjc-framework-instantmessage" }, { -"download_count": 91323, -"project": "gruut-lang-fr" +"download_count": 142774, +"project": "pyobjc-framework-iosurface" }, { -"download_count": 91278, -"project": "abacusai" +"download_count": 142763, +"project": "dacktool" }, { -"download_count": 91275, -"project": "openupgradelib" +"download_count": 142751, +"project": "hiyapyco" }, { -"download_count": 91242, -"project": "pyflux" +"download_count": 142740, +"project": "azure-mgmt-databricks" }, { -"download_count": 91226, -"project": "vaex-core" +"download_count": 142739, +"project": "pyobjc-framework-ituneslibrary" }, { -"download_count": 91224, -"project": "wassima" +"download_count": 142714, +"project": "aceye" }, { -"download_count": 91214, -"project": "iyzipay" +"download_count": 142556, +"project": "power-grid-model" }, { -"download_count": 91211, -"project": "rigel-hpl" +"download_count": 142472, +"project": "tskit" }, { -"download_count": 91197, -"project": "notify-py" +"download_count": 142386, +"project": "razorpay" }, { -"download_count": 91193, -"project": "basepair" +"download_count": 142380, +"project": "pysnmpcrypto" }, { -"download_count": 91179, -"project": "wikipedia-api" +"download_count": 142343, +"project": "plugp100" }, { -"download_count": 91146, -"project": "iminuit" +"download_count": 142338, +"project": "mondrian" }, { -"download_count": 91134, -"project": "pytest-coverage" +"download_count": 142305, +"project": "aiohttp-fast-url-dispatcher" }, { -"download_count": 91118, -"project": "pulp-glue" +"download_count": 142290, +"project": "print-color" }, { -"download_count": 91105, -"project": "no-implicit-optional" +"download_count": 142266, +"project": "django-jsonform" }, { -"download_count": 91099, -"project": "sparkpost" +"download_count": 142260, +"project": "drug-named-entity-recognition" }, { -"download_count": 91085, -"project": "cumm-cu120" +"download_count": 142217, +"project": "lion-pytorch" }, { -"download_count": 90999, -"project": "sshconf" +"download_count": 142180, +"project": "html5lib-modern" }, { -"download_count": 90925, -"project": "django-apscheduler" +"download_count": 142144, +"project": "roffio" }, { -"download_count": 90907, -"project": "bluetooth-auto-recovery" +"download_count": 142141, +"project": "ebooklib" }, { -"download_count": 90843, -"project": "pvxslibs" +"download_count": 142089, +"project": "geode-background" }, { -"download_count": 90818, -"project": "tflite-support" +"download_count": 142070, +"project": "pypandoc-binary" }, { -"download_count": 90799, -"project": "plette" +"download_count": 142064, +"project": "phonetics" }, { -"download_count": 90783, -"project": "opentelemetry-exporter-gcp-monitoring" +"download_count": 142038, +"project": "trufflehog3" }, { -"download_count": 90783, -"project": "globre" +"download_count": 142033, +"project": "aiojobs" }, { -"download_count": 90736, -"project": "retina-face" +"download_count": 142026, +"project": "pyobjc-framework-businesschat" }, { -"download_count": 90736, -"project": "azureml-train" +"download_count": 141993, +"project": "firebolt-sdk" }, { -"download_count": 90604, -"project": "opensearch-logger" +"download_count": 141869, +"project": "types-aiobotocore-sns" }, { -"download_count": 90589, -"project": "instructorembedding" +"download_count": 141836, +"project": "g2pkk" }, { -"download_count": 90534, -"project": "pandas-redshift" +"download_count": 141793, +"project": "pyobjc-framework-adsupport" }, { -"download_count": 90495, -"project": "databricks-mosaic" +"download_count": 141767, +"project": "pyobjc-framework-inputmethodkit" }, { -"download_count": 90438, -"project": "ps-mem" +"download_count": 141703, +"project": "pyobjc-framework-videosubscriberaccount" }, { -"download_count": 90430, -"project": "bigtree" +"download_count": 141596, +"project": "xdis" }, { -"download_count": 90411, -"project": "graphene-file-upload" +"download_count": 141584, +"project": "moment" }, { -"download_count": 90368, -"project": "pynwb" +"download_count": 141435, +"project": "pytest-markdown-docs" }, { -"download_count": 90348, -"project": "pymupdf4llm" +"download_count": 141419, +"project": "postgres" }, { -"download_count": 90316, -"project": "pynmeagps" +"download_count": 141391, +"project": "pypi-timemachine" }, { -"download_count": 90268, -"project": "quaternion" +"download_count": 141348, +"project": "veracode-api-signing" }, { -"download_count": 90259, -"project": "selenium-screenshot" +"download_count": 141346, +"project": "seeq" }, { -"download_count": 90228, -"project": "pilgram" +"download_count": 141288, +"project": "mtcnn" }, { -"download_count": 90177, -"project": "packed" +"download_count": 141226, +"project": "rtp" }, { -"download_count": 90095, -"project": "aioprometheus" +"download_count": 141192, +"project": "python-nmap" }, { -"download_count": 90087, -"project": "nlopt" +"download_count": 141123, +"project": "robyn" }, { -"download_count": 90082, -"project": "allure-combine" +"download_count": 141060, +"project": "ssh-python" }, { -"download_count": 90039, -"project": "wadllib" +"download_count": 141052, +"project": "pyppeteer2" }, { -"download_count": 89995, -"project": "datadogpy" +"download_count": 140943, +"project": "mrjob" }, { -"download_count": 89950, -"project": "dtale" +"download_count": 140858, +"project": "whistle" }, { -"download_count": 89933, -"project": "btsocket" +"download_count": 140760, +"project": "pybind11-global" }, { -"download_count": 89870, -"project": "gkeepapi" +"download_count": 140759, +"project": "flask-flatpages" }, { -"download_count": 89854, -"project": "aioftp" +"download_count": 140721, +"project": "flake8-tuple" }, { -"download_count": 89836, -"project": "pygeoif" +"download_count": 140682, +"project": "dash-daq" }, { -"download_count": 89835, -"project": "botbuilder-core" +"download_count": 140664, +"project": "mozterm" }, { -"download_count": 89815, -"project": "pgdb" +"download_count": 140635, +"project": "lockattrs" }, { -"download_count": 89735, +"download_count": 140609, "project": "pytest-embedded" }, { -"download_count": 89716, -"project": "rdflib-jsonld" -}, -{ -"download_count": 89715, -"project": "config-parser" +"download_count": 140584, +"project": "pyldavis" }, { -"download_count": 89660, -"project": "aider-chat" +"download_count": 140580, +"project": "minify-html" }, { -"download_count": 89603, -"project": "punpy" +"download_count": 140541, +"project": "pscript" }, { -"download_count": 89564, -"project": "comet-maths" +"download_count": 140512, +"project": "chromedriver-binary" }, { -"download_count": 89557, -"project": "civis" +"download_count": 140508, +"project": "langkit" }, { -"download_count": 89553, -"project": "fs-sshfs" +"download_count": 140449, +"project": "pysparkip" }, { -"download_count": 89531, -"project": "django-filer" +"download_count": 140443, +"project": "randomwords" }, { -"download_count": 89513, -"project": "ipadic" +"download_count": 140400, +"project": "telegram" }, { -"download_count": 89447, -"project": "momepy" +"download_count": 140357, +"project": "django-haystack" }, { -"download_count": 89434, -"project": "django-datadog-logger" +"download_count": 140314, +"project": "epics-pypdb" }, { -"download_count": 89432, -"project": "pytorch-msssim" +"download_count": 140269, +"project": "edit-distance" }, { -"download_count": 89408, -"project": "pyproject-toml" +"download_count": 140187, +"project": "cwltool" }, { -"download_count": 89391, -"project": "flagembedding" +"download_count": 140093, +"project": "sparkpost" }, { -"download_count": 89362, -"project": "stldecompose" +"download_count": 140079, +"project": "pyresample" }, { -"download_count": 89312, -"project": "rtry" +"download_count": 140044, +"project": "salesforce-api" }, { -"download_count": 89302, -"project": "pyink" +"download_count": 139927, +"project": "config-formatter" }, { -"download_count": 89250, -"project": "plotext" +"download_count": 139909, +"project": "ascvd" }, { -"download_count": 89245, -"project": "pydateinfer" +"download_count": 139899, +"project": "apache-airflow-providers-microsoft-psrp" }, { -"download_count": 89180, -"project": "thoth-storages" +"download_count": 139877, +"project": "colorspacious" }, { -"download_count": 89175, -"project": "flask-misaka" +"download_count": 139827, +"project": "pyfftw" }, { -"download_count": 89146, -"project": "thoth-license-solver" +"download_count": 139820, +"project": "salesforce-cdp-connector" }, { -"download_count": 89115, -"project": "datatile" +"download_count": 139809, +"project": "pyre-check" }, { -"download_count": 89063, -"project": "owslib" +"download_count": 139736, +"project": "dedupe" }, { -"download_count": 89021, -"project": "dagster-databricks" +"download_count": 139702, +"project": "donfig" }, { -"download_count": 89015, -"project": "unicode" +"download_count": 139697, +"project": "spacy-alignments" }, { -"download_count": 88959, -"project": "retry-requests" +"download_count": 139664, +"project": "google-gax" }, { -"download_count": 88892, -"project": "flake8-pydocstyle" +"download_count": 139657, +"project": "foxglove-schemas-protobuf" }, { -"download_count": 88855, -"project": "reacton" +"download_count": 139645, +"project": "colormath" }, { -"download_count": 88837, -"project": "sphinx-toggleprompt" +"download_count": 139620, +"project": "kylinpy" }, { -"download_count": 88821, -"project": "pysed" +"download_count": 139538, +"project": "simpleruleengine" }, { -"download_count": 88814, -"project": "mypy-boto3-ds-data" +"download_count": 139450, +"project": "pynwb" }, { -"download_count": 88798, -"project": "substrate-interface" +"download_count": 139346, +"project": "contextily" }, { -"download_count": 88781, -"project": "ai21" +"download_count": 139272, +"project": "sqlacodegen" }, { -"download_count": 88777, -"project": "ta-lib" +"download_count": 139249, +"project": "mongomock-motor" }, { -"download_count": 88734, -"project": "transformer-smaller-training-vocab" +"download_count": 139220, +"project": "oslo-messaging" }, { -"download_count": 88733, -"project": "pubnub" +"download_count": 139197, +"project": "pyobjc-framework-collaboration" }, { -"download_count": 88733, -"project": "p4p" +"download_count": 139179, +"project": "pypcd4" }, { -"download_count": 88732, -"project": "runtests" +"download_count": 139165, +"project": "nvidia-nvjpeg-cu12" }, { -"download_count": 88700, -"project": "pycalverter" +"download_count": 139158, +"project": "pansi" }, { -"download_count": 88699, -"project": "zulip" +"download_count": 139095, +"project": "cloud-volume" }, { -"download_count": 88678, -"project": "graphql-server-core" +"download_count": 139093, +"project": "basemap" }, { -"download_count": 88674, -"project": "sqlalchemy-utc" +"download_count": 139017, +"project": "python-i18n" }, { -"download_count": 88558, -"project": "jose" +"download_count": 138924, +"project": "pyobjc-framework-calendarstore" }, { -"download_count": 88554, -"project": "homebase" +"download_count": 138923, +"project": "adbutils" }, { -"download_count": 88506, -"project": "alibabacloud-tea-util" +"download_count": 138905, +"project": "rapids-dependency-file-generator" }, { -"download_count": 88460, -"project": "aws-cdk-aws-fsx" +"download_count": 138818, +"project": "angr" }, { -"download_count": 88392, -"project": "python-documentcloud" +"download_count": 138795, +"project": "syllapy" }, { -"download_count": 88391, -"project": "alibabacloud-credentials" +"download_count": 138770, +"project": "aiotask-context" }, { -"download_count": 88389, -"project": "pyctcdecode" +"download_count": 138768, +"project": "types-reportlab" }, { -"download_count": 88372, -"project": "listcrunch" +"download_count": 138752, +"project": "zappa" }, { -"download_count": 88316, -"project": "docstr-coverage" +"download_count": 138723, +"project": "hatch-cython" }, { -"download_count": 88141, -"project": "code-annotations" +"download_count": 138723, +"project": "wassima" }, { -"download_count": 88140, -"project": "spark-testing-base" +"download_count": 138719, +"project": "esp-idf-monitor" }, { -"download_count": 88105, -"project": "ydf" +"download_count": 138638, +"project": "rockset" }, { -"download_count": 88062, -"project": "odoo-test-helper" +"download_count": 138593, +"project": "pytest-embedded-serial" }, { -"download_count": 88039, -"project": "graphframes-latest" +"download_count": 138547, +"project": "sudachidict-full" }, { -"download_count": 88028, -"project": "modelcards" +"download_count": 138535, +"project": "tfa-nightly" }, { -"download_count": 88013, -"project": "trame" +"download_count": 138486, +"project": "visdom" }, { -"download_count": 87989, -"project": "geckodriver-autoinstaller" +"download_count": 138398, +"project": "apache-airflow-providers-teradata" }, { -"download_count": 87980, -"project": "mypy-boto3-marketplace-reporting" +"download_count": 138323, +"project": "paradime-io" }, { -"download_count": 87979, -"project": "kivy-deps-angle" +"download_count": 138318, +"project": "dracopy" }, { -"download_count": 87958, -"project": "df2gspread" +"download_count": 138311, +"project": "amazon-textract-textractor" }, { -"download_count": 87942, -"project": "pytest-test-groups" +"download_count": 138305, +"project": "flask-mongoengine" }, { -"download_count": 87941, -"project": "dbt-sqlserver" +"download_count": 138291, +"project": "pip-with-requires-python" }, { -"download_count": 87937, -"project": "pytest-describe" +"download_count": 138227, +"project": "django-dbbackup" }, { -"download_count": 87904, -"project": "pyfftw" +"download_count": 138197, +"project": "luhn" }, { -"download_count": 87900, -"project": "bioregistry" +"download_count": 138158, +"project": "swagger-ui-py" }, { -"download_count": 87884, -"project": "storable" +"download_count": 138155, +"project": "edge-tts" }, { -"download_count": 87874, -"project": "arcgis2geojson" +"download_count": 138151, +"project": "apache-airflow-providers-openfaas" }, { -"download_count": 87873, -"project": "typesystem" +"download_count": 138117, +"project": "cirq-aqt" }, { -"download_count": 87854, -"project": "astatine" +"download_count": 138088, +"project": "ruff-lsp" }, { -"download_count": 87803, -"project": "jhi-databricksenvironment" +"download_count": 138042, +"project": "owslib" }, { -"download_count": 87663, -"project": "pyddq" +"download_count": 138003, +"project": "cirq-rigetti" }, { -"download_count": 87591, -"project": "cosmospy-protobuf" +"download_count": 137941, +"project": "dataengine" }, { -"download_count": 87588, -"project": "msgpack-types" +"download_count": 137774, +"project": "pydlt" }, { -"download_count": 87576, -"project": "mediate" +"download_count": 137773, +"project": "collectfast" }, { -"download_count": 87561, -"project": "roster" +"download_count": 137768, +"project": "lap" }, { -"download_count": 87557, -"project": "haystack-pydoc-tools" +"download_count": 137685, +"project": "www-authenticate" }, { -"download_count": 87550, -"project": "ebaysdk" +"download_count": 137640, +"project": "pymobiledetect" }, { -"download_count": 87549, -"project": "kivy-deps-glew" +"download_count": 137609, +"project": "msprime" }, { -"download_count": 87526, -"project": "pandas-summary" +"download_count": 137562, +"project": "arcticdb" }, { -"download_count": 87525, -"project": "sphinx-thebe" +"download_count": 137561, +"project": "pymongocrypt" }, { -"download_count": 87453, -"project": "py-dmidecode" +"download_count": 137541, +"project": "drf-standardized-errors" }, { -"download_count": 87437, -"project": "pytest-embedded-serial" +"download_count": 137412, +"project": "adafruit-platformdetect" }, { -"download_count": 87399, -"project": "dictknife" +"download_count": 137360, +"project": "dlint" }, { -"download_count": 87378, -"project": "asdf-astropy" +"download_count": 137311, +"project": "nvidia-nvjpeg2k-cu12" }, { -"download_count": 87324, -"project": "mcap-ros1-support" +"download_count": 137303, +"project": "atlasclient" }, { -"download_count": 87316, -"project": "types-pywin32" +"download_count": 137262, +"project": "splinter" }, { -"download_count": 87316, -"project": "tlslite-ng" +"download_count": 137238, +"project": "py-money" }, { -"download_count": 87315, -"project": "browser-cookie3" +"download_count": 137191, +"project": "azure-ai-contentsafety" }, { -"download_count": 87311, -"project": "fastremap" +"download_count": 137143, +"project": "flake8-use-pathlib" }, { -"download_count": 87210, -"project": "pycel" +"download_count": 137097, +"project": "dataclass-csv" }, { -"download_count": 87176, -"project": "notify2" +"download_count": 136975, +"project": "mink" }, { -"download_count": 87152, -"project": "aws-parallelcluster" +"download_count": 136879, +"project": "proto-google-cloud-datastore-v1" }, { -"download_count": 87142, -"project": "vonage" +"download_count": 136802, +"project": "ecmwflibs" }, { -"download_count": 87098, -"project": "geometry3d" +"download_count": 136796, +"project": "cmreshandler" }, { -"download_count": 87095, -"project": "pypeln" +"download_count": 136780, +"project": "stream-zip" }, { -"download_count": 87090, -"project": "proxy-db" +"download_count": 136746, +"project": "grep-ast" }, { -"download_count": 87090, -"project": "alpinepkgs" +"download_count": 136714, +"project": "pluginlib" }, { -"download_count": 87078, -"project": "equinox" +"download_count": 136673, +"project": "pytest-embedded-serial-esp" }, { -"download_count": 87066, -"project": "alibabacloud-openapi-util" +"download_count": 136479, +"project": "pytest-embedded-idf" }, { -"download_count": 86973, -"project": "llama-index-embeddings-bedrock" +"download_count": 136448, +"project": "atomic-bomb-engine" }, { -"download_count": 86891, -"project": "django-types" +"download_count": 136351, +"project": "ncnn" }, { -"download_count": 86855, -"project": "ghstack" +"download_count": 136321, +"project": "django-crontab" }, { -"download_count": 86828, -"project": "python-sonarqube-api" +"download_count": 136236, +"project": "cirq-web" }, { -"download_count": 86786, -"project": "asdf-coordinates-schemas" +"download_count": 136232, +"project": "pydivert" }, { -"download_count": 86726, -"project": "blowfish" +"download_count": 136204, +"project": "lusid-sdk-preview" }, { -"download_count": 86688, -"project": "django-linear-migrations" +"download_count": 136188, +"project": "func-argparse" }, { -"download_count": 86680, -"project": "pyplexity" +"download_count": 136126, +"project": "angreal" }, { -"download_count": 86639, -"project": "nostradamus" +"download_count": 136110, +"project": "pulumi-random" }, { -"download_count": 86625, -"project": "rwslib" +"download_count": 136026, +"project": "laces" }, { -"download_count": 86623, -"project": "theano" +"download_count": 135981, +"project": "surpyval" }, { -"download_count": 86612, -"project": "ipydatawidgets" +"download_count": 135947, +"project": "texterrors" }, { -"download_count": 86574, -"project": "openmetadata-ingestion" +"download_count": 135931, +"project": "django-rest-polymorphic" }, { -"download_count": 86568, -"project": "dataclasses-json-speakeasy" +"download_count": 135927, +"project": "oslo-db" }, { -"download_count": 86509, -"project": "torchfcpe" +"download_count": 135923, +"project": "logfire" }, { -"download_count": 86489, -"project": "bumpver" +"download_count": 135922, +"project": "pygtail" }, { -"download_count": 86485, -"project": "xclim" +"download_count": 135920, +"project": "pygeoif" }, { -"download_count": 86472, -"project": "datalab" +"download_count": 135902, +"project": "c2cciutils" }, { -"download_count": 86460, -"project": "ctgan" +"download_count": 135891, +"project": "aiohttp-zlib-ng" }, { -"download_count": 86382, -"project": "optimum-quanto" +"download_count": 135874, +"project": "pgmpy" }, { -"download_count": 86330, -"project": "fastapi-restful" +"download_count": 135859, +"project": "arq" }, { -"download_count": 86262, -"project": "typos" +"download_count": 135748, +"project": "htpasswd" }, { -"download_count": 86176, -"project": "qbittorrent-api" +"download_count": 135745, +"project": "kml2geojson" }, { -"download_count": 86172, -"project": "datacorecommon" +"download_count": 135740, +"project": "cogapp" }, { -"download_count": 86169, -"project": "nevergrad" +"download_count": 135732, +"project": "google-events" }, { -"download_count": 86121, -"project": "nplusone" +"download_count": 135678, +"project": "waiter" }, { -"download_count": 86087, -"project": "dask-glm" +"download_count": 135580, +"project": "ai-edge-litert-nightly" }, { -"download_count": 86085, -"project": "dython" +"download_count": 135568, +"project": "django-postgres-extra" }, { -"download_count": 86073, -"project": "lexid" +"download_count": 135555, +"project": "antsibull-docs-parser" }, { -"download_count": 86041, -"project": "pytest-embedded-idf" +"download_count": 135181, +"project": "hubspot" }, { -"download_count": 85997, -"project": "pyspark-extension" +"download_count": 135165, +"project": "augmax" }, { -"download_count": 85988, -"project": "appdynamics" +"download_count": 135161, +"project": "aeppl-nightly" }, { -"download_count": 85987, -"project": "databricks-labs-lsql" +"download_count": 135104, +"project": "transformers-stream-generator" }, { -"download_count": 85985, -"project": "s3urls" +"download_count": 135058, +"project": "dash-extensions" }, { -"download_count": 85958, -"project": "vcstool" +"download_count": 135030, +"project": "cdo-sdk-python" }, { -"download_count": 85838, -"project": "linearmodels" +"download_count": 134999, +"project": "range-key-dict" }, { -"download_count": 85809, -"project": "httpx-oauth" +"download_count": 134955, +"project": "english" }, { -"download_count": 85791, -"project": "tiktokapi" +"download_count": 134898, +"project": "azureml" }, { -"download_count": 85775, -"project": "prophecy-libs" +"download_count": 134894, +"project": "pybullet" }, { -"download_count": 85760, -"project": "linetools" +"download_count": 134874, +"project": "pyap" }, { -"download_count": 85760, -"project": "awxkit" +"download_count": 134844, +"project": "expiring-dict" }, { -"download_count": 85752, -"project": "telegram" +"download_count": 134807, +"project": "aioblescan" }, { -"download_count": 85655, -"project": "pan-os-python" +"download_count": 134796, +"project": "devpi-common" }, { -"download_count": 85577, -"project": "jh2" +"download_count": 134773, +"project": "numpy-stl" }, { -"download_count": 85570, -"project": "urlpath" +"download_count": 134741, +"project": "databricksapi" }, { -"download_count": 85546, -"project": "pymantic" +"download_count": 134710, +"project": "clamd" }, { -"download_count": 85505, -"project": "dash-ag-grid" +"download_count": 134616, +"project": "resfo" }, { -"download_count": 85504, -"project": "flake8-block-comment" +"download_count": 134522, +"project": "dagstermill" }, { -"download_count": 85492, -"project": "grnhse-api" +"download_count": 134493, +"project": "pytest-regressions" }, { -"download_count": 85476, -"project": "pureport-python" +"download_count": 134475, +"project": "otel-extensions" }, { -"download_count": 85467, -"project": "petname" +"download_count": 134433, +"project": "gekko" }, { -"download_count": 85464, -"project": "django-tenants" +"download_count": 134394, +"project": "smartypants" }, { -"download_count": 85395, -"project": "giddy" +"download_count": 134367, +"project": "mycdp" }, { -"download_count": 85393, -"project": "botframework-streaming" +"download_count": 134339, +"project": "vonage-jwt" }, { -"download_count": 85370, -"project": "sagemaker-pyspark" +"download_count": 134327, +"project": "pytest-embedded-qemu" }, { -"download_count": 85348, -"project": "bincopy" +"download_count": 134177, +"project": "apache-airflow-providers-yandex" }, { -"download_count": 85346, -"project": "pytest-embedded-serial-esp" +"download_count": 134139, +"project": "pymsalruntime" }, { -"download_count": 85338, -"project": "playwright-stealth" +"download_count": 134123, +"project": "setupmeta" }, { -"download_count": 85318, -"project": "ordered-enum" +"download_count": 134102, +"project": "dataclass-type-validator" }, { -"download_count": 85317, -"project": "sphinx-multitoc-numbering" +"download_count": 134084, +"project": "cnvrgv2" }, { -"download_count": 85317, -"project": "trio-chrome-devtools-protocol" +"download_count": 134074, +"project": "scikit-rf" }, { -"download_count": 85283, -"project": "swagger-ui-py" +"download_count": 134073, +"project": "interchange" }, { -"download_count": 85251, -"project": "pylti1p3" +"download_count": 134055, +"project": "demes" }, { -"download_count": 85251, -"project": "pyscard" +"download_count": 134029, +"project": "datawrapper" }, { -"download_count": 85240, -"project": "r7insight-python" +"download_count": 134004, +"project": "trame" }, { -"download_count": 85237, -"project": "customerio" +"download_count": 133911, +"project": "fs-azureblob" }, { -"download_count": 85186, -"project": "ddddocr" +"download_count": 133908, +"project": "airflow-code-editor" }, { -"download_count": 85177, -"project": "trufflehog" +"download_count": 133866, +"project": "pysra" }, { -"download_count": 85172, -"project": "amazon-textract-textractor" +"download_count": 133864, +"project": "reacton" }, { -"download_count": 85117, -"project": "flask-unittest" +"download_count": 133840, +"project": "oslo-policy" }, { -"download_count": 85087, -"project": "siphon" +"download_count": 133835, +"project": "powersimdata" }, { -"download_count": 85069, -"project": "demjson" +"download_count": 133649, +"project": "jarowinkler" }, { -"download_count": 85038, -"project": "sty" +"download_count": 133572, +"project": "asr-evaluation" }, { -"download_count": 85035, -"project": "pyinstrument-cext" +"download_count": 133552, +"project": "dane" }, { -"download_count": 85024, -"project": "e2b" +"download_count": 133386, +"project": "mkdocs-git-authors-plugin" }, { -"download_count": 84942, -"project": "onnx2tf" +"download_count": 133383, +"project": "whylabs-textstat" }, { -"download_count": 84939, -"project": "alibabacloud-endpoint-util" +"download_count": 133265, +"project": "py-machineid" }, { -"download_count": 84938, -"project": "django-jinja" +"download_count": 133263, +"project": "connected-components-3d" }, { -"download_count": 84935, -"project": "skforecast" +"download_count": 133238, +"project": "types-pysftp" }, { -"download_count": 84911, -"project": "py-bip39-bindings" +"download_count": 133228, +"project": "ghome-foyer-api" }, { -"download_count": 84816, -"project": "flake8-executable" +"download_count": 133223, +"project": "web-py" }, { -"download_count": 84790, -"project": "openqa-client" +"download_count": 133180, +"project": "django-dotenv" }, { -"download_count": 84779, -"project": "flake8-picky-parentheses" +"download_count": 133166, +"project": "geode-common" }, { -"download_count": 84702, -"project": "telnetlib3" +"download_count": 133137, +"project": "linuxpy" }, { -"download_count": 84700, -"project": "robotpy-wpiutil" +"download_count": 133105, +"project": "pytest-cover" }, { -"download_count": 84675, -"project": "pypandoc-binary" +"download_count": 133071, +"project": "pulumi-oci" }, { -"download_count": 84665, -"project": "jdatetime" +"download_count": 133066, +"project": "khanaa" }, { -"download_count": 84643, -"project": "pyad" +"download_count": 133048, +"project": "savepagenow" }, { -"download_count": 84642, -"project": "cwl-utils" +"download_count": 133025, +"project": "deltachat" }, { -"download_count": 84599, -"project": "simhash" +"download_count": 133021, +"project": "fal-client" }, { -"download_count": 84594, -"project": "schemathesis" +"download_count": 132986, +"project": "apache-airflow-providers-apache-hdfs" }, { -"download_count": 84552, -"project": "transformcl" +"download_count": 132967, +"project": "pyfaidx" }, { -"download_count": 84532, -"project": "exponent-server-sdk" +"download_count": 132955, +"project": "dj-stripe" }, { -"download_count": 84519, -"project": "promptflow-tools" +"download_count": 132952, +"project": "c7n-mailer" }, { -"download_count": 84452, -"project": "xarray-datatree" +"download_count": 132898, +"project": "weakrefmethod" }, { -"download_count": 84452, -"project": "djangorestframework-jsonapi" +"download_count": 132835, +"project": "apispec-oneofschema" }, { -"download_count": 84409, -"project": "py-ed25519-zebra-bindings" +"download_count": 132718, +"project": "disba" }, { -"download_count": 84385, -"project": "python-gerrit-api" +"download_count": 132675, +"project": "cirq-pasqal" }, { -"download_count": 84360, -"project": "mkdocs-git-authors-plugin" +"download_count": 132653, +"project": "sphinx-intl" }, { -"download_count": 84342, -"project": "keras-core" +"download_count": 132618, +"project": "redis-om" }, { -"download_count": 84311, -"project": "face-recognition-models" +"download_count": 132587, +"project": "levanter" }, { -"download_count": 84309, -"project": "ai21-tokenizer" +"download_count": 132464, +"project": "pyclickup" }, { -"download_count": 84305, -"project": "shutilwhich" +"download_count": 132386, +"project": "placebo" }, { -"download_count": 84304, -"project": "edlib" +"download_count": 132360, +"project": "mosaicml-streaming" }, { -"download_count": 84293, -"project": "simple-tornado" +"download_count": 132344, +"project": "pytiled-parser" }, { -"download_count": 84282, -"project": "environ" +"download_count": 132288, +"project": "pytest-tinybird" }, { -"download_count": 84263, -"project": "adafruit-blinka" +"download_count": 132213, +"project": "django-sass-processor" }, { -"download_count": 84249, -"project": "humbug" +"download_count": 132158, +"project": "asciimatics" }, { -"download_count": 84227, -"project": "mapply" +"download_count": 132153, +"project": "forbiddenfruit" }, { -"download_count": 84223, -"project": "solara" +"download_count": 132147, +"project": "pip-compile-multi" }, { -"download_count": 84221, -"project": "keras-cv" +"download_count": 132014, +"project": "testix" }, { -"download_count": 84127, -"project": "sweetener" +"download_count": 131951, +"project": "autovizwidget" }, { -"download_count": 84111, -"project": "pymqi" +"download_count": 131899, +"project": "fs-gcsfs" }, { -"download_count": 84084, -"project": "datasketches" +"download_count": 131890, +"project": "pulpcore-client" }, { -"download_count": 84066, -"project": "mediapy" +"download_count": 131889, +"project": "editdistpy" }, { -"download_count": 84045, +"download_count": 131847, "project": "pytest-redis" }, { -"download_count": 84031, -"project": "django-redis-cache" +"download_count": 131829, +"project": "pygitguardian" }, { -"download_count": 84021, -"project": "python-nmap" +"download_count": 131826, +"project": "jump-consistent-hash" }, { -"download_count": 84019, -"project": "logging-json" +"download_count": 131766, +"project": "kaldi-python-io" }, { -"download_count": 83994, -"project": "spyder-kernels" +"download_count": 131743, +"project": "mysql-connector-python-rf" }, { -"download_count": 83940, -"project": "strawberry-graphql-django" +"download_count": 131694, +"project": "bnunicodenormalizer" }, { -"download_count": 83936, -"project": "neologism" +"download_count": 131693, +"project": "flask-cloudflared" }, { -"download_count": 83916, -"project": "python-designateclient" +"download_count": 131644, +"project": "mlserver-mlflow" }, { -"download_count": 83908, -"project": "pytest-embedded-qemu" +"download_count": 131565, +"project": "duplocloud-client" }, { -"download_count": 83894, -"project": "apache-airflow-providers-asana" +"download_count": 131559, +"project": "hug" }, { -"download_count": 83888, -"project": "aws-cdk-aws-codepipeline" +"download_count": 131551, +"project": "py2neo-history" }, { -"download_count": 83861, -"project": "json2table" +"download_count": 131547, +"project": "ipytree" }, { -"download_count": 83850, -"project": "file-read-backwards" +"download_count": 131512, +"project": "wells" }, { -"download_count": 83848, -"project": "ec2instanceconnectcli" +"download_count": 131453, +"project": "types-click-spinner" }, { -"download_count": 83840, -"project": "pytkdocs" +"download_count": 131438, +"project": "onnx-graphsurgeon" }, { -"download_count": 83840, -"project": "azdev" +"download_count": 131438, +"project": "sas7bdat" }, { -"download_count": 83836, -"project": "reverse-geocode" +"download_count": 131410, +"project": "jupyter-dash" }, { -"download_count": 83720, -"project": "robotpy-wpimath" +"download_count": 131389, +"project": "secweb" }, { -"download_count": 83580, -"project": "django-etc" +"download_count": 131305, +"project": "python-bitcoinlib" }, { -"download_count": 83536, -"project": "pypg" +"download_count": 131272, +"project": "fuzzyfinder" }, { -"download_count": 83468, -"project": "wslwinreg" +"download_count": 131218, +"project": "gplearn" }, { -"download_count": 83396, -"project": "business-rules" +"download_count": 131166, +"project": "throttler" }, { -"download_count": 83393, -"project": "burger" +"download_count": 131140, +"project": "jax-jumpy" }, { -"download_count": 83390, -"project": "django-upgrade" +"download_count": 131135, +"project": "cdk-serverless-clamscan" }, { -"download_count": 83261, -"project": "nicknames" +"download_count": 131129, +"project": "loadimg" }, { -"download_count": 83250, -"project": "taskflow" +"download_count": 131088, +"project": "setoptconf" }, { -"download_count": 83224, -"project": "defcon" +"download_count": 131074, +"project": "dirhash" }, { -"download_count": 83221, -"project": "affinegap" +"download_count": 131055, +"project": "allennlp" }, { -"download_count": 83164, -"project": "openqasm3" +"download_count": 131044, +"project": "pyone" }, { -"download_count": 83154, -"project": "higlass-schema" +"download_count": 131027, +"project": "ipadic" }, { -"download_count": 83137, -"project": "load-dotenv" +"download_count": 130992, +"project": "trogon" }, { -"download_count": 83127, -"project": "mparticle" +"download_count": 130986, +"project": "tinynetrc" }, { -"download_count": 83119, -"project": "datadog-cdk-constructs-v2" +"download_count": 130978, +"project": "pyop" }, { -"download_count": 83082, -"project": "advertools" +"download_count": 130934, +"project": "ldap" }, { -"download_count": 83015, -"project": "scout-apm" +"download_count": 130920, +"project": "pdb-attach" }, { -"download_count": 83006, -"project": "elasticecshandler" +"download_count": 130836, +"project": "fastwarc" }, { -"download_count": 82969, -"project": "aws-cdk-aws-kinesisfirehose-destinations-alpha" +"download_count": 130779, +"project": "customerio" }, { -"download_count": 82951, -"project": "pyscf" +"download_count": 130709, +"project": "aws-cdk-aws-kinesisfirehose-destinations-alpha" }, { -"download_count": 82923, -"project": "hexdump" +"download_count": 130656, +"project": "pytest-shutil" }, { -"download_count": 82849, -"project": "grpcio-opentracing" +"download_count": 130643, +"project": "bed-reader" }, { -"download_count": 82821, -"project": "sailthru-client" +"download_count": 130573, +"project": "ropt-dakota" }, { -"download_count": 82809, -"project": "pygad" +"download_count": 130535, +"project": "devpi-client" }, { -"download_count": 82804, -"project": "torcheval" +"download_count": 130513, +"project": "srt" }, { -"download_count": 82784, -"project": "requests-async" +"download_count": 130479, +"project": "hail" }, { -"download_count": 82774, -"project": "magicalimport" +"download_count": 130459, +"project": "darts" }, { -"download_count": 82721, -"project": "matplotlib-venn" +"download_count": 130418, +"project": "jh2" }, { -"download_count": 82712, -"project": "sure" +"download_count": 130303, +"project": "openmetadata-ingestion" }, { -"download_count": 82675, -"project": "pyplugs" +"download_count": 130296, +"project": "python-magnumclient" }, { -"download_count": 82672, -"project": "george" +"download_count": 130282, +"project": "str2bool" }, { -"download_count": 82665, -"project": "pythreejs" +"download_count": 130219, +"project": "pyjavaproperties3" }, { -"download_count": 82651, -"project": "pickle-mixin" +"download_count": 130146, +"project": "betacal" }, { -"download_count": 82643, -"project": "gpy" +"download_count": 130133, +"project": "pytest-lazy-fixtures" }, { -"download_count": 82603, -"project": "logdna" +"download_count": 130125, +"project": "nuitka" }, { -"download_count": 82558, -"project": "contentful" +"download_count": 130118, +"project": "zi-api-auth-client" }, { -"download_count": 82526, -"project": "markdown-strings" +"download_count": 129981, +"project": "telnetlib3" }, { -"download_count": 82512, -"project": "ibmcloudant" +"download_count": 129937, +"project": "zhinst-timing-models" }, { -"download_count": 82508, -"project": "whisper-normalizer" +"download_count": 129928, +"project": "pystrata" }, { -"download_count": 82495, -"project": "chemicals" +"download_count": 129841, +"project": "lumigo-core" }, { -"download_count": 82407, -"project": "logutils" +"download_count": 129815, +"project": "bio-grumpy" }, { -"download_count": 82338, -"project": "hatch-jupyter-builder" +"download_count": 129648, +"project": "vbuild" }, { -"download_count": 82338, -"project": "qutip" +"download_count": 129523, +"project": "cachier" }, { -"download_count": 82334, -"project": "azure-appconfiguration-provider" +"download_count": 129475, +"project": "django-pandas" }, { -"download_count": 82319, -"project": "fbscribelogger" +"download_count": 129442, +"project": "tgi" }, { -"download_count": 82311, -"project": "frontend" +"download_count": 129393, +"project": "httpsig" }, { -"download_count": 82299, -"project": "servir" +"download_count": 129386, +"project": "elasticsearch5" }, { -"download_count": 82296, -"project": "idf-build-apps" +"download_count": 129345, +"project": "xvfbwrapper" }, { -"download_count": 82214, -"project": "localconfig" +"download_count": 129182, +"project": "sphinxcontrib-redoc" }, { -"download_count": 82206, -"project": "tryingsnake" +"download_count": 129156, +"project": "snakemake" }, { -"download_count": 82064, -"project": "chromedriver-py" +"download_count": 129093, +"project": "wired" }, { -"download_count": 82055, -"project": "chacha20poly1305-reuseable" +"download_count": 129059, +"project": "styleframe" }, { -"download_count": 82054, -"project": "sphinx-jupyterbook-latex" +"download_count": 129010, +"project": "abess" }, { -"download_count": 82022, -"project": "uwsgitop" +"download_count": 129002, +"project": "pi" }, { -"download_count": 81970, -"project": "aws-cdk-aws-kinesisfirehose-alpha" +"download_count": 128983, +"project": "oslo-service" }, { -"download_count": 81914, -"project": "sng4onnx" +"download_count": 128935, +"project": "openpyxl-stubs" }, { -"download_count": 81825, -"project": "validate-docbr" +"download_count": 128882, +"project": "cypari2" }, { -"download_count": 81798, -"project": "molecule-docker" +"download_count": 128874, +"project": "intake" }, { -"download_count": 81765, -"project": "zhdate" +"download_count": 128846, +"project": "pytest-coverage" }, { -"download_count": 81750, -"project": "efficientnet" +"download_count": 128831, +"project": "yolov5" }, { -"download_count": 81724, -"project": "mkdocs-jupyter" +"download_count": 128802, +"project": "pyrad" }, { -"download_count": 81700, -"project": "mwtextextractor" +"download_count": 128711, +"project": "chacha20poly1305-reuseable" }, { -"download_count": 81669, -"project": "django-sequences" +"download_count": 128650, +"project": "apngasm-python" }, { -"download_count": 81628, -"project": "bash" +"download_count": 128648, +"project": "molotov" }, { -"download_count": 81621, -"project": "multiversx-sdk-core" +"download_count": 128580, +"project": "cocotb" }, { -"download_count": 81599, -"project": "drf-flex-fields" +"download_count": 128547, +"project": "flake8-todo" }, { -"download_count": 81498, -"project": "edx-drf-extensions" +"download_count": 128527, +"project": "pdfreader" }, { -"download_count": 81470, -"project": "datetype" +"download_count": 128498, +"project": "pyzed" }, { -"download_count": 81442, -"project": "phaxio" +"download_count": 128493, +"project": "amazon-braket-sdk" }, { -"download_count": 81400, -"project": "interruptingcow" +"download_count": 128413, +"project": "twisted-iocpsupport" }, { -"download_count": 81394, -"project": "onnx2torch" +"download_count": 128295, +"project": "rasterstats" }, { -"download_count": 81377, -"project": "eight" +"download_count": 128259, +"project": "paragami" }, { -"download_count": 81373, -"project": "jedi-language-server" +"download_count": 128225, +"project": "rsconnect-python" }, { -"download_count": 81352, -"project": "ctadirac" +"download_count": 128143, +"project": "django-cache-memoize" }, { -"download_count": 81322, -"project": "pyntcore" +"download_count": 128139, +"project": "stochopy" }, { -"download_count": 81277, -"project": "libipld" +"download_count": 128139, +"project": "translators" }, { -"download_count": 81203, -"project": "xmlsig" +"download_count": 128006, +"project": "verlib2" }, { -"download_count": 81188, -"project": "google-gax" +"download_count": 127985, +"project": "unionmeta-byoc" }, { -"download_count": 81161, -"project": "abnf" +"download_count": 127962, +"project": "types-aws-xray-sdk" }, { -"download_count": 81160, -"project": "skqulacs" +"download_count": 127941, +"project": "bigdl-chronos" }, { -"download_count": 81154, -"project": "robotpy-wpinet" +"download_count": 127867, +"project": "aws-cdk-aws-fsx" }, { -"download_count": 81091, -"project": "aws-cdk-aws-kinesisfirehose" +"download_count": 127796, +"project": "airportsdata" }, { -"download_count": 81073, -"project": "numpy-stl" +"download_count": 127789, +"project": "python-math" }, { -"download_count": 81059, -"project": "xminds" +"download_count": 127780, +"project": "scantree" }, { -"download_count": 81031, -"project": "pydeps" +"download_count": 127697, +"project": "usercloudssdk" }, { -"download_count": 80978, -"project": "ffmpegio" +"download_count": 127687, +"project": "colpali-engine" }, { -"download_count": 80917, -"project": "pythonpsi" +"download_count": 127682, +"project": "aws-packages" }, { -"download_count": 80915, -"project": "cronex" +"download_count": 127628, +"project": "pytest-slack" }, { -"download_count": 80907, -"project": "wpilib" +"download_count": 127617, +"project": "jaraco-logging" }, { -"download_count": 80894, -"project": "alibabacloud-gateway-spi" +"download_count": 127374, +"project": "datadiff" }, { -"download_count": 80875, -"project": "ffmpegio-core" +"download_count": 127287, +"project": "aws-cdk-aws-neptune-alpha" }, { -"download_count": 80831, -"project": "sphinx-comments" +"download_count": 127260, +"project": "aws-cdk-aws-kinesisfirehose-alpha" }, { -"download_count": 80825, -"project": "import-ipynb" +"download_count": 127224, +"project": "soda-core-bigquery" }, { -"download_count": 80785, -"project": "sdnotify" +"download_count": 127218, +"project": "python-must" }, { -"download_count": 80784, -"project": "robotpy-cli" +"download_count": 127171, +"project": "tkintermapview" }, { -"download_count": 80761, -"project": "spur" +"download_count": 127126, +"project": "python-mecab-ko-dic" }, { -"download_count": 80734, -"project": "hyperleaup" +"download_count": 127125, +"project": "trio-typing" }, { -"download_count": 80709, -"project": "akshare" +"download_count": 127014, +"project": "rethinkdb" }, { -"download_count": 80702, -"project": "py-healthcheck" +"download_count": 126998, +"project": "types-mysqlclient" }, { -"download_count": 80700, -"project": "couchdb" +"download_count": 126986, +"project": "percy" }, { -"download_count": 80688, -"project": "sarge" +"download_count": 126982, +"project": "zhinst-core" }, { -"download_count": 80666, -"project": "psd-tools" +"download_count": 126951, +"project": "hdijupyterutils" }, { -"download_count": 80663, -"project": "photutils" +"download_count": 126909, +"project": "streamlit-authenticator" }, { -"download_count": 80629, -"project": "inform" +"download_count": 126890, +"project": "django-utils-six" }, { -"download_count": 80625, -"project": "eip712" +"download_count": 126868, +"project": "tensorflow-macos" }, { -"download_count": 80617, -"project": "cufflinks" +"download_count": 126864, +"project": "flatpack" }, { -"download_count": 80614, -"project": "zope-index" +"download_count": 126856, +"project": "pytest-logger" }, { -"download_count": 80599, -"project": "pytest-emoji" +"download_count": 126783, +"project": "pytest-reraise" }, { -"download_count": 80595, -"project": "jarowinkler" +"download_count": 126710, +"project": "gluoncv" }, { -"download_count": 80591, -"project": "kiwipiepy-model" +"download_count": 126608, +"project": "pyproject-toml" }, { -"download_count": 80576, -"project": "toolium" +"download_count": 126587, +"project": "umf" }, { -"download_count": 80505, -"project": "pytubefix" +"download_count": 126572, +"project": "copulas" }, { -"download_count": 80460, -"project": "ahrs" +"download_count": 126463, +"project": "django-simple-captcha" }, { -"download_count": 80451, -"project": "pyrofork" +"download_count": 126437, +"project": "edk2-pytool-library" }, { -"download_count": 80439, -"project": "mscerts" +"download_count": 126406, +"project": "oschmod" }, { -"download_count": 80355, -"project": "atproto" +"download_count": 126367, +"project": "datastreampy" }, { -"download_count": 80308, -"project": "mitogen" +"download_count": 126310, +"project": "pylas" }, { -"download_count": 80282, -"project": "robotpy-hal" +"download_count": 126246, +"project": "sagemaker-scikit-learn-extension" }, { -"download_count": 80232, -"project": "pyshortcuts" +"download_count": 126239, +"project": "cruft" }, { -"download_count": 80205, -"project": "htmltools" +"download_count": 126199, +"project": "basedpyright" }, { -"download_count": 80198, -"project": "b2" +"download_count": 126097, +"project": "accelerator-toolbox" }, { -"download_count": 80180, -"project": "requests-auth" +"download_count": 126069, +"project": "pytest-grpc" }, { -"download_count": 80139, -"project": "pyrsmq" +"download_count": 126042, +"project": "bangla" }, { -"download_count": 80074, -"project": "aggdraw" +"download_count": 126020, +"project": "mteb" }, { -"download_count": 80044, -"project": "google-colab-shell" +"download_count": 125908, +"project": "docplex" }, { -"download_count": 80026, -"project": "pykd" +"download_count": 125862, +"project": "opencensus-ext-flask" }, { -"download_count": 80022, -"project": "alibabacloud-tea-xml" +"download_count": 125809, +"project": "islpy" }, { -"download_count": 80005, -"project": "python-dxf" +"download_count": 125799, +"project": "typesense" }, { -"download_count": 79992, -"project": "github-action-utils" +"download_count": 125785, +"project": "vermin" }, { -"download_count": 79954, -"project": "py-securestring" +"download_count": 125784, +"project": "conda" }, { -"download_count": 79947, -"project": "identity" +"download_count": 125777, +"project": "domaintools-api" }, { -"download_count": 79940, -"project": "opencensus-ext-sqlalchemy" +"download_count": 125760, +"project": "sanic-cors" }, { -"download_count": 79934, -"project": "ical" +"download_count": 125668, +"project": "climb" }, { -"download_count": 79908, -"project": "webdavclient3" +"download_count": 125409, +"project": "git-pylint-commit-hook" }, { -"download_count": 79872, -"project": "apache-airflow-providers-apache-cassandra" +"download_count": 125406, +"project": "findimports" }, { -"download_count": 79858, -"project": "flask-api" +"download_count": 125294, +"project": "apache-airflow-providers-apache-kylin" }, { -"download_count": 79852, -"project": "vk-api" +"download_count": 125262, +"project": "openseespy" }, { -"download_count": 79771, -"project": "ascii-magic" +"download_count": 125255, +"project": "libtmux" }, { -"download_count": 79680, -"project": "asn1ate" +"download_count": 125211, +"project": "opendatasets" }, { -"download_count": 79673, -"project": "pytest-pretty" +"download_count": 125093, +"project": "html-to-json" }, { -"download_count": 79655, -"project": "iden" +"download_count": 125084, +"project": "docling" }, { -"download_count": 79629, -"project": "multiline-log-formatter" +"download_count": 125063, +"project": "homebase" }, { -"download_count": 79612, -"project": "fontawesomefree" +"download_count": 125031, +"project": "onnxoptimizer" }, { -"download_count": 79589, -"project": "pycuda" +"download_count": 124998, +"project": "ghastoolkit" }, { -"download_count": 79564, -"project": "pynini" +"download_count": 124983, +"project": "sarif-tools" }, { -"download_count": 79554, -"project": "tf-agents" +"download_count": 124886, +"project": "apache-airflow-providers-dingding" }, { -"download_count": 79550, -"project": "ipinfo" +"download_count": 124886, +"project": "censys" }, { -"download_count": 79528, -"project": "minify-html" +"download_count": 124852, +"project": "nvgpu" }, { -"download_count": 79481, -"project": "automaton" +"download_count": 124825, +"project": "zodb3" }, { -"download_count": 79422, -"project": "deptry" +"download_count": 124747, +"project": "email" }, { -"download_count": 79390, -"project": "public" +"download_count": 124728, +"project": "phx-class-registry" }, { -"download_count": 79378, -"project": "edx-rest-api-client" +"download_count": 124683, +"project": "pylibiio" }, { -"download_count": 79371, -"project": "sagemaker-feature-store-pyspark" +"download_count": 124676, +"project": "django-bootstrap3" }, { -"download_count": 79331, -"project": "butterfree" +"download_count": 124640, +"project": "alphafold3-pytorch" }, { -"download_count": 79243, -"project": "fslpy" +"download_count": 124617, +"project": "auto-py-to-exe" }, { -"download_count": 79228, -"project": "scrapingbee" +"download_count": 124561, +"project": "ochre" }, { -"download_count": 79228, -"project": "aplr" +"download_count": 124400, +"project": "tbxi" }, { -"download_count": 79218, -"project": "iterfzf" +"download_count": 124359, +"project": "sdcclient" }, { -"download_count": 79218, -"project": "adafruit-pureio" +"download_count": 124340, +"project": "unsync" }, { -"download_count": 79215, -"project": "ocrmypdf" +"download_count": 124300, +"project": "ipinfo" }, { -"download_count": 79191, -"project": "farm-haystack" +"download_count": 124269, +"project": "ops-scenario" }, { -"download_count": 79179, -"project": "httplib2shim" +"download_count": 124236, +"project": "prefect-slack" }, { -"download_count": 79162, -"project": "daemonize" +"download_count": 124230, +"project": "gcloud-aio-datastore" }, { -"download_count": 79160, -"project": "kiss-headers" +"download_count": 124176, +"project": "yt" }, { -"download_count": 79115, -"project": "hype-html" +"download_count": 124160, +"project": "streamlit-antd-components" }, { -"download_count": 79088, -"project": "thermo" +"download_count": 124008, +"project": "hangul-romanize" }, { -"download_count": 79075, -"project": "mozdebug" +"download_count": 124003, +"project": "transparent-background" }, { -"download_count": 79031, -"project": "pytest-json" +"download_count": 124000, +"project": "taskcluster" }, { -"download_count": 78947, -"project": "generic-etl" +"download_count": 123946, +"project": "pytest-explicit" }, { -"download_count": 78932, -"project": "prefect-azure" +"download_count": 123941, +"project": "clip-anytorch" }, { -"download_count": 78846, -"project": "expiring-dict" +"download_count": 123667, +"project": "apache-airflow-providers-apache-pig" }, { -"download_count": 78841, -"project": "clize" +"download_count": 123628, +"project": "azureml-contrib-notebook" }, { -"download_count": 78837, -"project": "pylibiio" +"download_count": 123619, +"project": "plexapi" }, { -"download_count": 78835, -"project": "trame-client" +"download_count": 123597, +"project": "accelerator" }, { -"download_count": 78821, -"project": "django-deprecate-fields" +"download_count": 123530, +"project": "avalara" }, { -"download_count": 78807, -"project": "rasa-sdk" +"download_count": 123484, +"project": "frontend" }, { -"download_count": 78779, -"project": "pyasn" +"download_count": 123484, +"project": "oslo-middleware" }, { -"download_count": 78771, -"project": "normality" +"download_count": 123480, +"project": "irc" }, { -"download_count": 78763, -"project": "pulumi-kubernetes" +"download_count": 123465, +"project": "pycld2" }, { -"download_count": 78759, -"project": "caproto" +"download_count": 123425, +"project": "css-html-js-minify" }, { -"download_count": 78743, -"project": "fhirclient" +"download_count": 123424, +"project": "hyundai-kia-connect-api" }, { -"download_count": 78723, -"project": "musicbrainzngs" +"download_count": 123417, +"project": "pyad" }, { -"download_count": 78719, -"project": "http-ece" +"download_count": 123349, +"project": "apache-airflow-providers-apache-impala" }, { -"download_count": 78707, -"project": "cdktf" +"download_count": 123263, +"project": "pycln" }, { -"download_count": 78662, -"project": "pytest-timeouts" +"download_count": 123249, +"project": "boto3-stubs-full" }, { -"download_count": 78655, -"project": "magika" +"download_count": 123230, +"project": "rook" }, { -"download_count": 78566, -"project": "asv" +"download_count": 123217, +"project": "apache-airflow-providers-singularity" }, { -"download_count": 78562, -"project": "wkhtmltopdf" +"download_count": 122835, +"project": "pwntools" }, { -"download_count": 78560, -"project": "azure-storage-logging" +"download_count": 122763, +"project": "frida-tools" }, { -"download_count": 78558, -"project": "baby-steps" +"download_count": 122755, +"project": "mkdocs-d2-plugin" }, { -"download_count": 78532, -"project": "odo" +"download_count": 122705, +"project": "rfc8785" }, { -"download_count": 78528, -"project": "django-tailwind" +"download_count": 122638, +"project": "unavailable-object" }, { -"download_count": 78513, -"project": "pybigquery" +"download_count": 122604, +"project": "dash-auth" }, { -"download_count": 78476, -"project": "esda" +"download_count": 122590, +"project": "uwsgitop" }, { -"download_count": 78475, -"project": "einx" +"download_count": 122538, +"project": "bioutils" }, { -"download_count": 78431, -"project": "argparse-logging" +"download_count": 122518, +"project": "urllib3-future" }, { -"download_count": 78419, -"project": "aiocsv" +"download_count": 122517, +"project": "aind-data-schema" }, { -"download_count": 78404, -"project": "mteb" +"download_count": 122494, +"project": "tencentcloud-sdk-python-common" }, { -"download_count": 78400, -"project": "dashscope" +"download_count": 122488, +"project": "codecov-cli" }, { -"download_count": 78366, -"project": "spyder" +"download_count": 122478, +"project": "asyncio-atexit" }, { -"download_count": 78329, -"project": "unfoldnd" +"download_count": 122470, +"project": "aioregistry" }, { -"download_count": 78315, -"project": "py115j" +"download_count": 122464, +"project": "django-tenants" }, { -"download_count": 78296, -"project": "pyshacl" +"download_count": 122416, +"project": "ydb-dbapi" }, { -"download_count": 78282, -"project": "sqlmesh" +"download_count": 122228, +"project": "docx2pdf" }, { -"download_count": 78250, -"project": "pglast" +"download_count": 122203, +"project": "apache-airflow-providers-segment" }, { -"download_count": 78247, -"project": "vininfo" +"download_count": 122171, +"project": "htag" }, { -"download_count": 78167, -"project": "pecan" +"download_count": 122121, +"project": "rush" }, { -"download_count": 78158, -"project": "django-cachalot" +"download_count": 122092, +"project": "flask-cognito" }, { -"download_count": 78087, -"project": "nose-xunitmp" +"download_count": 122051, +"project": "pystyle" }, { -"download_count": 78071, -"project": "pgcli" +"download_count": 122031, +"project": "pyyml" }, { -"download_count": 78059, -"project": "plantuml" +"download_count": 122015, +"project": "yake" }, { -"download_count": 78041, -"project": "aws-cdk-aws-s3-notifications" +"download_count": 122013, +"project": "django-sequences" }, { -"download_count": 78030, -"project": "django-add-default-value" +"download_count": 121954, +"project": "django-parler" }, { -"download_count": 77976, -"project": "pybufrkit" +"download_count": 121907, +"project": "sexpdata" }, { -"download_count": 77973, -"project": "tarsafe" +"download_count": 121885, +"project": "cloud-files" }, { -"download_count": 77950, -"project": "pyrfc" +"download_count": 121873, +"project": "flake8-unused-arguments" }, { -"download_count": 77947, -"project": "huey" +"download_count": 121867, +"project": "mmcv" }, { -"download_count": 77945, -"project": "metpy" +"download_count": 121861, +"project": "pynetdicom" }, { -"download_count": 77908, -"project": "jsonable" +"download_count": 121855, +"project": "playsound" }, { -"download_count": 77898, -"project": "heroku3" +"download_count": 121846, +"project": "types-aiobotocore-secretsmanager" }, { -"download_count": 77878, -"project": "blaze" +"download_count": 121807, +"project": "djangorestframework-recursive" }, { -"download_count": 77858, -"project": "autogluon" +"download_count": 121778, +"project": "databricks-sql" }, { -"download_count": 77847, -"project": "session-info" +"download_count": 121749, +"project": "datashape" }, { -"download_count": 77832, -"project": "dbt-exasol" +"download_count": 121712, +"project": "pytest-arraydiff" }, { -"download_count": 77825, -"project": "filigran-sseclient" +"download_count": 121669, +"project": "colored-traceback" }, { -"download_count": 77813, -"project": "sdmetrics" +"download_count": 121619, +"project": "colcon-core" }, { -"download_count": 77797, -"project": "pytest-harvest" +"download_count": 121606, +"project": "aspy-refactor-imports" }, { -"download_count": 77792, -"project": "ttach" +"download_count": 121591, +"project": "obsarray" }, { -"download_count": 77712, -"project": "color-matcher" +"download_count": 121580, +"project": "fqfa" }, { -"download_count": 77710, -"project": "pymonetdb" +"download_count": 121529, +"project": "bytechomp" }, { -"download_count": 77639, -"project": "dbutils-typehint" +"download_count": 121513, +"project": "flake8-fixme" }, { -"download_count": 77621, -"project": "vosk" +"download_count": 121449, +"project": "paver" }, { -"download_count": 77614, -"project": "swiftsimio" +"download_count": 121431, +"project": "pandas-td" }, { -"download_count": 77613, -"project": "streamlit-option-menu" +"download_count": 121368, +"project": "ownercredit" }, { -"download_count": 77610, -"project": "autogluon-timeseries" +"download_count": 121341, +"project": "apache-airflow-providers-qdrant" }, { -"download_count": 77514, -"project": "spacy-lookups-data" +"download_count": 121300, +"project": "check-wheel-contents" }, { -"download_count": 77508, -"project": "seqio" +"download_count": 121253, +"project": "logtail-python" }, { -"download_count": 77418, -"project": "sigmatools" +"download_count": 121230, +"project": "gruut-ipa" }, { -"download_count": 77413, -"project": "csv2md" +"download_count": 121217, +"project": "token-bucket" }, { -"download_count": 77405, -"project": "pcapy-ng" +"download_count": 121191, +"project": "flake8-no-implicit-concat" }, { -"download_count": 77400, -"project": "django-guid" +"download_count": 121173, +"project": "cyvcf2" }, { -"download_count": 77308, -"project": "reg" +"download_count": 121108, +"project": "autotrain-advanced" }, { -"download_count": 77282, -"project": "mkdocstrings-python-legacy" +"download_count": 121004, +"project": "pyangbind" }, { -"download_count": 77273, -"project": "semantic-link-sempy" +"download_count": 120983, +"project": "openqasm3" }, { -"download_count": 77256, -"project": "pytorch-revgrad" +"download_count": 120913, +"project": "pysml" }, { -"download_count": 77209, -"project": "properties" +"download_count": 120838, +"project": "mt-940" }, { -"download_count": 77189, -"project": "velociraptor" +"download_count": 120823, +"project": "django-encrypted-model-fields" }, { -"download_count": 77160, -"project": "django-staff-sso-client" +"download_count": 120809, +"project": "pytest-tornasync" }, { -"download_count": 77079, -"project": "pymorphy2" +"download_count": 120780, +"project": "peewee-migrate" }, { -"download_count": 77045, -"project": "voila" +"download_count": 120754, +"project": "bowler" }, { -"download_count": 77008, -"project": "hier-config" +"download_count": 120716, +"project": "opencensus-ext-stackdriver" }, { -"download_count": 76998, -"project": "py-vapid" +"download_count": 120679, +"project": "arro3-compute" }, { -"download_count": 76990, -"project": "pip-review" +"download_count": 120627, +"project": "trufflehogregexes" }, { -"download_count": 76894, -"project": "colcon-bash" +"download_count": 120583, +"project": "interpret" }, { -"download_count": 76889, -"project": "argparse2" +"download_count": 120447, +"project": "ewah-bool-utils" }, { -"download_count": 76885, -"project": "tox-gh" +"download_count": 120444, +"project": "vaex-core" }, { -"download_count": 76882, -"project": "apache-airflow-providers-cloudant" +"download_count": 120388, +"project": "minijinja" }, { -"download_count": 76846, -"project": "od" +"download_count": 120275, +"project": "fifolock" }, { -"download_count": 76801, -"project": "colcon-cd" +"download_count": 120270, +"project": "hive-metastore-client" }, { -"download_count": 76753, -"project": "django-ckeditor-5" +"download_count": 120269, +"project": "asdf" }, { -"download_count": 76728, -"project": "lunr" +"download_count": 120265, +"project": "compressed-segmentation" }, { -"download_count": 76719, -"project": "rlpycairo" +"download_count": 120253, +"project": "arro3-core" }, { -"download_count": 76675, -"project": "ovh" +"download_count": 120251, +"project": "lmdeploy" }, { -"download_count": 76628, -"project": "google-cloud-quotas" +"download_count": 120233, +"project": "gamma-pytools" }, { -"download_count": 76581, -"project": "kerchunk" +"download_count": 120220, +"project": "appdirs-stubs" }, { -"download_count": 76581, -"project": "mwtypes" +"download_count": 120205, +"project": "asyncmock" }, { -"download_count": 76560, -"project": "fastapi-sso" +"download_count": 120176, +"project": "pyts" }, { -"download_count": 76534, -"project": "uptrace" +"download_count": 120175, +"project": "dataframe-image" }, { -"download_count": 76484, -"project": "piecewise-regression" +"download_count": 120157, +"project": "shimmy" }, { -"download_count": 76482, -"project": "colcon-zsh" +"download_count": 120156, +"project": "pyadi-iio" }, { -"download_count": 76474, -"project": "hypothesis-graphql" +"download_count": 120128, +"project": "grnhse-api" }, { -"download_count": 76449, -"project": "enforce-typing" +"download_count": 120094, +"project": "sagemaker-pyspark" }, { -"download_count": 76449, -"project": "aiohttp-middlewares" +"download_count": 120080, +"project": "tinybird-cdk" }, { -"download_count": 76373, -"project": "jupyter-telemetry" +"download_count": 120030, +"project": "gpio" }, { -"download_count": 76344, -"project": "sib-api-v3-sdk" +"download_count": 119981, +"project": "pyjokes" }, { -"download_count": 76254, -"project": "optimum-neuron" +"download_count": 119970, +"project": "pipe" }, { -"download_count": 76216, -"project": "mpire" +"download_count": 119929, +"project": "honeycomb-opentelemetry" }, { -"download_count": 76121, -"project": "saucebindings" +"download_count": 119929, +"project": "aws-cdk-aws-imagebuilder" }, { -"download_count": 76092, -"project": "instaloader" +"download_count": 119926, +"project": "eciespy" }, { -"download_count": 76078, -"project": "chart-studio" +"download_count": 119758, +"project": "azure-databricks-api" }, { -"download_count": 76042, -"project": "deepecho" +"download_count": 119681, +"project": "uptrace" }, { -"download_count": 76037, -"project": "django-log-formatter-asim" +"download_count": 119647, +"project": "rookiepy" }, { -"download_count": 76027, -"project": "dbt-copilot-python" +"download_count": 119604, +"project": "getschema" }, { -"download_count": 76011, -"project": "ofxparse" +"download_count": 119601, +"project": "burr" }, { -"download_count": 75966, -"project": "nestedtext" +"download_count": 119597, +"project": "doublemetaphone" }, { -"download_count": 75962, -"project": "devicetree" +"download_count": 119592, +"project": "vl-convert-python" }, { -"download_count": 75938, -"project": "bigdl-nano" +"download_count": 119568, +"project": "youtokentome" }, { -"download_count": 75864, -"project": "laboratory" +"download_count": 119562, +"project": "oslo-cache" }, { -"download_count": 75851, -"project": "pyastronomy" +"download_count": 119432, +"project": "pytest-json" }, { -"download_count": 75813, -"project": "keystone-engine" +"download_count": 119431, +"project": "chromedriver-py" }, { -"download_count": 75803, -"project": "mcrcon" +"download_count": 119424, +"project": "python-periphery" }, { -"download_count": 75800, -"project": "tonyg-rfc3339" +"download_count": 119404, +"project": "subprocess-run" }, { -"download_count": 75799, -"project": "etcd3" +"download_count": 119399, +"project": "google-cloud-alloydb" }, { -"download_count": 75783, -"project": "conda-pack" +"download_count": 119352, +"project": "portage" }, { -"download_count": 75782, -"project": "flask-paginate" +"download_count": 119343, +"project": "asyncua" }, { -"download_count": 75763, -"project": "morfessor" +"download_count": 119338, +"project": "spacy-pkuseg" }, { -"download_count": 75762, -"project": "typesense" +"download_count": 119338, +"project": "types-qrcode" }, { -"download_count": 75745, -"project": "interpret" +"download_count": 119317, +"project": "aioodbc" }, { -"download_count": 75723, -"project": "dependencies" +"download_count": 119315, +"project": "shodan" }, { -"download_count": 75680, -"project": "pigar" +"download_count": 119255, +"project": "rio-tiler" }, { -"download_count": 75673, -"project": "pypmml" +"download_count": 119237, +"project": "scim2-filter-parser" }, { -"download_count": 75673, -"project": "pypac" +"download_count": 119216, +"project": "scikit-surprise" }, { -"download_count": 75668, -"project": "findimports" +"download_count": 119210, +"project": "jaraco-stream" }, { -"download_count": 75626, -"project": "pysolar" +"download_count": 119061, +"project": "wmill-pg" }, { -"download_count": 75596, -"project": "pytils" +"download_count": 118964, +"project": "llama-index-llms-watsonx" }, { -"download_count": 75577, -"project": "gen-wrappers" +"download_count": 118936, +"project": "pythonpsi" }, { -"download_count": 75577, -"project": "nptdms" +"download_count": 118871, +"project": "pyhs2" }, { -"download_count": 75539, -"project": "asv-runner" +"download_count": 118859, +"project": "fastapi-sso" }, { -"download_count": 75503, -"project": "mode-streaming" +"download_count": 118828, +"project": "strawberry-graphql-django" }, { -"download_count": 75477, -"project": "confusable-homoglyphs" +"download_count": 118821, +"project": "zxing-cpp" }, { -"download_count": 75424, -"project": "mlpiper" +"download_count": 118798, +"project": "sphinxemoji" }, { -"download_count": 75409, -"project": "adafruit-circuitpython-busdevice" +"download_count": 118796, +"project": "argostranslate" }, { -"download_count": 75391, -"project": "sphinxcontrib-openapi" +"download_count": 118795, +"project": "datasetsforecast" }, { -"download_count": 75302, -"project": "jenkspy" +"download_count": 118785, +"project": "azure-mgmt-kubernetesconfiguration" }, { -"download_count": 75291, -"project": "flask-authz" +"download_count": 118757, +"project": "keystonemiddleware" }, { -"download_count": 75285, -"project": "pbs4py" +"download_count": 118745, +"project": "python-lzf" }, { -"download_count": 75265, -"project": "database-sanitizer" +"download_count": 118742, +"project": "environ" }, { -"download_count": 75256, -"project": "sqlalchemy-dremio" +"download_count": 118734, +"project": "ipapy" }, { -"download_count": 75246, -"project": "geotext" +"download_count": 118692, +"project": "panphon" }, { -"download_count": 75230, -"project": "foca" +"download_count": 118606, +"project": "dsnparse" }, { -"download_count": 75175, -"project": "requests-negotiate-sspi" +"download_count": 118578, +"project": "onnx2tf" }, { -"download_count": 75168, -"project": "flup" +"download_count": 118523, +"project": "lseg-data" }, { -"download_count": 75135, -"project": "panda" +"download_count": 118514, +"project": "samsungtvws" }, { -"download_count": 75115, -"project": "sift" +"download_count": 118496, +"project": "dtaidistance" }, { -"download_count": 75099, -"project": "descript-audio-codec" +"download_count": 118458, +"project": "deflate" }, { -"download_count": 75084, -"project": "libhoney" +"download_count": 118446, +"project": "koheesio" }, { -"download_count": 75058, -"project": "autogluon-multimodal" +"download_count": 118416, +"project": "zip-files" }, { -"download_count": 75025, -"project": "pysodium" +"download_count": 118348, +"project": "afeng-py-tools" }, { -"download_count": 75017, -"project": "django-cms" +"download_count": 118273, +"project": "pygwalker" }, { -"download_count": 75013, -"project": "pyjanitor" +"download_count": 118250, +"project": "dragonfly-energy" }, { -"download_count": 74999, -"project": "fastapi-slim" +"download_count": 118164, +"project": "google-cloud-retail" }, { -"download_count": 74992, -"project": "pymediainfo-pyrofork" +"download_count": 118090, +"project": "jupyterlab-lsp" }, { -"download_count": 74956, -"project": "arcgis" +"download_count": 118088, +"project": "arro3-io" }, { -"download_count": 74940, -"project": "colcon-argcomplete" +"download_count": 118066, +"project": "gcloud-aio-taskqueue" }, { -"download_count": 74927, -"project": "sanic-jwt" +"download_count": 118042, +"project": "clickhouse-pool" }, { -"download_count": 74922, -"project": "pysigma" +"download_count": 118036, +"project": "unpaddedbase64" }, { -"download_count": 74882, -"project": "grin" +"download_count": 118032, +"project": "promptflow" }, { -"download_count": 74873, -"project": "blurb" +"download_count": 118020, +"project": "llama-index-llms-ibm" }, { -"download_count": 74839, -"project": "pure-python-adb" +"download_count": 117943, +"project": "django-htmlmin" }, { -"download_count": 74822, -"project": "pyion2json" +"download_count": 117936, +"project": "mpire" }, { -"download_count": 74821, -"project": "flox" +"download_count": 117910, +"project": "ppscore" }, { -"download_count": 74819, -"project": "onnxruntime-extensions" +"download_count": 117754, +"project": "playwright-stealth" }, { -"download_count": 74757, -"project": "texterrors" +"download_count": 117749, +"project": "llama-index-embeddings-ibm" }, { -"download_count": 74710, -"project": "pysnowflake" +"download_count": 117672, +"project": "prodigyopt" }, { -"download_count": 74682, -"project": "peewee-migrate" +"download_count": 117663, +"project": "django-activity-stream" }, { -"download_count": 74639, -"project": "py-expression-eval" +"download_count": 117662, +"project": "aspidites" }, { -"download_count": 74633, -"project": "tacacs-plus" +"download_count": 117585, +"project": "snscrape" }, { -"download_count": 74624, -"project": "depinfo" +"download_count": 117582, +"project": "flake8-pie" }, { -"download_count": 74617, -"project": "tooz" +"download_count": 117570, +"project": "aesara" }, { -"download_count": 74612, -"project": "disposable-email-domains" +"download_count": 117570, +"project": "aws-sso-lib" }, { -"download_count": 74611, -"project": "pynetdicom" +"download_count": 117522, +"project": "dumb-init" }, { -"download_count": 74608, -"project": "asset" +"download_count": 117520, +"project": "tensorflow-io-nightly" }, { -"download_count": 74555, -"project": "qtawesome" +"download_count": 117499, +"project": "ttkbootstrap" }, { -"download_count": 74533, -"project": "kaldi-python-io" +"download_count": 117496, +"project": "dapr" }, { -"download_count": 74518, -"project": "redo" +"download_count": 117482, +"project": "sklearndf" }, { -"download_count": 74499, -"project": "apache-airflow-providers-telegram" +"download_count": 117462, +"project": "apache-airflow-providers-arangodb" }, { -"download_count": 74488, -"project": "pydoop" +"download_count": 117444, +"project": "dtreeviz" }, { -"download_count": 74434, -"project": "fauxfactory" +"download_count": 117436, +"project": "reuters-style" }, { -"download_count": 74424, -"project": "scikit-posthocs" +"download_count": 117403, +"project": "ipsos-credibility-interval" }, { -"download_count": 74406, -"project": "snakemake-interface-common" +"download_count": 117391, +"project": "creosote" }, { -"download_count": 74389, -"project": "appdynamics-proxysupport-linux-x64" +"download_count": 117386, +"project": "pyqt-builder" }, { -"download_count": 74388, -"project": "keyrings-envvars" +"download_count": 117352, +"project": "atcf-data-parser" }, { -"download_count": 74368, -"project": "redfish" +"download_count": 117293, +"project": "gcloud-rest-datastore" }, { -"download_count": 74364, -"project": "typer-config" +"download_count": 117269, +"project": "flake8-requirements" }, { -"download_count": 74353, -"project": "bag" +"download_count": 117209, +"project": "pytest-fixture-config" }, { -"download_count": 74328, -"project": "ansible-tower-cli" +"download_count": 117199, +"project": "gruut-lang-en" }, { -"download_count": 74303, -"project": "dynamo-json" +"download_count": 117197, +"project": "mplcursors" }, { -"download_count": 74289, -"project": "flask-shell-ipython" +"download_count": 117187, +"project": "runstats" }, { -"download_count": 74254, -"project": "pvfactors" +"download_count": 117174, +"project": "deepchem" }, { -"download_count": 74157, -"project": "azure-ai-contentsafety" +"download_count": 117136, +"project": "finbourne-access-sdk" }, { -"download_count": 74139, -"project": "dom-toml" +"download_count": 117035, +"project": "yt-dlp-youtube-accesstoken" }, { -"download_count": 74138, -"project": "fastapi-jwt-auth" +"download_count": 117014, +"project": "pyscf" }, { -"download_count": 74128, -"project": "streamlit-cookies-controller" +"download_count": 116968, +"project": "rawpy" }, { -"download_count": 74021, -"project": "snakemake-interface-storage-plugins" +"download_count": 116925, +"project": "django-admin-inline-paginator" }, { -"download_count": 73998, -"project": "flask-graphql" +"download_count": 116890, +"project": "brainstem" }, { -"download_count": 73995, -"project": "oauthenticator" +"download_count": 116858, +"project": "style" }, { -"download_count": 73993, -"project": "edx-toggles" +"download_count": 116737, +"project": "simple-tornado" }, { -"download_count": 73990, -"project": "swiglpk" +"download_count": 116693, +"project": "onnx-simplifier" }, { -"download_count": 73919, -"project": "django-permissions-policy" +"download_count": 116666, +"project": "einx" }, { -"download_count": 73904, -"project": "django-cache-url" +"download_count": 116664, +"project": "aws-wsgi" }, { -"download_count": 73871, -"project": "pyspc" +"download_count": 116660, +"project": "wsaccel" }, { -"download_count": 73810, -"project": "adafruit-platformdetect" +"download_count": 116631, +"project": "milvus" }, { -"download_count": 73799, -"project": "django-slack" +"download_count": 116618, +"project": "anymarkup-core" }, { -"download_count": 73785, -"project": "gpio" +"download_count": 116581, +"project": "django-upgrade" }, { -"download_count": 73772, -"project": "edx-lint" +"download_count": 116561, +"project": "pybaseconv" }, { -"download_count": 73769, -"project": "runpod" +"download_count": 116538, +"project": "aspose-cells" }, { -"download_count": 73731, -"project": "pytiled-parser" +"download_count": 116504, +"project": "pygrok" }, { -"download_count": 73726, -"project": "fsc-export" +"download_count": 116481, +"project": "openseespylinux" }, { -"download_count": 73715, -"project": "slackbot" +"download_count": 116478, +"project": "mosaicml-cli" }, { -"download_count": 73691, -"project": "domino-code-assist" +"download_count": 116453, +"project": "contentful" }, { -"download_count": 73685, -"project": "click-pathlib" +"download_count": 116398, +"project": "softlayer" }, { -"download_count": 73685, -"project": "tidyexc" +"download_count": 116386, +"project": "mda-xdrlib" }, { -"download_count": 73675, -"project": "asyncgui" +"download_count": 116379, +"project": "paddle" }, { -"download_count": 73665, -"project": "adafruit-circuitpython-typing" +"download_count": 116357, +"project": "tap-gladly" }, { -"download_count": 73651, -"project": "gower" +"download_count": 116356, +"project": "mdanalysis" }, { -"download_count": 73615, -"project": "compas" +"download_count": 116310, +"project": "dxpy" }, { -"download_count": 73608, -"project": "mailosaur" +"download_count": 116309, +"project": "aichar" }, { -"download_count": 73587, -"project": "oslo-reports" +"download_count": 116296, +"project": "tap-aftership" }, { -"download_count": 73586, -"project": "parametrize-from-file" +"download_count": 116284, +"project": "fillpdf" }, { -"download_count": 73544, -"project": "avro-validator" +"download_count": 116273, +"project": "gruut" }, { -"download_count": 73528, -"project": "solace-pubsubplus" +"download_count": 116216, +"project": "tiledb" }, { -"download_count": 73518, -"project": "pyxlsx" +"download_count": 116180, +"project": "redo" }, { -"download_count": 73488, -"project": "flake8-breakpoint" +"download_count": 116170, +"project": "rwlock" }, { -"download_count": 73477, -"project": "django-weasyprint" +"download_count": 116108, +"project": "ropgadget" }, { -"download_count": 73473, -"project": "djangocms-admin-style" +"download_count": 116072, +"project": "pysigma" }, { -"download_count": 73469, -"project": "crc16" +"download_count": 116063, +"project": "azure-communication-sms" }, { -"download_count": 73469, -"project": "hdrhistogram" +"download_count": 116062, +"project": "squarify" }, { -"download_count": 73466, -"project": "symmetry-representation" +"download_count": 116002, +"project": "django-permissions-policy" }, { -"download_count": 73459, -"project": "giving" +"download_count": 115997, +"project": "trame-client" }, { -"download_count": 73449, -"project": "testinfra" +"download_count": 115996, +"project": "autoprotocol" }, { -"download_count": 73433, -"project": "pdm-pep517" +"download_count": 115996, +"project": "markovify" }, { -"download_count": 73409, -"project": "numbagg" +"download_count": 115917, +"project": "boddle" }, { -"download_count": 73375, -"project": "demoji" +"download_count": 115895, +"project": "lastversion" }, { -"download_count": 73367, -"project": "django-multi-email-field" +"download_count": 115892, +"project": "lookml" }, { -"download_count": 73363, -"project": "simpledbf" +"download_count": 115806, +"project": "ipython-sql" }, { -"download_count": 73279, -"project": "django-ranged-response" +"download_count": 115741, +"project": "ansible-vault" }, { -"download_count": 73266, -"project": "django-cprofile-middleware" +"download_count": 115725, +"project": "aws-cdk-aws-kinesisanalytics-flink-alpha" }, { -"download_count": 73226, -"project": "django-fernet-fields-v2" +"download_count": 115707, +"project": "pytest-md-report" }, { -"download_count": 73200, -"project": "mudata" +"download_count": 115698, +"project": "gcloud-rest-bigquery" }, { -"download_count": 73193, -"project": "unihandecode" +"download_count": 115605, +"project": "logstash-formatter" }, { -"download_count": 73189, -"project": "py-manga" +"download_count": 115537, +"project": "types-pyrfc3339" }, { -"download_count": 73185, -"project": "pysmartdl" +"download_count": 115522, +"project": "dbt-trino" }, { -"download_count": 73170, -"project": "asciimatics" +"download_count": 115516, +"project": "cel-python" }, { -"download_count": 73159, -"project": "tensorflow-model-analysis" +"download_count": 115512, +"project": "sparse-dot-topn" }, { -"download_count": 73152, -"project": "ixnetwork-restpy" +"download_count": 115469, +"project": "ai21" }, { -"download_count": 73127, -"project": "xraylib" +"download_count": 115463, +"project": "get-video-properties" }, { -"download_count": 73116, -"project": "niltype" +"download_count": 115265, +"project": "jaxopt" }, { -"download_count": 73096, -"project": "azure-cli-diff-tool" +"download_count": 115264, +"project": "flask-openapi3" }, { -"download_count": 73087, -"project": "gpt4all" +"download_count": 115264, +"project": "uuid-shortener-py" }, { -"download_count": 73085, -"project": "google-cloud-alloydb" +"download_count": 115181, +"project": "trie" }, { -"download_count": 73075, -"project": "qpsolvers" +"download_count": 115127, +"project": "apache-airflow-providers-opensearch" }, { -"download_count": 73074, -"project": "cobra" +"download_count": 115116, +"project": "ara" }, { -"download_count": 73058, -"project": "data-prep-toolkit" +"download_count": 115082, +"project": "sqladmin" }, { -"download_count": 73034, -"project": "pythtb" +"download_count": 115062, +"project": "fastapi-restful" }, { -"download_count": 73002, -"project": "types-typing-extensions" +"download_count": 115057, +"project": "keyphrase-vectorizers" }, { -"download_count": 72994, -"project": "py-algorand-sdk" +"download_count": 114976, +"project": "pypyr" }, { -"download_count": 72988, -"project": "unavailable-object" +"download_count": 114938, +"project": "yeref" }, { -"download_count": 72983, -"project": "airtable" +"download_count": 114919, +"project": "serialize" }, { -"download_count": 72975, -"project": "pylbfgs" +"download_count": 114821, +"project": "laspy" }, { -"download_count": 72926, -"project": "pyarrowfs-adlgen2" +"download_count": 114775, +"project": "impall" }, { -"download_count": 72817, -"project": "databricks-automl-runtime" +"download_count": 114743, +"project": "dynamic-yaml" }, { -"download_count": 72778, -"project": "dataclass-csv" +"download_count": 114736, +"project": "loralib" }, { -"download_count": 72744, -"project": "markyp" +"download_count": 114726, +"project": "anymarkup" }, { -"download_count": 72741, -"project": "cwl-upgrader" +"download_count": 114668, +"project": "osprofiler" }, { -"download_count": 72737, -"project": "g4f" +"download_count": 114638, +"project": "pytest-cache" }, { -"download_count": 72735, -"project": "diff-pdf-visually" +"download_count": 114587, +"project": "flask-log-request-id" }, { -"download_count": 72699, -"project": "django-enumfields" +"download_count": 114555, +"project": "benchling-sdk" }, { -"download_count": 72646, -"project": "google-cloud-bigquery-datapolicies" +"download_count": 114547, +"project": "dbus-python" }, { -"download_count": 72643, -"project": "nvidia-stub" +"download_count": 114543, +"project": "exitstatus" }, { -"download_count": 72627, -"project": "pyhacrf-datamade" +"download_count": 114532, +"project": "honeycomb-beeline" }, { -"download_count": 72621, -"project": "openedx-events" +"download_count": 114507, +"project": "hyperleaup" }, { -"download_count": 72591, -"project": "aws-cdk-aws-batch-alpha" +"download_count": 114498, +"project": "iterfzf" }, { -"download_count": 72589, -"project": "jujubundlelib" +"download_count": 114497, +"project": "mypy-baseline" }, { -"download_count": 72583, -"project": "wechaty-puppet" +"download_count": 114395, +"project": "pytextrank" }, { -"download_count": 72564, -"project": "markyp-html" +"download_count": 114342, +"project": "rebound" }, { -"download_count": 72528, -"project": "pyadi-iio" +"download_count": 114342, +"project": "compel" }, { -"download_count": 72486, -"project": "theblues" +"download_count": 114269, +"project": "scholarly" }, { -"download_count": 72477, -"project": "pyclamd" +"download_count": 114240, +"project": "recurly" } ] } diff --git a/top-pypi-packages-30-days.min.json b/top-pypi-packages-30-days.min.json index 4712a18..0f336a0 100644 --- a/top-pypi-packages-30-days.min.json +++ b/top-pypi-packages-30-days.min.json @@ -1 +1 @@ -{"last_update":"2024-11-01 12:27:36","query":{"bytes_billed":1376442646528,"bytes_processed":1376442377548,"cached":false,"estimated_cost":"6.26"},"rows":[{"download_count":1406890837,"project":"boto3"},{"download_count":623625562,"project":"urllib3"},{"download_count":571612167,"project":"botocore"},{"download_count":526406633,"project":"requests"},{"download_count":483292792,"project":"aiobotocore"},{"download_count":467827660,"project":"certifi"},{"download_count":465932571,"project":"idna"},{"download_count":463912826,"project":"charset-normalizer"},{"download_count":458283677,"project":"setuptools"},{"download_count":436657303,"project":"typing-extensions"},{"download_count":416626158,"project":"python-dateutil"},{"download_count":404331402,"project":"s3transfer"},{"download_count":394528713,"project":"packaging"},{"download_count":378703571,"project":"s3fs"},{"download_count":377119298,"project":"grpcio-status"},{"download_count":358362073,"project":"fsspec"},{"download_count":351861928,"project":"six"},{"download_count":337600486,"project":"pyyaml"},{"download_count":299651319,"project":"numpy"},{"download_count":276323074,"project":"cryptography"},{"download_count":263816880,"project":"pip"},{"download_count":256976898,"project":"importlib-metadata"},{"download_count":254217751,"project":"cffi"},{"download_count":248680573,"project":"wheel"},{"download_count":246935672,"project":"pycparser"},{"download_count":246157394,"project":"pydantic"},{"download_count":244572029,"project":"google-api-core"},{"download_count":242521801,"project":"pandas"},{"download_count":241664482,"project":"zipp"},{"download_count":233829412,"project":"jmespath"},{"download_count":230776467,"project":"rsa"},{"download_count":228505410,"project":"attrs"},{"download_count":225760196,"project":"pyasn1"},{"download_count":213132959,"project":"protobuf"},{"download_count":203440975,"project":"platformdirs"},{"download_count":203405699,"project":"click"},{"download_count":192419956,"project":"colorama"},{"download_count":189473844,"project":"awscli"},{"download_count":187737124,"project":"pytz"},{"download_count":184491788,"project":"markupsafe"},{"download_count":175841151,"project":"jinja2"},{"download_count":171887448,"project":"tomli"},{"download_count":158215643,"project":"pyjwt"},{"download_count":158128052,"project":"googleapis-common-protos"},{"download_count":155321982,"project":"cachetools"},{"download_count":154191627,"project":"filelock"},{"download_count":153288646,"project":"pluggy"},{"download_count":153225886,"project":"wrapt"},{"download_count":152866576,"project":"virtualenv"},{"download_count":152703147,"project":"google-auth"},{"download_count":151845509,"project":"pydantic-core"},{"download_count":144634863,"project":"pytest"},{"download_count":138228484,"project":"pyarrow"},{"download_count":138093830,"project":"pyasn1-modules"},{"download_count":136272082,"project":"docutils"},{"download_count":135428720,"project":"pyparsing"},{"download_count":132719716,"project":"jsonschema"},{"download_count":131249504,"project":"requests-oauthlib"},{"download_count":130790934,"project":"aiohttp"},{"download_count":127060186,"project":"iniconfig"},{"download_count":123985833,"project":"psutil"},{"download_count":123014434,"project":"exceptiongroup"},{"download_count":121488844,"project":"sqlalchemy"},{"download_count":121383362,"project":"yarl"},{"download_count":121146330,"project":"oauthlib"},{"download_count":120429619,"project":"scipy"},{"download_count":118619018,"project":"soupsieve"},{"download_count":116474158,"project":"tzdata"},{"download_count":116018483,"project":"multidict"},{"download_count":115472681,"project":"annotated-types"},{"download_count":114951582,"project":"isodate"},{"download_count":114470949,"project":"pygments"},{"download_count":114412827,"project":"beautifulsoup4"},{"download_count":113489128,"project":"decorator"},{"download_count":111536179,"project":"pillow"},{"download_count":110830120,"project":"requests-toolbelt"},{"download_count":108437974,"project":"greenlet"},{"download_count":108305815,"project":"frozenlist"},{"download_count":107049503,"project":"pyopenssl"},{"download_count":105701625,"project":"aiosignal"},{"download_count":105591716,"project":"tomlkit"},{"download_count":101437858,"project":"distlib"},{"download_count":100194808,"project":"openpyxl"},{"download_count":99970047,"project":"async-timeout"},{"download_count":99201092,"project":"et-xmlfile"},{"download_count":98399797,"project":"grpcio"},{"download_count":97407722,"project":"tqdm"},{"download_count":95014557,"project":"more-itertools"},{"download_count":94922293,"project":"deprecated"},{"download_count":90015229,"project":"pynacl"},{"download_count":89114819,"project":"proto-plus"},{"download_count":88233970,"project":"lxml"},{"download_count":87362874,"project":"azure-core"},{"download_count":86787591,"project":"werkzeug"},{"download_count":86253304,"project":"anyio"},{"download_count":86188445,"project":"google-cloud-storage"},{"download_count":86067474,"project":"asn1crypto"},{"download_count":84772021,"project":"coverage"},{"download_count":84051231,"project":"websocket-client"},{"download_count":84025579,"project":"h11"},{"download_count":83502596,"project":"pexpect"},{"download_count":82737941,"project":"ptyprocess"},{"download_count":82394515,"project":"msgpack"},{"download_count":82191879,"project":"sniffio"},{"download_count":82104651,"project":"grpcio-tools"},{"download_count":79909351,"project":"rich"},{"download_count":79821881,"project":"rpds-py"},{"download_count":79460401,"project":"sortedcontainers"},{"download_count":79176070,"project":"jsonschema-specifications"},{"download_count":78043133,"project":"dill"},{"download_count":77481078,"project":"httpcore"},{"download_count":77126139,"project":"importlib-resources"},{"download_count":76415324,"project":"httpx"},{"download_count":76050557,"project":"aiohappyeyeballs"},{"download_count":75892023,"project":"referencing"},{"download_count":74500528,"project":"flask"},{"download_count":74042990,"project":"python-dotenv"},{"download_count":74030564,"project":"scikit-learn"},{"download_count":73814682,"project":"google-cloud-core"},{"download_count":71915578,"project":"chardet"},{"download_count":71400022,"project":"bcrypt"},{"download_count":71382248,"project":"mypy-extensions"},{"download_count":71281934,"project":"poetry-core"},{"download_count":71121887,"project":"msal"},{"download_count":70316114,"project":"keyring"},{"download_count":70236680,"project":"google-resumable-media"},{"download_count":69777556,"project":"paramiko"},{"download_count":69642522,"project":"matplotlib"},{"download_count":69323531,"project":"pkginfo"},{"download_count":69249656,"project":"psycopg2-binary"},{"download_count":69077193,"project":"gitpython"},{"download_count":68822507,"project":"markdown-it-py"},{"download_count":68325723,"project":"wcwidth"},{"download_count":68095790,"project":"pathspec"},{"download_count":67649349,"project":"mdurl"},{"download_count":67160724,"project":"poetry-plugin-export"},{"download_count":66313812,"project":"snowflake-connector-python"},{"download_count":66234114,"project":"networkx"},{"download_count":65985255,"project":"smmap"},{"download_count":65580590,"project":"gitdb"},{"download_count":64257827,"project":"propcache"},{"download_count":63626454,"project":"jaraco-classes"},{"download_count":62667665,"project":"threadpoolctl"},{"download_count":62529378,"project":"jeepney"},{"download_count":62399298,"project":"secretstorage"},{"download_count":62357251,"project":"xmltodict"},{"download_count":62094505,"project":"typedload"},{"download_count":62001010,"project":"cloudpickle"},{"download_count":61924175,"project":"tenacity"},{"download_count":61604355,"project":"kiwisolver"},{"download_count":61398068,"project":"tabulate"},{"download_count":61209661,"project":"ruamel-yaml"},{"download_count":61106045,"project":"backoff"},{"download_count":60870102,"project":"itsdangerous"},{"download_count":60788959,"project":"shellingham"},{"download_count":60693828,"project":"google-crc32c"},{"download_count":60415251,"project":"fastjsonschema"},{"download_count":60321276,"project":"build"},{"download_count":60191884,"project":"regex"},{"download_count":59803194,"project":"py4j"},{"download_count":59192815,"project":"portalocker"},{"download_count":59172755,"project":"cycler"},{"download_count":59117044,"project":"google-cloud-bigquery"},{"download_count":58473198,"project":"pyproject-hooks"},{"download_count":57871579,"project":"rapidfuzz"},{"download_count":57110233,"project":"py"},{"download_count":55290052,"project":"trove-classifiers"},{"download_count":55287353,"project":"pytest-cov"},{"download_count":55143960,"project":"azure-storage-blob"},{"download_count":54186183,"project":"pyzmq"},{"download_count":53894896,"project":"msal-extensions"},{"download_count":53022751,"project":"mccabe"},{"download_count":52922335,"project":"sqlparse"},{"download_count":52590406,"project":"google-api-python-client"},{"download_count":52427744,"project":"awswrangler"},{"download_count":52314943,"project":"joblib"},{"download_count":51828734,"project":"google-auth-oauthlib"},{"download_count":51458524,"project":"prompt-toolkit"},{"download_count":50877997,"project":"alembic"},{"download_count":49400820,"project":"defusedxml"},{"download_count":48980399,"project":"azure-identity"},{"download_count":48683239,"project":"pyrsistent"},{"download_count":48584726,"project":"pycodestyle"},{"download_count":48418475,"project":"ruamel-yaml-clib"},{"download_count":47339039,"project":"fonttools"},{"download_count":47063624,"project":"cachecontrol"},{"download_count":47024852,"project":"nest-asyncio"},{"download_count":46687686,"project":"marshmallow"},{"download_count":46379800,"project":"pymysql"},{"download_count":46276484,"project":"blinker"},{"download_count":46011711,"project":"ipython"},{"download_count":45950727,"project":"uritemplate"},{"download_count":45685337,"project":"docker"},{"download_count":45663497,"project":"tzlocal"},{"download_count":45295641,"project":"sentry-sdk"},{"download_count":45133758,"project":"babel"},{"download_count":45098329,"project":"isort"},{"download_count":44937207,"project":"httplib2"},{"download_count":44758737,"project":"google-auth-httplib2"},{"download_count":44695376,"project":"poetry"},{"download_count":44675811,"project":"redis"},{"download_count":44514315,"project":"huggingface-hub"},{"download_count":44212819,"project":"cython"},{"download_count":44165325,"project":"opentelemetry-api"},{"download_count":43864238,"project":"multiprocess"},{"download_count":43703283,"project":"transformers"},{"download_count":43664958,"project":"dnspython"},{"download_count":43586895,"project":"distro"},{"download_count":43252891,"project":"ply"},{"download_count":43198405,"project":"prometheus-client"},{"download_count":42753198,"project":"traitlets"},{"download_count":42735633,"project":"grpc-google-iam-v1"},{"download_count":42653565,"project":"toml"},{"download_count":42458140,"project":"pendulum"},{"download_count":42395336,"project":"gunicorn"},{"download_count":42064981,"project":"scramp"},{"download_count":41566109,"project":"dulwich"},{"download_count":41503025,"project":"crashtest"},{"download_count":41351866,"project":"tornado"},{"download_count":41349639,"project":"requests-aws4auth"},{"download_count":41264584,"project":"markdown"},{"download_count":41212392,"project":"cleo"},{"download_count":40355510,"project":"installer"},{"download_count":40143981,"project":"pycryptodomex"},{"download_count":40062482,"project":"fastapi"},{"download_count":39938703,"project":"jedi"},{"download_count":39722228,"project":"setuptools-scm"},{"download_count":39312986,"project":"parso"},{"download_count":39203898,"project":"termcolor"},{"download_count":38691914,"project":"webencodings"},{"download_count":38280341,"project":"black"},{"download_count":38061431,"project":"msrest"},{"download_count":37927146,"project":"matplotlib-inline"},{"download_count":37883723,"project":"contourpy"},{"download_count":37785114,"project":"types-requests"},{"download_count":37719243,"project":"jsonpointer"},{"download_count":37367025,"project":"debugpy"},{"download_count":37212496,"project":"azure-common"},{"download_count":36860105,"project":"future"},{"download_count":36139331,"project":"pycryptodome"},{"download_count":36130043,"project":"opentelemetry-sdk"},{"download_count":35838264,"project":"starlette"},{"download_count":35742153,"project":"mako"},{"download_count":35701025,"project":"opentelemetry-semantic-conventions"},{"download_count":35412664,"project":"openai"},{"download_count":35327052,"project":"pyflakes"},{"download_count":34487080,"project":"loguru"},{"download_count":34380405,"project":"kubernetes"},{"download_count":34073398,"project":"asgiref"},{"download_count":33968368,"project":"python-json-logger"},{"download_count":33800956,"project":"executing"},{"download_count":33733138,"project":"asttokens"},{"download_count":33579260,"project":"arrow"},{"download_count":33462713,"project":"pkgutil-resolve-name"},{"download_count":33313327,"project":"flake8"},{"download_count":33194343,"project":"pygithub"},{"download_count":33073520,"project":"elasticsearch"},{"download_count":33054022,"project":"redshift-connector"},{"download_count":32730571,"project":"stack-data"},{"download_count":32558776,"project":"pytzdata"},{"download_count":32418302,"project":"pure-eval"},{"download_count":32363818,"project":"pytest-runner"},{"download_count":32237819,"project":"bs4"},{"download_count":32159324,"project":"pg8000"},{"download_count":31878741,"project":"retry"},{"download_count":31579099,"project":"typing-inspect"},{"download_count":31425809,"project":"smart-open"},{"download_count":31270299,"project":"argcomplete"},{"download_count":31262091,"project":"pymongo"},{"download_count":31133144,"project":"jupyter-core"},{"download_count":31089223,"project":"google-pasta"},{"download_count":31030754,"project":"jupyter-client"},{"download_count":30935918,"project":"google-cloud-secret-manager"},{"download_count":30888974,"project":"datadog"},{"download_count":30579923,"project":"uvicorn"},{"download_count":30569184,"project":"mock"},{"download_count":30159050,"project":"ipykernel"},{"download_count":30114133,"project":"typer"},{"download_count":29947366,"project":"types-python-dateutil"},{"download_count":29782453,"project":"torch"},{"download_count":29729658,"project":"imageio"},{"download_count":29720491,"project":"aioitertools"},{"download_count":29596459,"project":"pyspark"},{"download_count":29520616,"project":"nbconvert"},{"download_count":29470280,"project":"shapely"},{"download_count":29453154,"project":"apache-airflow"},{"download_count":29198479,"project":"oscrypto"},{"download_count":29132908,"project":"websockets"},{"download_count":28801611,"project":"tokenizers"},{"download_count":28602679,"project":"mysql-connector-python"},{"download_count":28454471,"project":"jsonpath-ng"},{"download_count":28392590,"project":"nodeenv"},{"download_count":28307496,"project":"google-cloud-pubsub"},{"download_count":28089439,"project":"requests-file"},{"download_count":27777266,"project":"aiofiles"},{"download_count":27739811,"project":"snowflake-sqlalchemy"},{"download_count":27664714,"project":"nbformat"},{"download_count":27523404,"project":"setproctitle"},{"download_count":27465947,"project":"jupyter-server"},{"download_count":27455975,"project":"comm"},{"download_count":27391648,"project":"humanfriendly"},{"download_count":27343670,"project":"astroid"},{"download_count":27332825,"project":"pylint"},{"download_count":27192872,"project":"bleach"},{"download_count":27143219,"project":"xgboost"},{"download_count":26958225,"project":"orjson"},{"download_count":26820431,"project":"rfc3339-validator"},{"download_count":26799416,"project":"toolz"},{"download_count":26757949,"project":"jsonpatch"},{"download_count":26680820,"project":"zope-interface"},{"download_count":26659327,"project":"typeguard"},{"download_count":26571539,"project":"schema"},{"download_count":26566152,"project":"mistune"},{"download_count":26349859,"project":"pysocks"},{"download_count":26173485,"project":"tinycss2"},{"download_count":26017266,"project":"sympy"},{"download_count":25921921,"project":"tb-nightly"},{"download_count":25909493,"project":"notebook"},{"download_count":25906907,"project":"jupyterlab-server"},{"download_count":25893178,"project":"sagemaker"},{"download_count":25720632,"project":"nbclient"},{"download_count":25707518,"project":"jupyterlab"},{"download_count":25658488,"project":"opensearch-py"},{"download_count":25431680,"project":"sphinx"},{"download_count":25160013,"project":"adal"},{"download_count":24419147,"project":"jaraco-functools"},{"download_count":24313827,"project":"google-cloud-aiplatform"},{"download_count":24131396,"project":"xlrd"},{"download_count":23950110,"project":"ipywidgets"},{"download_count":23805773,"project":"google-cloud-appengine-logging"},{"download_count":23776152,"project":"widgetsnbextension"},{"download_count":23692374,"project":"aenum"},{"download_count":23547207,"project":"aws-requests-auth"},{"download_count":23511248,"project":"pathos"},{"download_count":23358580,"project":"jupyterlab-widgets"},{"download_count":23341102,"project":"sentencepiece"},{"download_count":23287619,"project":"progressbar2"},{"download_count":23240637,"project":"xlsxwriter"},{"download_count":23147309,"project":"db-dtypes"},{"download_count":23110919,"project":"pre-commit"},{"download_count":23064774,"project":"pox"},{"download_count":23052026,"project":"apache-airflow-providers-common-sql"},{"download_count":23050526,"project":"ppft"},{"download_count":23024818,"project":"pytest-mock"},{"download_count":22838407,"project":"slack-sdk"},{"download_count":22827378,"project":"send2trash"},{"download_count":22796356,"project":"json5"},{"download_count":22778121,"project":"semver"},{"download_count":22763686,"project":"pyodbc"},{"download_count":22749082,"project":"argon2-cffi"},{"download_count":22723213,"project":"mpmath"},{"download_count":22648950,"project":"appdirs"},{"download_count":22507155,"project":"lz4"},{"download_count":22460789,"project":"cattrs"},{"download_count":22450619,"project":"pandocfilters"},{"download_count":22273981,"project":"jupyterlab-pygments"},{"download_count":22255481,"project":"overrides"},{"download_count":22163645,"project":"pandas-gbq"},{"download_count":22083331,"project":"django"},{"download_count":22048224,"project":"argon2-cffi-bindings"},{"download_count":21830113,"project":"identify"},{"download_count":21820614,"project":"jaraco-context"},{"download_count":21806031,"project":"sshtunnel"},{"download_count":21802735,"project":"smdebug-rulesconfig"},{"download_count":21793650,"project":"python-utils"},{"download_count":21783700,"project":"mypy"},{"download_count":21779524,"project":"absl-py"},{"download_count":21624492,"project":"click-man"},{"download_count":21387203,"project":"scikit-image"},{"download_count":21304414,"project":"terminado"},{"download_count":21208518,"project":"tensorboard"},{"download_count":21030170,"project":"cfgv"},{"download_count":20865573,"project":"docker-pycreds"},{"download_count":20841448,"project":"google-cloud-logging"},{"download_count":20754528,"project":"webcolors"},{"download_count":20669213,"project":"google-cloud-resource-manager"},{"download_count":20630766,"project":"pydeequ"},{"download_count":20519170,"project":"pbr"},{"download_count":20515450,"project":"notebook-shim"},{"download_count":20433179,"project":"altair"},{"download_count":20417702,"project":"azure-storage-file-datalake"},{"download_count":20397589,"project":"croniter"},{"download_count":20327400,"project":"tox"},{"download_count":20292351,"project":"asynctest"},{"download_count":20132177,"project":"fqdn"},{"download_count":20088345,"project":"text-unidecode"},{"download_count":20067018,"project":"isoduration"},{"download_count":20065229,"project":"uri-template"},{"download_count":20060019,"project":"ordered-set"},{"download_count":19913825,"project":"watchdog"},{"download_count":19791057,"project":"nltk"},{"download_count":19780139,"project":"rfc3986-validator"},{"download_count":19684559,"project":"wandb"},{"download_count":19618479,"project":"jupyter-events"},{"download_count":19596515,"project":"databricks-sql-connector"},{"download_count":19570103,"project":"simplejson"},{"download_count":19443072,"project":"python-slugify"},{"download_count":19442800,"project":"pytest-xdist"},{"download_count":19235546,"project":"imbalanced-learn"},{"download_count":19229678,"project":"execnet"},{"download_count":19167815,"project":"opentelemetry-proto"},{"download_count":19109391,"project":"rfc3986"},{"download_count":19081389,"project":"h5py"},{"download_count":19057968,"project":"graphql-core"},{"download_count":19055831,"project":"google-cloud-bigquery-storage"},{"download_count":19020594,"project":"selenium"},{"download_count":19012617,"project":"azure-mgmt-core"},{"download_count":18957236,"project":"async-lru"},{"download_count":18848242,"project":"tiktoken"},{"download_count":18831201,"project":"jupyter-server-terminals"},{"download_count":18722904,"project":"langchain-core"},{"download_count":18690962,"project":"pywavelets"},{"download_count":18459418,"project":"responses"},{"download_count":18451084,"project":"gym-notices"},{"download_count":18418313,"project":"lazy-object-proxy"},{"download_count":18407083,"project":"antlr4-python3-runtime"},{"download_count":18394024,"project":"dataclasses-json"},{"download_count":18272694,"project":"oauth2client"},{"download_count":18133103,"project":"structlog"},{"download_count":18127476,"project":"dataclasses"},{"download_count":18035422,"project":"hvac"},{"download_count":18014586,"project":"colorlog"},{"download_count":17956754,"project":"safetensors"},{"download_count":17953824,"project":"jupyter-lsp"},{"download_count":17716681,"project":"hypothesis"},{"download_count":17708808,"project":"prettytable"},{"download_count":17564579,"project":"pydata-google-auth"},{"download_count":17549136,"project":"gremlinpython"},{"download_count":17548375,"project":"tensorflow"},{"download_count":17415479,"project":"semantic-version"},{"download_count":17340777,"project":"faker"},{"download_count":17022499,"project":"snowballstemmer"},{"download_count":16976652,"project":"seaborn"},{"download_count":16958259,"project":"opentelemetry-exporter-otlp-proto-common"},{"download_count":16874373,"project":"flatbuffers"},{"download_count":16772032,"project":"pydantic-settings"},{"download_count":16711371,"project":"msrestazure"},{"download_count":16689230,"project":"thrift"},{"download_count":16687237,"project":"xxhash"},{"download_count":16636260,"project":"gast"},{"download_count":16621422,"project":"great-expectations"},{"download_count":16589717,"project":"databricks-sdk"},{"download_count":16504947,"project":"monotonic"},{"download_count":16199784,"project":"entrypoints"},{"download_count":16181825,"project":"numba"},{"download_count":16156078,"project":"pyroaring"},{"download_count":16132607,"project":"durationpy"},{"download_count":16118747,"project":"wsproto"},{"download_count":16045891,"project":"datasets"},{"download_count":16006050,"project":"google-cloud-audit-log"},{"download_count":15948859,"project":"trio"},{"download_count":15900001,"project":"opentelemetry-exporter-otlp-proto-http"},{"download_count":15892342,"project":"llvmlite"},{"download_count":15886185,"project":"gcsfs"},{"download_count":15880089,"project":"time-machine"},{"download_count":15769739,"project":"inflection"},{"download_count":15677795,"project":"plotly"},{"download_count":15487230,"project":"dbt-core"},{"download_count":15454715,"project":"html5lib"},{"download_count":15449016,"project":"docstring-parser"},{"download_count":15374251,"project":"coloredlogs"},{"download_count":15191127,"project":"azure-keyvault-secrets"},{"download_count":15141506,"project":"langchain"},{"download_count":15107269,"project":"email-validator"},{"download_count":14931096,"project":"azure-datalake-store"},{"download_count":14847963,"project":"statsmodels"},{"download_count":14836544,"project":"zeep"},{"download_count":14794068,"project":"mlflow"},{"download_count":14713367,"project":"retrying"},{"download_count":14590117,"project":"delta-spark"},{"download_count":14576104,"project":"pymssql"},{"download_count":14568924,"project":"google-cloud-dataproc"},{"download_count":14548123,"project":"outcome"},{"download_count":14529467,"project":"backports-tarfile"},{"download_count":14474169,"project":"lockfile"},{"download_count":14442271,"project":"apache-airflow-providers-ssh"},{"download_count":14409422,"project":"cached-property"},{"download_count":14395430,"project":"ruff"},{"download_count":14390197,"project":"azure-mgmt-resource"},{"download_count":14339630,"project":"pickleshare"},{"download_count":14276236,"project":"tblib"},{"download_count":14260945,"project":"kafka-python"},{"download_count":14241632,"project":"click-plugins"},{"download_count":14173709,"project":"alabaster"},{"download_count":14147195,"project":"confluent-kafka"},{"download_count":14099064,"project":"deprecation"},{"download_count":14008670,"project":"imagesize"},{"download_count":13990878,"project":"apache-airflow-providers-snowflake"},{"download_count":13928419,"project":"google-cloud-kms"},{"download_count":13865234,"project":"backcall"},{"download_count":13846512,"project":"opentelemetry-exporter-otlp-proto-grpc"},{"download_count":13842694,"project":"readme-renderer"},{"download_count":13821081,"project":"deepdiff"},{"download_count":13819120,"project":"libcst"},{"download_count":13810575,"project":"apache-airflow-providers-google"},{"download_count":13799510,"project":"pybind11"},{"download_count":13750547,"project":"python-multipart"},{"download_count":13688077,"project":"argparse"},{"download_count":13683898,"project":"looker-sdk"},{"download_count":13670736,"project":"sphinxcontrib-serializinghtml"},{"download_count":13646376,"project":"mlflow-skinny"},{"download_count":13645512,"project":"uvloop"},{"download_count":13638682,"project":"jiter"},{"download_count":13628333,"project":"opencv-python"},{"download_count":13569828,"project":"patsy"},{"download_count":13566871,"project":"google-cloud-monitoring"},{"download_count":13432519,"project":"sphinxcontrib-htmlhelp"},{"download_count":13421336,"project":"google-cloud-container"},{"download_count":13411191,"project":"psycopg2"},{"download_count":13401043,"project":"httptools"},{"download_count":13400934,"project":"sphinxcontrib-qthelp"},{"download_count":13399966,"project":"sphinxcontrib-devhelp"},{"download_count":13397891,"project":"sphinxcontrib-applehelp"},{"download_count":13379689,"project":"google-cloud-vision"},{"download_count":13376096,"project":"spacy"},{"download_count":13363288,"project":"databricks-cli"},{"download_count":13350307,"project":"ujson"},{"download_count":13205504,"project":"aniso8601"},{"download_count":13203971,"project":"azure-cli"},{"download_count":13167760,"project":"google-cloud-spanner"},{"download_count":13109090,"project":"frozendict"},{"download_count":13063358,"project":"nh3"},{"download_count":13058409,"project":"google-cloud-dlp"},{"download_count":13056996,"project":"azure-storage-common"},{"download_count":13023753,"project":"sphinxcontrib-jsmath"},{"download_count":12991152,"project":"google-cloud-bigquery-datatransfer"},{"download_count":12986043,"project":"azure-nspkg"},{"download_count":12941006,"project":"google-cloud-tasks"},{"download_count":12938936,"project":"triton"},{"download_count":12932046,"project":"apache-airflow-providers-cncf-kubernetes"},{"download_count":12895151,"project":"apache-airflow-providers-databricks"},{"download_count":12847282,"project":"torchvision"},{"download_count":12808590,"project":"opentelemetry-instrumentation"},{"download_count":12806360,"project":"tensorboard-data-server"},{"download_count":12797856,"project":"pytest-metadata"},{"download_count":12793664,"project":"trio-websocket"},{"download_count":12787499,"project":"keras"},{"download_count":12785016,"project":"google-ads"},{"download_count":12696457,"project":"pipenv"},{"download_count":12665239,"project":"hatchling"},{"download_count":12662554,"project":"tensorflow-estimator"},{"download_count":12656333,"project":"twine"},{"download_count":12638696,"project":"google-cloud-datacatalog"},{"download_count":12637525,"project":"nvidia-nccl-cu12"},{"download_count":12614771,"project":"azure-mgmt-storage"},{"download_count":12605377,"project":"unidecode"},{"download_count":12560633,"project":"docopt"},{"download_count":12496700,"project":"apache-airflow-providers-mysql"},{"download_count":12472050,"project":"invoke"},{"download_count":12424416,"project":"applicationinsights"},{"download_count":12413575,"project":"azure-keyvault-keys"},{"download_count":12379331,"project":"pytest-asyncio"},{"download_count":12342424,"project":"google-cloud-bigtable"},{"download_count":12275337,"project":"pyproject-api"},{"download_count":12255954,"project":"azure-cosmos"},{"download_count":12135683,"project":"uv"},{"download_count":12059821,"project":"opt-einsum"},{"download_count":12033954,"project":"google-cloud-build"},{"download_count":12020953,"project":"backports-zoneinfo"},{"download_count":11960370,"project":"simple-salesforce"},{"download_count":11942657,"project":"tldextract"},{"download_count":11911042,"project":"thinc"},{"download_count":11887038,"project":"azure-graphrbac"},{"download_count":11877583,"project":"azure-keyvault"},{"download_count":11861557,"project":"google-cloud-workflows"},{"download_count":11833963,"project":"makefun"},{"download_count":11817221,"project":"google-cloud-redis"},{"download_count":11796747,"project":"google-cloud-dataplex"},{"download_count":11736457,"project":"fastavro"},{"download_count":11684910,"project":"graphviz"},{"download_count":11684539,"project":"google-cloud-automl"},{"download_count":11646356,"project":"google-cloud-language"},{"download_count":11627856,"project":"watchtower"},{"download_count":11606015,"project":"google-cloud-os-login"},{"download_count":11575990,"project":"google-cloud-firestore"},{"download_count":11548946,"project":"google-cloud-videointelligence"},{"download_count":11546125,"project":"freezegun"},{"download_count":11481249,"project":"gsutil"},{"download_count":11462475,"project":"google-cloud-memcache"},{"download_count":11439680,"project":"pycrypto"},{"download_count":11390351,"project":"jupyter"},{"download_count":11387689,"project":"graphene"},{"download_count":11377254,"project":"azure-mgmt-containerregistry"},{"download_count":11370871,"project":"blis"},{"download_count":11365551,"project":"astunparse"},{"download_count":11358183,"project":"datetime"},{"download_count":11351923,"project":"funcsigs"},{"download_count":11338231,"project":"gevent"},{"download_count":11328458,"project":"jupyter-console"},{"download_count":11308825,"project":"gspread"},{"download_count":11259157,"project":"graphql-relay"},{"download_count":11232872,"project":"authlib"},{"download_count":11155568,"project":"murmurhash"},{"download_count":11141774,"project":"watchfiles"},{"download_count":11098410,"project":"nose"},{"download_count":11087925,"project":"pytimeparse"},{"download_count":11078690,"project":"zope-event"},{"download_count":11076543,"project":"google-cloud-orchestration-airflow"},{"download_count":11073059,"project":"opentelemetry-exporter-otlp"},{"download_count":11066185,"project":"parameterized"},{"download_count":11042102,"project":"preshed"},{"download_count":10990252,"project":"google-cloud-dataproc-metastore"},{"download_count":10971847,"project":"nvidia-cudnn-cu12"},{"download_count":10962623,"project":"google-cloud-translate"},{"download_count":10941235,"project":"cymem"},{"download_count":10931373,"project":"azure-mgmt-keyvault"},{"download_count":10907866,"project":"sqlalchemy-bigquery"},{"download_count":10884840,"project":"pywin32"},{"download_count":10878155,"project":"omegaconf"},{"download_count":10844589,"project":"catalogue"},{"download_count":10835738,"project":"azure-mgmt-compute"},{"download_count":10805505,"project":"analytics-python"},{"download_count":10788708,"project":"google-cloud-dataform"},{"download_count":10787666,"project":"srsly"},{"download_count":10727483,"project":"azure-mgmt-cosmosdb"},{"download_count":10715540,"project":"sh"},{"download_count":10686025,"project":"wasabi"},{"download_count":10676719,"project":"azure-mgmt-authorization"},{"download_count":10671879,"project":"pkce"},{"download_count":10627161,"project":"azure-mgmt-network"},{"download_count":10620783,"project":"grpcio-gcp"},{"download_count":10594084,"project":"tensorflow-serving-api"},{"download_count":10563314,"project":"nvidia-cublas-cu12"},{"download_count":10532876,"project":"brotli"},{"download_count":10531698,"project":"ecdsa"},{"download_count":10526893,"project":"google-cloud-speech"},{"download_count":10501134,"project":"ratelimit"},{"download_count":10464606,"project":"evergreen-py"},{"download_count":10441760,"project":"langsmith"},{"download_count":10438024,"project":"agate"},{"download_count":10426040,"project":"configparser"},{"download_count":10418544,"project":"jsondiff"},{"download_count":10408872,"project":"azure-mgmt-msi"},{"download_count":10406697,"project":"google-cloud-texttospeech"},{"download_count":10368240,"project":"langcodes"},{"download_count":10360246,"project":"nvidia-cuda-runtime-cu12"},{"download_count":10348066,"project":"nvidia-cuda-cupti-cu12"},{"download_count":10344454,"project":"nvidia-cuda-nvrtc-cu12"},{"download_count":10322973,"project":"nvidia-cusparse-cu12"},{"download_count":10322340,"project":"nvidia-cufft-cu12"},{"download_count":10319917,"project":"flask-appbuilder"},{"download_count":10317934,"project":"dask"},{"download_count":10316575,"project":"nvidia-cusolver-cu12"},{"download_count":10301526,"project":"nvidia-nvjitlink-cu12"},{"download_count":10285167,"project":"ijson"},{"download_count":10280147,"project":"nvidia-curand-cu12"},{"download_count":10274935,"project":"langchain-community"},{"download_count":10260713,"project":"pysftp"},{"download_count":10242289,"project":"gcloud-aio-storage"},{"download_count":10237543,"project":"pypdf2"},{"download_count":10172115,"project":"nvidia-nvtx-cu12"},{"download_count":10164604,"project":"jira"},{"download_count":10160759,"project":"db-contrib-tool"},{"download_count":10159722,"project":"gcloud-aio-auth"},{"download_count":10109014,"project":"pathlib2"},{"download_count":10087664,"project":"flask-cors"},{"download_count":10074296,"project":"bitarray"},{"download_count":10037747,"project":"fabric"},{"download_count":10021405,"project":"opentelemetry-util-http"},{"download_count":10017271,"project":"scp"},{"download_count":10012820,"project":"azure-mgmt-recoveryservices"},{"download_count":10010628,"project":"ninja"},{"download_count":10005497,"project":"python-gnupg"},{"download_count":10004505,"project":"azure-mgmt-containerinstance"},{"download_count":9982779,"project":"spacy-loggers"},{"download_count":9970776,"project":"azure-mgmt-monitor"},{"download_count":9959577,"project":"spacy-legacy"},{"download_count":9933740,"project":"gcloud-aio-bigquery"},{"download_count":9896633,"project":"azure-data-tables"},{"download_count":9884723,"project":"kombu"},{"download_count":9881154,"project":"types-pyyaml"},{"download_count":9832358,"project":"azure-mgmt-signalr"},{"download_count":9808606,"project":"azure-batch"},{"download_count":9800090,"project":"azure-mgmt-sql"},{"download_count":9779879,"project":"djangorestframework"},{"download_count":9770372,"project":"azure-mgmt-web"},{"download_count":9761604,"project":"azure-mgmt-servicebus"},{"download_count":9761297,"project":"azure-mgmt-redis"},{"download_count":9710867,"project":"google-cloud-compute"},{"download_count":9699923,"project":"avro-python3"},{"download_count":9693423,"project":"awscrt"},{"download_count":9675262,"project":"parsedatetime"},{"download_count":9627955,"project":"confection"},{"download_count":9626387,"project":"azure-mgmt-containerservice"},{"download_count":9516523,"project":"azure-mgmt-dns"},{"download_count":9446139,"project":"mdit-py-plugins"},{"download_count":9424662,"project":"celery"},{"download_count":9413326,"project":"azure-mgmt-advisor"},{"download_count":9410746,"project":"gym"},{"download_count":9401541,"project":"azure-mgmt-rdbms"},{"download_count":9393321,"project":"azure-mgmt-eventhub"},{"download_count":9385147,"project":"hpack"},{"download_count":9366392,"project":"texttable"},{"download_count":9315199,"project":"protobuf3-to-dict"},{"download_count":9297219,"project":"azure-mgmt-loganalytics"},{"download_count":9295021,"project":"azure-mgmt-batch"},{"download_count":9270799,"project":"azure-mgmt-cdn"},{"download_count":9267807,"project":"pytest-html"},{"download_count":9243811,"project":"mashumaro"},{"download_count":9242748,"project":"libclang"},{"download_count":9241080,"project":"narwhals"},{"download_count":9237595,"project":"opencensus-context"},{"download_count":9230501,"project":"amqp"},{"download_count":9225461,"project":"azure-mgmt-trafficmanager"},{"download_count":9225297,"project":"azure-mgmt-iothub"},{"download_count":9222695,"project":"azure-mgmt-search"},{"download_count":9221684,"project":"azure-mgmt-marketplaceordering"},{"download_count":9219714,"project":"opencensus"},{"download_count":9218123,"project":"azure-mgmt-managementgroups"},{"download_count":9217542,"project":"zstandard"},{"download_count":9217322,"project":"azure-mgmt-recoveryservicesbackup"},{"download_count":9207730,"project":"jsonpickle"},{"download_count":9193594,"project":"azure-mgmt-devtestlabs"},{"download_count":9193546,"project":"humanize"},{"download_count":9188856,"project":"yapf"},{"download_count":9171122,"project":"azure-mgmt-eventgrid"},{"download_count":9168188,"project":"billiard"},{"download_count":9165915,"project":"azure-mgmt-cognitiveservices"},{"download_count":9124573,"project":"azure-mgmt-applicationinsights"},{"download_count":9117283,"project":"levenshtein"},{"download_count":9110507,"project":"mysqlclient"},{"download_count":9097404,"project":"h2"},{"download_count":9084198,"project":"hyperframe"},{"download_count":9076808,"project":"azure-mgmt-servicefabric"},{"download_count":9073522,"project":"apispec"},{"download_count":9059626,"project":"vine"},{"download_count":9052528,"project":"azure-mgmt-billing"},{"download_count":9050065,"project":"azure-mgmt-media"},{"download_count":9042580,"project":"azure-mgmt-policyinsights"},{"download_count":9041390,"project":"azure-mgmt-iothubprovisioningservices"},{"download_count":9035894,"project":"azure-appconfiguration"},{"download_count":9035704,"project":"azure-mgmt-batchai"},{"download_count":9015323,"project":"azure-mgmt-datamigration"},{"download_count":9012774,"project":"azure-mgmt-nspkg"},{"download_count":9012335,"project":"azure-mgmt-iotcentral"},{"download_count":9011875,"project":"azure-mgmt-maps"},{"download_count":8978016,"project":"azure-storage-queue"},{"download_count":8960520,"project":"tensorflow-io-gcs-filesystem"},{"download_count":8949280,"project":"astor"},{"download_count":8919174,"project":"azure-cli-core"},{"download_count":8902241,"project":"pycountry"},{"download_count":8882808,"project":"lark"},{"download_count":8872519,"project":"mypy-boto3-s3"},{"download_count":8853687,"project":"pyproj"},{"download_count":8844489,"project":"pyathena"},{"download_count":8843040,"project":"apache-airflow-providers-http"},{"download_count":8842805,"project":"boto3-stubs"},{"download_count":8840067,"project":"parsimonious"},{"download_count":8806717,"project":"ml-dtypes"},{"download_count":8795030,"project":"azure-mgmt-datalake-nspkg"},{"download_count":8772653,"project":"knack"},{"download_count":8745897,"project":"pyserial"},{"download_count":8695423,"project":"azure-mgmt-datalake-store"},{"download_count":8680190,"project":"office365-rest-python-client"},{"download_count":8559948,"project":"flask-sqlalchemy"},{"download_count":8543733,"project":"python-magic"},{"download_count":8542475,"project":"contextlib2"},{"download_count":8534062,"project":"python-daemon"},{"download_count":8525258,"project":"moto"},{"download_count":8511848,"project":"cfn-lint"},{"download_count":8482183,"project":"requests-mock"},{"download_count":8452608,"project":"mypy-boto3-rds"},{"download_count":8444689,"project":"cytoolz"},{"download_count":8436971,"project":"python-gitlab"},{"download_count":8421389,"project":"pip-tools"},{"download_count":8371819,"project":"typing"},{"download_count":8354067,"project":"opencensus-ext-azure"},{"download_count":8351314,"project":"grpcio-health-checking"},{"download_count":8313129,"project":"lightgbm"},{"download_count":8283128,"project":"cramjam"},{"download_count":8282657,"project":"boto"},{"download_count":8275071,"project":"psycopg"},{"download_count":8259831,"project":"eth-utils"},{"download_count":8230005,"project":"parse"},{"download_count":8189628,"project":"jpype1"},{"download_count":8180347,"project":"leather"},{"download_count":8175864,"project":"eth-hash"},{"download_count":8166576,"project":"click-didyoumean"},{"download_count":8154022,"project":"azure-multiapi-storage"},{"download_count":8151458,"project":"tensorflow-text"},{"download_count":8029833,"project":"python-jose"},{"download_count":8022021,"project":"dbt-extractor"},{"download_count":8017467,"project":"avro"},{"download_count":8006201,"project":"botocore-stubs"},{"download_count":7991976,"project":"click-repl"},{"download_count":7951871,"project":"javaproperties"},{"download_count":7951447,"project":"azure-mgmt-datalake-analytics"},{"download_count":7923774,"project":"stevedore"},{"download_count":7881115,"project":"azure-mgmt-reservations"},{"download_count":7874389,"project":"pyspnego"},{"download_count":7871617,"project":"holidays"},{"download_count":7847055,"project":"azure-synapse-artifacts"},{"download_count":7844774,"project":"flask-wtf"},{"download_count":7839824,"project":"eth-typing"},{"download_count":7809878,"project":"azure-loganalytics"},{"download_count":7803480,"project":"onnxruntime"},{"download_count":7793690,"project":"azure-mgmt-consumption"},{"download_count":7779790,"project":"cmake"},{"download_count":7775881,"project":"azure-mgmt-relay"},{"download_count":7774082,"project":"python-http-client"},{"download_count":7756364,"project":"azure-cli-telemetry"},{"download_count":7737175,"project":"azure-synapse-spark"},{"download_count":7641640,"project":"dateparser"},{"download_count":7614156,"project":"azure-mgmt-apimanagement"},{"download_count":7594092,"project":"resolvelib"},{"download_count":7553784,"project":"opentelemetry-instrumentation-requests"},{"download_count":7551840,"project":"marisa-trie"},{"download_count":7524947,"project":"elastic-transport"},{"download_count":7524542,"project":"azure-mgmt-privatedns"},{"download_count":7513662,"project":"azure-mgmt-hdinsight"},{"download_count":7484996,"project":"langchain-text-splitters"},{"download_count":7443925,"project":"google-cloud-dataflow-client"},{"download_count":7437586,"project":"azure-mgmt-security"},{"download_count":7429072,"project":"azure-mgmt-kusto"},{"download_count":7422635,"project":"azure-mgmt-synapse"},{"download_count":7406613,"project":"language-data"},{"download_count":7365277,"project":"apscheduler"},{"download_count":7362495,"project":"azure-synapse-accesscontrol"},{"download_count":7360088,"project":"azure-mgmt-redhatopenshift"},{"download_count":7349775,"project":"dbt-semantic-interfaces"},{"download_count":7349137,"project":"azure-keyvault-administration"},{"download_count":7346991,"project":"azure-mgmt-sqlvirtualmachine"},{"download_count":7345984,"project":"magicattr"},{"download_count":7345291,"project":"azure-mgmt-appconfiguration"},{"download_count":7341500,"project":"azure-mgmt-netapp"},{"download_count":7329570,"project":"azure-mgmt-imagebuilder"},{"download_count":7322308,"project":"azure-mgmt-botservice"},{"download_count":7311443,"project":"azure-mgmt-servicelinker"},{"download_count":7310793,"project":"apache-airflow-providers-fab"},{"download_count":7309959,"project":"azure-mgmt-servicefabricmanagedclusters"},{"download_count":7309662,"project":"azure-mgmt-databoxedge"},{"download_count":7307554,"project":"azure-synapse-managedprivateendpoints"},{"download_count":7302367,"project":"azure-mgmt-extendedlocation"},{"download_count":7294778,"project":"setuptools-rust"},{"download_count":7287659,"project":"fasteners"},{"download_count":7261369,"project":"partd"},{"download_count":7254852,"project":"types-awscrt"},{"download_count":7244942,"project":"enum34"},{"download_count":7202778,"project":"locket"},{"download_count":7147260,"project":"accelerate"},{"download_count":7103523,"project":"tifffile"},{"download_count":7086631,"project":"inflect"},{"download_count":7065464,"project":"geopandas"},{"download_count":7060435,"project":"py-cpuinfo"},{"download_count":7057614,"project":"sendgrid"},{"download_count":7051242,"project":"flask-login"},{"download_count":7028826,"project":"pytest-timeout"},{"download_count":7016238,"project":"eth-abi"},{"download_count":7001666,"project":"cligj"},{"download_count":6949216,"project":"mergedeep"},{"download_count":6938931,"project":"python-levenshtein"},{"download_count":6933791,"project":"urllib3-secure-extra"},{"download_count":6901264,"project":"wtforms"},{"download_count":6858679,"project":"yamllint"},{"download_count":6844243,"project":"fuzzywuzzy"},{"download_count":6832686,"project":"apache-airflow-providers-ftp"},{"download_count":6786377,"project":"azure-storage-file-share"},{"download_count":6761082,"project":"dacite"},{"download_count":6734888,"project":"iso8601"},{"download_count":6734272,"project":"jaydebeapi"},{"download_count":6733167,"project":"fastparquet"},{"download_count":6702899,"project":"validators"},{"download_count":6695635,"project":"types-s3transfer"},{"download_count":6663223,"project":"blessed"},{"download_count":6661482,"project":"types-pytz"},{"download_count":6648953,"project":"ipython-genutils"},{"download_count":6629505,"project":"bracex"},{"download_count":6614820,"project":"pathy"},{"download_count":6612665,"project":"apache-beam"},{"download_count":6555798,"project":"lazy-loader"},{"download_count":6503298,"project":"pydash"},{"download_count":6500642,"project":"sqlalchemy-utils"},{"download_count":6495929,"project":"universal-pathlib"},{"download_count":6482061,"project":"hyperlink"},{"download_count":6472404,"project":"azure-mgmt-managedservices"},{"download_count":6461452,"project":"kfp"},{"download_count":6458164,"project":"netaddr"},{"download_count":6448084,"project":"python-docx"},{"download_count":6447372,"project":"querystring-parser"},{"download_count":6437822,"project":"bytecode"},{"download_count":6419367,"project":"phonenumbers"},{"download_count":6395271,"project":"unicodecsv"},{"download_count":6373842,"project":"polars"},{"download_count":6366276,"project":"apache-airflow-providers-sqlite"},{"download_count":6357041,"project":"types-protobuf"},{"download_count":6354444,"project":"iso3166"},{"download_count":6337696,"project":"nvidia-cublas-cu11"},{"download_count":6295760,"project":"pytest-rerunfailures"},{"download_count":6269131,"project":"nvidia-cudnn-cu11"},{"download_count":6267321,"project":"sqlalchemy-spanner"},{"download_count":6262868,"project":"types-setuptools"},{"download_count":6261141,"project":"azure-servicebus"},{"download_count":6259729,"project":"google-cloud-run"},{"download_count":6245263,"project":"yappi"},{"download_count":6240902,"project":"types-urllib3"},{"download_count":6192305,"project":"prefect"},{"download_count":6192219,"project":"google-cloud-storage-transfer"},{"download_count":6178678,"project":"cloudpathlib"},{"download_count":6178573,"project":"cssselect"},{"download_count":6162251,"project":"opencv-python-headless"},{"download_count":6155190,"project":"connexion"},{"download_count":6154639,"project":"ddtrace"},{"download_count":6129566,"project":"ndg-httpsclient"},{"download_count":6127047,"project":"envier"},{"download_count":6118533,"project":"mmh3"},{"download_count":6096476,"project":"torchaudio"},{"download_count":6088419,"project":"pyright"},{"download_count":6082028,"project":"azure-mgmt-datafactory"},{"download_count":6073083,"project":"nvidia-cuda-runtime-cu11"},{"download_count":6047822,"project":"nvidia-cuda-nvrtc-cu11"},{"download_count":6044573,"project":"slicer"},{"download_count":6042848,"project":"google-cloud-batch"},{"download_count":5998135,"project":"azure-kusto-data"},{"download_count":5987771,"project":"sphinx-rtd-theme"},{"download_count":5972639,"project":"azure-mgmt-deploymentmanager"},{"download_count":5967943,"project":"shap"},{"download_count":5941917,"project":"pydot"},{"download_count":5928829,"project":"django-allauth"},{"download_count":5903663,"project":"torchmetrics"},{"download_count":5884536,"project":"cron-descriptor"},{"download_count":5874437,"project":"gql"},{"download_count":5865063,"project":"linkify-it-py"},{"download_count":5842025,"project":"pytorch-lightning"},{"download_count":5823096,"project":"fire"},{"download_count":5812689,"project":"apache-airflow-providers-slack"},{"download_count":5804095,"project":"cachelib"},{"download_count":5778955,"project":"keras-applications"},{"download_count":5771449,"project":"pypdf"},{"download_count":5754835,"project":"gradio"},{"download_count":5747284,"project":"logbook"},{"download_count":5732968,"project":"starkbank-ecdsa"},{"download_count":5731159,"project":"incremental"},{"download_count":5728989,"project":"pathlib"},{"download_count":5725897,"project":"cfn-flip"},{"download_count":5719970,"project":"uc-micro-py"},{"download_count":5712977,"project":"aws-sam-translator"},{"download_count":5712820,"project":"pyee"},{"download_count":5702895,"project":"slackclient"},{"download_count":5683673,"project":"diskcache"},{"download_count":5679818,"project":"configargparse"},{"download_count":5671849,"project":"datadog-api-client"},{"download_count":5665373,"project":"twisted"},{"download_count":5626508,"project":"jellyfish"},{"download_count":5605458,"project":"pydub"},{"download_count":5602854,"project":"junit-xml"},{"download_count":5602290,"project":"flask-caching"},{"download_count":5543049,"project":"sentence-transformers"},{"download_count":5540114,"project":"dbt-common"},{"download_count":5500645,"project":"typed-ast"},{"download_count":5486163,"project":"apache-airflow-providers-amazon"},{"download_count":5480103,"project":"pydantic-extra-types"},{"download_count":5477091,"project":"ansible"},{"download_count":5473154,"project":"inject"},{"download_count":5464479,"project":"django-cors-headers"},{"download_count":5463653,"project":"oracledb"},{"download_count":5460452,"project":"keyrings-google-artifactregistry-auth"},{"download_count":5454795,"project":"timm"},{"download_count":5444784,"project":"json-merge-patch"},{"download_count":5428188,"project":"xarray"},{"download_count":5420977,"project":"requests-ntlm"},{"download_count":5407775,"project":"geoip2"},{"download_count":5398618,"project":"events"},{"download_count":5386661,"project":"psycopg-binary"},{"download_count":5378775,"project":"natsort"},{"download_count":5373391,"project":"ansible-core"},{"download_count":5357934,"project":"automat"},{"download_count":5346406,"project":"onnx"},{"download_count":5327677,"project":"astronomer-cosmos"},{"download_count":5312513,"project":"apache-airflow-providers-imap"},{"download_count":5307752,"project":"constantly"},{"download_count":5298553,"project":"futures"},{"download_count":5298126,"project":"pyhcl"},{"download_count":5293661,"project":"limits"},{"download_count":5262022,"project":"boltons"},{"download_count":5236247,"project":"azure-keyvault-certificates"},{"download_count":5224182,"project":"autopep8"},{"download_count":5221262,"project":"wcmatch"},{"download_count":5216146,"project":"apache-airflow-providers-smtp"},{"download_count":5214225,"project":"h3"},{"download_count":5196296,"project":"geographiclib"},{"download_count":5187202,"project":"statsd"},{"download_count":5172153,"project":"dbt-adapters"},{"download_count":5164650,"project":"pymdown-extensions"},{"download_count":5162286,"project":"nvidia-ml-py"},{"download_count":5145886,"project":"langchain-google-vertexai"},{"download_count":5140683,"project":"geopy"},{"download_count":5124970,"project":"tableauserverclient"},{"download_count":5117899,"project":"strictyaml"},{"download_count":5114738,"project":"oldest-supported-numpy"},{"download_count":5112682,"project":"lightning-utilities"},{"download_count":5111964,"project":"mypy-boto3-appflow"},{"download_count":5101002,"project":"apache-airflow-providers-common-io"},{"download_count":5099905,"project":"pytz-deprecation-shim"},{"download_count":5064245,"project":"ftfy"},{"download_count":5057171,"project":"flask-jwt-extended"},{"download_count":5054769,"project":"langchain-openai"},{"download_count":5050463,"project":"methodtools"},{"download_count":5050191,"project":"strenum"},{"download_count":5050166,"project":"types-redis"},{"download_count":5032812,"project":"marshmallow-sqlalchemy"},{"download_count":5010647,"project":"crcmod"},{"download_count":4993824,"project":"asyncpg"},{"download_count":4993467,"project":"emoji"},{"download_count":4965283,"project":"swagger-ui-bundle"},{"download_count":4963370,"project":"faiss-cpu"},{"download_count":4961291,"project":"grpc-interceptor"},{"download_count":4936411,"project":"fiona"},{"download_count":4923141,"project":"eth-account"},{"download_count":4914503,"project":"junitparser"},{"download_count":4907525,"project":"ldap3"},{"download_count":4902079,"project":"minimal-snowplow-tracker"},{"download_count":4851116,"project":"maxminddb"},{"download_count":4833795,"project":"editables"},{"download_count":4820093,"project":"svgwrite"},{"download_count":4804065,"project":"google-cloud"},{"download_count":4788964,"project":"bottle"},{"download_count":4772259,"project":"webdriver-manager"},{"download_count":4768367,"project":"pandera"},{"download_count":4719569,"project":"wirerope"},{"download_count":4717996,"project":"multimethod"},{"download_count":4717820,"project":"ultralytics"},{"download_count":4715614,"project":"griffe"},{"download_count":4709627,"project":"einops"},{"download_count":4709575,"project":"aws-lambda-powertools"},{"download_count":4687008,"project":"opentelemetry-instrumentation-asgi"},{"download_count":4669165,"project":"streamlit"},{"download_count":4633866,"project":"elasticsearch-dsl"},{"download_count":4580323,"project":"weasel"},{"download_count":4574392,"project":"reportlab"},{"download_count":4572822,"project":"ua-parser"},{"download_count":4571523,"project":"pika"},{"download_count":4565721,"project":"pyotp"},{"download_count":4521234,"project":"azure-devops"},{"download_count":4516576,"project":"rdflib"},{"download_count":4513075,"project":"pdfminer-six"},{"download_count":4509534,"project":"sphinxcontrib-jquery"},{"download_count":4508240,"project":"django-filter"},{"download_count":4505512,"project":"trino"},{"download_count":4495381,"project":"mkdocs-material"},{"download_count":4493410,"project":"bidict"},{"download_count":4491361,"project":"passlib"},{"download_count":4487746,"project":"pathlib-abc"},{"download_count":4486229,"project":"marshmallow-enum"},{"download_count":4481767,"project":"sklearn"},{"download_count":4466055,"project":"kubernetes-asyncio"},{"download_count":4464914,"project":"asyncio"},{"download_count":4458420,"project":"apache-airflow-providers-common-compat"},{"download_count":4437660,"project":"flask-limiter"},{"download_count":4437654,"project":"google"},{"download_count":4424748,"project":"azure-kusto-ingest"},{"download_count":4407003,"project":"openapi-spec-validator"},{"download_count":4396415,"project":"opentelemetry-instrumentation-fastapi"},{"download_count":4380615,"project":"rich-argparse"},{"download_count":4371518,"project":"azure-eventhub"},{"download_count":4361921,"project":"sphinx-autodoc-typehints"},{"download_count":4358820,"project":"albumentations"},{"download_count":4341538,"project":"meson"},{"download_count":4341088,"project":"pytest-random-order"},{"download_count":4329569,"project":"pytest-forked"},{"download_count":4312856,"project":"google-re2"},{"download_count":4307225,"project":"gradio-client"},{"download_count":4265153,"project":"flask-session"},{"download_count":4259834,"project":"langdetect"},{"download_count":4258362,"project":"constructs"},{"download_count":4255544,"project":"kfp-pipeline-spec"},{"download_count":4204702,"project":"playwright"},{"download_count":4200059,"project":"addict"},{"download_count":4191732,"project":"commonmark"},{"download_count":4185969,"project":"flask-restful"},{"download_count":4177504,"project":"fs"},{"download_count":4174931,"project":"aws-xray-sdk"},{"download_count":4167254,"project":"gensim"},{"download_count":4152924,"project":"pyperclip"},{"download_count":4150469,"project":"distributed"},{"download_count":4103400,"project":"pgpy"},{"download_count":4102753,"project":"bandit"},{"download_count":4100501,"project":"chroma-hnswlib"},{"download_count":4090495,"project":"pytest-localserver"},{"download_count":4088359,"project":"duckdb"},{"download_count":4072013,"project":"formulaic"},{"download_count":4071419,"project":"cog"},{"download_count":4068477,"project":"convertdate"},{"download_count":4033989,"project":"pyelftools"},{"download_count":4021004,"project":"jsonlines"},{"download_count":4020823,"project":"cloudevents"},{"download_count":4019530,"project":"types-dataclasses"},{"download_count":4018120,"project":"pyaml"},{"download_count":4006230,"project":"tweepy"},{"download_count":4004613,"project":"nbclassic"},{"download_count":4004347,"project":"fasttext-wheel"},{"download_count":4002615,"project":"jsonref"},{"download_count":4000476,"project":"glom"},{"download_count":3999078,"project":"click-option-group"},{"download_count":3998951,"project":"face"},{"download_count":3997160,"project":"snowflake-snowpark-python"},{"download_count":3943701,"project":"keras-preprocessing"},{"download_count":3938578,"project":"pipx"},{"download_count":3937816,"project":"cx-oracle"},{"download_count":3935341,"project":"tensorboard-plugin-wit"},{"download_count":3925964,"project":"ray"},{"download_count":3918761,"project":"feedparser"},{"download_count":3899885,"project":"pytest-django"},{"download_count":3899139,"project":"checkov"},{"download_count":3889991,"project":"pydeck"},{"download_count":3885895,"project":"tomli-w"},{"download_count":3867718,"project":"python-decouple"},{"download_count":3851207,"project":"prometheus-flask-exporter"},{"download_count":3847511,"project":"pytest-randomly"},{"download_count":3845002,"project":"autograd"},{"download_count":3840004,"project":"peewee"},{"download_count":3822791,"project":"service-identity"},{"download_count":3821152,"project":"ipaddress"},{"download_count":3799808,"project":"binaryornot"},{"download_count":3794927,"project":"aiosqlite"},{"download_count":3782627,"project":"pylint-plugin-utils"},{"download_count":3779061,"project":"cloudformation-cli"},{"download_count":3775893,"project":"flask-babel"},{"download_count":3775815,"project":"factory-boy"},{"download_count":3774655,"project":"pycares"},{"download_count":3764448,"project":"aiodns"},{"download_count":3753186,"project":"python-socketio"},{"download_count":3751987,"project":"async-generator"},{"download_count":3744030,"project":"python-engineio"},{"download_count":3739935,"project":"cloudformation-cli-python-plugin"},{"download_count":3738464,"project":"cloudformation-cli-java-plugin"},{"download_count":3737961,"project":"stringcase"},{"download_count":3737442,"project":"cloudformation-cli-go-plugin"},{"download_count":3736424,"project":"cloudformation-cli-typescript-plugin"},{"download_count":3715460,"project":"spark-nlp"},{"download_count":3699433,"project":"atomicwrites"},{"download_count":3696326,"project":"uamqp"},{"download_count":3671060,"project":"ciso8601"},{"download_count":3666850,"project":"korean-lunar-calendar"},{"download_count":3658111,"project":"recordlinkage"},{"download_count":3651208,"project":"schedule"},{"download_count":3649672,"project":"cerberus"},{"download_count":3632907,"project":"pydocstyle"},{"download_count":3624219,"project":"optree"},{"download_count":3616432,"project":"sudachidict-core"},{"download_count":3615836,"project":"dbt-snowflake"},{"download_count":3607767,"project":"parse-type"},{"download_count":3606204,"project":"jax"},{"download_count":3605821,"project":"xlwt"},{"download_count":3603814,"project":"opentelemetry-instrumentation-wsgi"},{"download_count":3603777,"project":"cssselect2"},{"download_count":3602851,"project":"functions-framework"},{"download_count":3600065,"project":"posthog"},{"download_count":3585595,"project":"meson-python"},{"download_count":3584543,"project":"fastapi-cli"},{"download_count":3571761,"project":"userpath"},{"download_count":3571150,"project":"configupdater"},{"download_count":3564532,"project":"pymupdf"},{"download_count":3561786,"project":"dask-expr"},{"download_count":3554619,"project":"mkdocs"},{"download_count":3550312,"project":"pyproject-metadata"},{"download_count":3528702,"project":"immutabledict"},{"download_count":3518920,"project":"lxml-html-clean"},{"download_count":3517645,"project":"cookiecutter"},{"download_count":3516174,"project":"qrcode"},{"download_count":3514709,"project":"flit-core"},{"download_count":3503945,"project":"speechbrain"},{"download_count":3501544,"project":"moreorless"},{"download_count":3500321,"project":"hyperpyyaml"},{"download_count":3497487,"project":"sqlalchemy-redshift"},{"download_count":3497238,"project":"singer-sdk"},{"download_count":3495681,"project":"prefect-gcp"},{"download_count":3489758,"project":"pyqt5"},{"download_count":3485289,"project":"firebase-admin"},{"download_count":3478250,"project":"mypy-boto3-redshift-data"},{"download_count":3474025,"project":"prison"},{"download_count":3459907,"project":"django-extensions"},{"download_count":3452198,"project":"elementpath"},{"download_count":3444594,"project":"rasterio"},{"download_count":3438188,"project":"waitress"},{"download_count":3434979,"project":"xyzservices"},{"download_count":3432497,"project":"trailrunner"},{"download_count":3427599,"project":"pytest-split"},{"download_count":3424051,"project":"teradatasql"},{"download_count":3413858,"project":"numexpr"},{"download_count":3411280,"project":"pyerfa"},{"download_count":3402452,"project":"twilio"},{"download_count":3367663,"project":"sagemaker-mlflow"},{"download_count":3365033,"project":"bokeh"},{"download_count":3358986,"project":"affine"},{"download_count":3354168,"project":"tensorflow-metadata"},{"download_count":3350036,"project":"ffmpy"},{"download_count":3339421,"project":"kfp-server-api"},{"download_count":3328152,"project":"python3-openid"},{"download_count":3304783,"project":"azure-cosmosdb-table"},{"download_count":3298909,"project":"mypy-boto3-glue"},{"download_count":3298525,"project":"webob"},{"download_count":3293580,"project":"ddsketch"},{"download_count":3289312,"project":"sqlglot"},{"download_count":3287120,"project":"msgspec"},{"download_count":3276338,"project":"unidiff"},{"download_count":3263923,"project":"simple-websocket"},{"download_count":3262080,"project":"azure-cosmosdb-nspkg"},{"download_count":3261674,"project":"namex"},{"download_count":3260442,"project":"pyqt5-sip"},{"download_count":3258333,"project":"diff-cover"},{"download_count":3251062,"project":"django-storages"},{"download_count":3247651,"project":"ghp-import"},{"download_count":3247311,"project":"sagemaker-core"},{"download_count":3236459,"project":"dash"},{"download_count":3225523,"project":"marshmallow-oneofschema"},{"download_count":3222851,"project":"clickclick"},{"download_count":3220634,"project":"apache-airflow-providers-sftp"},{"download_count":3212010,"project":"google-analytics-admin"},{"download_count":3210576,"project":"mypy-boto3-secretsmanager"},{"download_count":3203980,"project":"readchar"},{"download_count":3196581,"project":"orderedmultidict"},{"download_count":3191084,"project":"pyyaml-env-tag"},{"download_count":3187086,"project":"pymsteams"},{"download_count":3182488,"project":"opencensus-ext-logging"},{"download_count":3165130,"project":"azure-monitor-query"},{"download_count":3159483,"project":"hiredis"},{"download_count":3157816,"project":"commentjson"},{"download_count":3150478,"project":"dpath"},{"download_count":3141356,"project":"xmlschema"},{"download_count":3137073,"project":"pulp"},{"download_count":3133535,"project":"stdlibs"},{"download_count":3128936,"project":"w3lib"},{"download_count":3126218,"project":"usort"},{"download_count":3120777,"project":"paho-mqtt"},{"download_count":3118684,"project":"filetype"},{"download_count":3113808,"project":"openapi-schema-validator"},{"download_count":3104043,"project":"pyglet"},{"download_count":3103040,"project":"ufmt"},{"download_count":3102200,"project":"robotframework"},{"download_count":3101743,"project":"tokenize-rt"},{"download_count":3081561,"project":"jaxlib"},{"download_count":3068064,"project":"sqlalchemy-jsonfield"},{"download_count":3064043,"project":"pandas-stubs"},{"download_count":3063986,"project":"grpcio-reflection"},{"download_count":3063001,"project":"pymeeus"},{"download_count":3061122,"project":"pypika"},{"download_count":3056810,"project":"filterpy"},{"download_count":3054472,"project":"uuid"},{"download_count":3043683,"project":"aiohttp-retry"},{"download_count":3041496,"project":"tensorboardx"},{"download_count":3039344,"project":"pyhocon"},{"download_count":3034271,"project":"hydra-core"},{"download_count":3033208,"project":"edgegrid-python"},{"download_count":3026385,"project":"pyqt5-qt5"},{"download_count":3021215,"project":"stripe"},{"download_count":3012360,"project":"orderly-set"},{"download_count":3011998,"project":"pytest-json-report"},{"download_count":3008819,"project":"hexbytes"},{"download_count":3006586,"project":"furl"},{"download_count":2997965,"project":"azure-storage-file"},{"download_count":2994839,"project":"sql-metadata"},{"download_count":2976221,"project":"polyfactory"},{"download_count":2973654,"project":"pytest-messenger"},{"download_count":2965788,"project":"cmdstanpy"},{"download_count":2957038,"project":"dbt-postgres"},{"download_count":2956034,"project":"hatch-vcs"},{"download_count":2952656,"project":"python-editor"},{"download_count":2948752,"project":"altgraph"},{"download_count":2939493,"project":"pyarrow-hotfix"},{"download_count":2937480,"project":"astropy"},{"download_count":2931640,"project":"user-agents"},{"download_count":2929768,"project":"pygame"},{"download_count":2921793,"project":"opentelemetry-instrumentation-flask"},{"download_count":2903370,"project":"pooch"},{"download_count":2901780,"project":"daff"},{"download_count":2893787,"project":"voluptuous"},{"download_count":2885750,"project":"python-box"},{"download_count":2874690,"project":"multipledispatch"},{"download_count":2869259,"project":"redis-py-cluster"},{"download_count":2865311,"project":"optuna"},{"download_count":2864701,"project":"url-normalize"},{"download_count":2859185,"project":"smbprotocol"},{"download_count":2846127,"project":"mypy-protobuf"},{"download_count":2841502,"project":"immutables"},{"download_count":2839233,"project":"json-repair"},{"download_count":2831820,"project":"interface-meta"},{"download_count":2814674,"project":"pywin32-ctypes"},{"download_count":2813069,"project":"hdfs"},{"download_count":2809328,"project":"python-snappy"},{"download_count":2804711,"project":"opentelemetry-instrumentation-dbapi"},{"download_count":2803569,"project":"web3"},{"download_count":2801360,"project":"lru-dict"},{"download_count":2799560,"project":"patchelf"},{"download_count":2795927,"project":"eth-rlp"},{"download_count":2793996,"project":"pyxlsb"},{"download_count":2792363,"project":"configobj"},{"download_count":2781287,"project":"adlfs"},{"download_count":2778286,"project":"shortuuid"},{"download_count":2777063,"project":"kaleido"},{"download_count":2775801,"project":"google-cloud-datastore"},{"download_count":2775433,"project":"unittest-xml-reporting"},{"download_count":2775372,"project":"toposort"},{"download_count":2772664,"project":"atlassian-python-api"},{"download_count":2771319,"project":"dash-core-components"},{"download_count":2769548,"project":"dash-table"},{"download_count":2768045,"project":"dash-html-components"},{"download_count":2767982,"project":"jwcrypto"},{"download_count":2767559,"project":"plotnine"},{"download_count":2765279,"project":"jdcal"},{"download_count":2761326,"project":"python-jenkins"},{"download_count":2760493,"project":"prophet"},{"download_count":2753044,"project":"hijri-converter"},{"download_count":2749711,"project":"mkdocs-material-extensions"},{"download_count":2746247,"project":"terminaltables"},{"download_count":2744690,"project":"yq"},{"download_count":2743566,"project":"dbt-bigquery"},{"download_count":2741802,"project":"colour"},{"download_count":2740821,"project":"influxdb"},{"download_count":2725332,"project":"librosa"},{"download_count":2721381,"project":"minio"},{"download_count":2719137,"project":"pyinstaller"},{"download_count":2718394,"project":"fpdf"},{"download_count":2717047,"project":"mypy-boto3-lambda"},{"download_count":2713931,"project":"opentelemetry-instrumentation-urllib"},{"download_count":2704118,"project":"pyinstaller-hooks-contrib"},{"download_count":2682113,"project":"jsii"},{"download_count":2680501,"project":"opentelemetry-instrumentation-urllib3"},{"download_count":2676970,"project":"enum-compat"},{"download_count":2673872,"project":"fastcore"},{"download_count":2660861,"project":"azureml-core"},{"download_count":2657219,"project":"undetected-chromedriver"},{"download_count":2653070,"project":"aws-cdk-integ-tests-alpha"},{"download_count":2652263,"project":"deepmerge"},{"download_count":2649109,"project":"datasketch"},{"download_count":2646778,"project":"astropy-iers-data"},{"download_count":2646575,"project":"comtypes"},{"download_count":2642138,"project":"marshmallow-dataclass"},{"download_count":2627070,"project":"azure-eventgrid"},{"download_count":2624623,"project":"pyrfc3339"},{"download_count":2619239,"project":"geventhttpclient"},{"download_count":2615355,"project":"qtpy"},{"download_count":2615345,"project":"kazoo"},{"download_count":2610273,"project":"pylint-pydantic"},{"download_count":2603916,"project":"pyhive"},{"download_count":2597701,"project":"semgrep"},{"download_count":2595635,"project":"netifaces"},{"download_count":2593414,"project":"sseclient-py"},{"download_count":2590280,"project":"django-redis"},{"download_count":2579901,"project":"dm-tree"},{"download_count":2576989,"project":"mypy-boto3-sqs"},{"download_count":2571250,"project":"pynamodb"},{"download_count":2556516,"project":"catboost"},{"download_count":2552190,"project":"google-cloud-pubsublite"},{"download_count":2546860,"project":"scandir"},{"download_count":2544323,"project":"mypy-boto3-dynamodb"},{"download_count":2537118,"project":"beartype"},{"download_count":2536216,"project":"sanic"},{"download_count":2531944,"project":"pyhumps"},{"download_count":2529256,"project":"click-default-group"},{"download_count":2527163,"project":"ipdb"},{"download_count":2522101,"project":"whitenoise"},{"download_count":2521585,"project":"mizani"},{"download_count":2521032,"project":"mixpanel"},{"download_count":2516145,"project":"amazon-ion"},{"download_count":2503610,"project":"peft"},{"download_count":2493026,"project":"diffusers"},{"download_count":2488500,"project":"tree-sitter"},{"download_count":2485220,"project":"anthropic"},{"download_count":2484535,"project":"soundfile"},{"download_count":2483302,"project":"tld"},{"download_count":2481069,"project":"proglog"},{"download_count":2478514,"project":"azure-functions"},{"download_count":2478174,"project":"django-debug-toolbar"},{"download_count":2473192,"project":"azure-ai-ml"},{"download_count":2471351,"project":"concurrent-log-handler"},{"download_count":2463036,"project":"publication"},{"download_count":2459656,"project":"environs"},{"download_count":2455584,"project":"sudachipy"},{"download_count":2450880,"project":"yfinance"},{"download_count":2450862,"project":"pytest-benchmark"},{"download_count":2447952,"project":"pytest-env"},{"download_count":2438026,"project":"acryl-datahub"},{"download_count":2431962,"project":"djangorestframework-simplejwt"},{"download_count":2429222,"project":"more-executors"},{"download_count":2421006,"project":"construct"},{"download_count":2418754,"project":"opentelemetry-instrumentation-logging"},{"download_count":2414829,"project":"python-pam"},{"download_count":2410940,"project":"num2words"},{"download_count":2409239,"project":"fastpurge"},{"download_count":2404944,"project":"pmdarima"},{"download_count":2395396,"project":"requests-cache"},{"download_count":2395385,"project":"sacremoses"},{"download_count":2395340,"project":"opentelemetry-instrumentation-psycopg2"},{"download_count":2386078,"project":"pypandoc"},{"download_count":2363015,"project":"locust"},{"download_count":2356841,"project":"s3path"},{"download_count":2342641,"project":"pycocotools"},{"download_count":2339726,"project":"opentelemetry-instrumentation-django"},{"download_count":2337981,"project":"bitstring"},{"download_count":2332294,"project":"databricks-api"},{"download_count":2330891,"project":"pint"},{"download_count":2329590,"project":"nox"},{"download_count":2327956,"project":"apache-airflow-providers-postgres"},{"download_count":2327121,"project":"types-six"},{"download_count":2327049,"project":"motor"},{"download_count":2326449,"project":"aws-psycopg2"},{"download_count":2325701,"project":"opentelemetry-distro"},{"download_count":2320492,"project":"flask-migrate"},{"download_count":2316934,"project":"ultralytics-thop"},{"download_count":2316467,"project":"lark-parser"},{"download_count":2313277,"project":"azure-monitor-opentelemetry-exporter"},{"download_count":2312192,"project":"pywinauto"},{"download_count":2310529,"project":"netcdf4"},{"download_count":2303031,"project":"qtconsole"},{"download_count":2293598,"project":"datefinder"},{"download_count":2288461,"project":"soda-core"},{"download_count":2288315,"project":"apache-airflow-providers-docker"},{"download_count":2287405,"project":"sgmllib3k"},{"download_count":2284947,"project":"dynamodb-json"},{"download_count":2283970,"project":"pathable"},{"download_count":2277283,"project":"olefile"},{"download_count":2274747,"project":"aiohttp-cors"},{"download_count":2274527,"project":"hatch-fancy-pypi-readme"},{"download_count":2272671,"project":"zict"},{"download_count":2264758,"project":"cleanco"},{"download_count":2260611,"project":"flask-openid"},{"download_count":2260413,"project":"pypyp"},{"download_count":2257929,"project":"sanic-routing"},{"download_count":2256977,"project":"django-environ"},{"download_count":2254866,"project":"allure-python-commons"},{"download_count":2247547,"project":"pypiwin32"},{"download_count":2244247,"project":"cftime"},{"download_count":2240553,"project":"colorful"},{"download_count":2239543,"project":"timezonefinder"},{"download_count":2236786,"project":"flake8-bugbear"},{"download_count":2236779,"project":"mkdocs-get-deps"},{"download_count":2235688,"project":"geomet"},{"download_count":2234424,"project":"eth-keys"},{"download_count":2233701,"project":"lifelines"},{"download_count":2231703,"project":"falcon"},{"download_count":2231378,"project":"pyfiglet"},{"download_count":2230716,"project":"injector"},{"download_count":2229240,"project":"flask-httpauth"},{"download_count":2228471,"project":"fakeredis"},{"download_count":2225489,"project":"aioboto3"},{"download_count":2221366,"project":"pyphen"},{"download_count":2209644,"project":"ruptures"},{"download_count":2195805,"project":"snuggs"},{"download_count":2186712,"project":"textual"},{"download_count":2185149,"project":"appnope"},{"download_count":2184593,"project":"bump2version"},{"download_count":2179268,"project":"google-apitools"},{"download_count":2178294,"project":"imageio-ffmpeg"},{"download_count":2169019,"project":"apache-airflow-providers-microsoft-mssql"},{"download_count":2166335,"project":"llama-parse"},{"download_count":2165675,"project":"flower"},{"download_count":2164536,"project":"geojson"},{"download_count":2161971,"project":"zc-lockfile"},{"download_count":2158365,"project":"fixedint"},{"download_count":2154748,"project":"uritools"},{"download_count":2148426,"project":"salesforce-bulk"},{"download_count":2144168,"project":"findspark"},{"download_count":2135598,"project":"fake-useragent"},{"download_count":2133764,"project":"pytd"},{"download_count":2131585,"project":"av"},{"download_count":2131139,"project":"cheroot"},{"download_count":2129743,"project":"pytesseract"},{"download_count":2126600,"project":"python-crontab"},{"download_count":2125543,"project":"pyusb"},{"download_count":2117772,"project":"strip-hints"},{"download_count":2113114,"project":"simpleeval"},{"download_count":2112651,"project":"appium-python-client"},{"download_count":2112127,"project":"azure-search-documents"},{"download_count":2111477,"project":"dbutils"},{"download_count":2106788,"project":"scikit-build-core"},{"download_count":2100138,"project":"hyperopt"},{"download_count":2097700,"project":"azure"},{"download_count":2092250,"project":"python-telegram-bot"},{"download_count":2088920,"project":"stanio"},{"download_count":2085682,"project":"nested-lookup"},{"download_count":2084078,"project":"mypy-boto3-cloudformation"},{"download_count":2080553,"project":"uncertainties"},{"download_count":2080149,"project":"bitsandbytes"},{"download_count":2079731,"project":"promise"},{"download_count":2079070,"project":"paginate"},{"download_count":2071169,"project":"yt-dlp"},{"download_count":2066325,"project":"dynaconf"},{"download_count":2060723,"project":"thrift-sasl"},{"download_count":2058756,"project":"azure-mgmt-subscription"},{"download_count":2054547,"project":"cassandra-driver"},{"download_count":2053523,"project":"yamale"},{"download_count":2049308,"project":"sacrebleu"},{"download_count":2039564,"project":"gpustat"},{"download_count":2038980,"project":"py-spy"},{"download_count":2033809,"project":"ec2-metadata"},{"download_count":2024955,"project":"python-consul"},{"download_count":2023455,"project":"cssutils"},{"download_count":2022907,"project":"pyogrio"},{"download_count":2021382,"project":"evaluate"},{"download_count":2018804,"project":"sqlfluff"},{"download_count":2016571,"project":"plumbum"},{"download_count":2015741,"project":"pep517"},{"download_count":2015337,"project":"wget"},{"download_count":2010005,"project":"python-pptx"},{"download_count":2002011,"project":"testcontainers"},{"download_count":1996021,"project":"pytest-error-for-skips"},{"download_count":1994264,"project":"prisma"},{"download_count":1989900,"project":"graphframes"},{"download_count":1988911,"project":"pyppeteer"},{"download_count":1988096,"project":"socksio"},{"download_count":1987840,"project":"aws-cdk-asset-awscli-v1"},{"download_count":1983057,"project":"newrelic"},{"download_count":1982952,"project":"tracerite"},{"download_count":1982526,"project":"html5tagger"},{"download_count":1974873,"project":"pypng"},{"download_count":1970085,"project":"elementary-data"},{"download_count":1969620,"project":"pdf2image"},{"download_count":1969345,"project":"iopath"},{"download_count":1967801,"project":"chevron"},{"download_count":1965969,"project":"pygsheets"},{"download_count":1961777,"project":"o365"},{"download_count":1956038,"project":"ffmpeg-python"},{"download_count":1954214,"project":"polling"},{"download_count":1952027,"project":"cloudflare"},{"download_count":1951192,"project":"testpath"},{"download_count":1950795,"project":"rlp"},{"download_count":1950005,"project":"lit"},{"download_count":1945192,"project":"click-spinner"},{"download_count":1941708,"project":"pipdeptree"},{"download_count":1934256,"project":"python-nvd3"},{"download_count":1923394,"project":"pathvalidate"},{"download_count":1921354,"project":"types-paramiko"},{"download_count":1920662,"project":"coveralls"},{"download_count":1919707,"project":"pytest-repeat"},{"download_count":1919123,"project":"multi-key-dict"},{"download_count":1916209,"project":"itypes"},{"download_count":1915749,"project":"tlparse"},{"download_count":1908209,"project":"soxr"},{"download_count":1905276,"project":"hologram"},{"download_count":1904889,"project":"pefile"},{"download_count":1901069,"project":"py7zr"},{"download_count":1900621,"project":"requests-futures"},{"download_count":1894290,"project":"rollbar"},{"download_count":1893188,"project":"packageurl-python"},{"download_count":1891493,"project":"singledispatch"},{"download_count":1890705,"project":"findpython"},{"download_count":1889467,"project":"json-log-formatter"},{"download_count":1888739,"project":"dunamai"},{"download_count":1888635,"project":"zipfile38"},{"download_count":1884561,"project":"inquirer"},{"download_count":1876423,"project":"pygeohash"},{"download_count":1876240,"project":"myst-parser"},{"download_count":1875439,"project":"dep-logic"},{"download_count":1873432,"project":"pymemcache"},{"download_count":1871523,"project":"pykwalify"},{"download_count":1869738,"project":"audioread"},{"download_count":1869530,"project":"memoization"},{"download_count":1869390,"project":"types-pyopenssl"},{"download_count":1867571,"project":"apache-sedona"},{"download_count":1867422,"project":"osqp"},{"download_count":1866709,"project":"drf-yasg"},{"download_count":1866598,"project":"hishel"},{"download_count":1864764,"project":"yaspin"},{"download_count":1863505,"project":"galvani"},{"download_count":1862289,"project":"docker-compose"},{"download_count":1860429,"project":"llama-index"},{"download_count":1858967,"project":"flask-restx"},{"download_count":1858933,"project":"azure-mgmt-notificationhubs"},{"download_count":1857508,"project":"torchsde"},{"download_count":1856273,"project":"httpx-sse"},{"download_count":1853858,"project":"pep8-naming"},{"download_count":1853404,"project":"htmldate"},{"download_count":1849508,"project":"opencv-contrib-python"},{"download_count":1843665,"project":"questionary"},{"download_count":1842726,"project":"databricks-pypi1"},{"download_count":1841741,"project":"pytest-custom-exit-code"},{"download_count":1841410,"project":"mysql-connector"},{"download_count":1840632,"project":"robotframework-pythonlibcore"},{"download_count":1840245,"project":"clickhouse-connect"},{"download_count":1838284,"project":"pyzstd"},{"download_count":1836722,"project":"dropbox"},{"download_count":1833166,"project":"riot"},{"download_count":1827700,"project":"pamqp"},{"download_count":1826253,"project":"boxsdk"},{"download_count":1825703,"project":"pygit2"},{"download_count":1824870,"project":"aws-cdk-lib"},{"download_count":1822509,"project":"django-timezone-field"},{"download_count":1819184,"project":"kornia"},{"download_count":1818920,"project":"blobfile"},{"download_count":1817315,"project":"signalfx"},{"download_count":1815387,"project":"eth-keyfile"},{"download_count":1814714,"project":"jsonconversion"},{"download_count":1813133,"project":"drf-spectacular"},{"download_count":1812244,"project":"flexparser"},{"download_count":1812239,"project":"flexcache"},{"download_count":1808152,"project":"dictdiffer"},{"download_count":1807872,"project":"trampoline"},{"download_count":1805565,"project":"allure-pytest"},{"download_count":1803466,"project":"expandvars"},{"download_count":1803102,"project":"deltalake"},{"download_count":1802419,"project":"mypy-boto3-ec2"},{"download_count":1800602,"project":"license-expression"},{"download_count":1799817,"project":"behave"},{"download_count":1799536,"project":"trimesh"},{"download_count":1797939,"project":"tensorflow-hub"},{"download_count":1792311,"project":"azure-mgmt-logic"},{"download_count":1791488,"project":"pytest-order"},{"download_count":1790972,"project":"truststore"},{"download_count":1788727,"project":"notion-client"},{"download_count":1787634,"project":"litellm"},{"download_count":1787074,"project":"insight-cli"},{"download_count":1785545,"project":"chispa"},{"download_count":1784440,"project":"tensorflow-datasets"},{"download_count":1784072,"project":"jaconv"},{"download_count":1782768,"project":"avro-gen3"},{"download_count":1782354,"project":"markdown2"},{"download_count":1781908,"project":"pbs-installer"},{"download_count":1780647,"project":"pyfakefs"},{"download_count":1780210,"project":"boolean-py"},{"download_count":1779339,"project":"rtree"},{"download_count":1778472,"project":"unearth"},{"download_count":1771580,"project":"databricks-connect"},{"download_count":1766499,"project":"boa-str"},{"download_count":1764590,"project":"html2text"},{"download_count":1763472,"project":"asteval"},{"download_count":1760956,"project":"flaky"},{"download_count":1758805,"project":"asyncssh"},{"download_count":1758419,"project":"pdm"},{"download_count":1757579,"project":"azure-servicefabric"},{"download_count":1757499,"project":"pympler"},{"download_count":1755438,"project":"sarif-om"},{"download_count":1752564,"project":"pytest-sugar"},{"download_count":1750905,"project":"pex"},{"download_count":1749675,"project":"jschema-to-python"},{"download_count":1749444,"project":"chromadb"},{"download_count":1748052,"project":"flatten-json"},{"download_count":1747430,"project":"eval-type-backport"},{"download_count":1741884,"project":"mbstrdecoder"},{"download_count":1740021,"project":"requests-aws-sign"},{"download_count":1739218,"project":"google-cloud-recommendations-ai"},{"download_count":1736446,"project":"azure-mgmt"},{"download_count":1734503,"project":"shareplum"},{"download_count":1734384,"project":"backports-functools-lru-cache"},{"download_count":1733755,"project":"cyclonedx-python-lib"},{"download_count":1732906,"project":"tzfpy"},{"download_count":1728998,"project":"expiringdict"},{"download_count":1728753,"project":"pipelinewise-singer-python"},{"download_count":1728390,"project":"azure-mgmt-scheduler"},{"download_count":1728365,"project":"virtualenv-clone"},{"download_count":1725874,"project":"atpublic"},{"download_count":1725850,"project":"pybloom-live"},{"download_count":1725562,"project":"azure-mgmt-commerce"},{"download_count":1723568,"project":"tablib"},{"download_count":1723343,"project":"azure-mgmt-powerbiembedded"},{"download_count":1719763,"project":"jproperties"},{"download_count":1719524,"project":"modin"},{"download_count":1719143,"project":"ortools"},{"download_count":1717222,"project":"azure-mgmt-hanaonazure"},{"download_count":1716238,"project":"azure-mgmt-machinelearningcompute"},{"download_count":1716098,"project":"azure-mgmt-managementpartner"},{"download_count":1711999,"project":"pyhamcrest"},{"download_count":1711574,"project":"autoflake"},{"download_count":1707523,"project":"ansible-compat"},{"download_count":1704799,"project":"cbor2"},{"download_count":1704012,"project":"azure-servicemanagement-legacy"},{"download_count":1703704,"project":"flask-bcrypt"},{"download_count":1692444,"project":"ifaddr"},{"download_count":1692356,"project":"azure-mgmt-devspaces"},{"download_count":1689622,"project":"pyaes"},{"download_count":1689180,"project":"mypy-boto3-sts"},{"download_count":1687239,"project":"robotframework-seleniumlibrary"},{"download_count":1686294,"project":"pysmi"},{"download_count":1686098,"project":"pyppmd"},{"download_count":1684200,"project":"typepy"},{"download_count":1683294,"project":"dominate"},{"download_count":1683062,"project":"pybcj"},{"download_count":1683000,"project":"pyudev"},{"download_count":1680980,"project":"py-partiql-parser"},{"download_count":1680955,"project":"pytest-base-url"},{"download_count":1679879,"project":"json-delta"},{"download_count":1675364,"project":"diff-match-patch"},{"download_count":1673864,"project":"scapy"},{"download_count":1673104,"project":"pymupdfb"},{"download_count":1672383,"project":"contextvars"},{"download_count":1668601,"project":"azure-applicationinsights"},{"download_count":1665750,"project":"mkdocstrings-python"},{"download_count":1662963,"project":"pytest-httpx"},{"download_count":1661526,"project":"bashlex"},{"download_count":1657932,"project":"onnxruntime-gpu"},{"download_count":1656903,"project":"pynvml"},{"download_count":1653026,"project":"weasyprint"},{"download_count":1652311,"project":"mutagen"},{"download_count":1651561,"project":"anytree"},{"download_count":1651402,"project":"bumpversion"},{"download_count":1650288,"project":"multivolumefile"},{"download_count":1646731,"project":"justext"},{"download_count":1643735,"project":"pikepdf"},{"download_count":1643067,"project":"aws-cdk-asset-kubectl-v20"},{"download_count":1635892,"project":"pyquery"},{"download_count":1634189,"project":"pyreadline3"},{"download_count":1632341,"project":"ephem"},{"download_count":1628005,"project":"types-cachetools"},{"download_count":1620857,"project":"opentelemetry-instrumentation-grpc"},{"download_count":1620502,"project":"multitasking"},{"download_count":1619789,"project":"trafilatura"},{"download_count":1617862,"project":"click-log"},{"download_count":1617006,"project":"discord-py"},{"download_count":1616827,"project":"smartsheet-python-sdk"},{"download_count":1616202,"project":"fasttext"},{"download_count":1614625,"project":"webargs"},{"download_count":1613588,"project":"pyhanko"},{"download_count":1603448,"project":"poetry-dynamic-versioning"},{"download_count":1602531,"project":"pypdfium2"},{"download_count":1595920,"project":"pkgconfig"},{"download_count":1595915,"project":"types-cffi"},{"download_count":1595578,"project":"prefect-aws"},{"download_count":1593762,"project":"pytimeparse2"},{"download_count":1592052,"project":"subprocess-tee"},{"download_count":1591879,"project":"txaio"},{"download_count":1589108,"project":"gdown"},{"download_count":1588373,"project":"lightning"},{"download_count":1587439,"project":"objsize"},{"download_count":1583480,"project":"rustworkx"},{"download_count":1582987,"project":"python-rapidjson"},{"download_count":1578866,"project":"cloud-sql-python-connector"},{"download_count":1574439,"project":"ghapi"},{"download_count":1573334,"project":"clickhouse-driver"},{"download_count":1572593,"project":"pdpyras"},{"download_count":1569329,"project":"autobahn"},{"download_count":1567939,"project":"pycairo"},{"download_count":1567688,"project":"courlan"},{"download_count":1567528,"project":"logging-azure-rest"},{"download_count":1567375,"project":"haversine"},{"download_count":1562399,"project":"zope-deprecation"},{"download_count":1558540,"project":"types-docutils"},{"download_count":1557360,"project":"ecs-logging"},{"download_count":1550313,"project":"jsonschema-path"},{"download_count":1550267,"project":"tf-keras"},{"download_count":1548498,"project":"pysnmp"},{"download_count":1533951,"project":"wavedrom"},{"download_count":1532880,"project":"eventlet"},{"download_count":1529409,"project":"sounddevice"},{"download_count":1529394,"project":"munch"},{"download_count":1526604,"project":"django-celery-beat"},{"download_count":1525846,"project":"azureml-dataprep"},{"download_count":1524024,"project":"timeout-decorator"},{"download_count":1523079,"project":"maturin"},{"download_count":1522969,"project":"yacs"},{"download_count":1519823,"project":"sqlparams"},{"download_count":1518956,"project":"opentracing"},{"download_count":1518893,"project":"pycomposefile"},{"download_count":1517872,"project":"py-serializable"},{"download_count":1506829,"project":"ckzg"},{"download_count":1504097,"project":"torchtext"},{"download_count":1501436,"project":"launchdarkly-server-sdk"},{"download_count":1499934,"project":"natto-py"},{"download_count":1498748,"project":"flashtext"},{"download_count":1498380,"project":"coreapi"},{"download_count":1495189,"project":"fpdf2"},{"download_count":1494398,"project":"multipart"},{"download_count":1493706,"project":"codeowners"},{"download_count":1489834,"project":"types-toml"},{"download_count":1488891,"project":"pandasql"},{"download_count":1487975,"project":"ws4py"},{"download_count":1486502,"project":"testfixtures"},{"download_count":1485150,"project":"tecton"},{"download_count":1483155,"project":"pyinstrument"},{"download_count":1480900,"project":"backports-weakref"},{"download_count":1475679,"project":"webtest"},{"download_count":1474449,"project":"click-help-colors"},{"download_count":1471758,"project":"python3-saml"},{"download_count":1469709,"project":"wordcloud"},{"download_count":1464947,"project":"robotframework-requests"},{"download_count":1463528,"project":"pytest-playwright"},{"download_count":1461918,"project":"supervisor"},{"download_count":1461782,"project":"azure-monitor-opentelemetry"},{"download_count":1461013,"project":"pydispatcher"},{"download_count":1460132,"project":"databricks-pypi2"},{"download_count":1460000,"project":"dj-database-url"},{"download_count":1459812,"project":"pep8"},{"download_count":1459675,"project":"tableauhyperapi"},{"download_count":1459222,"project":"xformers"},{"download_count":1457941,"project":"backports-cached-property"},{"download_count":1456690,"project":"lmdb"},{"download_count":1455842,"project":"github-heatmap"},{"download_count":1455366,"project":"llama-index-core"},{"download_count":1450313,"project":"nodejs-wheel-binaries"},{"download_count":1448924,"project":"influxdb-client"},{"download_count":1445634,"project":"python-bidi"},{"download_count":1444771,"project":"python-ldap"},{"download_count":1443816,"project":"google-generativeai"},{"download_count":1443460,"project":"cvxpy"},{"download_count":1441320,"project":"mypy-boto3-athena"},{"download_count":1440281,"project":"shtab"},{"download_count":1439479,"project":"msgraph-core"},{"download_count":1435418,"project":"pytest-ordering"},{"download_count":1435363,"project":"channels"},{"download_count":1434770,"project":"pdfplumber"},{"download_count":1434289,"project":"unstructured-client"},{"download_count":1432075,"project":"vcrpy"},{"download_count":1425609,"project":"databricks"},{"download_count":1420856,"project":"sqlmodel"},{"download_count":1419680,"project":"pytest-check"},{"download_count":1416057,"project":"stone"},{"download_count":1415340,"project":"umap-learn"},{"download_count":1415040,"project":"inflate64"},{"download_count":1411082,"project":"reactivex"},{"download_count":1407294,"project":"thefuzz"},{"download_count":1406130,"project":"portpicker"},{"download_count":1404767,"project":"dbt-redshift"},{"download_count":1404500,"project":"requests-sigv4"},{"download_count":1404001,"project":"tensorflow-probability"},{"download_count":1403252,"project":"microsoft-kiota-http"},{"download_count":1401419,"project":"papermill"},{"download_count":1401159,"project":"ddt"},{"download_count":1398900,"project":"pyformance"},{"download_count":1396172,"project":"biopython"},{"download_count":1395749,"project":"hjson"},{"download_count":1394970,"project":"jq"},{"download_count":1393704,"project":"jwt"},{"download_count":1393014,"project":"autograd-gamma"},{"download_count":1392565,"project":"checksumdir"},{"download_count":1392087,"project":"curlify"},{"download_count":1389489,"project":"rich-click"},{"download_count":1387499,"project":"aws-cdk-asset-node-proxy-agent-v6"},{"download_count":1387179,"project":"azure-core-tracing-opentelemetry"},{"download_count":1383843,"project":"python-arango"},{"download_count":1382668,"project":"google-ai-generativelanguage"},{"download_count":1381639,"project":"boto3-type-annotations"},{"download_count":1376064,"project":"etils"},{"download_count":1376030,"project":"parsel"},{"download_count":1375467,"project":"facebook-business"},{"download_count":1373734,"project":"branca"},{"download_count":1371951,"project":"sphinx-design"},{"download_count":1371464,"project":"koalas"},{"download_count":1370256,"project":"dicttoxml"},{"download_count":1369930,"project":"pynndescent"},{"download_count":1369471,"project":"django-cleanup"},{"download_count":1368552,"project":"hatch-requirements-txt"},{"download_count":1368459,"project":"c7n"},{"download_count":1366986,"project":"mongomock"},{"download_count":1366328,"project":"pastedeploy"},{"download_count":1363856,"project":"pydevd"},{"download_count":1363176,"project":"flake8-docstrings"},{"download_count":1362070,"project":"pyclipper"},{"download_count":1361542,"project":"gspread-dataframe"},{"download_count":1361443,"project":"flask-socketio"},{"download_count":1360797,"project":"codecov"},{"download_count":1356670,"project":"opentelemetry-resource-detector-azure"},{"download_count":1351568,"project":"folium"},{"download_count":1347491,"project":"category-encoders"},{"download_count":1346458,"project":"memory-profiler"},{"download_count":1346171,"project":"rq"},{"download_count":1345900,"project":"genson"},{"download_count":1345798,"project":"intelhex"},{"download_count":1342338,"project":"pystache"},{"download_count":1340833,"project":"imagehash"},{"download_count":1339598,"project":"azure-mgmt-appcontainers"},{"download_count":1336818,"project":"scs"},{"download_count":1336235,"project":"transaction"},{"download_count":1335602,"project":"pdfkit"},{"download_count":1328889,"project":"path"},{"download_count":1326922,"project":"django-htmx"},{"download_count":1326274,"project":"pyunormalize"},{"download_count":1325548,"project":"pprintpp"},{"download_count":1321295,"project":"pydata-sphinx-theme"},{"download_count":1317686,"project":"django-model-utils"},{"download_count":1317211,"project":"uwsgi"},{"download_count":1316433,"project":"conan"},{"download_count":1316299,"project":"pinecone-client"},{"download_count":1314213,"project":"arviz"},{"download_count":1311577,"project":"j2cli"},{"download_count":1308684,"project":"textblob"},{"download_count":1305366,"project":"certbot-dns-cloudflare"},{"download_count":1305054,"project":"cerberus-python-client"},{"download_count":1305029,"project":"country-converter"},{"download_count":1304540,"project":"zopfli"},{"download_count":1300485,"project":"mongoengine"},{"download_count":1297342,"project":"open-clip-torch"},{"download_count":1295312,"project":"nvidia-cusolver-cu11"},{"download_count":1293062,"project":"backports-tempfile"},{"download_count":1292242,"project":"langgraph"},{"download_count":1291448,"project":"pytest-bdd"},{"download_count":1289651,"project":"qdldl"},{"download_count":1289270,"project":"ecos"},{"download_count":1288705,"project":"polib"},{"download_count":1288235,"project":"uuid6"},{"download_count":1287528,"project":"aioresponses"},{"download_count":1284527,"project":"nvidia-cuda-cupti-cu11"},{"download_count":1283832,"project":"mleap"},{"download_count":1282601,"project":"nvidia-cusparse-cu11"},{"download_count":1281986,"project":"dbt-spark"},{"download_count":1280290,"project":"ntlm-auth"},{"download_count":1280186,"project":"dockerfile-parse"},{"download_count":1279878,"project":"python-crfsuite"},{"download_count":1277410,"project":"queuelib"},{"download_count":1276703,"project":"nvidia-cufft-cu11"},{"download_count":1276048,"project":"nvidia-curand-cu11"},{"download_count":1275685,"project":"google-analytics-data"},{"download_count":1275464,"project":"hdbcli"},{"download_count":1275069,"project":"requirements-parser"},{"download_count":1271427,"project":"psycopg-pool"},{"download_count":1270749,"project":"boto3-stubs-lite"},{"download_count":1269535,"project":"google-cloud-trace"},{"download_count":1263584,"project":"cohere"},{"download_count":1262948,"project":"types-tabulate"},{"download_count":1262542,"project":"exchangelib"},{"download_count":1260553,"project":"nvidia-nvtx-cu11"},{"download_count":1259840,"project":"scrapy"},{"download_count":1258303,"project":"pylev"},{"download_count":1258131,"project":"numcodecs"},{"download_count":1256803,"project":"igraph"},{"download_count":1256784,"project":"django-appconf"},{"download_count":1255693,"project":"coreschema"},{"download_count":1252265,"project":"azureml-dataprep-rslex"},{"download_count":1248981,"project":"pyluach"},{"download_count":1240454,"project":"idna-ssl"},{"download_count":1239523,"project":"sphinx-copybutton"},{"download_count":1238841,"project":"pyzipper"},{"download_count":1237520,"project":"nvidia-nccl-cu11"},{"download_count":1236550,"project":"moviepy"},{"download_count":1230649,"project":"django-celery-results"},{"download_count":1226684,"project":"alive-progress"},{"download_count":1226221,"project":"base58"},{"download_count":1226189,"project":"xmlsec"},{"download_count":1221639,"project":"tensorflow-intel"},{"download_count":1221466,"project":"supervision"},{"download_count":1221107,"project":"rx"},{"download_count":1220865,"project":"cmd2"},{"download_count":1219746,"project":"itemloaders"},{"download_count":1218735,"project":"setuptools-git-versioning"},{"download_count":1218076,"project":"rembg"},{"download_count":1215949,"project":"requests-unixsocket"},{"download_count":1213234,"project":"pycurl"},{"download_count":1212021,"project":"markdownify"},{"download_count":1211977,"project":"flake8-isort"},{"download_count":1209634,"project":"clang-format"},{"download_count":1209173,"project":"protego"},{"download_count":1208881,"project":"python-hcl2"},{"download_count":1208645,"project":"tritonclient"},{"download_count":1208007,"project":"opentelemetry-propagator-aws-xray"},{"download_count":1206197,"project":"itemadapter"},{"download_count":1205975,"project":"gitdb2"},{"download_count":1203484,"project":"safety"},{"download_count":1203265,"project":"python-xlib"},{"download_count":1198849,"project":"openlineage-integration-common"},{"download_count":1198399,"project":"unstructured"},{"download_count":1198315,"project":"rfc3987"},{"download_count":1198206,"project":"pytest-instafail"},{"download_count":1196449,"project":"about-time"},{"download_count":1192430,"project":"asana"},{"download_count":1188803,"project":"ansible-lint"},{"download_count":1188494,"project":"aws-encryption-sdk"},{"download_count":1187200,"project":"resampy"},{"download_count":1187189,"project":"daphne"},{"download_count":1186154,"project":"prometheus-fastapi-instrumentator"},{"download_count":1185204,"project":"pymatting"},{"download_count":1185165,"project":"pydyf"},{"download_count":1184307,"project":"cairocffi"},{"download_count":1183496,"project":"tensorflow-io"},{"download_count":1181296,"project":"pypi-timemachine"},{"download_count":1180319,"project":"gs-quant"},{"download_count":1180088,"project":"soda-core-spark"},{"download_count":1179397,"project":"dependency-injector"},{"download_count":1179105,"project":"opentelemetry-sdk-extension-aws"},{"download_count":1178614,"project":"gcs-oauth2-boto-plugin"},{"download_count":1178182,"project":"node-semver"},{"download_count":1176577,"project":"logzero"},{"download_count":1176182,"project":"dockerpty"},{"download_count":1175068,"project":"xmod"},{"download_count":1173385,"project":"cairosvg"},{"download_count":1173176,"project":"microsoft-kiota-authentication-azure"},{"download_count":1172309,"project":"python-keycloak"},{"download_count":1172217,"project":"bc-detect-secrets"},{"download_count":1170490,"project":"editor"},{"download_count":1170249,"project":"paste"},{"download_count":1168594,"project":"types-pygments"},{"download_count":1167872,"project":"rdkit"},{"download_count":1167868,"project":"runs"},{"download_count":1166389,"project":"jieba"},{"download_count":1165077,"project":"dnslib"},{"download_count":1164550,"project":"nibabel"},{"download_count":1162856,"project":"funcy"},{"download_count":1162721,"project":"dbus-fast"},{"download_count":1160637,"project":"pyvirtualdisplay"},{"download_count":1160237,"project":"flask-compress"},{"download_count":1159876,"project":"qdrant-client"},{"download_count":1159180,"project":"urwid"},{"download_count":1158685,"project":"kornia-rs"},{"download_count":1157882,"project":"weaviate-client"},{"download_count":1157387,"project":"html5lib-modern"},{"download_count":1157241,"project":"nose2"},{"download_count":1157154,"project":"dohq-artifactory"},{"download_count":1157107,"project":"bitstruct"},{"download_count":1156836,"project":"ydata-profiling"},{"download_count":1156741,"project":"hatch"},{"download_count":1155397,"project":"htmlmin"},{"download_count":1153656,"project":"mypy-boto3-iam"},{"download_count":1153063,"project":"openlineage-python"},{"download_count":1152818,"project":"notifiers"},{"download_count":1152629,"project":"django-stubs-ext"},{"download_count":1150661,"project":"sasl"},{"download_count":1150515,"project":"aliyun-python-sdk-core"},{"download_count":1149432,"project":"bazel-runfiles"},{"download_count":1147974,"project":"django-stubs"},{"download_count":1147886,"project":"patch-ng"},{"download_count":1147474,"project":"ibm-db"},{"download_count":1145212,"project":"zope-proxy"},{"download_count":1145211,"project":"llama-index-llms-openai"},{"download_count":1144696,"project":"ansi2html"},{"download_count":1141564,"project":"pure-sasl"},{"download_count":1141232,"project":"soda-core-spark-df"},{"download_count":1140666,"project":"selenium-wire"},{"download_count":1140400,"project":"pylint-django"},{"download_count":1131895,"project":"django-crispy-forms"},{"download_count":1131538,"project":"microsoft-kiota-abstractions"},{"download_count":1131165,"project":"dbl-tempo"},{"download_count":1131132,"project":"neo4j"},{"download_count":1130683,"project":"opentelemetry-instrumentation-sqlalchemy"},{"download_count":1127159,"project":"braceexpand"},{"download_count":1121797,"project":"cliff"},{"download_count":1121173,"project":"zope-deferredimport"},{"download_count":1121039,"project":"sentinels"},{"download_count":1121027,"project":"verboselogs"},{"download_count":1119374,"project":"troposphere"},{"download_count":1117952,"project":"mypy-boto3-stepfunctions"},{"download_count":1117374,"project":"persistent"},{"download_count":1117150,"project":"pybytebuffer"},{"download_count":1115863,"project":"opentelemetry-instrumentation-redis"},{"download_count":1115594,"project":"restrictedpython"},{"download_count":1115387,"project":"sqlfluff-templater-dbt"},{"download_count":1114780,"project":"lunarcalendar"},{"download_count":1112533,"project":"aioredis"},{"download_count":1111615,"project":"bottleneck"},{"download_count":1111405,"project":"btrees"},{"download_count":1109008,"project":"pretty-html-table"},{"download_count":1104513,"project":"mkdocstrings"},{"download_count":1104455,"project":"glob2"},{"download_count":1101704,"project":"zarr"},{"download_count":1101383,"project":"memray"},{"download_count":1099026,"project":"c7n-org"},{"download_count":1098842,"project":"policy-sentry"},{"download_count":1098312,"project":"s3cmd"},{"download_count":1098088,"project":"artifacts-keyring"},{"download_count":1096397,"project":"pytest-assume"},{"download_count":1094706,"project":"tempora"},{"download_count":1094376,"project":"aws-lambda-builders"},{"download_count":1092703,"project":"credstash"},{"download_count":1090873,"project":"sphinxcontrib-mermaid"},{"download_count":1090164,"project":"std-uritemplate"},{"download_count":1090011,"project":"html-text"},{"download_count":1089081,"project":"aws-sam-cli"},{"download_count":1088040,"project":"aiomultiprocess"},{"download_count":1087965,"project":"spdx-tools"},{"download_count":1087817,"project":"xattr"},{"download_count":1087510,"project":"openxlab"},{"download_count":1086941,"project":"orbax-checkpoint"},{"download_count":1086322,"project":"apache-airflow-providers-dbt-cloud"},{"download_count":1086041,"project":"azureml-dataprep-native"},{"download_count":1086038,"project":"dbt-databricks"},{"download_count":1085158,"project":"html-testrunner"},{"download_count":1085011,"project":"roman"},{"download_count":1079954,"project":"bc-python-hcl2"},{"download_count":1079841,"project":"easydict"},{"download_count":1079196,"project":"jsonpath-python"},{"download_count":1078895,"project":"teradatasqlalchemy"},{"download_count":1077942,"project":"thop"},{"download_count":1076253,"project":"pytest-subtests"},{"download_count":1076044,"project":"gprof2dot"},{"download_count":1073897,"project":"tensorflow-addons"},{"download_count":1072906,"project":"requests-auth-aws-sigv4"},{"download_count":1068754,"project":"z3-solver"},{"download_count":1067795,"project":"python-stdnum"},{"download_count":1066551,"project":"llama-index-indices-managed-llama-cloud"},{"download_count":1066499,"project":"mmcif"},{"download_count":1066233,"project":"mss"},{"download_count":1065193,"project":"dparse"},{"download_count":1064518,"project":"colorclass"},{"download_count":1063813,"project":"cloudsplaining"},{"download_count":1061123,"project":"opencv-contrib-python-headless"},{"download_count":1061089,"project":"types-jsonschema"},{"download_count":1060460,"project":"simple-gcp-object-downloader"},{"download_count":1059789,"project":"jaraco-text"},{"download_count":1058267,"project":"checkdigit"},{"download_count":1057028,"project":"annoy"},{"download_count":1053562,"project":"pulumi"},{"download_count":1052878,"project":"visions"},{"download_count":1051581,"project":"aliyun-python-sdk-kms"},{"download_count":1051370,"project":"priority"},{"download_count":1047016,"project":"microsoft-security-utilities-secret-masker"},{"download_count":1046733,"project":"opentelemetry-instrumentation-aiohttp-client"},{"download_count":1045558,"project":"aiokafka"},{"download_count":1045534,"project":"onnxconverter-common"},{"download_count":1045348,"project":"singleton-decorator"},{"download_count":1043509,"project":"mypy-boto3-ecr"},{"download_count":1040617,"project":"openlineage-airflow"},{"download_count":1039733,"project":"awkward"},{"download_count":1038940,"project":"premailer"},{"download_count":1037423,"project":"intervaltree"},{"download_count":1036760,"project":"django-phonenumber-field"},{"download_count":1036502,"project":"pywinpty"},{"download_count":1035132,"project":"anyascii"},{"download_count":1034690,"project":"aiogram"},{"download_count":1034618,"project":"awkward-cpp"},{"download_count":1033950,"project":"django-simple-history"},{"download_count":1033789,"project":"autocommand"},{"download_count":1033587,"project":"flask-oidc"},{"download_count":1030405,"project":"opentelemetry-exporter-gcp-trace"},{"download_count":1028077,"project":"apsw"},{"download_count":1027723,"project":"skl2onnx"},{"download_count":1026762,"project":"youtube-transcript-api"},{"download_count":1026265,"project":"pgvector"},{"download_count":1024196,"project":"apache-airflow-providers-mongo"},{"download_count":1023012,"project":"clarabel"},{"download_count":1022233,"project":"quantlib"},{"download_count":1021034,"project":"property-manager"},{"download_count":1017995,"project":"zodbpickle"},{"download_count":1015477,"project":"flake8-comprehensions"},{"download_count":1012319,"project":"llama-index-agent-openai"},{"download_count":1011432,"project":"zconfig"},{"download_count":1011266,"project":"pyserial-asyncio"},{"download_count":1011158,"project":"linecache2"},{"download_count":1011026,"project":"joserfc"},{"download_count":1009187,"project":"jaraco-collections"},{"download_count":1008774,"project":"jsonpath-rw"},{"download_count":1008389,"project":"segment-anything"},{"download_count":1007803,"project":"soda-core-snowflake"},{"download_count":1006556,"project":"zodb"},{"download_count":1005612,"project":"pycep-parser"},{"download_count":1004611,"project":"rpyc"},{"download_count":1002224,"project":"opsgenie-sdk"},{"download_count":1001450,"project":"autopage"},{"download_count":1000703,"project":"traceback2"},{"download_count":998716,"project":"types-pillow"},{"download_count":995758,"project":"azure-storage"},{"download_count":995189,"project":"opentelemetry-instrumentation-botocore"},{"download_count":993082,"project":"biotite"},{"download_count":992630,"project":"msoffcrypto-tool"},{"download_count":992529,"project":"hubspot-api-client"},{"download_count":991047,"project":"grpclib"},{"download_count":990362,"project":"oyaml"},{"download_count":989981,"project":"mypy-boto3-apigateway"},{"download_count":989819,"project":"social-auth-core"},{"download_count":989248,"project":"albucore"},{"download_count":988767,"project":"zigpy"},{"download_count":987808,"project":"numdifftools"},{"download_count":987743,"project":"oci"},{"download_count":987414,"project":"strict-rfc3339"},{"download_count":987301,"project":"types-aiobotocore"},{"download_count":987203,"project":"opentelemetry-resourcedetector-gcp"},{"download_count":987143,"project":"dirtyjson"},{"download_count":986749,"project":"mediapipe"},{"download_count":986709,"project":"jsonschema-spec"},{"download_count":986258,"project":"cherrypy"},{"download_count":984925,"project":"azure-ai-formrecognizer"},{"download_count":984655,"project":"bc-jsonpath-ng"},{"download_count":984631,"project":"colored"},{"download_count":984534,"project":"crccheck"},{"download_count":983930,"project":"biotraj"},{"download_count":982837,"project":"django-ipware"},{"download_count":982829,"project":"editdistance"},{"download_count":982660,"project":"pynvim"},{"download_count":981192,"project":"snowflake"},{"download_count":979701,"project":"betterproto"},{"download_count":979256,"project":"types-cryptography"},{"download_count":976783,"project":"jsonmerge"},{"download_count":976286,"project":"curl-cffi"},{"download_count":972075,"project":"tmtools"},{"download_count":971806,"project":"arabic-reshaper"},{"download_count":970369,"project":"mockito"},{"download_count":969988,"project":"ibm-cloud-sdk-core"},{"download_count":968429,"project":"livy"},{"download_count":968028,"project":"seqio-nightly"},{"download_count":967909,"project":"tables"},{"download_count":967261,"project":"mypy-boto3-kinesis"},{"download_count":965789,"project":"types-pyserial"},{"download_count":964256,"project":"aws-secretsmanager-caching"},{"download_count":963234,"project":"apache-airflow-providers-jdbc"},{"download_count":963234,"project":"polling2"},{"download_count":962049,"project":"js2py"},{"download_count":960818,"project":"peppercorn"},{"download_count":960429,"project":"dateformat"},{"download_count":960002,"project":"requests-html"},{"download_count":959585,"project":"piexif"},{"download_count":959393,"project":"python-can"},{"download_count":959367,"project":"elastic-apm"},{"download_count":959123,"project":"llama-index-readers-llama-parse"},{"download_count":957657,"project":"langchain-experimental"},{"download_count":957087,"project":"bz2file"},{"download_count":956809,"project":"smmap2"},{"download_count":956076,"project":"typish"},{"download_count":955511,"project":"types-simplejson"},{"download_count":954547,"project":"mkdocs-autorefs"},{"download_count":950822,"project":"portend"},{"download_count":949333,"project":"dogpile-cache"},{"download_count":949221,"project":"google-cloud-pipeline-components"},{"download_count":948647,"project":"striprtf"},{"download_count":946322,"project":"hnswlib"},{"download_count":943229,"project":"repoze-lru"},{"download_count":942704,"project":"microsoft-kiota-serialization-json"},{"download_count":941885,"project":"furo"},{"download_count":941601,"project":"lunardate"},{"download_count":939595,"project":"googlemaps"},{"download_count":938468,"project":"tdqm"},{"download_count":936089,"project":"svglib"},{"download_count":935908,"project":"llama-index-readers-file"},{"download_count":935100,"project":"microsoft-kiota-serialization-text"},{"download_count":933432,"project":"jiwer"},{"download_count":932697,"project":"plac"},{"download_count":932069,"project":"sphinx-argparse"},{"download_count":931955,"project":"channels-redis"},{"download_count":931452,"project":"jupyter-ydoc"},{"download_count":931180,"project":"jupyter-server-ydoc"},{"download_count":930200,"project":"google-cloud-bigquery-biglake"},{"download_count":929637,"project":"lmfit"},{"download_count":925914,"project":"mypy-boto3-xray"},{"download_count":925454,"project":"django-import-export"},{"download_count":924439,"project":"mypy-boto3-schemas"},{"download_count":924179,"project":"sgqlc"},{"download_count":923842,"project":"mypy-boto3-signer"},{"download_count":923439,"project":"hashids"},{"download_count":923183,"project":"types-mock"},{"download_count":922920,"project":"odfpy"},{"download_count":922873,"project":"ndjson"},{"download_count":922847,"project":"dagster"},{"download_count":922308,"project":"autofaker"},{"download_count":921324,"project":"yarg"},{"download_count":919123,"project":"oslo-utils"},{"download_count":918308,"project":"hypercorn"},{"download_count":918261,"project":"latexcodec"},{"download_count":917901,"project":"google-cloud-discoveryengine"},{"download_count":915728,"project":"pybtex"},{"download_count":915574,"project":"python-ulid"},{"download_count":915101,"project":"swifter"},{"download_count":914721,"project":"textwrap3"},{"download_count":912085,"project":"clang"},{"download_count":911383,"project":"scikit-optimize"},{"download_count":910983,"project":"versioneer"},{"download_count":908585,"project":"phik"},{"download_count":908459,"project":"jupyter-server-fileid"},{"download_count":907412,"project":"facexlib"},{"download_count":907139,"project":"apprise"},{"download_count":906486,"project":"django-js-asset"},{"download_count":906417,"project":"pydicom"},{"download_count":906322,"project":"mypy-boto3-ssm"},{"download_count":905528,"project":"language-tags"},{"download_count":904941,"project":"fluent-logger"},{"download_count":904680,"project":"optimum"},{"download_count":904484,"project":"setuptools-git"},{"download_count":904282,"project":"zeroconf"},{"download_count":904177,"project":"raven"},{"download_count":902991,"project":"y-py"},{"download_count":902921,"project":"codespell"},{"download_count":902360,"project":"apache-airflow-providers-odbc"},{"download_count":901950,"project":"cachy"},{"download_count":899344,"project":"accessible-pygments"},{"download_count":896801,"project":"venusian"},{"download_count":895825,"project":"ptpython"},{"download_count":895698,"project":"gnureadline"},{"download_count":892577,"project":"ypy-websocket"},{"download_count":891637,"project":"snowflake-core"},{"download_count":890571,"project":"ansiwrap"},{"download_count":890474,"project":"fasttext-langdetect"},{"download_count":888915,"project":"pywinrm"},{"download_count":887253,"project":"amqpstorm"},{"download_count":886586,"project":"kaitaistruct"},{"download_count":884972,"project":"quart"},{"download_count":884847,"project":"aws-cdk-cloud-assembly-schema"},{"download_count":884212,"project":"httpretty"},{"download_count":884194,"project":"jinja2-simple-tags"},{"download_count":881679,"project":"tcolorpy"},{"download_count":881272,"project":"slotted"},{"download_count":881024,"project":"shyaml"},{"download_count":880558,"project":"triad"},{"download_count":879376,"project":"retry2"},{"download_count":878037,"project":"flake8-polyfill"},{"download_count":877893,"project":"apache-airflow-providers-microsoft-azure"},{"download_count":876492,"project":"pyvmomi"},{"download_count":876238,"project":"datamodel-code-generator"},{"download_count":876104,"project":"xhtml2pdf"},{"download_count":875573,"project":"tensorstore"},{"download_count":874227,"project":"poetry-plugin-pypi-mirror"},{"download_count":874206,"project":"mercantile"},{"download_count":873706,"project":"cibuildwheel"},{"download_count":873558,"project":"dash-bootstrap-components"},{"download_count":872036,"project":"mangum"},{"download_count":871595,"project":"llama-index-embeddings-openai"},{"download_count":871525,"project":"extension-helpers"},{"download_count":870333,"project":"treelib"},{"download_count":869008,"project":"sqlalchemy2-stubs"},{"download_count":868351,"project":"tableau-api-lib"},{"download_count":868273,"project":"webdataset"},{"download_count":867882,"project":"azure-mgmt-resourcegraph"},{"download_count":867507,"project":"pyhanko-certvalidator"},{"download_count":867193,"project":"yarn-api-client"},{"download_count":865874,"project":"azureml-mlflow"},{"download_count":865172,"project":"dagster-pipes"},{"download_count":864503,"project":"fugue"},{"download_count":864031,"project":"geoalchemy2"},{"download_count":861996,"project":"django-oauth-toolkit"},{"download_count":861387,"project":"bson"},{"download_count":860979,"project":"watchgod"},{"download_count":860534,"project":"icalendar"},{"download_count":856883,"project":"rstr"},{"download_count":856746,"project":"subprocess32"},{"download_count":856666,"project":"cinemagoer"},{"download_count":856623,"project":"pastel"},{"download_count":854908,"project":"sqlglotrs"},{"download_count":853704,"project":"sampleproject"},{"download_count":853408,"project":"flametree"},{"download_count":853384,"project":"python-string-utils"},{"download_count":852575,"project":"python-codon-tables"},{"download_count":852019,"project":"dnachisel"},{"download_count":851296,"project":"rfc3339"},{"download_count":850778,"project":"gcovr"},{"download_count":850754,"project":"ebcdic"},{"download_count":850136,"project":"typeid-python"},{"download_count":849940,"project":"numpydoc"},{"download_count":848815,"project":"dataproperty"},{"download_count":847757,"project":"schemdraw"},{"download_count":847358,"project":"rouge-score"},{"download_count":846669,"project":"adagio"},{"download_count":846491,"project":"shellescape"},{"download_count":845530,"project":"simple-ddl-parser"},{"download_count":845369,"project":"imdbpy"},{"download_count":845240,"project":"dpkt"},{"download_count":844382,"project":"pipreqs"},{"download_count":843568,"project":"llama-index-multi-modal-llms-openai"},{"download_count":843322,"project":"llama-index-program-openai"},{"download_count":842658,"project":"python-iso639"},{"download_count":842346,"project":"wand"},{"download_count":842169,"project":"aws-cdk-aws-lambda-python-alpha"},{"download_count":842089,"project":"aws-embedded-metrics"},{"download_count":841440,"project":"python3-logstash"},{"download_count":841222,"project":"setuptools-scm-git-archive"},{"download_count":841213,"project":"blosc2"},{"download_count":841024,"project":"lasio"},{"download_count":840725,"project":"opentelemetry-instrumentation-httpx"},{"download_count":840567,"project":"git-remote-codecommit"},{"download_count":840289,"project":"social-auth-app-django"},{"download_count":839708,"project":"stdlib-list"},{"download_count":839373,"project":"msgraph-sdk"},{"download_count":839158,"project":"pytest-remotedata"},{"download_count":837881,"project":"backports-datetime-fromisoformat"},{"download_count":837832,"project":"oslo-config"},{"download_count":837031,"project":"openlineage-sql"},{"download_count":836779,"project":"log-symbols"},{"download_count":835791,"project":"spinners"},{"download_count":833598,"project":"workalendar"},{"download_count":833386,"project":"aiormq"},{"download_count":831368,"project":"flake8-black"},{"download_count":831366,"project":"pytest-doctestplus"},{"download_count":830553,"project":"translationstring"},{"download_count":829519,"project":"llama-index-cli"},{"download_count":829242,"project":"gevent-websocket"},{"download_count":828157,"project":"torchdiffeq"},{"download_count":826116,"project":"arpeggio"},{"download_count":826023,"project":"speechrecognition"},{"download_count":821517,"project":"zstd"},{"download_count":819614,"project":"llama-index-question-gen-openai"},{"download_count":819444,"project":"chameleon"},{"download_count":818614,"project":"signxml"},{"download_count":816793,"project":"pymilvus"},{"download_count":816721,"project":"keystoneauth1"},{"download_count":815800,"project":"google-cloud-error-reporting"},{"download_count":814824,"project":"aio-pika"},{"download_count":812182,"project":"pyquaternion"},{"download_count":812003,"project":"cmaes"},{"download_count":811886,"project":"tyro"},{"download_count":811857,"project":"jsonargparse"},{"download_count":811516,"project":"naked"},{"download_count":811217,"project":"datacompy"},{"download_count":810375,"project":"sphinx-autobuild"},{"download_count":809539,"project":"sphinx-tabs"},{"download_count":808901,"project":"spandrel"},{"download_count":808455,"project":"doit"},{"download_count":808372,"project":"auth0-python"},{"download_count":807100,"project":"eyes-common"},{"download_count":806858,"project":"eyes-selenium"},{"download_count":806746,"project":"tensorflow-model-optimization"},{"download_count":805186,"project":"wmi"},{"download_count":804773,"project":"tabledata"},{"download_count":803061,"project":"janus"},{"download_count":802118,"project":"hupper"},{"download_count":801630,"project":"oslo-i18n"},{"download_count":801463,"project":"sphinx-basic-ng"},{"download_count":801222,"project":"h5netcdf"},{"download_count":801008,"project":"p4python"},{"download_count":800237,"project":"llama-index-legacy"},{"download_count":799812,"project":"opentelemetry-instrumentation-sqlite3"},{"download_count":795540,"project":"serial"},{"download_count":795281,"project":"langgraph-checkpoint"},{"download_count":794002,"project":"google-reauth"},{"download_count":792863,"project":"uproot"},{"download_count":791837,"project":"pytest-aiohttp"},{"download_count":790486,"project":"unittest2"},{"download_count":789585,"project":"panel"},{"download_count":789355,"project":"pytest-filter-subpackage"},{"download_count":787795,"project":"textdistance"},{"download_count":787717,"project":"open3d"},{"download_count":784743,"project":"attrdict"},{"download_count":784607,"project":"pyahocorasick"},{"download_count":783063,"project":"graphlib-backport"},{"download_count":780145,"project":"scikit-build"},{"download_count":779506,"project":"pyvis"},{"download_count":778655,"project":"backports-csv"},{"download_count":778568,"project":"progress"},{"download_count":778290,"project":"flake8-builtins"},{"download_count":777654,"project":"grimp"},{"download_count":777513,"project":"snowflake-legacy"},{"download_count":777090,"project":"pyiceberg"},{"download_count":776655,"project":"array-record"},{"download_count":775492,"project":"asgi-lifespan"},{"download_count":775276,"project":"future-fstrings"},{"download_count":775174,"project":"pybase64"},{"download_count":774867,"project":"pytablewriter"},{"download_count":774280,"project":"probableparsing"},{"download_count":773627,"project":"cdk-nag"},{"download_count":772834,"project":"clean-fid"},{"download_count":771603,"project":"breathe"},{"download_count":770199,"project":"giturlparse"},{"download_count":769883,"project":"pysbd"},{"download_count":769488,"project":"tsx"},{"download_count":768896,"project":"streamerate"},{"download_count":768888,"project":"throttlex"},{"download_count":768460,"project":"jinja2-time"},{"download_count":767684,"project":"mando"},{"download_count":767535,"project":"oslo-serialization"},{"download_count":766665,"project":"sparkorm"},{"download_count":766645,"project":"xarray-einstats"},{"download_count":766187,"project":"model-bakery"},{"download_count":766005,"project":"presto-python-client"},{"download_count":765496,"project":"avro-gen"},{"download_count":765138,"project":"recommonmark"},{"download_count":762932,"project":"pytest-httpserver"},{"download_count":762388,"project":"langchain-aws"},{"download_count":761253,"project":"pytube"},{"download_count":761097,"project":"opentelemetry-instrumentation-jinja2"},{"download_count":760471,"project":"usaddress"},{"download_count":760230,"project":"radon"},{"download_count":760083,"project":"core-universal"},{"download_count":759963,"project":"elasticsearch7"},{"download_count":759632,"project":"github3-py"},{"download_count":759561,"project":"icdiff"},{"download_count":758627,"project":"temporalio"},{"download_count":757393,"project":"pytest-socket"},{"download_count":756928,"project":"collections-extended"},{"download_count":755522,"project":"java-manifest"},{"download_count":755081,"project":"pythran-openblas"},{"download_count":754987,"project":"apache-airflow-providers-pagerduty"},{"download_count":752309,"project":"inquirerpy"},{"download_count":751478,"project":"debtcollector"},{"download_count":751298,"project":"rjsmin"},{"download_count":749435,"project":"types-deprecated"},{"download_count":749313,"project":"pyscreeze"},{"download_count":748868,"project":"nbsphinx"},{"download_count":748032,"project":"strawberry-graphql"},{"download_count":747891,"project":"respx"},{"download_count":747885,"project":"grapheme"},{"download_count":747132,"project":"pfzy"},{"download_count":744928,"project":"sse-starlette"},{"download_count":744138,"project":"backports-entry-points-selectable"},{"download_count":743928,"project":"vtk"},{"download_count":743608,"project":"func-timeout"},{"download_count":742720,"project":"oss2"},{"download_count":742151,"project":"ansicolors"},{"download_count":742006,"project":"singer-python"},{"download_count":741016,"project":"pysmb"},{"download_count":740437,"project":"cloudscraper"},{"download_count":740217,"project":"types-aiobotocore-s3"},{"download_count":739342,"project":"nptyping"},{"download_count":738989,"project":"chex"},{"download_count":738877,"project":"pip-requirements-parser"},{"download_count":738806,"project":"zthreading"},{"download_count":738576,"project":"pulsar-client"},{"download_count":738548,"project":"discord"},{"download_count":737348,"project":"sharepy"},{"download_count":735724,"project":"kconfiglib"},{"download_count":735655,"project":"coolname"},{"download_count":735563,"project":"stepfunctions"},{"download_count":735182,"project":"flatdict"},{"download_count":735024,"project":"pyapacheatlas"},{"download_count":731955,"project":"pyramid"},{"download_count":731304,"project":"torch-model-archiver"},{"download_count":729773,"project":"testtools"},{"download_count":728926,"project":"jsons"},{"download_count":727982,"project":"pathlib-mate"},{"download_count":727101,"project":"port-for"},{"download_count":726921,"project":"slack-bolt"},{"download_count":726119,"project":"sktime"},{"download_count":725980,"project":"flake8-import-order"},{"download_count":725320,"project":"easyprocess"},{"download_count":725022,"project":"mltable"},{"download_count":724379,"project":"pluginbase"},{"download_count":724207,"project":"pytest-arraydiff"},{"download_count":723440,"project":"types-decorator"},{"download_count":722809,"project":"apache-airflow-providers-tableau"},{"download_count":721632,"project":"spark-sklearn"},{"download_count":720354,"project":"crc32c"},{"download_count":718470,"project":"pystan"},{"download_count":717656,"project":"crayons"},{"download_count":717560,"project":"simple-parsing"},{"download_count":717517,"project":"xlutils"},{"download_count":716757,"project":"jinja2-humanize-extension"},{"download_count":715887,"project":"ibm-platform-services"},{"download_count":715184,"project":"pyairtable"},{"download_count":714917,"project":"executor"},{"download_count":714388,"project":"circuitbreaker"},{"download_count":714037,"project":"emcee"},{"download_count":713953,"project":"kestra"},{"download_count":713477,"project":"types-jinja2"},{"download_count":712840,"project":"param"},{"download_count":712768,"project":"types-markupsafe"},{"download_count":712572,"project":"geocoder"},{"download_count":712441,"project":"pyu2f"},{"download_count":712400,"project":"ctranslate2"},{"download_count":712196,"project":"asciitree"},{"download_count":711677,"project":"python-miio"},{"download_count":711271,"project":"pip-api"},{"download_count":710134,"project":"psygnal"},{"download_count":710037,"project":"httmock"},{"download_count":709799,"project":"flake8-print"},{"download_count":709651,"project":"ratelim"},{"download_count":708591,"project":"pytest-astropy"},{"download_count":707480,"project":"tensorflow-cpu"},{"download_count":707471,"project":"suds-community"},{"download_count":707082,"project":"zope-i18nmessageid"},{"download_count":706693,"project":"pytest-astropy-header"},{"download_count":705866,"project":"fastcluster"},{"download_count":705824,"project":"pygobject"},{"download_count":705159,"project":"pyshp"},{"download_count":705009,"project":"rpaframework"},{"download_count":702469,"project":"prance"},{"download_count":702171,"project":"ndindex"},{"download_count":701483,"project":"logz"},{"download_count":700435,"project":"python-memcached"},{"download_count":700176,"project":"pytorch-metric-learning"},{"download_count":695774,"project":"python-lsp-jsonrpc"},{"download_count":695236,"project":"vertexai"},{"download_count":693753,"project":"safety-schemas"},{"download_count":693371,"project":"llama-cloud"},{"download_count":692581,"project":"retry-decorator"},{"download_count":690289,"project":"pyqt6"},{"download_count":689261,"project":"pyspark-dist-explore"},{"download_count":688952,"project":"crypto"},{"download_count":688168,"project":"apache-airflow-providers-datadog"},{"download_count":687419,"project":"segment-analytics-python"},{"download_count":687212,"project":"pytweening"},{"download_count":683536,"project":"realtime"},{"download_count":683337,"project":"docx2txt"},{"download_count":682821,"project":"pyqt6-qt6"},{"download_count":682376,"project":"imagecodecs"},{"download_count":682158,"project":"argparse-addons"},{"download_count":681840,"project":"astral"},{"download_count":681256,"project":"tfds-nightly"},{"download_count":680511,"project":"clikit"},{"download_count":680427,"project":"pymisp"},{"download_count":680316,"project":"apache-airflow-providers-airbyte"},{"download_count":680289,"project":"opentelemetry-instrumentation-aws-lambda"},{"download_count":680205,"project":"openvino"},{"download_count":680125,"project":"pentapy"},{"download_count":679152,"project":"gender-guesser"},{"download_count":679065,"project":"fvcore"},{"download_count":678961,"project":"flake8-quotes"},{"download_count":677389,"project":"pygtrie"},{"download_count":674928,"project":"types-psycopg2"},{"download_count":674403,"project":"distribute"},{"download_count":674144,"project":"zope-hookable"},{"download_count":673871,"project":"gymnasium"},{"download_count":673815,"project":"apache-airflow-providers-apache-spark"},{"download_count":673772,"project":"rply"},{"download_count":673516,"project":"publish-event-sns"},{"download_count":673462,"project":"vulture"},{"download_count":673118,"project":"azure-storage-nspkg"},{"download_count":673097,"project":"mxnet"},{"download_count":672845,"project":"pytest-parallel"},{"download_count":672828,"project":"djangorestframework-stubs"},{"download_count":672622,"project":"palettable"},{"download_count":672038,"project":"coremltools"},{"download_count":671922,"project":"pyannote-database"},{"download_count":671578,"project":"ccxt"},{"download_count":671068,"project":"datadog-logger"},{"download_count":671002,"project":"os-service-types"},{"download_count":670923,"project":"zope-component"},{"download_count":669659,"project":"supabase"},{"download_count":669275,"project":"starlette-exporter"},{"download_count":669246,"project":"flatten-dict"},{"download_count":669065,"project":"pyrect"},{"download_count":668911,"project":"fastprogress"},{"download_count":668492,"project":"pykakasi"},{"download_count":668268,"project":"apache-airflow-providers-celery"},{"download_count":667100,"project":"pytest-mypy"},{"download_count":666193,"project":"pygetwindow"},{"download_count":666038,"project":"domdf-python-tools"},{"download_count":664943,"project":"netsuitesdk"},{"download_count":664847,"project":"supafunc"},{"download_count":664378,"project":"types-html5lib"},{"download_count":664351,"project":"backports-shutil-get-terminal-size"},{"download_count":664330,"project":"django-otp"},{"download_count":663048,"project":"zope-tal"},{"download_count":662607,"project":"jupytext"},{"download_count":662466,"project":"enrich"},{"download_count":661941,"project":"snowplow-tracker"},{"download_count":661511,"project":"trl"},{"download_count":661298,"project":"flask-admin"},{"download_count":661182,"project":"imapclient"},{"download_count":661056,"project":"blessings"},{"download_count":660694,"project":"dagster-aws"},{"download_count":660223,"project":"gotrue"},{"download_count":660000,"project":"pytest-dotenv"},{"download_count":658378,"project":"zipfile36"},{"download_count":657701,"project":"tinydb"},{"download_count":657373,"project":"schematics"},{"download_count":656079,"project":"simpy"},{"download_count":655187,"project":"postgrest"},{"download_count":654992,"project":"symengine"},{"download_count":654986,"project":"pyannote-core"},{"download_count":654771,"project":"dagster-graphql"},{"download_count":653699,"project":"sshpubkeys"},{"download_count":653661,"project":"mypy-boto3-appconfig"},{"download_count":652934,"project":"pyautogui"},{"download_count":651815,"project":"rpaframework-core"},{"download_count":651681,"project":"htmldocx"},{"download_count":651444,"project":"qudida"},{"download_count":651126,"project":"tangled-up-in-unicode"},{"download_count":650951,"project":"delta"},{"download_count":650384,"project":"storage3"},{"download_count":650011,"project":"quinn"},{"download_count":649895,"project":"mouseinfo"},{"download_count":647202,"project":"jinjasql"},{"download_count":646759,"project":"apache-airflow-providers-salesforce"},{"download_count":646074,"project":"josepy"},{"download_count":645923,"project":"clipboard"},{"download_count":645871,"project":"pymongo-auth-aws"},{"download_count":645734,"project":"lizard"},{"download_count":645289,"project":"argh"},{"download_count":644193,"project":"pyopengl"},{"download_count":643427,"project":"gluonts"},{"download_count":643176,"project":"zope-schema"},{"download_count":642928,"project":"dvclive"},{"download_count":642832,"project":"django-countries"},{"download_count":642721,"project":"pyannote-metrics"},{"download_count":642667,"project":"grpc-stubs"},{"download_count":642660,"project":"python-certifi-win32"},{"download_count":642512,"project":"django-silk"},{"download_count":642330,"project":"mypy-boto3-dataexchange"},{"download_count":641188,"project":"simplegeneric"},{"download_count":640509,"project":"pymsgbox"},{"download_count":639773,"project":"pytest-flask"},{"download_count":639689,"project":"pyqt6-sip"},{"download_count":639272,"project":"tensorflowonspark"},{"download_count":637440,"project":"cfile"},{"download_count":634313,"project":"patool"},{"download_count":632421,"project":"flax"},{"download_count":632133,"project":"statsforecast"},{"download_count":631963,"project":"pusher"},{"download_count":631411,"project":"pyvisa"},{"download_count":630916,"project":"decopatch"},{"download_count":629538,"project":"pytest-dependency"},{"download_count":628510,"project":"awscliv2"},{"download_count":628404,"project":"suds-py3"},{"download_count":627183,"project":"pyrtf3"},{"download_count":627163,"project":"config"},{"download_count":626297,"project":"arnparse"},{"download_count":626072,"project":"gguf"},{"download_count":626056,"project":"pytest-openfiles"},{"download_count":625515,"project":"tk"},{"download_count":625181,"project":"robotframework-seleniumtestability"},{"download_count":624191,"project":"pyjarowinkler"},{"download_count":624106,"project":"rope"},{"download_count":624028,"project":"rpaframework-pdf"},{"download_count":623980,"project":"nanoid"},{"download_count":623969,"project":"sphinxcontrib-websupport"},{"download_count":623680,"project":"langfuse"},{"download_count":623563,"project":"openstacksdk"},{"download_count":622972,"project":"opentelemetry-propagator-b3"},{"download_count":619747,"project":"python-gettext"},{"download_count":619300,"project":"pytelegrambotapi"},{"download_count":617975,"project":"correctionlib"},{"download_count":617913,"project":"django-health-check"},{"download_count":617630,"project":"flask-marshmallow"},{"download_count":616465,"project":"halo"},{"download_count":616377,"project":"django-csp"},{"download_count":616204,"project":"pyrate-limiter"},{"download_count":615266,"project":"detect-secrets"},{"download_count":614459,"project":"imblearn"},{"download_count":613785,"project":"flake8-pyproject"},{"download_count":613731,"project":"textparser"},{"download_count":613197,"project":"instructor"},{"download_count":612778,"project":"types-tqdm"},{"download_count":612529,"project":"flask-mail"},{"download_count":612451,"project":"zope-exceptions"},{"download_count":612083,"project":"pyod"},{"download_count":611978,"project":"plaster"},{"download_count":611360,"project":"formic2"},{"download_count":611283,"project":"json2html"},{"download_count":611140,"project":"plaster-pastedeploy"},{"download_count":611084,"project":"macholib"},{"download_count":610911,"project":"update-checker"},{"download_count":610623,"project":"uplink"},{"download_count":610443,"project":"langchain-google-community"},{"download_count":609751,"project":"jstyleson"},{"download_count":609389,"project":"exchange-calendars"},{"download_count":608934,"project":"anybadge"},{"download_count":606951,"project":"zope-security"},{"download_count":606553,"project":"regress"},{"download_count":606083,"project":"numpy-financial"},{"download_count":605660,"project":"colorcet"},{"download_count":605564,"project":"grpc-gateway-protoc-gen-openapiv2"},{"download_count":604794,"project":"jaxtyping"},{"download_count":604641,"project":"awesomeversion"},{"download_count":603634,"project":"robocorp-storage"},{"download_count":602667,"project":"dagster-webserver"},{"download_count":602604,"project":"zope-lifecycleevent"},{"download_count":602522,"project":"types-ujson"},{"download_count":602408,"project":"mapbox-earcut"},{"download_count":602388,"project":"boost-histogram"},{"download_count":602343,"project":"zope-i18n"},{"download_count":601970,"project":"sphinx-book-theme"},{"download_count":601933,"project":"typing-utils"},{"download_count":601277,"project":"zope-testing"},{"download_count":601231,"project":"mimesis"},{"download_count":601051,"project":"zope-publisher"},{"download_count":601003,"project":"boostedblob"},{"download_count":600104,"project":"fido2"},{"download_count":599853,"project":"uhi"},{"download_count":599842,"project":"editorconfig"},{"download_count":599665,"project":"backports-ssl-match-hostname"},{"download_count":599648,"project":"django-anymail"},{"download_count":599531,"project":"tensorflow-transform"},{"download_count":599483,"project":"pyclothoids"},{"download_count":599437,"project":"impyla"},{"download_count":599384,"project":"mypy-boto3-lakeformation"},{"download_count":598568,"project":"flaml"},{"download_count":598157,"project":"flake8-eradicate"},{"download_count":598145,"project":"asgi-correlation-id"},{"download_count":598075,"project":"azure-schemaregistry"},{"download_count":597920,"project":"molecule"},{"download_count":597209,"project":"pantab"},{"download_count":596994,"project":"cursor"},{"download_count":596986,"project":"pillow-heif"},{"download_count":596978,"project":"zope-configuration"},{"download_count":596891,"project":"hist"},{"download_count":596475,"project":"databricks-feature-store"},{"download_count":596359,"project":"wurlitzer"},{"download_count":595763,"project":"livereload"},{"download_count":595722,"project":"openvino-telemetry"},{"download_count":595549,"project":"histoprint"},{"download_count":594014,"project":"cchardet"},{"download_count":592782,"project":"mplhep"},{"download_count":592698,"project":"pyviz-comms"},{"download_count":592612,"project":"zope-location"},{"download_count":591708,"project":"freetype-py"},{"download_count":591611,"project":"optax"},{"download_count":591358,"project":"mplhep-data"},{"download_count":590859,"project":"mecab-python3"},{"download_count":589774,"project":"zope-browser"},{"download_count":589257,"project":"xmljson"},{"download_count":589199,"project":"camel-converter"},{"download_count":589142,"project":"pyside6-essentials"},{"download_count":589140,"project":"zope-contenttype"},{"download_count":589067,"project":"dict2xml"},{"download_count":588115,"project":"vector"},{"download_count":587848,"project":"extensionclass"},{"download_count":587717,"project":"zope-container"},{"download_count":587031,"project":"aiomqtt"},{"download_count":586896,"project":"farama-notifications"},{"download_count":586057,"project":"acquisition"},{"download_count":585780,"project":"random-password-generator"},{"download_count":585668,"project":"sparqlwrapper"},{"download_count":585258,"project":"shiboken6"},{"download_count":585037,"project":"webrtcvad-wheels"},{"download_count":584866,"project":"ulid-py"},{"download_count":584792,"project":"pydruid"},{"download_count":584244,"project":"zope-dottedname"},{"download_count":584090,"project":"envyaml"},{"download_count":583751,"project":"libsass"},{"download_count":583278,"project":"dotenv"},{"download_count":583149,"project":"pynput-robocorp-fork"},{"download_count":583039,"project":"azureml-dataset-runtime"},{"download_count":582698,"project":"pytest-azurepipelines"},{"download_count":582439,"project":"publicsuffix2"},{"download_count":582359,"project":"java-access-bridge-wrapper"},{"download_count":582234,"project":"zope-traversing"},{"download_count":582176,"project":"looseversion"},{"download_count":581965,"project":"ajsonrpc"},{"download_count":581756,"project":"traittypes"},{"download_count":581682,"project":"jsmin"},{"download_count":581361,"project":"aiofile"},{"download_count":581328,"project":"opentelemetry-instrumentation-celery"},{"download_count":581083,"project":"coffea"},{"download_count":580980,"project":"zope-cachedescriptors"},{"download_count":580825,"project":"wsgiproxy2"},{"download_count":580410,"project":"pyside6"},{"download_count":580382,"project":"tbats"},{"download_count":580380,"project":"dask-awkward"},{"download_count":580094,"project":"resize-right"},{"download_count":580035,"project":"frictionless"},{"download_count":579907,"project":"zenpy"},{"download_count":579428,"project":"pythonnet"},{"download_count":579342,"project":"pyjsparser"},{"download_count":579212,"project":"fsspec-xrootd"},{"download_count":579129,"project":"jetblack-iso8601"},{"download_count":578896,"project":"zope-size"},{"download_count":578723,"project":"dask-histogram"},{"download_count":578650,"project":"zope-filerepresentation"},{"download_count":578646,"project":"sphinx-prompt"},{"download_count":578555,"project":"tempita"},{"download_count":578524,"project":"zope-annotation"},{"download_count":577425,"project":"zope-site"},{"download_count":577044,"project":"awacs"},{"download_count":576913,"project":"types-retry"},{"download_count":576796,"project":"line-profiler"},{"download_count":576734,"project":"pysaml2"},{"download_count":576726,"project":"zope-processlifetime"},{"download_count":575635,"project":"types-markdown"},{"download_count":575293,"project":"persistence"},{"download_count":575240,"project":"azureml-telemetry"},{"download_count":575047,"project":"tree-sitter-python"},{"download_count":575045,"project":"aiolimiter"},{"download_count":574824,"project":"python-keystoneclient"},{"download_count":574773,"project":"zope-datetime"},{"download_count":574538,"project":"accesscontrol"},{"download_count":574276,"project":"parver"},{"download_count":574189,"project":"transitions"},{"download_count":573281,"project":"flask-talisman"},{"download_count":573066,"project":"sqllineage"},{"download_count":572611,"project":"opentelemetry-exporter-prometheus-remote-write"},{"download_count":572456,"project":"types-beautifulsoup4"},{"download_count":572121,"project":"plyvel"},{"download_count":571420,"project":"langchain-anthropic"},{"download_count":571110,"project":"scikit-base"},{"download_count":570924,"project":"cvxopt"},{"download_count":569987,"project":"jplephem"},{"download_count":569912,"project":"jsbeautifier"},{"download_count":569880,"project":"gtts"},{"download_count":569781,"project":"zexceptions"},{"download_count":569757,"project":"zope-pagetemplate"},{"download_count":569714,"project":"zope-tales"},{"download_count":569373,"project":"authencoding"},{"download_count":569324,"project":"west"},{"download_count":569083,"project":"cvdupdate"},{"download_count":568629,"project":"apache-airflow-providers-atlassian-jira"},{"download_count":568465,"project":"sgp4"},{"download_count":568412,"project":"zope-contentprovider"},{"download_count":568268,"project":"zope-browserpage"},{"download_count":568149,"project":"zope"},{"download_count":567440,"project":"zope-browserresource"},{"download_count":567326,"project":"pyside6-addons"},{"download_count":567143,"project":"zope-testbrowser"},{"download_count":567039,"project":"pynput"},{"download_count":566945,"project":"red-discordbot"},{"download_count":566726,"project":"elasticsearch8"},{"download_count":566695,"project":"py-models-parser"},{"download_count":566478,"project":"django-ses"},{"download_count":566361,"project":"find-libpython"},{"download_count":566327,"project":"documenttemplate"},{"download_count":566293,"project":"types-psutil"},{"download_count":566240,"project":"zope-structuredtext"},{"download_count":566172,"project":"zope-sequencesort"},{"download_count":566092,"project":"mf2py"},{"download_count":566087,"project":"uhashring"},{"download_count":566080,"project":"zope-viewlet"},{"download_count":565890,"project":"import-linter"},{"download_count":565883,"project":"table-meta"},{"download_count":565573,"project":"cuda-python"},{"download_count":565492,"project":"google-cloud-os-config"},{"download_count":565490,"project":"dagster-postgres"},{"download_count":565268,"project":"sphinxcontrib-bibtex"},{"download_count":565183,"project":"libretranslatepy"},{"download_count":564817,"project":"openinference-semantic-conventions"},{"download_count":564665,"project":"jinja2-cli"},{"download_count":564226,"project":"ntplib"},{"download_count":564160,"project":"zope-ptresource"},{"download_count":564159,"project":"casefy"},{"download_count":564151,"project":"case-conversion"},{"download_count":564133,"project":"protoc-gen-openapiv2"},{"download_count":564114,"project":"dotmap"},{"download_count":563838,"project":"tfx-bsl"},{"download_count":563620,"project":"zope-browsermenu"},{"download_count":563573,"project":"z3c-pt"},{"download_count":563478,"project":"lpips"},{"download_count":562638,"project":"multimapping"},{"download_count":562508,"project":"slacker"},{"download_count":562310,"project":"zope-globalrequest"},{"download_count":562058,"project":"polyline"},{"download_count":561957,"project":"python-logging-loki"},{"download_count":561914,"project":"a2wsgi"},{"download_count":561851,"project":"robocorp-vault"},{"download_count":561667,"project":"asteroid-filterbanks"},{"download_count":561312,"project":"clickhouse-sqlalchemy"},{"download_count":560275,"project":"hstspreload"},{"download_count":559946,"project":"mypy-boto3-events"},{"download_count":559117,"project":"django-taggit"},{"download_count":558923,"project":"nulltype"},{"download_count":558404,"project":"databases"},{"download_count":557833,"project":"jupyter-packaging"},{"download_count":556967,"project":"phonenumberslite"},{"download_count":556920,"project":"rcssmin"},{"download_count":556814,"project":"mysql"},{"download_count":555810,"project":"pyawscron"},{"download_count":555796,"project":"types-colorama"},{"download_count":555703,"project":"django-mptt"},{"download_count":555514,"project":"mammoth"},{"download_count":555178,"project":"openinference-instrumentation"},{"download_count":554972,"project":"launchdarkly-eventsource"},{"download_count":554860,"project":"frida"},{"download_count":553958,"project":"translate"},{"download_count":553777,"project":"fcm-django"},{"download_count":553693,"project":"cobble"},{"download_count":553397,"project":"beniget"},{"download_count":553301,"project":"requests-pkcs12"},{"download_count":553264,"project":"requestsexceptions"},{"download_count":553190,"project":"opentelemetry-instrumentation-pika"},{"download_count":553172,"project":"python-ipware"},{"download_count":552650,"project":"python-on-whales"},{"download_count":552469,"project":"faster-whisper"},{"download_count":552195,"project":"caio"},{"download_count":551834,"project":"drf-nested-routers"},{"download_count":551027,"project":"elasticsearch-dbapi"},{"download_count":551002,"project":"gnupg"},{"download_count":550647,"project":"dateutils"},{"download_count":550289,"project":"validate-email"},{"download_count":550214,"project":"pyannote-audio"},{"download_count":549490,"project":"torch-audiomentations"},{"download_count":549372,"project":"primepy"},{"download_count":548800,"project":"torch-pitch-shift"},{"download_count":547470,"project":"icecream"},{"download_count":546985,"project":"pyxdg"},{"download_count":546786,"project":"gputil"},{"download_count":546687,"project":"google-cloud-org-policy"},{"download_count":546167,"project":"bibtexparser"},{"download_count":546063,"project":"eradicate"},{"download_count":545946,"project":"xmodem"},{"download_count":545921,"project":"async-property"},{"download_count":545363,"project":"ollama"},{"download_count":545341,"project":"pattern"},{"download_count":545154,"project":"mdx-truly-sane-lists"},{"download_count":543983,"project":"functools32"},{"download_count":543335,"project":"mirakuru"},{"download_count":542802,"project":"gpxpy"},{"download_count":542598,"project":"decli"},{"download_count":542098,"project":"parsley"},{"download_count":541846,"project":"feu"},{"download_count":541196,"project":"starlette-context"},{"download_count":540401,"project":"pandas-datareader"},{"download_count":540001,"project":"pyston"},{"download_count":539990,"project":"pyston-autoload"},{"download_count":539975,"project":"install-jdk"},{"download_count":539815,"project":"pyannote-pipeline"},{"download_count":539650,"project":"pyorc"},{"download_count":538274,"project":"youtube-dl"},{"download_count":538194,"project":"minidump"},{"download_count":538103,"project":"pybtex-docutils"},{"download_count":537452,"project":"nats-py"},{"download_count":536894,"project":"apache-airflow-providers-oracle"},{"download_count":536876,"project":"pylru"},{"download_count":535974,"project":"flask-testing"},{"download_count":535696,"project":"pillow-avif-plugin"},{"download_count":535530,"project":"pyminizip"},{"download_count":535429,"project":"versioneer-518"},{"download_count":535368,"project":"scons"},{"download_count":535223,"project":"importlib"},{"download_count":535101,"project":"vertica-python"},{"download_count":534203,"project":"submitit"},{"download_count":533513,"project":"python-geohash"},{"download_count":532894,"project":"splunk-sdk"},{"download_count":532337,"project":"django-picklefield"},{"download_count":532163,"project":"dbfread"},{"download_count":531769,"project":"openshift"},{"download_count":530459,"project":"splunk-handler"},{"download_count":529817,"project":"infi-systray"},{"download_count":529592,"project":"pymiscutils"},{"download_count":529153,"project":"gcloud"},{"download_count":529010,"project":"apipkg"},{"download_count":528881,"project":"pyiotools"},{"download_count":528659,"project":"mlxtend"},{"download_count":528520,"project":"blake3"},{"download_count":527978,"project":"maybe-else"},{"download_count":527527,"project":"pysubtypes"},{"download_count":527523,"project":"colorzero"},{"download_count":527345,"project":"pathmagic"},{"download_count":527253,"project":"office365"},{"download_count":526769,"project":"openapi-schema-pydantic"},{"download_count":526593,"project":"prettierfier"},{"download_count":526064,"project":"jsonfield"},{"download_count":525600,"project":"openinference-instrumentation-langchain"},{"download_count":524859,"project":"fusepy"},{"download_count":524681,"project":"skyfield"},{"download_count":524644,"project":"xatlas"},{"download_count":524451,"project":"confuse"},{"download_count":524233,"project":"gpiozero"},{"download_count":523734,"project":"sparkmeasure"},{"download_count":523522,"project":"apache-airflow-providers-redis"},{"download_count":523451,"project":"dlt"},{"download_count":523074,"project":"django-prometheus"},{"download_count":522999,"project":"ably"},{"download_count":522704,"project":"apeye-core"},{"download_count":522642,"project":"ibm-db-sa"},{"download_count":522587,"project":"spglib"},{"download_count":522170,"project":"rangehttpserver"},{"download_count":521974,"project":"webhelpers2"},{"download_count":520144,"project":"pytoolconfig"},{"download_count":518552,"project":"django-compressor"},{"download_count":518355,"project":"codetiming"},{"download_count":517839,"project":"webvtt-py"},{"download_count":517380,"project":"msgpack-numpy"},{"download_count":517154,"project":"extras"},{"download_count":517144,"project":"aiomysql"},{"download_count":516395,"project":"pathtools"},{"download_count":515383,"project":"antlr4-tools"},{"download_count":515056,"project":"pymannkendall"},{"download_count":515031,"project":"cbor"},{"download_count":513705,"project":"types-croniter"},{"download_count":513645,"project":"outlines"},{"download_count":513496,"project":"stomp-py"},{"download_count":513138,"project":"lief"},{"download_count":511987,"project":"sk-dist"},{"download_count":511809,"project":"pytest-icdiff"},{"download_count":511755,"project":"newrelic-telemetry-sdk"},{"download_count":511718,"project":"opentelemetry-instrumentation-boto3sqs"},{"download_count":511285,"project":"json-logging"},{"download_count":511056,"project":"pytest-postgresql"},{"download_count":510827,"project":"scikeras"},{"download_count":510638,"project":"tdigest"},{"download_count":510374,"project":"vllm"},{"download_count":510261,"project":"escapism"},{"download_count":510154,"project":"types-pymysql"},{"download_count":510003,"project":"clr-loader"},{"download_count":509541,"project":"okta"},{"download_count":509146,"project":"win32-setctime"},{"download_count":508987,"project":"pysam"},{"download_count":508681,"project":"sodapy"},{"download_count":508085,"project":"jenkinsapi"},{"download_count":508036,"project":"pyrdfa3"},{"download_count":507863,"project":"scrypt"},{"download_count":507678,"project":"pip-audit"},{"download_count":507461,"project":"junit2html"},{"download_count":507418,"project":"jinja2-pluralize"},{"download_count":507322,"project":"biothings-client"},{"download_count":506828,"project":"pyupgrade"},{"download_count":506816,"project":"mygene"},{"download_count":505289,"project":"pymatgen"},{"download_count":504231,"project":"extruct"},{"download_count":504198,"project":"interegular"},{"download_count":503953,"project":"quicktions"},{"download_count":503510,"project":"blendmodes"},{"download_count":503443,"project":"pyenchant"},{"download_count":503051,"project":"httpie"},{"download_count":502620,"project":"qiskit"},{"download_count":502612,"project":"python-oxmsg"},{"download_count":501515,"project":"graypy"},{"download_count":501272,"project":"pypinyin"},{"download_count":501247,"project":"textstat"},{"download_count":500479,"project":"awslambdaric"},{"download_count":500060,"project":"sqlalchemy-migrate"},{"download_count":499913,"project":"python-openstackclient"},{"download_count":499632,"project":"pygerduty"},{"download_count":499441,"project":"msgpack-python"},{"download_count":497945,"project":"algoliasearch"},{"download_count":497713,"project":"pyre-extensions"},{"download_count":497128,"project":"tomesd"},{"download_count":497090,"project":"opentelemetry-instrumentation-pymongo"},{"download_count":496964,"project":"presidio-analyzer"},{"download_count":496585,"project":"blackduck"},{"download_count":495854,"project":"pip-system-certs"},{"download_count":495678,"project":"seleniumbase"},{"download_count":495477,"project":"sqlite-utils"},{"download_count":494935,"project":"formencode"},{"download_count":493871,"project":"javaobj-py3"},{"download_count":493151,"project":"descartes"},{"download_count":492664,"project":"google-cloud-iam"},{"download_count":492533,"project":"nameparser"},{"download_count":492194,"project":"bio"},{"download_count":492178,"project":"microsoft-kiota-serialization-form"},{"download_count":491604,"project":"zigpy-znp"},{"download_count":491493,"project":"google-cloud-dns"},{"download_count":491394,"project":"azure-ai-documentintelligence"},{"download_count":491074,"project":"opentelemetry-instrumentation-system-metrics"},{"download_count":490992,"project":"gprofiler-official"},{"download_count":490779,"project":"jamo"},{"download_count":490531,"project":"zigpy-deconz"},{"download_count":490192,"project":"zigpy-xbee"},{"download_count":489689,"project":"tentaclio"},{"download_count":489675,"project":"readerwriterlock"},{"download_count":489030,"project":"easyocr"},{"download_count":488997,"project":"devtools"},{"download_count":488740,"project":"zha-quirks"},{"download_count":487648,"project":"microsoft-kiota-serialization-multipart"},{"download_count":487164,"project":"kivy"},{"download_count":487015,"project":"bleak"},{"download_count":486470,"project":"bitvector"},{"download_count":486040,"project":"googleads"},{"download_count":485215,"project":"lm-format-enforcer"},{"download_count":484673,"project":"langchain-google-genai"},{"download_count":484577,"project":"json-stream"},{"download_count":484480,"project":"google-cloud-access-context-manager"},{"download_count":484346,"project":"app-store-scraper"},{"download_count":484178,"project":"hdbscan"},{"download_count":484164,"project":"pony"},{"download_count":484092,"project":"cached-path"},{"download_count":483895,"project":"tbb"},{"download_count":483273,"project":"textfsm"},{"download_count":483266,"project":"result"},{"download_count":483206,"project":"neptune-client"},{"download_count":483036,"project":"json-stream-rs-tokenizer"},{"download_count":482907,"project":"aiosmtplib"},{"download_count":482541,"project":"tentaclio-s3"},{"download_count":482403,"project":"darglint"},{"download_count":482351,"project":"databricks-pypi-extras"},{"download_count":482271,"project":"utilsforecast"},{"download_count":482116,"project":"keyrings-alt"},{"download_count":481345,"project":"jsonpath-rw-ext"},{"download_count":480914,"project":"apeye"},{"download_count":480338,"project":"propka"},{"download_count":479932,"project":"fastapi-utils"},{"download_count":479673,"project":"mypy-boto3-kms"},{"download_count":479319,"project":"pytest-testinfra"},{"download_count":478675,"project":"heapdict"},{"download_count":478269,"project":"easyconfig"},{"download_count":478010,"project":"manifold3d"},{"download_count":477721,"project":"svg-path"},{"download_count":477610,"project":"openturns"},{"download_count":477574,"project":"fastrlock"},{"download_count":477295,"project":"google-cloud-asset"},{"download_count":477284,"project":"csvw"},{"download_count":476942,"project":"isoweek"},{"download_count":476645,"project":"types-certifi"},{"download_count":476532,"project":"expecttest"},{"download_count":476427,"project":"flasgger"},{"download_count":475637,"project":"kedro"},{"download_count":475539,"project":"django-formtools"},{"download_count":475248,"project":"pytest-ansible"},{"download_count":474449,"project":"google-python-cloud-debugger"},{"download_count":474362,"project":"marshmallow-jsonschema"},{"download_count":474084,"project":"pyomo"},{"download_count":474047,"project":"django-widget-tweaks"},{"download_count":473102,"project":"slowapi"},{"download_count":472878,"project":"openapi-core"},{"download_count":472304,"project":"newspaper3k"},{"download_count":472221,"project":"tox-gh-actions"},{"download_count":472198,"project":"mmcif-pdbx"},{"download_count":472099,"project":"vhacdx"},{"download_count":471590,"project":"clldutils"},{"download_count":471543,"project":"pdb2pqr"},{"download_count":470809,"project":"autodocsumm"},{"download_count":470779,"project":"marko"},{"download_count":470326,"project":"azureml-pipeline-core"},{"download_count":470320,"project":"towncrier"},{"download_count":469832,"project":"waiting"},{"download_count":469250,"project":"ruamel-yaml-jinja2"},{"download_count":468973,"project":"groq"},{"download_count":468582,"project":"pytest-deadfixtures"},{"download_count":468115,"project":"pip-check"},{"download_count":467819,"project":"pismosendlogs"},{"download_count":467278,"project":"deep-translator"},{"download_count":466912,"project":"alchemlyb"},{"download_count":466765,"project":"azureml-featurestore"},{"download_count":466022,"project":"vobject"},{"download_count":465554,"project":"argparse-dataclass"},{"download_count":465534,"project":"pythonping"},{"download_count":465497,"project":"aws-cdk-aws-glue-alpha"},{"download_count":464744,"project":"ibm-cos-sdk-core"},{"download_count":464720,"project":"dag-factory"},{"download_count":464427,"project":"imgaug"},{"download_count":464316,"project":"ratelimiter"},{"download_count":464154,"project":"commitizen"},{"download_count":464106,"project":"cmarkgfm"},{"download_count":463840,"project":"python-igraph"},{"download_count":463625,"project":"pytest-freezegun"},{"download_count":463286,"project":"bellows"},{"download_count":462778,"project":"ibm-cos-sdk-s3transfer"},{"download_count":462610,"project":"mypy-boto3-sns"},{"download_count":461357,"project":"hidapi"},{"download_count":461272,"project":"pinecone-plugin-interface"},{"download_count":460880,"project":"dtlpymetrics"},{"download_count":460791,"project":"sttable"},{"download_count":460420,"project":"pytest-snapshot"},{"download_count":460378,"project":"ibm-cos-sdk"},{"download_count":459632,"project":"cement"},{"download_count":458959,"project":"import-deps"},{"download_count":458284,"project":"magic-filter"},{"download_count":457978,"project":"django-polymorphic"},{"download_count":457645,"project":"envs"},{"download_count":457474,"project":"aiocache"},{"download_count":457410,"project":"torchbiggraph"},{"download_count":457019,"project":"opentelemetry-instrumentation-asyncpg"},{"download_count":456666,"project":"aiorwlock"},{"download_count":456390,"project":"graphitesend"},{"download_count":456339,"project":"types-click"},{"download_count":456136,"project":"corner"},{"download_count":456122,"project":"numpy-quaternion"},{"download_count":455796,"project":"python-fsutil"},{"download_count":455486,"project":"datadog-lambda"},{"download_count":455197,"project":"pip-licenses"},{"download_count":454726,"project":"keyboard"},{"download_count":453727,"project":"suds"},{"download_count":453611,"project":"localstack-ext"},{"download_count":453348,"project":"pylatexenc"},{"download_count":453334,"project":"plaid-python"},{"download_count":452890,"project":"sqlalchemy-stubs"},{"download_count":452827,"project":"localstack"},{"download_count":452173,"project":"pydriller"},{"download_count":451739,"project":"zipfile-deflate64"},{"download_count":451662,"project":"rake-nltk"},{"download_count":450357,"project":"markuppy"},{"download_count":450131,"project":"azure-mgmt-costmanagement"},{"download_count":449228,"project":"types-freezegun"},{"download_count":449209,"project":"missingpy"},{"download_count":449165,"project":"capstone"},{"download_count":448732,"project":"bezier"},{"download_count":448456,"project":"backports-abc"},{"download_count":448426,"project":"check-jsonschema"},{"download_count":447836,"project":"azure-eventhub-checkpointstoreblob-aio"},{"download_count":446955,"project":"darkdetect"},{"download_count":446377,"project":"matrix-client"},{"download_count":446357,"project":"opentelemetry-instrumentation-starlette"},{"download_count":446060,"project":"cantools"},{"download_count":446033,"project":"pvlib"},{"download_count":445715,"project":"tippo"},{"download_count":445466,"project":"requests-kerberos"},{"download_count":444061,"project":"seqeval"},{"download_count":443836,"project":"azureml-train-core"},{"download_count":442760,"project":"langgraph-sdk"},{"download_count":441477,"project":"scikit-plot"},{"download_count":441411,"project":"deepl"},{"download_count":441354,"project":"apache-airflow-providers-github"},{"download_count":440905,"project":"scenedetect"},{"download_count":440762,"project":"netmiko"},{"download_count":440404,"project":"wincertstore"},{"download_count":440317,"project":"pytest-flake8"},{"download_count":439454,"project":"gssapi"},{"download_count":438852,"project":"mkdocs-macros-plugin"},{"download_count":438685,"project":"logzio-python-handler"},{"download_count":438660,"project":"wordfreq"},{"download_count":437973,"project":"turbopuffer"},{"download_count":437772,"project":"azure-monitor-ingestion"},{"download_count":437768,"project":"xmlrunner"},{"download_count":437525,"project":"osc-lib"},{"download_count":437422,"project":"oauth2"},{"download_count":437161,"project":"extract-msg"},{"download_count":436892,"project":"flask-oauthlib"},{"download_count":436819,"project":"openai-whisper"},{"download_count":436430,"project":"appengine-python-standard"},{"download_count":436220,"project":"pinecone-plugin-inference"},{"download_count":435851,"project":"dbt-athena-community"},{"download_count":435641,"project":"groundingdino-py"},{"download_count":434810,"project":"iterative-telemetry"},{"download_count":433477,"project":"opentelemetry-instrumentation-tortoiseorm"},{"download_count":433346,"project":"ruyaml"},{"download_count":432685,"project":"line-bot-sdk"},{"download_count":432675,"project":"sparse"},{"download_count":432353,"project":"fixtures"},{"download_count":432244,"project":"lucopy"},{"download_count":431715,"project":"pebble"},{"download_count":431211,"project":"tinysegmenter"},{"download_count":431041,"project":"flake8-debugger"},{"download_count":430668,"project":"flake8-bandit"},{"download_count":430546,"project":"django-ratelimit"},{"download_count":430459,"project":"aiostream"},{"download_count":430321,"project":"restfly"},{"download_count":430312,"project":"django-coverage-plugin"},{"download_count":430274,"project":"flask-basicauth"},{"download_count":430248,"project":"googletrans"},{"download_count":429919,"project":"dataclass-wizard"},{"download_count":429706,"project":"policyuniverse"},{"download_count":429578,"project":"swagger-spec-validator"},{"download_count":428790,"project":"mlserver"},{"download_count":428743,"project":"pytest-cases"},{"download_count":428625,"project":"anyconfig"},{"download_count":428489,"project":"imath"},{"download_count":428446,"project":"dotty-dict"},{"download_count":428417,"project":"pyairports"},{"download_count":428410,"project":"ansible-base"},{"download_count":428180,"project":"locate"},{"download_count":427870,"project":"casadi"},{"download_count":427755,"project":"aresponses"},{"download_count":427524,"project":"aiohttp-sse-client"},{"download_count":427430,"project":"opentelemetry-test-utils"},{"download_count":426791,"project":"opentelemetry-instrumentation-kafka-python"},{"download_count":426390,"project":"selinux"},{"download_count":425591,"project":"segments"},{"download_count":425212,"project":"django-waffle"},{"download_count":424959,"project":"django-reversion"},{"download_count":424437,"project":"pyvim"},{"download_count":424259,"project":"cmakelang"},{"download_count":423824,"project":"ipyparallel"},{"download_count":423079,"project":"idf-component-manager"},{"download_count":422571,"project":"apache-airflow-providers-apache-kafka"},{"download_count":422457,"project":"deepspeed"},{"download_count":422431,"project":"rank-bm25"},{"download_count":422172,"project":"roundrobin"},{"download_count":421546,"project":"html-tag-names"},{"download_count":421538,"project":"html-void-elements"},{"download_count":421385,"project":"python-cinderclient"},{"download_count":421330,"project":"pybase62"},{"download_count":421059,"project":"munkres"},{"download_count":420833,"project":"kaldiio"},{"download_count":420739,"project":"sphinx-sitemap"},{"download_count":420424,"project":"tensorflow-gpu"},{"download_count":420190,"project":"dagster-dbt"},{"download_count":419239,"project":"pretend"},{"download_count":419064,"project":"duckduckgo-search"},{"download_count":419052,"project":"django-webpack-loader"},{"download_count":418929,"project":"nanobind"},{"download_count":418662,"project":"fredapi"},{"download_count":418235,"project":"telethon"},{"download_count":418154,"project":"routes"},{"download_count":417597,"project":"asyncache"},{"download_count":416641,"project":"pyspellchecker"},{"download_count":416440,"project":"spandrel-extra-arches"},{"download_count":415603,"project":"pysimdjson"},{"download_count":415377,"project":"phonemizer"},{"download_count":415070,"project":"flake8-plugin-utils"},{"download_count":414988,"project":"pygam"},{"download_count":414782,"project":"pytest-lazy-fixture"},{"download_count":413904,"project":"publicsuffixlist"},{"download_count":413282,"project":"tqdm-multiprocess"},{"download_count":413172,"project":"mypy-boto3-eks"},{"download_count":413058,"project":"simple-term-menu"},{"download_count":412578,"project":"eascheduler"},{"download_count":412266,"project":"healpy"},{"download_count":412241,"project":"mock-alchemy"},{"download_count":412161,"project":"camelot-py"},{"download_count":412020,"project":"azureml-automl-core"},{"download_count":411969,"project":"platformio"},{"download_count":411867,"project":"dbt-fabric"},{"download_count":411294,"project":"rarfile"},{"download_count":411093,"project":"flake8-broken-line"},{"download_count":410645,"project":"sphinx-gallery"},{"download_count":410527,"project":"lml"},{"download_count":410441,"project":"customtkinter"},{"download_count":409576,"project":"aiopg"},{"download_count":408833,"project":"pyexcel-io"},{"download_count":408429,"project":"filesplit"},{"download_count":407837,"project":"ladybug-geometry"},{"download_count":407663,"project":"utm"},{"download_count":407547,"project":"fairscale"},{"download_count":407487,"project":"parsy"},{"download_count":407432,"project":"sqlite-fts4"},{"download_count":406680,"project":"hf-transfer"},{"download_count":406233,"project":"monkeytype"},{"download_count":406149,"project":"s2sphere"},{"download_count":405969,"project":"python-json-config"},{"download_count":405039,"project":"azureml-train-restclients-hyperdrive"},{"download_count":404305,"project":"python-logstash"},{"download_count":404043,"project":"target-hotglue"},{"download_count":404034,"project":"pydrive2"},{"download_count":403860,"project":"astpretty"},{"download_count":403836,"project":"rpy2"},{"download_count":403526,"project":"imutils"},{"download_count":403167,"project":"holoviews"},{"download_count":402664,"project":"hurry-filesize"},{"download_count":402592,"project":"crispy-bootstrap5"},{"download_count":402209,"project":"evidently"},{"download_count":401995,"project":"sumy"},{"download_count":401232,"project":"coreforecast"},{"download_count":401114,"project":"pre-commit-hooks"},{"download_count":400999,"project":"opentelemetry-instrumentation-asyncio"},{"download_count":400362,"project":"wikitextparser"},{"download_count":400216,"project":"opencensus-ext-requests"},{"download_count":400130,"project":"ladybug-core"},{"download_count":399803,"project":"dlinfo"},{"download_count":399615,"project":"django-ckeditor"},{"download_count":399275,"project":"dagster-k8s"},{"download_count":398740,"project":"docformatter"},{"download_count":398678,"project":"shandy-sqlfmt"},{"download_count":398299,"project":"catkin-pkg"},{"download_count":397875,"project":"braintree"},{"download_count":397755,"project":"django-admin-rangefilter"},{"download_count":396890,"project":"azure-schemaregistry-avroserializer"},{"download_count":396749,"project":"teradataml"},{"download_count":396618,"project":"coola"},{"download_count":396453,"project":"sqlalchemy-hana"},{"download_count":396260,"project":"bsdiff4"},{"download_count":395976,"project":"fastai"},{"download_count":395513,"project":"python-frontmatter"},{"download_count":394825,"project":"apache-airflow-providers-openlineage"},{"download_count":394765,"project":"flash-attn"},{"download_count":393932,"project":"databind-json"},{"download_count":393216,"project":"pyjnius"},{"download_count":392868,"project":"robotframework-stacktrace"},{"download_count":392101,"project":"types-aiofiles"},{"download_count":391921,"project":"gfpgan"},{"download_count":391801,"project":"torchdata"},{"download_count":391704,"project":"patch"},{"download_count":391183,"project":"pandas-market-calendars"},{"download_count":391065,"project":"django-treebeard"},{"download_count":390865,"project":"uptime-kuma-api"},{"download_count":390665,"project":"apispec-webframeworks"},{"download_count":390407,"project":"julius"},{"download_count":390360,"project":"pyjks"},{"download_count":390182,"project":"pytest-github-actions-annotate-failures"},{"download_count":389456,"project":"repoze-who"},{"download_count":389270,"project":"lime"},{"download_count":389261,"project":"simplefix"},{"download_count":389242,"project":"opentelemetry-instrumentation-boto"},{"download_count":389158,"project":"apache-airflow-providers-opsgenie"},{"download_count":388895,"project":"flask-swagger-ui"},{"download_count":388568,"project":"sqlitedict"},{"download_count":388562,"project":"flytekit"},{"download_count":388371,"project":"gmpy2"},{"download_count":388327,"project":"bayesian-optimization"},{"download_count":388122,"project":"email-reply-parser"},{"download_count":388073,"project":"mypy-boto3-sso"},{"download_count":388024,"project":"flyteidl"},{"download_count":387896,"project":"pycognito"},{"download_count":387531,"project":"controlnet-aux"},{"download_count":387527,"project":"dvc"},{"download_count":386969,"project":"hmmlearn"},{"download_count":386836,"project":"sqlalchemy-mate"},{"download_count":386707,"project":"coincurve"},{"download_count":386491,"project":"python-redis-lock"},{"download_count":386409,"project":"pyngrok"},{"download_count":386340,"project":"docxtpl"},{"download_count":385715,"project":"python-semantic-release"},{"download_count":385250,"project":"fastapi-pagination"},{"download_count":384993,"project":"tdda"},{"download_count":384877,"project":"us"},{"download_count":384813,"project":"psycogreen"},{"download_count":384741,"project":"requests-ntlm3"},{"download_count":384720,"project":"python-benedict"},{"download_count":384676,"project":"cartopy"},{"download_count":384552,"project":"python-barcode"},{"download_count":384268,"project":"bzt"},{"download_count":384135,"project":"types-werkzeug"},{"download_count":384106,"project":"py-ecc"},{"download_count":383756,"project":"mido"},{"download_count":383613,"project":"mkdocs-git-revision-date-localized-plugin"},{"download_count":383253,"project":"assertpy"},{"download_count":383121,"project":"databind-core"},{"download_count":382558,"project":"zdaemon"},{"download_count":382470,"project":"tensorflow-recommenders"},{"download_count":382187,"project":"grequests"},{"download_count":381943,"project":"nmslib"},{"download_count":381842,"project":"forex-python"},{"download_count":381157,"project":"lameenc"},{"download_count":380870,"project":"tencentcloud-sdk-python"},{"download_count":380280,"project":"nox-poetry"},{"download_count":379764,"project":"clickhouse-toolset"},{"download_count":379522,"project":"rdt"},{"download_count":379437,"project":"google-play-scraper"},{"download_count":379275,"project":"azureml-sdk"},{"download_count":379259,"project":"syrupy"},{"download_count":378398,"project":"tf-estimator-nightly"},{"download_count":378111,"project":"prometheus-api-client"},{"download_count":378102,"project":"tink"},{"download_count":378040,"project":"pyroute2"},{"download_count":377714,"project":"easing-functions"},{"download_count":377401,"project":"azureml-pipeline-steps"},{"download_count":376616,"project":"f90nml"},{"download_count":376552,"project":"openapi3"},{"download_count":376226,"project":"cppy"},{"download_count":376049,"project":"yattag"},{"download_count":375859,"project":"opentelemetry-instrumentation-pymysql"},{"download_count":375632,"project":"aliyun-python-sdk-vpc"},{"download_count":375601,"project":"azure-containerregistry"},{"download_count":375266,"project":"python-interface"},{"download_count":374852,"project":"geomdl"},{"download_count":374621,"project":"gspread-formatting"},{"download_count":374543,"project":"pulumi-aws"},{"download_count":373998,"project":"djlint"},{"download_count":373518,"project":"robotframework-pabot"},{"download_count":373378,"project":"faiss-gpu"},{"download_count":372620,"project":"android-backup"},{"download_count":372317,"project":"pandarallel"},{"download_count":372259,"project":"spotinst-agent"},{"download_count":372242,"project":"opentelemetry-instrumentation-elasticsearch"},{"download_count":371985,"project":"azureml-inference-server-http"},{"download_count":371432,"project":"flask-swagger"},{"download_count":371408,"project":"pynetbox"},{"download_count":370607,"project":"roboflow"},{"download_count":370509,"project":"azureml-train-automl-client"},{"download_count":370445,"project":"banal"},{"download_count":369709,"project":"apache-airflow-microsoft-fabric-plugin"},{"download_count":369205,"project":"entsoe-py"},{"download_count":369145,"project":"sphinx-toolbox"},{"download_count":369115,"project":"pyyaml-include"},{"download_count":368880,"project":"ping3"},{"download_count":368840,"project":"presidio-anonymizer"},{"download_count":368731,"project":"pydeprecate"},{"download_count":368723,"project":"pyzbar"},{"download_count":368722,"project":"paramiko-expect"},{"download_count":368617,"project":"suds-jurko"},{"download_count":368600,"project":"flask-smorest"},{"download_count":368596,"project":"opentelemetry-instrumentation-threading"},{"download_count":368588,"project":"docker-py"},{"download_count":368583,"project":"securesystemslib"},{"download_count":368402,"project":"tabula-py"},{"download_count":368158,"project":"databend-driver"},{"download_count":367706,"project":"decord"},{"download_count":367667,"project":"pyfume"},{"download_count":367565,"project":"types-aiobotocore-dataexchange"},{"download_count":367285,"project":"databend-py"},{"download_count":367025,"project":"azureml-pipeline"},{"download_count":367010,"project":"pyvalid"},{"download_count":366721,"project":"graphene-django"},{"download_count":366610,"project":"lupa"},{"download_count":366255,"project":"pytest-nunit"},{"download_count":365917,"project":"acme"},{"download_count":365634,"project":"python-gflags"},{"download_count":365525,"project":"brickflows"},{"download_count":365338,"project":"cma"},{"download_count":364777,"project":"id"},{"download_count":364598,"project":"jupyter-highlight-selected-word"},{"download_count":363873,"project":"beautifulsoup"},{"download_count":363808,"project":"xmldiff"},{"download_count":363306,"project":"python-whois"},{"download_count":363103,"project":"ipympl"},{"download_count":362342,"project":"pymeta3"},{"download_count":362302,"project":"isal"},{"download_count":362261,"project":"azure-cognitiveservices-speech"},{"download_count":362236,"project":"fastly"},{"download_count":362106,"project":"types-tzlocal"},{"download_count":361979,"project":"shrub-py"},{"download_count":361606,"project":"pyqtwebengine"},{"download_count":361488,"project":"dict2css"},{"download_count":361307,"project":"mypy-boto3-ses"},{"download_count":361188,"project":"bugsnag"},{"download_count":361026,"project":"leb128"},{"download_count":360859,"project":"glances"},{"download_count":360115,"project":"azure-mgmt-hybridcompute"},{"download_count":359267,"project":"sphinx-jinja2-compat"},{"download_count":359139,"project":"pyld"},{"download_count":359096,"project":"opencc-python-reimplemented"},{"download_count":359022,"project":"pem"},{"download_count":358949,"project":"opentelemetry-instrumentation-tornado"},{"download_count":358875,"project":"restructuredtext-lint"},{"download_count":358308,"project":"jupyter-nbextensions-configurator"},{"download_count":357263,"project":"types-chardet"},{"download_count":357163,"project":"webassets"},{"download_count":357107,"project":"tslearn"},{"download_count":356255,"project":"ntc-templates"},{"download_count":355884,"project":"easygui"},{"download_count":355881,"project":"rouge"},{"download_count":355796,"project":"ldapdomaindump"},{"download_count":355108,"project":"tzwhere"},{"download_count":355068,"project":"llama-index-embeddings-azure-openai"},{"download_count":354728,"project":"pytest-factoryboy"},{"download_count":354564,"project":"xsdata"},{"download_count":354162,"project":"pyxray"},{"download_count":354026,"project":"python-graphql-client"},{"download_count":353635,"project":"lomond"},{"download_count":353431,"project":"aws-cdk-asset-node-proxy-agent-v5"},{"download_count":352847,"project":"flask-script"},{"download_count":352681,"project":"cli-helpers"},{"download_count":352544,"project":"morecantile"},{"download_count":352215,"project":"cxxfilt"},{"download_count":352084,"project":"mistral-common"},{"download_count":351331,"project":"ase"},{"download_count":351004,"project":"aliyun-python-sdk-r-kvstore"},{"download_count":350932,"project":"pytest-pythonpath"},{"download_count":350812,"project":"flake8-variables-names"},{"download_count":350706,"project":"pgeocode"},{"download_count":350589,"project":"tcod"},{"download_count":350527,"project":"screeninfo"},{"download_count":350271,"project":"untokenize"},{"download_count":350242,"project":"fancycompleter"},{"download_count":349758,"project":"reportportal-client"},{"download_count":349677,"project":"argilla"},{"download_count":349633,"project":"simpleitk"},{"download_count":349232,"project":"pudb"},{"download_count":349180,"project":"m2crypto"},{"download_count":348967,"project":"xopen"},{"download_count":348673,"project":"linode-cli"},{"download_count":348003,"project":"langid"},{"download_count":347561,"project":"domain2idna"},{"download_count":347256,"project":"pyro-ppl"},{"download_count":347109,"project":"ansible-runner"},{"download_count":347018,"project":"mypy-boto3-logs"},{"download_count":346880,"project":"python-swiftclient"},{"download_count":346838,"project":"pymodbus"},{"download_count":346788,"project":"aws-kinesis-agg"},{"download_count":346681,"project":"thriftpy2"},{"download_count":346501,"project":"yellowbrick"},{"download_count":346352,"project":"asynch"},{"download_count":346002,"project":"delighted"},{"download_count":345595,"project":"gurobipy"},{"download_count":345578,"project":"histlite"},{"download_count":345572,"project":"pytest-clarity"},{"download_count":345331,"project":"linode-metadata"},{"download_count":345145,"project":"unicorn"},{"download_count":344929,"project":"flake8-commas"},{"download_count":344926,"project":"crewai"},{"download_count":344398,"project":"osmium"},{"download_count":344350,"project":"localstack-core"},{"download_count":344346,"project":"tika"},{"download_count":343660,"project":"perlin-noise"},{"download_count":343594,"project":"jsonpath"},{"download_count":343523,"project":"word2number"},{"download_count":342953,"project":"types-flask"},{"download_count":342948,"project":"scooby"},{"download_count":342806,"project":"window-ops"},{"download_count":342509,"project":"docstring-to-markdown"},{"download_count":342452,"project":"ladybug-display"},{"download_count":342072,"project":"dagster-cloud"},{"download_count":341827,"project":"pdbpp"},{"download_count":341679,"project":"in-place"},{"download_count":341600,"project":"fs-s3fs"},{"download_count":341380,"project":"quart-cors"},{"download_count":341184,"project":"whoosh"},{"download_count":340993,"project":"arch"},{"download_count":340772,"project":"django-mysql"},{"download_count":340692,"project":"click-default-group-wheel"},{"download_count":340539,"project":"miscreant"},{"download_count":340339,"project":"cloudwatch"},{"download_count":340286,"project":"cron-converter"},{"download_count":340145,"project":"wmctrl"},{"download_count":340144,"project":"marshmallow-jsonapi"},{"download_count":340132,"project":"evdev"},{"download_count":340014,"project":"mypy-boto3-elbv2"},{"download_count":339451,"project":"swig"},{"download_count":338874,"project":"keras-tuner"},{"download_count":338788,"project":"cdifflib"},{"download_count":338759,"project":"gin-config"},{"download_count":338690,"project":"modelscope"},{"download_count":338598,"project":"progressbar"},{"download_count":337991,"project":"sly"},{"download_count":337885,"project":"localstack-client"},{"download_count":337740,"project":"torch-geometric"},{"download_count":336786,"project":"uszipcode"},{"download_count":336777,"project":"reprint"},{"download_count":336747,"project":"codeguru-profiler-agent"},{"download_count":336673,"project":"beaker"},{"download_count":336592,"project":"accumulation-tree"},{"download_count":336592,"project":"acryl-sqlglot"},{"download_count":336449,"project":"airflow-exporter"},{"download_count":336090,"project":"pyfunceble-dev"},{"download_count":335862,"project":"array-api-compat"},{"download_count":335613,"project":"honcho"},{"download_count":335400,"project":"boto-session-manager"},{"download_count":335336,"project":"pylas"},{"download_count":335267,"project":"pyqtgraph"},{"download_count":335242,"project":"importlab"},{"download_count":335203,"project":"salib"},{"download_count":335077,"project":"pybars3"},{"download_count":334994,"project":"pydomo"},{"download_count":334900,"project":"python-pptx-templater"},{"download_count":334888,"project":"pyfarmhash"},{"download_count":334567,"project":"hsluv"},{"download_count":334537,"project":"django-colorfield"},{"download_count":334335,"project":"crochet"},{"download_count":334084,"project":"aws-assume-role-lib"},{"download_count":333545,"project":"plotly-resampler"},{"download_count":333453,"project":"tuf"},{"download_count":333294,"project":"random-user-agent"},{"download_count":333021,"project":"fuzzytm"},{"download_count":331776,"project":"pyloudnorm"},{"download_count":331340,"project":"property-cached"},{"download_count":331275,"project":"acryl-datahub-airflow-plugin"},{"download_count":331247,"project":"tgcrypto"},{"download_count":331211,"project":"allure-behave"},{"download_count":330953,"project":"pyrogram"},{"download_count":330860,"project":"types-appdirs"},{"download_count":330611,"project":"libusb-package"},{"download_count":330117,"project":"fixit"},{"download_count":329942,"project":"simpful"},{"download_count":329831,"project":"sigstore"},{"download_count":329824,"project":"robotframework-jsonlibrary"},{"download_count":329812,"project":"djangorestframework-api-key"},{"download_count":329735,"project":"pylibmc"},{"download_count":329198,"project":"opentelemetry-exporter-prometheus"},{"download_count":329151,"project":"stups-tokens"},{"download_count":328844,"project":"sigstore-protobuf-specs"},{"download_count":328614,"project":"kivy-garden"},{"download_count":328552,"project":"meshio"},{"download_count":328143,"project":"sphinx-data-viewer"},{"download_count":327989,"project":"nagisa"},{"download_count":327911,"project":"pyside2"},{"download_count":327582,"project":"chromedriver-autoinstaller"},{"download_count":327391,"project":"fernet"},{"download_count":327156,"project":"sigstore-rekor-types"},{"download_count":326934,"project":"cheetah3"},{"download_count":326934,"project":"pdm-backend"},{"download_count":326810,"project":"pydoe"},{"download_count":326122,"project":"itables"},{"download_count":326012,"project":"pandas-profiling"},{"download_count":325827,"project":"mobly"},{"download_count":325702,"project":"praw"},{"download_count":325326,"project":"lkml"},{"download_count":325292,"project":"tsdownsample"},{"download_count":325229,"project":"basicsr"},{"download_count":325060,"project":"hdf5plugin"},{"download_count":324949,"project":"kneed"},{"download_count":324928,"project":"pip-with-requires-python"},{"download_count":324770,"project":"zake"},{"download_count":324657,"project":"django-modeltranslation"},{"download_count":324555,"project":"langchain-chroma"},{"download_count":324528,"project":"dagster-slack"},{"download_count":324475,"project":"python-socks"},{"download_count":324388,"project":"requirements-detector"},{"download_count":324158,"project":"s3pathlib"},{"download_count":323816,"project":"visitor"},{"download_count":323626,"project":"ipyvuetify"},{"download_count":323557,"project":"iterproxy"},{"download_count":323551,"project":"opentelemetry-instrumentation-confluent-kafka"},{"download_count":323363,"project":"kafka"},{"download_count":323186,"project":"fiscalyear"},{"download_count":322892,"project":"pyspark-pandas"},{"download_count":322704,"project":"pyudorandom"},{"download_count":322400,"project":"monty"},{"download_count":322300,"project":"xdoctest"},{"download_count":322086,"project":"awsebcli"},{"download_count":322031,"project":"ipyvue"},{"download_count":321761,"project":"multiset"},{"download_count":321751,"project":"pygraphviz"},{"download_count":321030,"project":"pyscaffold"},{"download_count":320658,"project":"lxml-stubs"},{"download_count":320535,"project":"fhir-resources"},{"download_count":320463,"project":"distance"},{"download_count":320410,"project":"pyro-api"},{"download_count":320405,"project":"names"},{"download_count":320145,"project":"petl"},{"download_count":319951,"project":"pyfunctional"},{"download_count":319907,"project":"sphinx-needs"},{"download_count":319881,"project":"prawcore"},{"download_count":319873,"project":"wasmtime"},{"download_count":319603,"project":"ytsaurus-client"},{"download_count":319379,"project":"vadersentiment"},{"download_count":319224,"project":"yamlordereddictloader"},{"download_count":318829,"project":"mypy-boto3-route53domains"},{"download_count":318797,"project":"oslo-log"},{"download_count":317976,"project":"databricks-feature-engineering"},{"download_count":317696,"project":"mailjet-rest"},{"download_count":317596,"project":"quantities"},{"download_count":317340,"project":"shiboken2"},{"download_count":316985,"project":"embedchain"},{"download_count":316956,"project":"ordereddict"},{"download_count":316919,"project":"django-axes"},{"download_count":316830,"project":"ytsaurus-yson"},{"download_count":316716,"project":"types-fpdf2"},{"download_count":316644,"project":"embreex"},{"download_count":316524,"project":"pcpp"},{"download_count":316337,"project":"lightfm"},{"download_count":316321,"project":"xdg"},{"download_count":316274,"project":"img2pdf"},{"download_count":316175,"project":"wiki-fetch"},{"download_count":316152,"project":"milvus-lite"},{"download_count":316029,"project":"primp"},{"download_count":315902,"project":"bootstrap-flask"},{"download_count":315883,"project":"django-ninja"},{"download_count":315880,"project":"pytest-trio"},{"download_count":315791,"project":"flufl-lock"},{"download_count":315542,"project":"taskgroup"},{"download_count":315496,"project":"cupy-cuda12x"},{"download_count":315229,"project":"flake8-tidy-imports"},{"download_count":315135,"project":"custom-inherit"},{"download_count":315074,"project":"mypy-boto3-emr"},{"download_count":314886,"project":"luigi"},{"download_count":314875,"project":"music21"},{"download_count":314587,"project":"nutter"},{"download_count":314480,"project":"trafaret"},{"download_count":314046,"project":"pydantic-yaml"},{"download_count":313887,"project":"types-boto"},{"download_count":313859,"project":"poyo"},{"download_count":313841,"project":"mkdocs-redirects"},{"download_count":313755,"project":"python-novaclient"},{"download_count":313683,"project":"flake8-simplify"},{"download_count":313579,"project":"check-manifest"},{"download_count":313552,"project":"prospector"},{"download_count":313452,"project":"dictlib"},{"download_count":313379,"project":"grpcio-testing"},{"download_count":313324,"project":"unstructured-inference"},{"download_count":313010,"project":"crowdstrike-falconpy"},{"download_count":313003,"project":"oslo-context"},{"download_count":313002,"project":"fastdtw"},{"download_count":313001,"project":"django-localflavor"},{"download_count":312836,"project":"httpie-edgegrid"},{"download_count":312747,"project":"brotlipy"},{"download_count":312603,"project":"yapsy"},{"download_count":312361,"project":"tatsu"},{"download_count":312214,"project":"multiaddr"},{"download_count":311914,"project":"opentelemetry-instrumentation-falcon"},{"download_count":311855,"project":"opentelemetry-instrumentation-mysqlclient"},{"download_count":311751,"project":"adjusttext"},{"download_count":311465,"project":"honeybee-core"},{"download_count":311185,"project":"pdoc"},{"download_count":311075,"project":"mistletoe"},{"download_count":311074,"project":"python-amazon-sp-api"},{"download_count":311008,"project":"huaweicloudsdkcore"},{"download_count":310798,"project":"onnxsim"},{"download_count":310776,"project":"ladybug-geometry-polyskel"},{"download_count":310769,"project":"sqlalchemy-trino"},{"download_count":310715,"project":"ipfshttpclient"},{"download_count":310285,"project":"rstcheck"},{"download_count":310264,"project":"honeybee-schema"},{"download_count":310148,"project":"argo-workflows"},{"download_count":310094,"project":"mypy-boto3-ecs"},{"download_count":310068,"project":"aws-cdk-core"},{"download_count":310048,"project":"ncclient"},{"download_count":309943,"project":"pyfzf"},{"download_count":309909,"project":"lightstep"},{"download_count":309901,"project":"dataset"},{"download_count":309876,"project":"stups-zign"},{"download_count":309850,"project":"stups-cli-support"},{"download_count":309663,"project":"anywidget"},{"download_count":309651,"project":"django-user-agents"},{"download_count":309518,"project":"molecule-plugins"},{"download_count":309301,"project":"delocate"},{"download_count":309039,"project":"pydrive"},{"download_count":309029,"project":"mypy-boto3-sagemaker"},{"download_count":308838,"project":"elasticsearch-curator"},{"download_count":308800,"project":"scrapbook"},{"download_count":308471,"project":"django-tables2"},{"download_count":308466,"project":"django-auth-ldap"},{"download_count":308288,"project":"lorem"},{"download_count":308219,"project":"great-expectations-experimental"},{"download_count":308103,"project":"nvidia-ml-py3"},{"download_count":308052,"project":"plyfile"},{"download_count":307934,"project":"ml-collections"},{"download_count":307688,"project":"opentelemetry-instrumentation-mysql"},{"download_count":307662,"project":"secure"},{"download_count":307532,"project":"partial-json-parser"},{"download_count":307447,"project":"prefect-docker"},{"download_count":307399,"project":"pyobjc-core"},{"download_count":307159,"project":"libusb1"},{"download_count":306907,"project":"honeybee-standards"},{"download_count":306748,"project":"pydantic-openapi-helper"},{"download_count":306701,"project":"opencc"},{"download_count":306631,"project":"sphinx-notfound-page"},{"download_count":306042,"project":"prettyprinter"},{"download_count":305961,"project":"testresources"},{"download_count":305951,"project":"crontab"},{"download_count":305880,"project":"aiosmtpd"},{"download_count":305855,"project":"prefect-github"},{"download_count":305721,"project":"azureml-defaults"},{"download_count":305624,"project":"statistics"},{"download_count":305505,"project":"docstring-parser-fork"},{"download_count":305242,"project":"sphinxcontrib-drawio"},{"download_count":304961,"project":"antlr-denter"},{"download_count":304716,"project":"airbyte-cdk"},{"download_count":304716,"project":"dynet"},{"download_count":304592,"project":"pandas-flavor"},{"download_count":304568,"project":"pylink-square"},{"download_count":304474,"project":"mpld3"},{"download_count":304442,"project":"rfc8785"},{"download_count":304370,"project":"pyftpdlib"},{"download_count":304142,"project":"django-jazzmin"},{"download_count":303141,"project":"nacos-sdk-python"},{"download_count":303114,"project":"versioningit"},{"download_count":303054,"project":"objprint"},{"download_count":302973,"project":"treq"},{"download_count":302947,"project":"webexteamssdk"},{"download_count":302725,"project":"table-logger"},{"download_count":302606,"project":"sql-formatter"},{"download_count":302558,"project":"aws-cdk-aws-iam"},{"download_count":302409,"project":"mypy-boto3-batch"},{"download_count":302247,"project":"uuid7"},{"download_count":301586,"project":"opentelemetry-instrumentation-pyramid"},{"download_count":301491,"project":"ibm-watsonx-ai"},{"download_count":301359,"project":"llama-index-llms-azure-openai"},{"download_count":301233,"project":"plantuml-markdown"},{"download_count":301131,"project":"python-lsp-server"},{"download_count":300722,"project":"ipcqueue"},{"download_count":300624,"project":"pyobjc-framework-cocoa"},{"download_count":300551,"project":"yamlloader"},{"download_count":300409,"project":"json-encoder"},{"download_count":300399,"project":"pyliquibase"},{"download_count":300320,"project":"pybacklogpy"},{"download_count":300298,"project":"django-rest-swagger"},{"download_count":300296,"project":"pytest-djangoapp"},{"download_count":300236,"project":"mypy-boto3-cloudwatch"},{"download_count":300210,"project":"dataclasses-avroschema"},{"download_count":300111,"project":"mwparserfromhell"},{"download_count":299840,"project":"aws-logging-handlers"},{"download_count":299782,"project":"docopt-ng"},{"download_count":298963,"project":"opentelemetry-instrumentation-pymemcache"},{"download_count":298642,"project":"xrft"},{"download_count":298416,"project":"langchain-cohere"},{"download_count":298274,"project":"returns"},{"download_count":298086,"project":"plux"},{"download_count":297734,"project":"mkdocs-techdocs-core"},{"download_count":297529,"project":"xml-python"},{"download_count":297166,"project":"chalice"},{"download_count":296758,"project":"yeelight"},{"download_count":295711,"project":"google-cloud-ndb"},{"download_count":295526,"project":"badx12"},{"download_count":295525,"project":"pylama"},{"download_count":295511,"project":"jsonslicer"},{"download_count":295509,"project":"aws-error-utils"},{"download_count":295494,"project":"colander"},{"download_count":294994,"project":"mypy-boto3-cognito-idp"},{"download_count":294721,"project":"effdet"},{"download_count":294341,"project":"djangorestframework-jwt"},{"download_count":294023,"project":"types-python-slugify"},{"download_count":293845,"project":"homeassistant"},{"download_count":293729,"project":"httpstan"},{"download_count":293718,"project":"lazy-imports"},{"download_count":293627,"project":"kt-legacy"},{"download_count":293545,"project":"mypy-boto3-dms"},{"download_count":293541,"project":"python-etcd"},{"download_count":293472,"project":"pyhdb"},{"download_count":293416,"project":"qds-sdk"},{"download_count":293296,"project":"mkdocs-monorepo-plugin"},{"download_count":293123,"project":"opentelemetry-instrumentation-aio-pika"},{"download_count":292719,"project":"path-py"},{"download_count":292610,"project":"pylightxl"},{"download_count":292447,"project":"kubernetes-client"},{"download_count":292327,"project":"pypi-attestations"},{"download_count":292322,"project":"flake8-annotations"},{"download_count":292221,"project":"logging"},{"download_count":291898,"project":"pysolr"},{"download_count":291632,"project":"in-n-out"},{"download_count":291575,"project":"sphinxcontrib-plantuml"},{"download_count":291440,"project":"meteostat"},{"download_count":291051,"project":"connectorx"},{"download_count":290885,"project":"pbspark"},{"download_count":290168,"project":"versionfinder"},{"download_count":290041,"project":"attr"},{"download_count":289896,"project":"awslimitchecker"},{"download_count":289871,"project":"pybaselines"},{"download_count":289819,"project":"micloud"},{"download_count":289738,"project":"asn1"},{"download_count":289302,"project":"hmsclient"},{"download_count":289213,"project":"pytype"},{"download_count":288790,"project":"ghostscript"},{"download_count":288782,"project":"mygeotab"},{"download_count":288469,"project":"lagom"},{"download_count":287968,"project":"robocorp-log"},{"download_count":287926,"project":"pycarlo"},{"download_count":287858,"project":"pyreadline"},{"download_count":287831,"project":"webapp2"},{"download_count":287708,"project":"ragas"},{"download_count":287293,"project":"pytools"},{"download_count":287285,"project":"psycopg-c"},{"download_count":287156,"project":"pydevd-pycharm"},{"download_count":287096,"project":"transliterate"},{"download_count":286961,"project":"schwifty"},{"download_count":286809,"project":"opentelemetry-instrumentation-aiopg"},{"download_count":286641,"project":"robocorp-tasks"},{"download_count":286547,"project":"testing-common-database"},{"download_count":286465,"project":"brotlicffi"},{"download_count":286448,"project":"paddlepaddle"},{"download_count":286400,"project":"structlog-sentry"},{"download_count":286366,"project":"layoutparser"},{"download_count":286207,"project":"dbx"},{"download_count":285922,"project":"py-backwards"},{"download_count":285813,"project":"backports-strenum"},{"download_count":285807,"project":"py-backwards-astunparse"},{"download_count":285765,"project":"robocorp-workitems"},{"download_count":285604,"project":"robotframework-browser"},{"download_count":285499,"project":"pyathenajdbc"},{"download_count":285404,"project":"py-moneyed"},{"download_count":285219,"project":"deb-pkg-tools"},{"download_count":285111,"project":"pyaudio"},{"download_count":284900,"project":"aws-cdk-aws-ec2"},{"download_count":284884,"project":"robocorp"},{"download_count":284647,"project":"pytest-profiling"},{"download_count":284560,"project":"types-futures"},{"download_count":284221,"project":"spacy-wordnet"},{"download_count":283631,"project":"h3-pyspark"},{"download_count":283405,"project":"feedfinder2"},{"download_count":283309,"project":"lm-eval"},{"download_count":283022,"project":"pyshark"},{"download_count":282829,"project":"django-guardian"},{"download_count":282799,"project":"flask-executor"},{"download_count":282642,"project":"opentelemetry-instrumentation-cassandra"},{"download_count":282454,"project":"murmurhash2"},{"download_count":282434,"project":"recurring-ical-events"},{"download_count":282375,"project":"robotframework-assertion-engine"},{"download_count":282222,"project":"jieba3k"},{"download_count":282022,"project":"musdb"},{"download_count":281937,"project":"jsonseq"},{"download_count":281922,"project":"stempeg"},{"download_count":281688,"project":"virtme-ng"},{"download_count":281633,"project":"google-cloud-scheduler"},{"download_count":281531,"project":"pytest-variables"},{"download_count":281424,"project":"single-source"},{"download_count":281309,"project":"torch-complex"},{"download_count":281249,"project":"museval"},{"download_count":281075,"project":"opentelemetry-instrumentation-remoulade"},{"download_count":280987,"project":"warcio"},{"download_count":280799,"project":"serpent"},{"download_count":280681,"project":"google-cloud-documentai"},{"download_count":280525,"project":"huaweicloudsdkdns"},{"download_count":280282,"project":"transformations"},{"download_count":280200,"project":"ariadne"},{"download_count":280069,"project":"kafka-python-ng"},{"download_count":279616,"project":"robotframework-appiumlibrary"},{"download_count":279550,"project":"path-dict"},{"download_count":279481,"project":"prefect-sqlalchemy"},{"download_count":279461,"project":"oic"},{"download_count":279232,"project":"grandalf"},{"download_count":279227,"project":"h2o"},{"download_count":279045,"project":"tox-ansible"},{"download_count":278463,"project":"intel-openmp"},{"download_count":278405,"project":"cloudinary"},{"download_count":278271,"project":"cnvrg"},{"download_count":278211,"project":"compressed-rtf"},{"download_count":278156,"project":"pyiso8583"},{"download_count":278097,"project":"empy"},{"download_count":277809,"project":"flask-apscheduler"},{"download_count":277667,"project":"quadprog"},{"download_count":277604,"project":"pyinstaller-versionfile"},{"download_count":277600,"project":"gitlint"},{"download_count":277537,"project":"mozilla-django-oidc"},{"download_count":277166,"project":"shopifyapi"},{"download_count":277058,"project":"azure-communication-email"},{"download_count":276812,"project":"python-schema-registry-client"},{"download_count":276623,"project":"opacus"},{"download_count":276515,"project":"gitlint-core"},{"download_count":276337,"project":"discord-webhook"},{"download_count":276229,"project":"tensorflowjs"},{"download_count":276203,"project":"lazy"},{"download_count":276101,"project":"pytest-datadir"},{"download_count":276011,"project":"ldaptor"},{"download_count":275367,"project":"pythran"},{"download_count":275229,"project":"pyxirr"},{"download_count":275217,"project":"pyicu-binary"},{"download_count":275078,"project":"elasticsearch6"},{"download_count":274938,"project":"snakeviz"},{"download_count":274906,"project":"aws-cdk-aws-kms"},{"download_count":274652,"project":"vispy"},{"download_count":274495,"project":"tm1py"},{"download_count":274427,"project":"asyncio-throttle"},{"download_count":274363,"project":"slicerator"},{"download_count":274186,"project":"viztracer"},{"download_count":274117,"project":"docker-image-py"},{"download_count":273756,"project":"dockerfile"},{"download_count":273502,"project":"asyncstdlib"},{"download_count":273275,"project":"mplfinance"},{"download_count":273252,"project":"mdxpy"},{"download_count":273135,"project":"google-cloud-private-ca"},{"download_count":273000,"project":"dvc-render"},{"download_count":272974,"project":"pytest-watch"},{"download_count":272868,"project":"mkdocs-awesome-pages-plugin"},{"download_count":272819,"project":"pyqtwebengine-qt5"},{"download_count":272800,"project":"pystac"},{"download_count":272704,"project":"pydotplus"},{"download_count":272650,"project":"plotly-express"},{"download_count":272270,"project":"moepy"},{"download_count":272190,"project":"pymacaroons"},{"download_count":272079,"project":"draftjs-exporter"},{"download_count":271909,"project":"prefixed"},{"download_count":271887,"project":"fuzzyset2"},{"download_count":271859,"project":"pytest-timestamper"},{"download_count":271681,"project":"tf2onnx"},{"download_count":271547,"project":"sagemaker-data-insights"},{"download_count":271356,"project":"myst-nb"},{"download_count":271321,"project":"databricks-utils"},{"download_count":270956,"project":"chargebee"},{"download_count":270809,"project":"pyocd"},{"download_count":270212,"project":"django-tinymce"},{"download_count":270148,"project":"clearml"},{"download_count":270055,"project":"hydra-colorlog"},{"download_count":270005,"project":"reverse-geocoder"},{"download_count":269989,"project":"jupyter-contrib-core"},{"download_count":269910,"project":"mypy-boto3-route53"},{"download_count":269867,"project":"imap-tools"},{"download_count":269840,"project":"apache-airflow-providers-apache-hive"},{"download_count":269639,"project":"cssbeautifier"},{"download_count":269590,"project":"wikipedia"},{"download_count":269445,"project":"python3-xlib"},{"download_count":269313,"project":"couchbase"},{"download_count":269201,"project":"pypd"},{"download_count":269141,"project":"django-auditlog"},{"download_count":268723,"project":"h3ronpy"},{"download_count":268707,"project":"aws-cdk-cx-api"},{"download_count":268342,"project":"types-aiobotocore-sqs"},{"download_count":268337,"project":"telebot"},{"download_count":267947,"project":"intervals"},{"download_count":267857,"project":"ocspbuilder"},{"download_count":267809,"project":"scrubadub"},{"download_count":267618,"project":"entrypoint2"},{"download_count":267589,"project":"envparse"},{"download_count":267412,"project":"event-model"},{"download_count":267378,"project":"puremagic"},{"download_count":267143,"project":"prov"},{"download_count":267012,"project":"joblibspark"},{"download_count":266803,"project":"sspilib"},{"download_count":266619,"project":"wmill"},{"download_count":266550,"project":"types-aiobotocore-dynamodb"},{"download_count":266542,"project":"latex2mathml"},{"download_count":266514,"project":"cloudformation-cli-python-lib"},{"download_count":266500,"project":"aws-msk-iam-sasl-signer-python"},{"download_count":266214,"project":"secure-smtplib"},{"download_count":266161,"project":"pycollada"},{"download_count":266139,"project":"pymarshaler"},{"download_count":266026,"project":"dicomweb-client"},{"download_count":265972,"project":"x-wr-timezone"},{"download_count":265968,"project":"currencyconverter"},{"download_count":265927,"project":"flask-assets"},{"download_count":265895,"project":"varname"},{"download_count":265686,"project":"python-subunit"},{"download_count":265632,"project":"curatorbin"},{"download_count":265621,"project":"sqlalchemy-json"},{"download_count":265572,"project":"honeybee-energy"},{"download_count":265571,"project":"dotnetcore2"},{"download_count":265494,"project":"tabcmd"},{"download_count":265363,"project":"cookies"},{"download_count":265336,"project":"ocspresponder"},{"download_count":265208,"project":"funcparserlib"},{"download_count":265203,"project":"click-configfile"},{"download_count":265017,"project":"pyvista"},{"download_count":264830,"project":"jupyter-contrib-nbextensions"},{"download_count":264578,"project":"pyexcel"},{"download_count":264449,"project":"awscli-local"},{"download_count":264421,"project":"noise"},{"download_count":264411,"project":"google-cloud-artifact-registry"},{"download_count":264248,"project":"testing-postgresql"},{"download_count":264026,"project":"pylance"},{"download_count":263805,"project":"burr"},{"download_count":263664,"project":"reedsolo"},{"download_count":263657,"project":"haystack-ai"},{"download_count":263617,"project":"evergreen-lint"},{"download_count":263539,"project":"gspread-pandas"},{"download_count":263137,"project":"higher"},{"download_count":262968,"project":"flogging"},{"download_count":262944,"project":"apache-airflow-providers-elasticsearch"},{"download_count":262870,"project":"ipaddr"},{"download_count":262666,"project":"eccodes"},{"download_count":262633,"project":"coolprop"},{"download_count":262578,"project":"varint"},{"download_count":262551,"project":"sphinx-autoapi"},{"download_count":262526,"project":"napari-plugin-engine"},{"download_count":262466,"project":"esp-idf-kconfig"},{"download_count":262174,"project":"proxy-protocol"},{"download_count":262155,"project":"edx-opaque-keys"},{"download_count":262150,"project":"databind"},{"download_count":262117,"project":"dodgy"},{"download_count":262005,"project":"mmhash3"},{"download_count":261962,"project":"gpytorch"},{"download_count":261951,"project":"setuptools-download"},{"download_count":261950,"project":"arthurai"},{"download_count":261947,"project":"dagster-pandas"},{"download_count":261588,"project":"ffmpeg"},{"download_count":261554,"project":"dall-e"},{"download_count":261499,"project":"dagster-cloud-cli"},{"download_count":261460,"project":"judo"},{"download_count":261443,"project":"fragile"},{"download_count":261213,"project":"urlextract"},{"download_count":260871,"project":"nncf"},{"download_count":260842,"project":"deap"},{"download_count":260824,"project":"aws-cdk-aws-lambda"},{"download_count":260665,"project":"getmac"},{"download_count":260612,"project":"rq-dashboard"},{"download_count":260594,"project":"pymc"},{"download_count":260190,"project":"ceja"},{"download_count":259991,"project":"styleframe"},{"download_count":259983,"project":"py-grpc-prometheus"},{"download_count":259765,"project":"pdfrw"},{"download_count":259723,"project":"spacy-transformers"},{"download_count":259576,"project":"opentelemetry-exporter-jaeger-thrift"},{"download_count":259442,"project":"aws-cdk-aws-s3"},{"download_count":259291,"project":"mypy-boto3-sagemaker-runtime"},{"download_count":259088,"project":"mistralai"},{"download_count":259071,"project":"pycaret"},{"download_count":258936,"project":"tree-sitter-javascript"},{"download_count":258925,"project":"transforms3d"},{"download_count":258902,"project":"adtk"},{"download_count":258808,"project":"ptvsd"},{"download_count":258705,"project":"py-consul"},{"download_count":258373,"project":"sanitize-filename"},{"download_count":258304,"project":"python-mimeparse"},{"download_count":258161,"project":"pypsrp"},{"download_count":257805,"project":"azure-ml-component"},{"download_count":257715,"project":"jupyter-cache"},{"download_count":257685,"project":"json-rpc"},{"download_count":257430,"project":"pylint-celery"},{"download_count":257389,"project":"pyactiveresource"},{"download_count":257349,"project":"qpd"},{"download_count":257272,"project":"kaldi-io"},{"download_count":257210,"project":"clint"},{"download_count":256915,"project":"marshmallow3-annotations"},{"download_count":256903,"project":"mkdocs-include-markdown-plugin"},{"download_count":256899,"project":"redis-sentinel-url"},{"download_count":256897,"project":"dagster-pyspark"},{"download_count":256644,"project":"ibm-watson-machine-learning"},{"download_count":256496,"project":"ladybug-rhino"},{"download_count":256473,"project":"tensorboard-plugin-profile"},{"download_count":256341,"project":"lancedb"},{"download_count":256239,"project":"r2pipe"},{"download_count":256190,"project":"pynose"},{"download_count":256180,"project":"langchain-huggingface"},{"download_count":256173,"project":"insightface"},{"download_count":256127,"project":"django-constance"},{"download_count":256064,"project":"cpplint"},{"download_count":255856,"project":"func-args"},{"download_count":255553,"project":"teamcity-messages"},{"download_count":255552,"project":"pyemd"},{"download_count":255178,"project":"xlsx2csv"},{"download_count":255011,"project":"cognitojwt"},{"download_count":254830,"project":"rospkg"},{"download_count":254807,"project":"whichcraft"},{"download_count":254801,"project":"apache-airflow-providers-sendgrid"},{"download_count":254767,"project":"sorl-thumbnail"},{"download_count":254665,"project":"paddleocr"},{"download_count":254509,"project":"pyinotify"},{"download_count":254340,"project":"pyqrcode"},{"download_count":254205,"project":"prefect-shell"},{"download_count":254031,"project":"onnxscript"},{"download_count":253802,"project":"scmrepo"},{"download_count":253798,"project":"optbinning"},{"download_count":253113,"project":"bindep"},{"download_count":253111,"project":"langchain-ibm"},{"download_count":253066,"project":"td-client"},{"download_count":252696,"project":"bravado"},{"download_count":252672,"project":"dagster-shell"},{"download_count":252511,"project":"aiodataloader"},{"download_count":252427,"project":"flit"},{"download_count":252382,"project":"username"},{"download_count":252338,"project":"aws-cdk-aws-cloudwatch"},{"download_count":252100,"project":"django-multiselectfield"},{"download_count":252089,"project":"google-cloud-dialogflow-cx"},{"download_count":251976,"project":"segtok"},{"download_count":251957,"project":"rio-cogeo"},{"download_count":251483,"project":"apiclient"},{"download_count":251179,"project":"krb5"},{"download_count":250923,"project":"inference-schema"},{"download_count":250790,"project":"onnxmltools"},{"download_count":250632,"project":"ccard"},{"download_count":250586,"project":"jsonnet"},{"download_count":250473,"project":"sparkaid"},{"download_count":250327,"project":"django-fsm"},{"download_count":250130,"project":"beautifultable"},{"download_count":250047,"project":"types-tensorflow"},{"download_count":249971,"project":"link"},{"download_count":249839,"project":"libarchive-c"},{"download_count":249757,"project":"google-cloud-recaptcha-enterprise"},{"download_count":249614,"project":"mkl"},{"download_count":249421,"project":"robotframework-retryfailed"},{"download_count":249391,"project":"mdutils"},{"download_count":249386,"project":"statsig"},{"download_count":249257,"project":"python-dynamodb-lock"},{"download_count":249250,"project":"pysqlite3-binary"},{"download_count":249173,"project":"aws-cdk-region-info"},{"download_count":249075,"project":"wtforms-components"},{"download_count":249046,"project":"elasticquery"},{"download_count":249037,"project":"kopf"},{"download_count":248983,"project":"jupyter-server-proxy"},{"download_count":248946,"project":"aws-cdk-aws-events"},{"download_count":248938,"project":"portion"},{"download_count":248914,"project":"pwlf"},{"download_count":248775,"project":"pid"},{"download_count":248724,"project":"pytest-pylint"},{"download_count":248673,"project":"drf-spectacular-sidecar"},{"download_count":248623,"project":"enlighten"},{"download_count":248498,"project":"aliyun-python-sdk-ecs"},{"download_count":248429,"project":"littleutils"},{"download_count":248418,"project":"rdkit-pypi"},{"download_count":248406,"project":"funasr"},{"download_count":247907,"project":"pyjwkest"},{"download_count":247578,"project":"hdrpy"},{"download_count":247511,"project":"zigpy-zigate"},{"download_count":247507,"project":"flake8-string-format"},{"download_count":247492,"project":"cli-exit-tools"},{"download_count":247470,"project":"springserve"},{"download_count":247356,"project":"mitmproxy"},{"download_count":247344,"project":"unstructured-pytesseract"},{"download_count":247172,"project":"pypubsub"},{"download_count":247114,"project":"pure-pcapy3"},{"download_count":247026,"project":"opentelemetry-propagator-gcp"},{"download_count":246990,"project":"anndata"},{"download_count":246938,"project":"markdown-to-json"},{"download_count":246880,"project":"httpx-ws"},{"download_count":246812,"project":"ph-units"},{"download_count":246700,"project":"flask-session2"},{"download_count":246639,"project":"oletools"},{"download_count":246540,"project":"timeago"},{"download_count":246530,"project":"opencensus-proto"},{"download_count":246436,"project":"dvc-data"},{"download_count":246136,"project":"synapseml"},{"download_count":246022,"project":"numpy-groupies"},{"download_count":245931,"project":"pyicu"},{"download_count":245861,"project":"pytorch-wpe"},{"download_count":245730,"project":"pyttsx3"},{"download_count":245611,"project":"gviz-api"},{"download_count":245394,"project":"django-structlog"},{"download_count":245375,"project":"whylogs"},{"download_count":245137,"project":"rtoml"},{"download_count":245115,"project":"apache-airflow-providers-papermill"},{"download_count":245086,"project":"luqum"},{"download_count":245054,"project":"pinecone"},{"download_count":245028,"project":"sqlalchemy-databricks"},{"download_count":244996,"project":"feedgen"},{"download_count":244685,"project":"lib-detect-testenv"},{"download_count":244276,"project":"keras-nightly"},{"download_count":244091,"project":"filecheck"},{"download_count":243545,"project":"pytest-parametrization"},{"download_count":243471,"project":"pykml"},{"download_count":243454,"project":"git-python"},{"download_count":243362,"project":"flask-pymongo"},{"download_count":243327,"project":"pylogbeat"},{"download_count":243291,"project":"ibm-secrets-manager-sdk"},{"download_count":243250,"project":"pcodedmp"},{"download_count":243247,"project":"gdal"},{"download_count":242951,"project":"virtualenvwrapper"},{"download_count":242872,"project":"times"},{"download_count":242867,"project":"pytest-celery"},{"download_count":242859,"project":"datarobot"},{"download_count":242801,"project":"pytest-spark"},{"download_count":242713,"project":"unyt"},{"download_count":242634,"project":"aiodogstatsd"},{"download_count":242588,"project":"django-object-actions"},{"download_count":242396,"project":"sqlvalidator"},{"download_count":242339,"project":"astronomer-providers"},{"download_count":242315,"project":"youqu3"},{"download_count":242296,"project":"pykmip"},{"download_count":242227,"project":"pinotdb"},{"download_count":242201,"project":"dbt-duckdb"},{"download_count":242198,"project":"django-rq"},{"download_count":241860,"project":"dj-rest-auth"},{"download_count":241699,"project":"treelite"},{"download_count":241653,"project":"langchainhub"},{"download_count":241540,"project":"clickhouse-cityhash"},{"download_count":241496,"project":"yara-python"},{"download_count":241398,"project":"geohash2"},{"download_count":241245,"project":"docrepr"},{"download_count":240999,"project":"fastdownload"},{"download_count":240947,"project":"doc-warden"},{"download_count":240871,"project":"aws-cdk-aws-ssm"},{"download_count":240748,"project":"robotframework-excellib"},{"download_count":240706,"project":"shillelagh"},{"download_count":240654,"project":"splink"},{"download_count":240484,"project":"inflector"},{"download_count":240407,"project":"streamlit-aggrid"},{"download_count":240081,"project":"interpret-core"},{"download_count":240080,"project":"kedro-datasets"},{"download_count":239311,"project":"tensorflow-decision-forests"},{"download_count":239244,"project":"aws-cdk-aws-logs"},{"download_count":239166,"project":"python-tds"},{"download_count":239127,"project":"aws-cdk-aws-s3-assets"},{"download_count":239101,"project":"apache-airflow-providers-trino"},{"download_count":238984,"project":"tinsel"},{"download_count":238850,"project":"djangorestframework-xml"},{"download_count":238849,"project":"doc8"},{"download_count":238820,"project":"pyaescrypt"},{"download_count":238650,"project":"sphinxext-opengraph"},{"download_count":238559,"project":"pygdbmi"},{"download_count":238292,"project":"django-two-factor-auth"},{"download_count":238119,"project":"utils"},{"download_count":238092,"project":"stanza"},{"download_count":237892,"project":"calver"},{"download_count":237786,"project":"pyrr"},{"download_count":237775,"project":"google-search-results"},{"download_count":237638,"project":"sanic-ext"},{"download_count":237587,"project":"azureml-fsspec"},{"download_count":237404,"project":"keplergl"},{"download_count":237332,"project":"simplekml"},{"download_count":237307,"project":"mypy-boto3-config"},{"download_count":237194,"project":"simple-azure-blob-downloader"},{"download_count":237107,"project":"grafanalib"},{"download_count":237052,"project":"django-elasticsearch-dsl"},{"download_count":236991,"project":"ovmsclient"},{"download_count":236970,"project":"asyncmy"},{"download_count":236941,"project":"mmengine"},{"download_count":236714,"project":"model-index"},{"download_count":236628,"project":"openapi-codec"},{"download_count":236625,"project":"web-fragments"},{"download_count":236593,"project":"cmsis-pack-manager"},{"download_count":236563,"project":"wtforms-alchemy"},{"download_count":236189,"project":"tableschema"},{"download_count":236182,"project":"haystack-experimental"},{"download_count":236153,"project":"litestar"},{"download_count":236130,"project":"comet-ml"},{"download_count":236048,"project":"generalimport"},{"download_count":235891,"project":"esptool"},{"download_count":235782,"project":"feather-format"},{"download_count":235651,"project":"django-templated-mail"},{"download_count":235640,"project":"langchain-groq"},{"download_count":235592,"project":"json-spec"},{"download_count":235248,"project":"requests-oauth"},{"download_count":235155,"project":"cryptocode"},{"download_count":235046,"project":"pyte"},{"download_count":235005,"project":"macaroonbakery"},{"download_count":234778,"project":"2captcha-python"},{"download_count":234651,"project":"flake8-rst-docstrings"},{"download_count":234550,"project":"datumaro"},{"download_count":234382,"project":"aws-cdk-aws-ecr"},{"download_count":234332,"project":"mohawk"},{"download_count":234312,"project":"kmodes"},{"download_count":234238,"project":"invisible-watermark"},{"download_count":234152,"project":"pydantic-xml"},{"download_count":234032,"project":"django-recaptcha"},{"download_count":234030,"project":"pandas-read-xml"},{"download_count":233921,"project":"shellcheck-py"},{"download_count":233796,"project":"httpbin"},{"download_count":233634,"project":"ip3country"},{"download_count":233558,"project":"dbt-clickhouse"},{"download_count":233427,"project":"pynrrd"},{"download_count":233423,"project":"amundsen-common"},{"download_count":233358,"project":"aws-cdk-aws-secretsmanager"},{"download_count":233259,"project":"dagster-spark"},{"download_count":233005,"project":"stanfordcorenlp"},{"download_count":233002,"project":"types-aiobotocore-ec2"},{"download_count":232901,"project":"qiskit-aer"},{"download_count":232792,"project":"pytest-reportportal"},{"download_count":232775,"project":"pact-python"},{"download_count":232640,"project":"drf-jwt"},{"download_count":232516,"project":"stumpy"},{"download_count":232484,"project":"flask-apispec"},{"download_count":232417,"project":"django-configurations"},{"download_count":232409,"project":"glfw"},{"download_count":232339,"project":"cons"},{"download_count":232239,"project":"twofish"},{"download_count":232234,"project":"etuples"},{"download_count":232059,"project":"sagemaker-datawrangler"},{"download_count":232004,"project":"titlecase"},{"download_count":231933,"project":"logical-unification"},{"download_count":231825,"project":"opentelemetry-semantic-conventions-ai"},{"download_count":231603,"project":"rauth"},{"download_count":231579,"project":"pytest-docker"},{"download_count":231555,"project":"types-flask-cors"},{"download_count":231452,"project":"gitignore-parser"},{"download_count":231268,"project":"youqu"},{"download_count":230853,"project":"opentelemetry-instrumentation-openai"},{"download_count":230624,"project":"anyscale"},{"download_count":230573,"project":"pickle5"},{"download_count":230558,"project":"python-status"},{"download_count":230521,"project":"redis-om"},{"download_count":230506,"project":"lsprotocol"},{"download_count":230339,"project":"stopit"},{"download_count":230238,"project":"minikanren"},{"download_count":230014,"project":"apache-airflow-providers-apache-druid"},{"download_count":230005,"project":"onepasswordconnectsdk"},{"download_count":229918,"project":"stackprinter"},{"download_count":229849,"project":"pyvisa-py"},{"download_count":229827,"project":"wasmer"},{"download_count":229751,"project":"aws-cdk-aws-applicationautoscaling"},{"download_count":229735,"project":"yoyo-migrations"},{"download_count":229613,"project":"dataproc-spark-connect"},{"download_count":229277,"project":"mariadb"},{"download_count":229161,"project":"django-money"},{"download_count":229037,"project":"nameof"},{"download_count":229019,"project":"detect-delimiter"},{"download_count":228760,"project":"inotify"},{"download_count":228719,"project":"get-reader"},{"download_count":228711,"project":"pytest-retry"},{"download_count":228684,"project":"blosc"},{"download_count":228678,"project":"trustme"},{"download_count":228647,"project":"pulumi-command"},{"download_count":228587,"project":"pyaml-env"},{"download_count":228558,"project":"pycobertura"},{"download_count":228466,"project":"m3u8"},{"download_count":228395,"project":"tortoise-orm"},{"download_count":228318,"project":"pan-python"},{"download_count":228271,"project":"slugify"},{"download_count":228206,"project":"amundsen-rds"},{"download_count":228166,"project":"django-allow-cidr"},{"download_count":228120,"project":"pytest-wake"},{"download_count":228000,"project":"openexr"},{"download_count":227931,"project":"pulumi-tls"},{"download_count":227913,"project":"lifetimes"},{"download_count":227738,"project":"django-json-widget"},{"download_count":227733,"project":"logging-formatter-anticrlf"},{"download_count":227567,"project":"types-ipaddress"},{"download_count":227530,"project":"types-aiobotocore-rds"},{"download_count":227272,"project":"djangorestframework-csv"},{"download_count":227212,"project":"pytest-selenium"},{"download_count":227202,"project":"pykube"},{"download_count":227147,"project":"certbot"},{"download_count":227045,"project":"ops"},{"download_count":226939,"project":"coverage-badge"},{"download_count":226914,"project":"sklearn-crfsuite"},{"download_count":226907,"project":"robotframework-robocop"},{"download_count":226870,"project":"dead-hosts-launcher"},{"download_count":226845,"project":"types-aiobotocore-lambda"},{"download_count":226801,"project":"flake8-return"},{"download_count":226759,"project":"types-openpyxl"},{"download_count":226749,"project":"supermercado"},{"download_count":226613,"project":"pyang"},{"download_count":226461,"project":"strsimpy"},{"download_count":226319,"project":"clearml-agent"},{"download_count":226100,"project":"hyper"},{"download_count":225913,"project":"emr-notebooks-magics"},{"download_count":225889,"project":"presto-client"},{"download_count":225653,"project":"launchable"},{"download_count":225645,"project":"simpervisor"},{"download_count":225630,"project":"docxcompose"},{"download_count":225358,"project":"pymc3"},{"download_count":225228,"project":"cmake-format"},{"download_count":224731,"project":"pytest-subprocess"},{"download_count":224609,"project":"aws-cdk-aws-sqs"},{"download_count":224561,"project":"quantmodels"},{"download_count":224532,"project":"finmodels"},{"download_count":224513,"project":"amundsen-databuilder"},{"download_count":224474,"project":"tinybird-cli"},{"download_count":224452,"project":"knapsack-algorithm"},{"download_count":224412,"project":"intuit-oauth"},{"download_count":224274,"project":"aioquic"},{"download_count":223936,"project":"mypy-boto3-textract"},{"download_count":223887,"project":"sagemaker-feature-store-pyspark-3-1"},{"download_count":223802,"project":"base64io"},{"download_count":223793,"project":"cpuset-py3"},{"download_count":223760,"project":"dynamo-pandas"},{"download_count":223740,"project":"slack"},{"download_count":223717,"project":"rotary-embedding-torch"},{"download_count":223513,"project":"better-profanity"},{"download_count":223470,"project":"autologging"},{"download_count":223056,"project":"bravado-core"},{"download_count":222924,"project":"easy-thumbnails"},{"download_count":222613,"project":"fortifyapi"},{"download_count":222478,"project":"xmltojson"},{"download_count":222331,"project":"fairlearn"},{"download_count":222311,"project":"delayed-assert"},{"download_count":222098,"project":"awscurl"},{"download_count":221970,"project":"python-monkey-business"},{"download_count":221849,"project":"opentelemetry-exporter-jaeger-proto-grpc"},{"download_count":221559,"project":"spotipy"},{"download_count":221406,"project":"pytensor"},{"download_count":221322,"project":"pdfminer"},{"download_count":221317,"project":"salesforce-fuelsdk-sans"},{"download_count":221301,"project":"pylsqpack"},{"download_count":220839,"project":"opentelemetry-propagator-jaeger"},{"download_count":220836,"project":"pymoo"},{"download_count":220722,"project":"pytest-incremental"},{"download_count":220719,"project":"jsonformatter"},{"download_count":220706,"project":"oci-cli"},{"download_count":220689,"project":"solc-select"},{"download_count":220608,"project":"timedelta"},{"download_count":220553,"project":"fugue-sql-antlr"},{"download_count":220517,"project":"mysql-python"},{"download_count":220440,"project":"libify"},{"download_count":220440,"project":"mypy-boto3-autoscaling"},{"download_count":220434,"project":"googlesearch-python"},{"download_count":220419,"project":"llama-cpp-python"},{"download_count":220243,"project":"django-nested-admin"},{"download_count":220084,"project":"sigtools"},{"download_count":219944,"project":"aad-token-verify"},{"download_count":219850,"project":"pgsanity"},{"download_count":219803,"project":"types-aiobotocore-cloudformation"},{"download_count":219789,"project":"pyreadstat"},{"download_count":219770,"project":"schedula"},{"download_count":219647,"project":"mypy-boto3-firehose"},{"download_count":219620,"project":"python-baseconv"},{"download_count":219511,"project":"testrail-api"},{"download_count":219067,"project":"aws-cdk-aws-logs-destinations"},{"download_count":219006,"project":"aws-cdk-aws-ecr-assets"},{"download_count":218754,"project":"iso4217"},{"download_count":218742,"project":"bounded-pool-executor"},{"download_count":218625,"project":"pythainlp"},{"download_count":218539,"project":"pytorch"},{"download_count":218453,"project":"pycosat"},{"download_count":218436,"project":"ip2location"},{"download_count":218326,"project":"xmltodict3"},{"download_count":218303,"project":"graphyte"},{"download_count":218265,"project":"types-pkg-resources"},{"download_count":218212,"project":"dvc-task"},{"download_count":218148,"project":"pyrepl"},{"download_count":218115,"project":"aws-cdk-aws-sns"},{"download_count":218087,"project":"tflite-model-maker-nightly"},{"download_count":218000,"project":"markdown-inline-graphviz-extension"},{"download_count":217924,"project":"jupyterhub"},{"download_count":217903,"project":"aws-cdk-aws-efs"},{"download_count":217816,"project":"umodbus"},{"download_count":217809,"project":"bigquery-schema-generator"},{"download_count":217732,"project":"fbprophet"},{"download_count":217608,"project":"namedlist"},{"download_count":217486,"project":"pygeos"},{"download_count":217461,"project":"canopen"},{"download_count":217411,"project":"scrapfly-sdk"},{"download_count":217385,"project":"brazilnum"},{"download_count":217065,"project":"dimod"},{"download_count":217035,"project":"torchinfo"},{"download_count":217032,"project":"rule-engine"},{"download_count":216963,"project":"robotframework-sshlibrary"},{"download_count":216887,"project":"formulas"},{"download_count":216835,"project":"python-jsonschema-objects"},{"download_count":216795,"project":"multiprocessing"},{"download_count":216717,"project":"aws-cdk-aws-codeguruprofiler"},{"download_count":216521,"project":"mypy-boto3-cognito-identity"},{"download_count":216445,"project":"saspy"},{"download_count":216439,"project":"rioxarray"},{"download_count":216354,"project":"neovim"},{"download_count":216261,"project":"postmarker"},{"download_count":216248,"project":"einops-exts"},{"download_count":216235,"project":"kazurator"},{"download_count":216027,"project":"aws-cdk-aws-certificatemanager"},{"download_count":215736,"project":"drissionpage"},{"download_count":215611,"project":"aliyun-python-sdk-core-v3"},{"download_count":215530,"project":"verspec"},{"download_count":215487,"project":"certvalidator"},{"download_count":215278,"project":"tag-expressions"},{"download_count":215135,"project":"pip-install-test"},{"download_count":215071,"project":"segno"},{"download_count":215055,"project":"pybuildkite"},{"download_count":215017,"project":"python-logstash-async"},{"download_count":214932,"project":"nbdime"},{"download_count":214831,"project":"mkdocs-gen-files"},{"download_count":214765,"project":"lintrunner"},{"download_count":214548,"project":"azure-iot-device"},{"download_count":214291,"project":"drf-writable-nested"},{"download_count":214270,"project":"metaphone"},{"download_count":214215,"project":"ci-info"},{"download_count":214149,"project":"pyspin"},{"download_count":213983,"project":"infinity"},{"download_count":213841,"project":"radish-bdd"},{"download_count":213795,"project":"pypika-tortoise"},{"download_count":213660,"project":"google-cloud-profiler"},{"download_count":213601,"project":"python-jwt"},{"download_count":213335,"project":"autoray"},{"download_count":213283,"project":"mkdocs-glightbox"},{"download_count":213280,"project":"gggdtparser"},{"download_count":213257,"project":"whylogs-sketching"},{"download_count":213182,"project":"robotframework-databaselibrary"},{"download_count":213175,"project":"azure-eventhub-checkpointstoreblob"},{"download_count":213141,"project":"tsfresh"},{"download_count":212976,"project":"ttp"},{"download_count":212929,"project":"actions-toolkit"},{"download_count":212864,"project":"wagtail"},{"download_count":212792,"project":"pygls"},{"download_count":212769,"project":"breadability"},{"download_count":212650,"project":"mypy-boto3-cloudtrail"},{"download_count":212540,"project":"pdbp"},{"download_count":212310,"project":"g2p-en"},{"download_count":212280,"project":"etelemetry"},{"download_count":212190,"project":"aiven-client"},{"download_count":212076,"project":"stix2-patterns"},{"download_count":211995,"project":"pylinuxauto"},{"download_count":211909,"project":"mechanize"},{"download_count":211870,"project":"wtforms-json"},{"download_count":211634,"project":"superqt"},{"download_count":211633,"project":"python-jsonpath"},{"download_count":211624,"project":"urwid-readline"},{"download_count":211527,"project":"salesforce-fuelsdk"},{"download_count":211522,"project":"aliyun-python-sdk-rds"},{"download_count":211309,"project":"python-binance"},{"download_count":211223,"project":"fugashi"},{"download_count":211205,"project":"linear-operator"},{"download_count":211119,"project":"pyserde"},{"download_count":211065,"project":"apache-libcloud"},{"download_count":211061,"project":"stk"},{"download_count":210964,"project":"aws-cdk-aws-sam"},{"download_count":210624,"project":"apache-airflow-providers-jenkins"},{"download_count":210591,"project":"pyexasol"},{"download_count":210459,"project":"tapipy"},{"download_count":210334,"project":"beancount"},{"download_count":210253,"project":"weread2notionpro"},{"download_count":210167,"project":"torch-tb-profiler"},{"download_count":210139,"project":"zope-sqlalchemy"},{"download_count":210121,"project":"types-httplib2"},{"download_count":209872,"project":"konlpy"},{"download_count":209858,"project":"tkinterdnd2"},{"download_count":209784,"project":"torchsummary"},{"download_count":209659,"project":"dvc-objects"},{"download_count":209650,"project":"pandas-schema"},{"download_count":209615,"project":"django-classy-tags"},{"download_count":209445,"project":"zeo"},{"download_count":209387,"project":"impacket"},{"download_count":209385,"project":"mchammer"},{"download_count":209242,"project":"types-maxminddb"},{"download_count":209158,"project":"types-oauthlib"},{"download_count":209142,"project":"stko"},{"download_count":209136,"project":"econml"},{"download_count":209121,"project":"rmsd"},{"download_count":209022,"project":"pytest-httpbin"},{"download_count":208979,"project":"spindry"},{"download_count":208963,"project":"atomlite"},{"download_count":208957,"project":"stamina"},{"download_count":208956,"project":"mypy-boto3-efs"},{"download_count":208898,"project":"odict"},{"download_count":208890,"project":"deprecat"},{"download_count":208821,"project":"pyobjc-framework-quartz"},{"download_count":208758,"project":"pyct"},{"download_count":208673,"project":"conllu"},{"download_count":208669,"project":"geoip2-tools"},{"download_count":208603,"project":"businesstimedelta"},{"download_count":208592,"project":"pylint-gitlab"},{"download_count":208334,"project":"jax-jumpy"},{"download_count":208248,"project":"pygount"},{"download_count":208242,"project":"aiounittest"},{"download_count":208155,"project":"sccache"},{"download_count":208143,"project":"aws-cdk-aws-autoscaling-common"},{"download_count":208108,"project":"delta-sharing"},{"download_count":207969,"project":"mnemonic"},{"download_count":207827,"project":"littlefs-python"},{"download_count":207683,"project":"pytest-alembic"},{"download_count":207671,"project":"sphinx-click"},{"download_count":207666,"project":"aiohttp-socks"},{"download_count":207600,"project":"graphene-sqlalchemy"},{"download_count":207432,"project":"django-admin-sortable2"},{"download_count":207282,"project":"boruta"},{"download_count":206988,"project":"junos-eznc"},{"download_count":206955,"project":"pyodps"},{"download_count":206923,"project":"neotime"},{"download_count":206834,"project":"mailchimp-marketing"},{"download_count":206774,"project":"django-log-request-id"},{"download_count":206651,"project":"datadiff"},{"download_count":206581,"project":"google-compute-engine"},{"download_count":206569,"project":"pyftdi"},{"download_count":206561,"project":"dataengineeringutils3"},{"download_count":206338,"project":"whylabs-client"},{"download_count":206273,"project":"airbyte-api"},{"download_count":206253,"project":"mdformat"},{"download_count":206188,"project":"ciphey"},{"download_count":205950,"project":"aws-cdk-custom-resources"},{"download_count":205922,"project":"terraform-compliance"},{"download_count":205864,"project":"aws-cdk-aws-cloudformation"},{"download_count":205739,"project":"types-pyasn1"},{"download_count":205705,"project":"bingads"},{"download_count":205615,"project":"model-archiver"},{"download_count":205486,"project":"pockets"},{"download_count":205415,"project":"diagrams"},{"download_count":205413,"project":"safer"},{"download_count":205315,"project":"asyncclick"},{"download_count":205255,"project":"rejson"},{"download_count":205252,"project":"aws-cdk-aws-signer"},{"download_count":205252,"project":"streamlit-keyup"},{"download_count":205247,"project":"bce-python-sdk"},{"download_count":205197,"project":"drf-extensions"},{"download_count":204963,"project":"mojap-metadata"},{"download_count":204881,"project":"tf-models-nightly"},{"download_count":204767,"project":"pyarmor"},{"download_count":204728,"project":"futurist"},{"download_count":204699,"project":"plumber"},{"download_count":204649,"project":"tailer"},{"download_count":204585,"project":"jupyter-server-mathjax"},{"download_count":204567,"project":"amplitude-analytics"},{"download_count":204524,"project":"python-digitalocean"},{"download_count":204517,"project":"flake8-use-fstring"},{"download_count":204377,"project":"aws-cdk-aws-route53"},{"download_count":204304,"project":"dvc-studio-client"},{"download_count":204269,"project":"tabcompleter"},{"download_count":204230,"project":"tavern"},{"download_count":204224,"project":"iteration-utilities"},{"download_count":204210,"project":"djoser"},{"download_count":204045,"project":"aws-cdk-assets"},{"download_count":204004,"project":"flutils"},{"download_count":203704,"project":"dvc-http"},{"download_count":203609,"project":"django-hijack"},{"download_count":203546,"project":"pyspark-test"},{"download_count":203369,"project":"mo-future"},{"download_count":203346,"project":"rosbags"},{"download_count":203203,"project":"simple-settings"},{"download_count":203194,"project":"click-shell"},{"download_count":203143,"project":"aws-cdk-aws-stepfunctions"},{"download_count":202739,"project":"mat4py"},{"download_count":202721,"project":"pysnooper"},{"download_count":202680,"project":"requests-unixsocket2"},{"download_count":202630,"project":"copier"},{"download_count":202444,"project":"downloadkit"},{"download_count":202427,"project":"langchainplus-sdk"},{"download_count":202401,"project":"mail-parser"},{"download_count":202399,"project":"mpi4py"},{"download_count":202287,"project":"testscenarios"},{"download_count":202275,"project":"async-modbus"},{"download_count":202036,"project":"pyzipcode"},{"download_count":201647,"project":"lcov-cobertura"},{"download_count":201516,"project":"datarecorder"},{"download_count":201466,"project":"textract"},{"download_count":201299,"project":"first"},{"download_count":201195,"project":"stringzilla"},{"download_count":201061,"project":"crhelper"},{"download_count":200943,"project":"mypy-boto3-bedrock-runtime"},{"download_count":200932,"project":"cfgrib"},{"download_count":200910,"project":"django-crum"},{"download_count":200903,"project":"pandoc"},{"download_count":200567,"project":"pycnite"},{"download_count":200508,"project":"aws-cdk-aws-elasticloadbalancingv2"},{"download_count":200501,"project":"python-coveralls"},{"download_count":200436,"project":"snowflake-telemetry-python"},{"download_count":200416,"project":"mapclassify"},{"download_count":200383,"project":"basictracer"},{"download_count":200237,"project":"records"},{"download_count":200200,"project":"chess"},{"download_count":200136,"project":"gto"},{"download_count":200024,"project":"willow"},{"download_count":199962,"project":"icontract"},{"download_count":199937,"project":"pyramid-tm"},{"download_count":199855,"project":"typed-argument-parser"},{"download_count":199702,"project":"toml-sort"},{"download_count":199620,"project":"pyzabbix"},{"download_count":199608,"project":"mem0ai"},{"download_count":199606,"project":"django-braces"},{"download_count":199571,"project":"snapshottest"},{"download_count":199558,"project":"django-modelcluster"},{"download_count":199524,"project":"ddapm-test-agent"},{"download_count":199457,"project":"aws-cdk-aws-ecs"},{"download_count":199394,"project":"rtfde"},{"download_count":199301,"project":"kaggle"},{"download_count":199265,"project":"sphinx-automodapi"},{"download_count":199032,"project":"django-lifecycle"},{"download_count":199016,"project":"pi-heif"},{"download_count":198970,"project":"dm-haiku"},{"download_count":198916,"project":"gradio-rangeslider"},{"download_count":198903,"project":"esp-idf-monitor"},{"download_count":198752,"project":"baron"},{"download_count":198659,"project":"flask-restplus"},{"download_count":198637,"project":"pyfcm"},{"download_count":198562,"project":"wasmer-compiler-cranelift"},{"download_count":198518,"project":"azure-iot-hub"},{"download_count":198466,"project":"google-benchmark"},{"download_count":198428,"project":"mypy-boto3-emr-serverless"},{"download_count":198422,"project":"wakeonlan"},{"download_count":198407,"project":"nbval"},{"download_count":198169,"project":"wrapt-timeout-decorator"},{"download_count":198162,"project":"duckdb-engine"},{"download_count":198092,"project":"sphinxcontrib-napoleon"},{"download_count":198082,"project":"image"},{"download_count":197730,"project":"nose-parameterized"},{"download_count":197680,"project":"sphinxcontrib-httpdomain"},{"download_count":197607,"project":"fastdiff"},{"download_count":197577,"project":"django-select2"},{"download_count":197387,"project":"flake8-deprecated"},{"download_count":197369,"project":"grpc-requests"},{"download_count":197304,"project":"segmentation-models-pytorch"},{"download_count":197274,"project":"serverless-wsgi"},{"download_count":197124,"project":"aws-cdk-aws-codestarnotifications"},{"download_count":197072,"project":"pypcap"},{"download_count":196932,"project":"pennylane-lightning"},{"download_count":196769,"project":"objgraph"},{"download_count":196765,"project":"pyexecjs"},{"download_count":196711,"project":"aws-cdk-aws-apigateway"},{"download_count":196681,"project":"pathfinding"},{"download_count":196667,"project":"mechanicalsoup"},{"download_count":196546,"project":"codegen"},{"download_count":196510,"project":"pyhs2"},{"download_count":196365,"project":"pyresidfp"},{"download_count":196099,"project":"py-range-parse"},{"download_count":196083,"project":"django-autocomplete-light"},{"download_count":196050,"project":"pytrends"},{"download_count":195998,"project":"jaro-winkler"},{"download_count":195961,"project":"parce"},{"download_count":195919,"project":"ggshield"},{"download_count":195911,"project":"botorch"},{"download_count":195587,"project":"kr8s"},{"download_count":195495,"project":"sklearn2pmml"},{"download_count":195494,"project":"smartystreets-python-sdk"},{"download_count":195472,"project":"multi-model-server"},{"download_count":195376,"project":"blurhash"},{"download_count":195313,"project":"python-debian"},{"download_count":195215,"project":"databricks-vectorsearch"},{"download_count":195052,"project":"python-calamine"},{"download_count":194948,"project":"opentelemetry-propagator-ot-trace"},{"download_count":194826,"project":"httpagentparser"},{"download_count":194741,"project":"aqtinstall"},{"download_count":194593,"project":"traits"},{"download_count":194477,"project":"ipy"},{"download_count":194434,"project":"langchain-pinecone"},{"download_count":194368,"project":"patterns"},{"download_count":194224,"project":"implicit"},{"download_count":194108,"project":"promptflow-devkit"},{"download_count":194088,"project":"whatthepatch"},{"download_count":194029,"project":"apache-airflow-providers-vertica"},{"download_count":194006,"project":"rstcheck-core"},{"download_count":193978,"project":"promptflow-core"},{"download_count":193810,"project":"mypy-boto3-identitystore"},{"download_count":193804,"project":"sqltrie"},{"download_count":193768,"project":"fixture"},{"download_count":193750,"project":"pygresql"},{"download_count":193654,"project":"opentelemetry-exporter-jaeger"},{"download_count":193536,"project":"hpgeom"},{"download_count":193442,"project":"aws-cdk-aws-cognito"},{"download_count":193422,"project":"ragged-buffer"},{"download_count":193152,"project":"pytest-qt"},{"download_count":193049,"project":"browserstack-local"},{"download_count":192920,"project":"asammdf"},{"download_count":192894,"project":"asyncio-mqtt"},{"download_count":192877,"project":"dataflows-tabulator"},{"download_count":192626,"project":"treetable"},{"download_count":192415,"project":"mastodon-py"},{"download_count":192353,"project":"promptflow-tracing"},{"download_count":192339,"project":"dragnet"},{"download_count":192297,"project":"django-nose"},{"download_count":192212,"project":"agate-sql"},{"download_count":192054,"project":"nudged"},{"download_count":191960,"project":"redbaron"},{"download_count":191857,"project":"pylint-flask"},{"download_count":191818,"project":"python-vagrant"},{"download_count":191768,"project":"aws-lambda-typing"},{"download_count":191750,"project":"flet"},{"download_count":191744,"project":"dagit"},{"download_count":191541,"project":"cityhash"},{"download_count":191484,"project":"optparse-pretty"},{"download_count":191411,"project":"keras-nlp"},{"download_count":191307,"project":"aiohttp-jinja2"},{"download_count":191092,"project":"labelbox"},{"download_count":191031,"project":"mojimoji"},{"download_count":191002,"project":"docusign-esign"},{"download_count":190942,"project":"aws-cdk-aws-sns-subscriptions"},{"download_count":190939,"project":"readability-lxml"},{"download_count":190795,"project":"mkdocs-mermaid2-plugin"},{"download_count":190781,"project":"better-exceptions"},{"download_count":190577,"project":"mypy-boto3-ce"},{"download_count":190416,"project":"rules"},{"download_count":190324,"project":"duo-client"},{"download_count":190234,"project":"aws-cdk-aws-autoscaling"},{"download_count":190226,"project":"ipwhois"},{"download_count":190207,"project":"python-helpscout-v2"},{"download_count":190105,"project":"autobean-refactor"},{"download_count":189892,"project":"stable-baselines3"},{"download_count":189828,"project":"canmatrix"},{"download_count":189810,"project":"stix2"},{"download_count":189754,"project":"awsiotsdk"},{"download_count":189673,"project":"py2md"},{"download_count":189594,"project":"treelite-runtime"},{"download_count":189533,"project":"pydocumentdb"},{"download_count":189514,"project":"textsearch"},{"download_count":189297,"project":"bearlibterminal"},{"download_count":189143,"project":"contractions"},{"download_count":189132,"project":"aws-cdk-aws-kinesis"},{"download_count":189126,"project":"megatron-core"},{"download_count":189000,"project":"sphinxcontrib-svg2pdfconverter"},{"download_count":188994,"project":"simple-rest-client"},{"download_count":188904,"project":"vlsir"},{"download_count":188788,"project":"pyspark-stubs"},{"download_count":188786,"project":"airflow-provider-fivetran"},{"download_count":188745,"project":"lakefs-sdk"},{"download_count":188691,"project":"vlsirtools"},{"download_count":188679,"project":"django-test-migrations"},{"download_count":188463,"project":"optuna-integration"},{"download_count":188322,"project":"flask-redis"},{"download_count":188215,"project":"aliyun-python-sdk-alidns"},{"download_count":188112,"project":"h2o-wave"},{"download_count":188029,"project":"yandexcloud"},{"download_count":187982,"project":"google-cloud-functions"},{"download_count":187870,"project":"pybit"},{"download_count":187815,"project":"types-python-jose"},{"download_count":187797,"project":"mypy-boto3-organizations"},{"download_count":187725,"project":"flet-runtime"},{"download_count":187670,"project":"robocorp-browser"},{"download_count":187616,"project":"html2image"},{"download_count":187484,"project":"u-msgpack-python"},{"download_count":187458,"project":"agate-excel"},{"download_count":187433,"project":"os-client-config"},{"download_count":187400,"project":"pyramid-jinja2"},{"download_count":187361,"project":"nicegui"},{"download_count":187344,"project":"captum"},{"download_count":187327,"project":"everett"},{"download_count":187318,"project":"azure-ai-language-questionanswering"},{"download_count":187247,"project":"flake8-logging-format"},{"download_count":187132,"project":"validator-collection"},{"download_count":187125,"project":"pyobjc"},{"download_count":187098,"project":"domaintools-api"},{"download_count":187087,"project":"realesrgan"},{"download_count":186950,"project":"solders"},{"download_count":186784,"project":"cloudsmith-api"},{"download_count":186758,"project":"cf-xarray"},{"download_count":186704,"project":"faust-cchardet"},{"download_count":186666,"project":"pymap3d"},{"download_count":186578,"project":"sphinx-togglebutton"},{"download_count":186555,"project":"opennsfw2"},{"download_count":186537,"project":"sip"},{"download_count":186428,"project":"kitchen"},{"download_count":186418,"project":"pygrib"},{"download_count":186110,"project":"configcat-client"},{"download_count":186091,"project":"pydantic-compat"},{"download_count":186053,"project":"facebook-wda"},{"download_count":186010,"project":"azure-cognitiveservices-knowledge-qnamaker"},{"download_count":185966,"project":"azure-ai-language-conversations"},{"download_count":185658,"project":"rq-scheduler"},{"download_count":185632,"project":"py3rijndael"},{"download_count":185571,"project":"super-collections"},{"download_count":185390,"project":"theano-pymc"},{"download_count":185345,"project":"langserve"},{"download_count":185286,"project":"gorilla"},{"download_count":185157,"project":"alembic-postgresql-enum"},{"download_count":185022,"project":"l18n"},{"download_count":184813,"project":"cloudsearch"},{"download_count":184686,"project":"auditwheel"},{"download_count":184665,"project":"bert-score"},{"download_count":184652,"project":"tendo"},{"download_count":184634,"project":"types-termcolor"},{"download_count":184445,"project":"pysingleton"},{"download_count":184357,"project":"zcbor"},{"download_count":184203,"project":"hierarchical-conf"},{"download_count":184155,"project":"solana"},{"download_count":183967,"project":"jsoncomment"},{"download_count":183952,"project":"typeshed-client"},{"download_count":183825,"project":"mypy-boto3-rds-data"},{"download_count":183798,"project":"alchemy-mock"},{"download_count":183627,"project":"aliyun-python-sdk-cms"},{"download_count":183558,"project":"openmim"},{"download_count":183544,"project":"construct-typing"},{"download_count":183512,"project":"mypy-boto3-bedrock"},{"download_count":183458,"project":"rockset"},{"download_count":183450,"project":"azure-mgmt-databricks"},{"download_count":183283,"project":"types-regex"},{"download_count":183268,"project":"aliyun-python-sdk-slb"},{"download_count":183179,"project":"deepface"},{"download_count":183090,"project":"nosexcover"},{"download_count":183067,"project":"asyncer"},{"download_count":182906,"project":"ipylab"},{"download_count":182809,"project":"motmetrics"},{"download_count":182751,"project":"tf-models-official"},{"download_count":182675,"project":"pymediainfo"},{"download_count":182608,"project":"rerun-sdk"},{"download_count":182580,"project":"pqdm"},{"download_count":182522,"project":"djangorestframework-camel-case"},{"download_count":182520,"project":"elasticmock"},{"download_count":182435,"project":"sbvirtualdisplay"},{"download_count":182430,"project":"opensearch-dsl"},{"download_count":182385,"project":"opentelemetry-resourcedetector-kubernetes"},{"download_count":182370,"project":"outdated"},{"download_count":182230,"project":"cloup"},{"download_count":182175,"project":"sagemaker-training"},{"download_count":182168,"project":"pluralizer"},{"download_count":182159,"project":"tf-slim"},{"download_count":181983,"project":"oslo-concurrency"},{"download_count":181966,"project":"email-to"},{"download_count":181869,"project":"marrow-mailer"},{"download_count":181715,"project":"docx"},{"download_count":181692,"project":"nagiosplugin"},{"download_count":181692,"project":"pysimplegui"},{"download_count":181504,"project":"az-cli"},{"download_count":181459,"project":"bitmath"},{"download_count":181388,"project":"opentelemetry-resourcedetector-docker"},{"download_count":181279,"project":"cowsay"},{"download_count":181250,"project":"atlassian-jwt-auth"},{"download_count":181181,"project":"agate-dbf"},{"download_count":181094,"project":"fastapi-mail"},{"download_count":181058,"project":"sanelogging"},{"download_count":180955,"project":"cnvrgv2"},{"download_count":180812,"project":"aws-cdk-aws-elasticloadbalancing"},{"download_count":180762,"project":"marrow-util"},{"download_count":180688,"project":"apache-airflow-providers-apprise"},{"download_count":180607,"project":"helpers"},{"download_count":180578,"project":"keybert"},{"download_count":180558,"project":"aws-cdk-aws-autoscaling-hooktargets"},{"download_count":180507,"project":"airtable-python-wrapper"},{"download_count":180473,"project":"pydoc-markdown"},{"download_count":180436,"project":"dwave-networkx"},{"download_count":180420,"project":"stim"},{"download_count":180374,"project":"linear-tsv"},{"download_count":180363,"project":"prince"},{"download_count":180363,"project":"py-meta-utils"},{"download_count":180308,"project":"refinitiv-dataplatform"},{"download_count":180144,"project":"curio"},{"download_count":180136,"project":"google-cloud-common"},{"download_count":180128,"project":"django-sekizai"},{"download_count":180111,"project":"kedro-telemetry"},{"download_count":180086,"project":"mike"},{"download_count":180077,"project":"types-boto3"},{"download_count":180020,"project":"esp-idf-nvs-partition-gen"},{"download_count":179947,"project":"xbbg"},{"download_count":179909,"project":"django-solo"},{"download_count":179884,"project":"flask-debugtoolbar"},{"download_count":179865,"project":"praat-parselmouth"},{"download_count":179822,"project":"docspec-python"},{"download_count":179714,"project":"fab-classic"},{"download_count":179608,"project":"prefect-dbt"},{"download_count":179559,"project":"hachoir"},{"download_count":179408,"project":"ibis-framework"},{"download_count":179349,"project":"click-config-file"},{"download_count":179314,"project":"aws-cdk-aws-cloudfront"},{"download_count":179267,"project":"sphinx-favicon"},{"download_count":179252,"project":"pytoml"},{"download_count":179205,"project":"imgtool"},{"download_count":179180,"project":"airflow-provider-fivetran-async"},{"download_count":179088,"project":"pytest-testmon"},{"download_count":179076,"project":"python-chess"},{"download_count":179005,"project":"esprima"},{"download_count":179000,"project":"efficientnet-pytorch"},{"download_count":178956,"project":"mo-dots"},{"download_count":178925,"project":"mcap"},{"download_count":178851,"project":"mo-imports"},{"download_count":178793,"project":"trcli"},{"download_count":178655,"project":"torch-fidelity"},{"download_count":178616,"project":"fst-pso"},{"download_count":178611,"project":"gravis"},{"download_count":178551,"project":"pycodestyle-magic"},{"download_count":178521,"project":"mypy-boto3-cloudfront"},{"download_count":178505,"project":"lapx"},{"download_count":178447,"project":"pytest-csv"},{"download_count":178400,"project":"google-cloud-filestore"},{"download_count":178363,"project":"aliyun-python-sdk-cdn"},{"download_count":178262,"project":"cyksuid"},{"download_count":178233,"project":"english-words"},{"download_count":178206,"project":"miniful"},{"download_count":178065,"project":"pdblp"},{"download_count":178023,"project":"beam-nuggets"},{"download_count":177981,"project":"nipype"},{"download_count":177964,"project":"uvicorn-worker"},{"download_count":177930,"project":"aliyun-python-sdk-cs"},{"download_count":177916,"project":"visdom"},{"download_count":177884,"project":"opensimplex"},{"download_count":177842,"project":"aws-cdk-aws-codebuild"},{"download_count":177826,"project":"feature-engine"},{"download_count":177647,"project":"mypy-boto3-location"},{"download_count":177583,"project":"python-redmine"},{"download_count":177568,"project":"yagmail"},{"download_count":177558,"project":"zmq"},{"download_count":177502,"project":"types-docopt"},{"download_count":177490,"project":"fuzzysearch"},{"download_count":177432,"project":"pyro4"},{"download_count":177431,"project":"unicodedata2"},{"download_count":177405,"project":"awsiotpythonsdk"},{"download_count":177399,"project":"binpacking"},{"download_count":177397,"project":"jinja2-ansible-filters"},{"download_count":177316,"project":"celery-types"},{"download_count":177314,"project":"genshi"},{"download_count":177223,"project":"pyuegc"},{"download_count":177222,"project":"flet-core"},{"download_count":177146,"project":"pypi-simple"},{"download_count":177139,"project":"marrow-interface"},{"download_count":177039,"project":"dbnd"},{"download_count":177003,"project":"json-schema-for-humans"},{"download_count":176954,"project":"pyvo"},{"download_count":176909,"project":"untangle"},{"download_count":176693,"project":"json2xml"},{"download_count":176592,"project":"plum-dispatch"},{"download_count":176526,"project":"azure-mgmt-automation"},{"download_count":176488,"project":"xlwings"},{"download_count":176478,"project":"bioframe"},{"download_count":176436,"project":"docspec"},{"download_count":176387,"project":"stringparser"},{"download_count":176369,"project":"workadays"},{"download_count":176340,"project":"mailchimp3"},{"download_count":176271,"project":"ciscoconfparse"},{"download_count":176271,"project":"pydantic-factories"},{"download_count":176202,"project":"mypy-boto3-servicecatalog"},{"download_count":176043,"project":"guppy3"},{"download_count":175956,"project":"torchcrepe"},{"download_count":175869,"project":"aws-cdk-aws-route53-targets"},{"download_count":175863,"project":"django-sortedm2m"},{"download_count":175823,"project":"jmp"},{"download_count":175815,"project":"inotify-simple"},{"download_count":175798,"project":"mypy-boto3-mwaa"},{"download_count":175787,"project":"art"},{"download_count":175710,"project":"dramatiq"},{"download_count":175601,"project":"tree-sitter-languages"},{"download_count":175396,"project":"tf-nightly"},{"download_count":175378,"project":"tf-keras-nightly"},{"download_count":175364,"project":"jinxed"},{"download_count":175360,"project":"poethepoet"},{"download_count":175116,"project":"opendatalab"},{"download_count":175058,"project":"jschon"},{"download_count":175052,"project":"aws-cdk-aws-codecommit"},{"download_count":174983,"project":"telepath"},{"download_count":174792,"project":"aws-cdk-aws-servicediscovery"},{"download_count":174758,"project":"pytest-testrail"},{"download_count":174689,"project":"nr-stream"},{"download_count":174584,"project":"nbsphinx-link"},{"download_count":174495,"project":"mypy-boto3-transcribe"},{"download_count":174473,"project":"pyxll"},{"download_count":174443,"project":"pysparkip"},{"download_count":174349,"project":"pretty-errors"},{"download_count":174314,"project":"nvidia-nvcomp-cu12"},{"download_count":174264,"project":"circus"},{"download_count":174176,"project":"pycoingecko"},{"download_count":174100,"project":"tox-uv"},{"download_count":173979,"project":"flake8-functions"},{"download_count":173972,"project":"antsibull-changelog"},{"download_count":173776,"project":"mypy-boto3-resourcegroupstaggingapi"},{"download_count":173772,"project":"mmdet"},{"download_count":173743,"project":"typeapi"},{"download_count":173707,"project":"cysignals"},{"download_count":173700,"project":"cloudfoundry-client"},{"download_count":173642,"project":"prefect-snowflake"},{"download_count":173590,"project":"py-dateutil"},{"download_count":173577,"project":"missingno"},{"download_count":173421,"project":"bigquery"},{"download_count":173272,"project":"nr-date"},{"download_count":173239,"project":"setuptools-odoo"},{"download_count":173194,"project":"types-bleach"},{"download_count":173127,"project":"google-cloud-appengine-admin"},{"download_count":172945,"project":"wheel-filename"},{"download_count":172924,"project":"aws-cdk-aws-dynamodb"},{"download_count":172922,"project":"aws-cdk-aws-acmpca"},{"download_count":172700,"project":"nr-util"},{"download_count":172635,"project":"lazy-model"},{"download_count":172567,"project":"langchain-ollama"},{"download_count":172438,"project":"sqlalchemy-cockroachdb"},{"download_count":172417,"project":"maya"},{"download_count":172150,"project":"mypy-boto3-quicksight"},{"download_count":172083,"project":"ansicon"},{"download_count":172077,"project":"mypy-boto3-scheduler"},{"download_count":172070,"project":"beanie"},{"download_count":172027,"project":"betamax"},{"download_count":171916,"project":"nbmake"},{"download_count":171883,"project":"cloud-tpu-client"},{"download_count":171766,"project":"mypy-boto3-translate"},{"download_count":171681,"project":"powerlaw"},{"download_count":171567,"project":"apify-client"},{"download_count":171541,"project":"mypy-boto3-iot-data"},{"download_count":171494,"project":"jsonalias"},{"download_count":171472,"project":"flake8-noqa"},{"download_count":171419,"project":"snowflake-ingest"},{"download_count":171249,"project":"hl7"},{"download_count":171192,"project":"ubelt"},{"download_count":171143,"project":"mdformat-tables"},{"download_count":171005,"project":"nbtlib"},{"download_count":170982,"project":"pymatching"},{"download_count":170948,"project":"mujoco"},{"download_count":170944,"project":"mailchecker"},{"download_count":170868,"project":"gcloud-rest-auth"},{"download_count":170762,"project":"pyramid-debugtoolbar"},{"download_count":170710,"project":"mlflow-watsonml"},{"download_count":170633,"project":"cachey"},{"download_count":170570,"project":"pytest-tinybird"},{"download_count":170523,"project":"pygtail"},{"download_count":170438,"project":"coralogix-logger"},{"download_count":170426,"project":"vt-py"},{"download_count":170387,"project":"aiotask-context"},{"download_count":170351,"project":"onnxslim"},{"download_count":170255,"project":"mypy-boto3-apigatewayv2"},{"download_count":170243,"project":"oauth2-client"},{"download_count":170208,"project":"chkpkg"},{"download_count":170148,"project":"neatest"},{"download_count":170117,"project":"vector-quantize-pytorch"},{"download_count":170116,"project":"venv-pack"},{"download_count":170080,"project":"robotframework-faker"},{"download_count":170024,"project":"adjust-precision-for-schema"},{"download_count":169926,"project":"swapper"},{"download_count":169809,"project":"mode"},{"download_count":169807,"project":"cdsapi"},{"download_count":169731,"project":"airbyte"},{"download_count":169694,"project":"healpix"},{"download_count":169645,"project":"opentelemetry-instrumentation-aiohttp-server"},{"download_count":169473,"project":"crispy-bootstrap4"},{"download_count":169472,"project":"local-attention"},{"download_count":169460,"project":"flake8-expression-complexity"},{"download_count":169425,"project":"delegator"},{"download_count":169392,"project":"injectool"},{"download_count":169182,"project":"filechunkio"},{"download_count":169141,"project":"clarifai"},{"download_count":169140,"project":"django-webtest"},{"download_count":168966,"project":"extra-streamlit-components"},{"download_count":168946,"project":"celery-redbeat"},{"download_count":168907,"project":"pyobjc-framework-applicationservices"},{"download_count":168858,"project":"jwskate"},{"download_count":168857,"project":"gaussiancl"},{"download_count":168839,"project":"mypy-boto3-ec2-instance-connect"},{"download_count":168788,"project":"mypy-boto3-pinpoint"},{"download_count":168787,"project":"daiquiri"},{"download_count":168776,"project":"json-logic"},{"download_count":168773,"project":"prowler"},{"download_count":168744,"project":"sphinxcontrib-katex"},{"download_count":168637,"project":"flt"},{"download_count":168571,"project":"osmnx"},{"download_count":168555,"project":"mypy-boto3-kafka"},{"download_count":168534,"project":"anyjson"},{"download_count":168378,"project":"embedding-reader"},{"download_count":168324,"project":"mr-proper"},{"download_count":168112,"project":"pandavro"},{"download_count":168105,"project":"pymongocrypt"},{"download_count":168085,"project":"mypy-boto3-sesv2"},{"download_count":168055,"project":"elevenlabs"},{"download_count":167970,"project":"ledgerblue"},{"download_count":167882,"project":"amazon-textract-response-parser"},{"download_count":167794,"project":"sox"},{"download_count":167757,"project":"repath"},{"download_count":167749,"project":"vintage"},{"download_count":167714,"project":"httptest"},{"download_count":167691,"project":"metaflow"},{"download_count":167549,"project":"chia-rs"},{"download_count":167477,"project":"pyobjc-framework-coretext"},{"download_count":167394,"project":"csscompressor"},{"download_count":167366,"project":"casbin"},{"download_count":167282,"project":"rasa"},{"download_count":167277,"project":"binapy"},{"download_count":167096,"project":"cloudml-hypertune"},{"download_count":167046,"project":"robotframework-tidy"},{"download_count":166975,"project":"pygal"},{"download_count":166974,"project":"airflow-dbt"},{"download_count":166900,"project":"polars-lts-cpu"},{"download_count":166881,"project":"pgzip"},{"download_count":166873,"project":"pysnow"},{"download_count":166854,"project":"basicauth"},{"download_count":166837,"project":"django-dirtyfields"},{"download_count":166820,"project":"geffnet"},{"download_count":166819,"project":"sphinx-reredirects"},{"download_count":166704,"project":"mypy-boto3-elasticache"},{"download_count":166639,"project":"websocket"},{"download_count":166629,"project":"mypy-boto3-codebuild"},{"download_count":166626,"project":"aerospike"},{"download_count":166611,"project":"translators"},{"download_count":166608,"project":"django-autoslug"},{"download_count":166558,"project":"caldav"},{"download_count":166554,"project":"django-migration-linter"},{"download_count":166481,"project":"types-xmltodict"},{"download_count":166423,"project":"eli5"},{"download_count":166330,"project":"jinjanator"},{"download_count":166318,"project":"jinjanator-plugins"},{"download_count":166145,"project":"pyop"},{"download_count":166137,"project":"general-functions"},{"download_count":166133,"project":"ropwr"},{"download_count":166057,"project":"html-sanitizer"},{"download_count":166042,"project":"dbldatagen"},{"download_count":166039,"project":"classify-imports"},{"download_count":165988,"project":"posix-ipc"},{"download_count":165938,"project":"pyproject-flake8"},{"download_count":165911,"project":"mypy-boto3-application-autoscaling"},{"download_count":165887,"project":"django-rest-knox"},{"download_count":165861,"project":"safehttpx"},{"download_count":165851,"project":"halp"},{"download_count":165799,"project":"typer-cli"},{"download_count":165769,"project":"pip-autoremove"},{"download_count":165630,"project":"deepgram-sdk"},{"download_count":165472,"project":"pymonet"},{"download_count":165414,"project":"py-markdown-table"},{"download_count":165365,"project":"jupyter-latex-envs"},{"download_count":165248,"project":"pykcs11"},{"download_count":165157,"project":"pandas-ta"},{"download_count":165156,"project":"zlib-ng"},{"download_count":165155,"project":"dagster-datadog"},{"download_count":164999,"project":"aws-cdk-aws-globalaccelerator"},{"download_count":164937,"project":"web-py"},{"download_count":164874,"project":"target-jsonl"},{"download_count":164680,"project":"kedro-viz"},{"download_count":164663,"project":"janome"},{"download_count":164589,"project":"pscript"},{"download_count":164580,"project":"neobolt"},{"download_count":164498,"project":"mypy-boto3-emr-containers"},{"download_count":164474,"project":"pinterest-generated-client"},{"download_count":164396,"project":"mypy-boto3-elb"},{"download_count":164354,"project":"flask-bootstrap4"},{"download_count":164315,"project":"pinterest-api-sdk"},{"download_count":164313,"project":"robotframework-selenium2library"},{"download_count":164301,"project":"urlobject"},{"download_count":164262,"project":"mypy-boto3-ram"},{"download_count":164218,"project":"vllm-flash-attn"},{"download_count":164027,"project":"app-model"},{"download_count":163978,"project":"jsonify"},{"download_count":163953,"project":"rdrobust"},{"download_count":163923,"project":"warlock"},{"download_count":163847,"project":"dbt"},{"download_count":163771,"project":"mypy-boto3-synthetics"},{"download_count":163770,"project":"modal"},{"download_count":163726,"project":"autofaiss"},{"download_count":163562,"project":"qdarkstyle"},{"download_count":163514,"project":"gradio-imageslider"},{"download_count":163397,"project":"robotframework-datadriver"},{"download_count":163171,"project":"mypy-boto3-codepipeline"},{"download_count":163087,"project":"mypy-boto3-apigatewaymanagementapi"},{"download_count":162974,"project":"recombee-api-client"},{"download_count":162965,"project":"mozfile"},{"download_count":162926,"project":"sphinx-inline-tabs"},{"download_count":162873,"project":"salt-lint"},{"download_count":162707,"project":"mypy-boto3-codeartifact"},{"download_count":162454,"project":"chiavdf"},{"download_count":162432,"project":"django-sslserver"},{"download_count":162306,"project":"djangorestframework-dataclasses"},{"download_count":162269,"project":"cvss"},{"download_count":162256,"project":"cfnresponse"},{"download_count":162234,"project":"mypy-boto3-acm"},{"download_count":162208,"project":"visualdl"},{"download_count":162185,"project":"shipyard-bp-utils"},{"download_count":162103,"project":"setoptconf-tmp"},{"download_count":162085,"project":"nbstripout"},{"download_count":162052,"project":"flask-dance"},{"download_count":162023,"project":"magicgui"},{"download_count":162003,"project":"textile"},{"download_count":161966,"project":"moderngl"},{"download_count":161950,"project":"petastorm"},{"download_count":161938,"project":"meraki"},{"download_count":161888,"project":"scylla-driver"},{"download_count":161853,"project":"pdftopng"},{"download_count":161823,"project":"wait-for"},{"download_count":161771,"project":"django-mathfilters"},{"download_count":161769,"project":"crytic-compile"},{"download_count":161618,"project":"cads-api-client"},{"download_count":161565,"project":"google-cloud-certificate-manager"},{"download_count":161519,"project":"apache-superset"},{"download_count":161471,"project":"m2r2"},{"download_count":161272,"project":"mypy-boto3-securityhub"},{"download_count":161271,"project":"colorlover"},{"download_count":161270,"project":"flake8-pep3101"},{"download_count":161253,"project":"schemachange"},{"download_count":161233,"project":"apache-airflow-providers-grpc"},{"download_count":161225,"project":"sphinx-mdinclude"},{"download_count":161219,"project":"lingua-language-detector"},{"download_count":161156,"project":"zhinst-timing-models"},{"download_count":161138,"project":"mypy-boto3-marketplace-entitlement"},{"download_count":160898,"project":"mypy-boto3-iot"},{"download_count":160808,"project":"azureml-train-automl"},{"download_count":160692,"project":"imgkit"},{"download_count":160669,"project":"airflow-clickhouse-plugin"},{"download_count":160621,"project":"mypy-boto3-s3control"},{"download_count":160539,"project":"napari"},{"download_count":160433,"project":"django-cryptography"},{"download_count":160412,"project":"logger"},{"download_count":160397,"project":"mypy-boto3-codedeploy"},{"download_count":160395,"project":"csvkit"},{"download_count":160390,"project":"user-agent"},{"download_count":160383,"project":"vbuild"},{"download_count":160360,"project":"pymysqllock"},{"download_count":160313,"project":"threadloop"},{"download_count":160309,"project":"ngram"},{"download_count":160290,"project":"systemd-python"},{"download_count":160259,"project":"django-permissionedforms"},{"download_count":160259,"project":"bidsschematools"},{"download_count":160200,"project":"mypy-boto3-ebs"},{"download_count":160199,"project":"hierarchicalforecast"},{"download_count":160164,"project":"mypy-boto3-polly"},{"download_count":160130,"project":"yaml-config"},{"download_count":160041,"project":"pystoi"},{"download_count":159972,"project":"mkdocs-minify-plugin"},{"download_count":159935,"project":"mdformat-frontmatter"},{"download_count":159913,"project":"django-grappelli"},{"download_count":159872,"project":"mypy-boto3"},{"download_count":159737,"project":"autowrapt"},{"download_count":159699,"project":"olefileio-pl"},{"download_count":159686,"project":"pytest-reportlog"},{"download_count":159657,"project":"mypy-boto3-mediaconvert"},{"download_count":159624,"project":"mypy-boto3-budgets"},{"download_count":159572,"project":"django-admin-autocomplete-filter"},{"download_count":159422,"project":"jaeger-client"},{"download_count":159277,"project":"mypy-boto3-comprehend"},{"download_count":159274,"project":"napari-console"},{"download_count":159053,"project":"google-cloud-notebooks"},{"download_count":158883,"project":"htpasswd"},{"download_count":158872,"project":"progressbar33"},{"download_count":158833,"project":"mypy-boto3-redshift"},{"download_count":158814,"project":"mypy-boto3-timestream-write"},{"download_count":158796,"project":"inference-gpu"},{"download_count":158780,"project":"json-tricks"},{"download_count":158770,"project":"streamlit-extras"},{"download_count":158675,"project":"requests-oauth2client"},{"download_count":158633,"project":"inputimeout"},{"download_count":158628,"project":"googleauthentication"},{"download_count":158595,"project":"hacking"},{"download_count":158553,"project":"aws"},{"download_count":158492,"project":"mypy-boto3-appsync"},{"download_count":158489,"project":"mypy-boto3-bedrock-agent-runtime"},{"download_count":158477,"project":"tensorflow-data-validation"},{"download_count":158477,"project":"replicate"},{"download_count":158462,"project":"apache-airflow-providers-apache-beam"},{"download_count":158447,"project":"python-glanceclient"},{"download_count":158413,"project":"mkdocs-exclude"},{"download_count":158386,"project":"misaka"},{"download_count":158286,"project":"napari-svg"},{"download_count":158236,"project":"watchdog-gevent"},{"download_count":158219,"project":"pyobjc-framework-systemconfiguration"},{"download_count":158138,"project":"unidic"},{"download_count":158132,"project":"mypy-boto3-transfer"},{"download_count":158125,"project":"django-bootstrap4"},{"download_count":158059,"project":"ff3"},{"download_count":158016,"project":"usaddress-scourgify"},{"download_count":157958,"project":"testbook"},{"download_count":157954,"project":"mypy-boto3-amplify"},{"download_count":157948,"project":"openvino-dev"},{"download_count":157936,"project":"mypy-boto3-service-quotas"},{"download_count":157885,"project":"chiapos"},{"download_count":157869,"project":"mypy-boto3-opensearch"},{"download_count":157840,"project":"cyclonedx-bom"},{"download_count":157837,"project":"npe2"},{"download_count":157833,"project":"facebook-sdk"},{"download_count":157793,"project":"mypy-boto3-serverlessrepo"},{"download_count":157773,"project":"databricks-test"},{"download_count":157760,"project":"pyconify"},{"download_count":157678,"project":"collate-sqllineage"},{"download_count":157660,"project":"pyexcelerate"},{"download_count":157652,"project":"mypy-boto3-dynamodbstreams"},{"download_count":157599,"project":"oschmod"},{"download_count":157520,"project":"findlibs"},{"download_count":157497,"project":"mypy-boto3-meteringmarketplace"},{"download_count":157455,"project":"mozinfo"},{"download_count":157442,"project":"mypy-boto3-wafv2"},{"download_count":157273,"project":"mypy-boto3-servicediscovery"},{"download_count":157247,"project":"pick"},{"download_count":157106,"project":"djangorestframework-gis"},{"download_count":157057,"project":"certipy"},{"download_count":157049,"project":"types-emoji"},{"download_count":157047,"project":"astroquery"},{"download_count":157043,"project":"chiabip158"},{"download_count":156949,"project":"mypy-boto3-compute-optimizer"},{"download_count":156946,"project":"mypy-boto3-bedrock-agent"},{"download_count":156901,"project":"moz-sql-parser"},{"download_count":156885,"project":"monai"},{"download_count":156873,"project":"zxcvbn"},{"download_count":156862,"project":"apache-airflow-providers-jira"},{"download_count":156854,"project":"libvirt-python"},{"download_count":156837,"project":"mypy-boto3-network-firewall"},{"download_count":156823,"project":"mypy-boto3-support"},{"download_count":156804,"project":"mypy-boto3-timestream-query"},{"download_count":156787,"project":"mypy-boto3-sdb"},{"download_count":156671,"project":"sagemaker-scikit-learn-extension"},{"download_count":156638,"project":"optimizely-sdk"},{"download_count":156565,"project":"mypy-boto3-sso-admin"},{"download_count":156466,"project":"mypy-boto3-pricing"},{"download_count":156396,"project":"gekko"},{"download_count":156383,"project":"mypy-boto3-codecommit"},{"download_count":156296,"project":"arxiv"},{"download_count":156168,"project":"glcontext"},{"download_count":156145,"project":"mypy-boto3-acm-pca"},{"download_count":156088,"project":"mypy-boto3-account"},{"download_count":156063,"project":"remote-pdb"},{"download_count":155989,"project":"ewah-bool-utils"},{"download_count":155868,"project":"pytest-unordered"},{"download_count":155794,"project":"mypy-boto3-backup"},{"download_count":155779,"project":"mypy-boto3-cloudsearchdomain"},{"download_count":155761,"project":"randomname"},{"download_count":155706,"project":"pyworld"},{"download_count":155699,"project":"mypy-boto3-cloudsearch"},{"download_count":155498,"project":"ete3"},{"download_count":155468,"project":"roslibpy"},{"download_count":155448,"project":"mypy-boto3-imagebuilder"},{"download_count":155434,"project":"pamela"},{"download_count":155393,"project":"fcache"},{"download_count":155356,"project":"commonregex"},{"download_count":155265,"project":"mypy-boto3-apprunner"},{"download_count":155213,"project":"mypy-boto3-braket"},{"download_count":155207,"project":"mypy-boto3-inspector2"},{"download_count":155169,"project":"mypy-boto3-ecr-public"},{"download_count":155135,"project":"mypy-boto3-docdb"},{"download_count":155093,"project":"openai-messages-token-helper"},{"download_count":155033,"project":"apify-shared"},{"download_count":155030,"project":"async-asgi-testclient"},{"download_count":154790,"project":"artifactory"},{"download_count":154717,"project":"mssql-cli"},{"download_count":154712,"project":"flake8-cognitive-complexity"},{"download_count":154709,"project":"opentelemetry-instrumentation-psycopg"},{"download_count":154695,"project":"requests-credssp"},{"download_count":154621,"project":"mypy-boto3-directconnect"},{"download_count":154556,"project":"mypy-boto3-rekognition"},{"download_count":154519,"project":"mypy-boto3-shield"},{"download_count":154488,"project":"pytest-md"},{"download_count":154470,"project":"selectolax"},{"download_count":154406,"project":"hvplot"},{"download_count":154399,"project":"mypy-boto3-workspaces"},{"download_count":154368,"project":"mypy-boto3-glacier"},{"download_count":154364,"project":"apache-airflow-client"},{"download_count":154347,"project":"mypy-boto3-forecastquery"},{"download_count":154255,"project":"pytest-vcr"},{"download_count":154237,"project":"mypy-boto3-machinelearning"},{"download_count":154227,"project":"mypy-boto3-redshift-serverless"},{"download_count":154226,"project":"mypy-boto3-health"},{"download_count":154212,"project":"mypy-boto3-es"},{"download_count":154125,"project":"mypy-boto3-connect"},{"download_count":154093,"project":"mypy-boto3-accessanalyzer"},{"download_count":154060,"project":"mypy-boto3-pinpoint-email"},{"download_count":153987,"project":"hashin"},{"download_count":153953,"project":"mypy-boto3-mturk"},{"download_count":153948,"project":"lap"},{"download_count":153940,"project":"mypy-boto3-appstream"},{"download_count":153916,"project":"cmyt"},{"download_count":153916,"project":"mypy-boto3-datasync"},{"download_count":153888,"project":"mypy-boto3-marketplace-catalog"},{"download_count":153869,"project":"gcloud-aio-pubsub"},{"download_count":153717,"project":"pymel"},{"download_count":153692,"project":"speedtest-cli"},{"download_count":153659,"project":"mypy-boto3-sagemaker-edge"},{"download_count":153636,"project":"mypy-boto3-ivschat"},{"download_count":153605,"project":"ops-scenario"},{"download_count":153577,"project":"mne"},{"download_count":153572,"project":"mypy-boto3-workmail"},{"download_count":153481,"project":"mypy-boto3-workspaces-web"},{"download_count":153462,"project":"sortedcollections"},{"download_count":153434,"project":"mypy-boto3-ssm-incidents"},{"download_count":153434,"project":"mypy-boto3-qbusiness"},{"download_count":153419,"project":"icmplib"},{"download_count":153404,"project":"nfoursid"},{"download_count":153329,"project":"mypy-boto3-resource-groups"},{"download_count":153306,"project":"mypy-boto3-workdocs"},{"download_count":153294,"project":"mypy-boto3-appconfigdata"},{"download_count":153284,"project":"mypy-boto3-dlm"},{"download_count":153279,"project":"mypy-boto3-wisdom"},{"download_count":153276,"project":"mypy-boto3-codestar-notifications"},{"download_count":153268,"project":"cupy-cuda11x"},{"download_count":153260,"project":"mypy-boto3-waf-regional"},{"download_count":153256,"project":"mypy-boto3-iotfleetwise"},{"download_count":153246,"project":"mypy-boto3-workspaces-thin-client"},{"download_count":153244,"project":"memepy"},{"download_count":153241,"project":"mypy-boto3-simspaceweaver"},{"download_count":153232,"project":"mypy-boto3-route53-recovery-control-config"},{"download_count":153216,"project":"mypy-boto3-memorydb"},{"download_count":153182,"project":"kthread"},{"download_count":153163,"project":"mypy-boto3-wellarchitected"},{"download_count":153122,"project":"mypy-boto3-voice-id"},{"download_count":153121,"project":"mypy-boto3-qapps"},{"download_count":153112,"project":"mypy-boto3-fsx"},{"download_count":153102,"project":"cloudant"},{"download_count":153096,"project":"mypy-boto3-cloudhsm"},{"download_count":153094,"project":"mypy-boto3-workmailmessageflow"},{"download_count":153075,"project":"elasticsearch5"},{"download_count":153061,"project":"yt"},{"download_count":153058,"project":"mypy-boto3-cognito-sync"},{"download_count":153054,"project":"mypy-boto3-mediastore"},{"download_count":153051,"project":"mypy-boto3-support-app"},{"download_count":153051,"project":"mypy-boto3-iotwireless"},{"download_count":153041,"project":"mypy-boto3-waf"},{"download_count":153026,"project":"mypy-boto3-clouddirectory"},{"download_count":153007,"project":"pybreaker"},{"download_count":152984,"project":"mypy-boto3-mq"},{"download_count":152972,"project":"mypy-boto3-iotdeviceadvisor"},{"download_count":152953,"project":"mypy-boto3-sagemaker-metrics"},{"download_count":152951,"project":"mypy-boto3-amp"},{"download_count":152949,"project":"mypy-boto3-application-insights"},{"download_count":152939,"project":"mypy-boto3-cloudcontrol"},{"download_count":152915,"project":"mypy-boto3-ssm-sap"},{"download_count":152822,"project":"mypy-boto3-route53resolver"},{"download_count":152780,"project":"mypy-boto3-guardduty"},{"download_count":152767,"project":"mypy-boto3-storagegateway"},{"download_count":152763,"project":"mypy-boto3-snowball"},{"download_count":152747,"project":"mypy-boto3-kinesisvideo"},{"download_count":152744,"project":"pynmea2"},{"download_count":152739,"project":"mypy-boto3-elasticbeanstalk"},{"download_count":152732,"project":"mypy-boto3-iotevents"},{"download_count":152722,"project":"drf-extra-fields"},{"download_count":152716,"project":"dlib"},{"download_count":152715,"project":"mypy-boto3-sagemaker-featurestore-runtime"},{"download_count":152711,"project":"mypy-boto3-swf"},{"download_count":152709,"project":"mypy-boto3-chime"},{"download_count":152709,"project":"mypy-boto3-kinesis-video-media"},{"download_count":152706,"project":"mypy-boto3-inspector"},{"download_count":152699,"project":"mypy-boto3-kinesisanalyticsv2"},{"download_count":152686,"project":"mypy-boto3-opensearchserverless"},{"download_count":152681,"project":"mypy-boto3-migrationhubstrategy"},{"download_count":152670,"project":"mypy-boto3-savingsplans"},{"download_count":152664,"project":"sqloxide"},{"download_count":152663,"project":"mypy-boto3-mediapackage-vod"},{"download_count":152658,"project":"mypy-boto3-snow-device-management"},{"download_count":152658,"project":"mypy-boto3-chime-sdk-messaging"},{"download_count":152646,"project":"mypy-boto3-qldb"},{"download_count":152645,"project":"mypy-boto3-verifiedpermissions"},{"download_count":152637,"project":"mypy-boto3-kinesis-video-archived-media"},{"download_count":152619,"project":"glpk"},{"download_count":152601,"project":"mypy-boto3-amplifybackend"},{"download_count":152599,"project":"mypy-boto3-osis"},{"download_count":152594,"project":"mypy-boto3-chime-sdk-media-pipelines"},{"download_count":152576,"project":"mypy-boto3-ds"},{"download_count":152573,"project":"flask-flatpages"},{"download_count":152572,"project":"mypy-boto3-cloudhsmv2"},{"download_count":152562,"project":"mypy-boto3-launch-wizard"},{"download_count":152553,"project":"mypy-boto3-billingconductor"},{"download_count":152553,"project":"mypy-boto3-backup-gateway"},{"download_count":152542,"project":"mypy-boto3-grafana"},{"download_count":152536,"project":"mypy-boto3-auditmanager"},{"download_count":152534,"project":"ecpy"},{"download_count":152524,"project":"mypy-boto3-comprehendmedical"},{"download_count":152514,"project":"mypy-boto3-networkmanager"},{"download_count":152512,"project":"mypy-boto3-neptune"},{"download_count":152510,"project":"mypy-boto3-chime-sdk-identity"},{"download_count":152507,"project":"mypy-boto3-ssm-contacts"},{"download_count":152502,"project":"mypy-boto3-mediapackage"},{"download_count":152497,"project":"mypy-boto3-greengrassv2"},{"download_count":152492,"project":"mypy-boto3-autoscaling-plans"},{"download_count":152490,"project":"mypy-boto3-datapipeline"},{"download_count":152480,"project":"mypy-boto3-sms"},{"download_count":152478,"project":"mypy-boto3-sso-oidc"},{"download_count":152476,"project":"mypy-boto3-databrew"},{"download_count":152469,"project":"mypy-boto3-appmesh"},{"download_count":152464,"project":"prefect-kubernetes"},{"download_count":152462,"project":"mypy-boto3-kinesisanalytics"},{"download_count":152461,"project":"mypy-boto3-amplifyuibuilder"},{"download_count":152458,"project":"mypy-boto3-proton"},{"download_count":152427,"project":"mypy-boto3-chime-sdk-meetings"},{"download_count":152421,"project":"mypy-boto3-codeguru-reviewer"},{"download_count":152418,"project":"mypy-boto3-managedblockchain"},{"download_count":152417,"project":"mypy-boto3-lexv2-runtime"},{"download_count":152416,"project":"mypy-boto3-devicefarm"},{"download_count":152415,"project":"mypy-boto3-connectparticipant"},{"download_count":152407,"project":"mypy-boto3-timestream-influxdb"},{"download_count":152403,"project":"mypy-boto3-appintegrations"},{"download_count":152393,"project":"mypy-boto3-elastictranscoder"},{"download_count":152388,"project":"mypy-boto3-sms-voice"},{"download_count":152382,"project":"pyjq"},{"download_count":152371,"project":"mypy-boto3-applicationcostprofiler"},{"download_count":152360,"project":"mypy-boto3-cloud9"},{"download_count":152357,"project":"mypy-boto3-codestar-connections"},{"download_count":152339,"project":"mypy-boto3-lookoutvision"},{"download_count":152336,"project":"mypy-boto3-sagemaker-a2i-runtime"},{"download_count":152331,"project":"mypy-boto3-trustedadvisor"},{"download_count":152307,"project":"mypy-boto3-detective"},{"download_count":152304,"project":"mypy-boto3-tnb"},{"download_count":152302,"project":"mypy-boto3-groundstation"},{"download_count":152297,"project":"mypy-boto3-pi"},{"download_count":152296,"project":"mypy-boto3-discovery"},{"download_count":152293,"project":"mypy-boto3-docdb-elastic"},{"download_count":152290,"project":"mypy-boto3-keyspaces"},{"download_count":152288,"project":"mypy-boto3-greengrass"},{"download_count":152283,"project":"mypy-boto3-license-manager"},{"download_count":152277,"project":"mypy-boto3-iotfleethub"},{"download_count":152275,"project":"mypy-boto3-marketplacecommerceanalytics"},{"download_count":152275,"project":"htmlmin2"},{"download_count":152257,"project":"mypy-boto3-mediaconnect"},{"download_count":152240,"project":"mypy-boto3-servicecatalog-appregistry"},{"download_count":152237,"project":"mypy-boto3-omics"},{"download_count":152234,"project":"mypy-boto3-iotsitewise"},{"download_count":152227,"project":"mypy-boto3-kendra"},{"download_count":152202,"project":"mypy-boto3-panorama"},{"download_count":152200,"project":"mypy-boto3-lex-models"},{"download_count":152200,"project":"mypy-boto3-ivs"},{"download_count":152196,"project":"mypy-boto3-vpc-lattice"},{"download_count":152186,"project":"mypy-boto3-pinpoint-sms-voice-v2"},{"download_count":152182,"project":"mypy-boto3-lookoutequipment"},{"download_count":152173,"project":"mypy-boto3-healthlake"},{"download_count":152171,"project":"mypy-boto3-customer-profiles"},{"download_count":152169,"project":"mypy-boto3-iotsecuretunneling"},{"download_count":152162,"project":"mypy-boto3-connectcampaigns"},{"download_count":152161,"project":"mypy-boto3-mgh"},{"download_count":152160,"project":"mypy-boto3-devops-guru"},{"download_count":152151,"project":"mypy-boto3-iot1click-devices"},{"download_count":152135,"project":"mypy-boto3-rolesanywhere"},{"download_count":152133,"project":"mypy-boto3-iotanalytics"},{"download_count":152131,"project":"mpyc"},{"download_count":152115,"project":"mypy-boto3-qldb-session"},{"download_count":152112,"project":"mypy-boto3-gamelift"},{"download_count":152112,"project":"mypy-boto3-forecast"},{"download_count":152102,"project":"tinybird-cdk"},{"download_count":152100,"project":"mypy-boto3-kafkaconnect"},{"download_count":152091,"project":"mypy-boto3-supplychain"},{"download_count":152085,"project":"gptcache"},{"download_count":152072,"project":"mypy-boto3-cur"},{"download_count":152072,"project":"mypy-boto3-evidently"},{"download_count":152072,"project":"mypy-boto3-cleanroomsml"},{"download_count":152071,"project":"mypy-boto3-codeguruprofiler"},{"download_count":152067,"project":"mypy-boto3-connect-contact-lens"},{"download_count":152065,"project":"mypy-boto3-controltower"},{"download_count":152063,"project":"mypy-boto3-finspace-data"},{"download_count":152058,"project":"mypy-boto3-globalaccelerator"},{"download_count":152057,"project":"pyxnat"},{"download_count":152053,"project":"mypy-boto3-medialive"},{"download_count":152047,"project":"mypy-boto3-robomaker"},{"download_count":152047,"project":"mypy-boto3-dax"},{"download_count":152038,"project":"mypy-boto3-rbin"},{"download_count":152036,"project":"mypy-boto3-kinesis-video-signaling"},{"download_count":152034,"project":"mypy-boto3-b2bi"},{"download_count":152027,"project":"mypy-boto3-iottwinmaker"},{"download_count":152012,"project":"mypy-boto3-fis"},{"download_count":152010,"project":"mypy-boto3-arc-zonal-shift"},{"download_count":152000,"project":"mypy-boto3-elastic-inference"},{"download_count":151991,"project":"mypy-boto3-personalize"},{"download_count":151990,"project":"mypy-boto3-opsworks"},{"download_count":151983,"project":"mypy-boto3-route53-recovery-cluster"},{"download_count":151982,"project":"mypy-boto3-migrationhub-config"},{"download_count":151979,"project":"mypy-boto3-mgn"},{"download_count":151970,"project":"cognitive-complexity"},{"download_count":151966,"project":"mypy-boto3-m2"},{"download_count":151950,"project":"mypy-boto3-opsworkscm"},{"download_count":151949,"project":"mypy-boto3-personalize-runtime"},{"download_count":151948,"project":"mypy-boto3-mediatailor"},{"download_count":151947,"project":"mypy-boto3-connectcases"},{"download_count":151945,"project":"mypy-boto3-iot1click-projects"},{"download_count":151944,"project":"mypy-boto3-lookoutmetrics"},{"download_count":151935,"project":"mypy-boto3-lightsail"},{"download_count":151917,"project":"mypy-boto3-bcm-data-exports"},{"download_count":151906,"project":"mypy-boto3-rum"},{"download_count":151905,"project":"mypy-boto3-resiliencehub"},{"download_count":151903,"project":"mypy-boto3-migration-hub-refactor-spaces"},{"download_count":151892,"project":"hiyapyco"},{"download_count":151873,"project":"mypy-boto3-frauddetector"},{"download_count":151872,"project":"mypy-boto3-drs"},{"download_count":151870,"project":"mypy-boto3-payment-cryptography"},{"download_count":151864,"project":"mypy-boto3-taxsettings"},{"download_count":151861,"project":"mypy-boto3-lex-runtime"},{"download_count":151859,"project":"mypy-boto3-finspace"},{"download_count":151842,"project":"azure-ai-textanalytics"},{"download_count":151840,"project":"mypy-boto3-migrationhuborchestrator"},{"download_count":151832,"project":"mypy-boto3-cost-optimization-hub"},{"download_count":151817,"project":"mypy-boto3-lexv2-models"},{"download_count":151816,"project":"mypy-boto3-kendra-ranking"},{"download_count":151811,"project":"mypy-boto3-cloudtrail-data"},{"download_count":151781,"project":"pims"},{"download_count":151770,"project":"mypy-boto3-securitylake"},{"download_count":151751,"project":"mypy-boto3-outposts"},{"download_count":151749,"project":"mypy-boto3-iotthingsgraph"},{"download_count":151735,"project":"mypy-boto3-iot-jobs-data"},{"download_count":151735,"project":"mypy-boto3-personalize-events"},{"download_count":151734,"project":"mypy-boto3-importexport"},{"download_count":151725,"project":"mypy-boto3-iotevents-data"},{"download_count":151701,"project":"mypy-boto3-route53-recovery-readiness"},{"download_count":151683,"project":"mypy-boto3-artifact"},{"download_count":151681,"project":"mypy-boto3-medical-imaging"},{"download_count":151680,"project":"mypy-boto3-cleanrooms"},{"download_count":151673,"project":"mypy-boto3-mediastore-data"},{"download_count":151669,"project":"clu"},{"download_count":151663,"project":"mypy-boto3-macie2"},{"download_count":151660,"project":"mypy-boto3-kinesis-video-webrtc-storage"},{"download_count":151657,"project":"jc"},{"download_count":151647,"project":"mypy-boto3-codecatalyst"},{"download_count":151634,"project":"mypy-boto3-apptest"},{"download_count":151628,"project":"mypy-boto3-license-manager-user-subscriptions"},{"download_count":151622,"project":"mypy-boto3-sagemaker-geospatial"},{"download_count":151618,"project":"mypy-boto3-resource-explorer-2"},{"download_count":151612,"project":"mypy-boto3-fms"},{"download_count":151608,"project":"mypy-boto3-privatenetworks"},{"download_count":151606,"project":"mypy-boto3-eks-auth"},{"download_count":151605,"project":"pyobjc-framework-coreservices"},{"download_count":151605,"project":"mypy-boto3-deadline"},{"download_count":151597,"project":"mypy-boto3-pipes"},{"download_count":151582,"project":"mypy-boto3-pinpoint-sms-voice"},{"download_count":151567,"project":"mypy-boto3-codeguru-security"},{"download_count":151567,"project":"mypy-boto3-marketplace-deployment"},{"download_count":151551,"project":"mypy-boto3-appfabric"},{"download_count":151544,"project":"tldrwl"},{"download_count":151526,"project":"mypy-boto3-payment-cryptography-data"},{"download_count":151476,"project":"mypy-boto3-chatbot"},{"download_count":151470,"project":"mypy-boto3-cloudfront-keyvaluestore"},{"download_count":151467,"project":"mypy-boto3-codeconnections"},{"download_count":151467,"project":"mypy-boto3-datazone"},{"download_count":151455,"project":"mypy-boto3-qconnect"},{"download_count":151439,"project":"mypy-boto3-chime-sdk-voice"},{"download_count":151435,"project":"mypy-boto3-mediapackagev2"},{"download_count":151434,"project":"mypy-boto3-ssm-quicksetup"},{"download_count":151430,"project":"mypy-boto3-s3outposts"},{"download_count":151426,"project":"mypy-boto3-freetier"},{"download_count":151425,"project":"mypy-boto3-neptunedata"},{"download_count":151406,"project":"mypy-boto3-marketplace-agreement"},{"download_count":151372,"project":"mypy-boto3-internetmonitor"},{"download_count":151365,"project":"mypy-boto3-ivs-realtime"},{"download_count":151363,"project":"mypy-boto3-pca-connector-ad"},{"download_count":151326,"project":"aiocontextvars"},{"download_count":151324,"project":"mypy-boto3-repostspace"},{"download_count":151287,"project":"mypy-boto3-route53profiles"},{"download_count":151268,"project":"mypy-boto3-application-signals"},{"download_count":151237,"project":"mypy-boto3-oam"},{"download_count":151201,"project":"mypy-boto3-mailmanager"},{"download_count":151197,"project":"pyecharts"},{"download_count":151190,"project":"xdsl"},{"download_count":151180,"project":"clvm-rs"},{"download_count":151176,"project":"mypy-boto3-pcs"},{"download_count":151104,"project":"mypy-boto3-entityresolution"},{"download_count":151085,"project":"meltanolabs-target-snowflake"},{"download_count":151080,"project":"mypy-boto3-inspector-scan"},{"download_count":151043,"project":"mypy-boto3-license-manager-linux-subscriptions"},{"download_count":151026,"project":"mypy-boto3-managedblockchain-query"},{"download_count":150957,"project":"mypy-boto3-neptune-graph"},{"download_count":150929,"project":"pypyr"},{"download_count":150900,"project":"mypy-boto3-controlcatalog"},{"download_count":150758,"project":"mypy-boto3-networkmonitor"},{"download_count":150723,"project":"openmath"},{"download_count":150717,"project":"represent"},{"download_count":150693,"project":"mypy-boto3-pca-connector-scep"},{"download_count":150556,"project":"python-markdown-math"},{"download_count":150430,"project":"interpret-community"},{"download_count":150405,"project":"delegator-py"},{"download_count":150371,"project":"pydes"},{"download_count":150363,"project":"placekey"},{"download_count":150261,"project":"azureml-contrib-services"},{"download_count":150246,"project":"ta"},{"download_count":150245,"project":"mozprocess"},{"download_count":150236,"project":"dbstream"},{"download_count":150131,"project":"pydot-ng"},{"download_count":149977,"project":"msg-parser"},{"download_count":149939,"project":"cron-schedule-triggers"},{"download_count":149787,"project":"favicon"},{"download_count":149770,"project":"javalang"},{"download_count":149731,"project":"azure-schemaregistry-avroencoder"},{"download_count":149616,"project":"hbutils"},{"download_count":149582,"project":"pycountry-convert"},{"download_count":149473,"project":"pigpio"},{"download_count":149467,"project":"robinhood-aiokafka"},{"download_count":149430,"project":"ml-wrappers"},{"download_count":149420,"project":"pilkit"},{"download_count":149375,"project":"tabulator"},{"download_count":149362,"project":"ufal-udpipe"},{"download_count":149350,"project":"flake8-html"},{"download_count":149260,"project":"faust"},{"download_count":149197,"project":"airflow-dbt-python"},{"download_count":149170,"project":"rpmfile"},{"download_count":149092,"project":"psycopg2-pool"},{"download_count":149070,"project":"mypy-boto3-nimble"},{"download_count":149047,"project":"google-oauth2-tool"},{"download_count":148970,"project":"pycparserext-gnuc"},{"download_count":148819,"project":"django-imagekit"},{"download_count":148735,"project":"sqlalchemy-continuum"},{"download_count":148554,"project":"yake"},{"download_count":148535,"project":"config-formatter"},{"download_count":148519,"project":"hgtk"},{"download_count":148503,"project":"flake8-class-attributes-order"},{"download_count":148395,"project":"yaql"},{"download_count":148368,"project":"openai-clip"},{"download_count":148286,"project":"namedentities"},{"download_count":148195,"project":"smbus2"},{"download_count":148190,"project":"pytenable"},{"download_count":148125,"project":"azure-functions-durable"},{"download_count":148043,"project":"delorean"},{"download_count":147989,"project":"datetime-quarter"},{"download_count":147748,"project":"raiutils"},{"download_count":147697,"project":"mlog-arithmetic-runner"},{"download_count":147644,"project":"mssql-django"},{"download_count":147614,"project":"dirac"},{"download_count":147487,"project":"tqdm-loggable"},{"download_count":147430,"project":"python-neutronclient"},{"download_count":147424,"project":"yorm"},{"download_count":147413,"project":"pyobjc-framework-launchservices"},{"download_count":147409,"project":"python-levenshtein-wheels"},{"download_count":147331,"project":"sphinx-bootstrap-theme"},{"download_count":147206,"project":"jpholiday"},{"download_count":147179,"project":"mysql-connector-python-rf"},{"download_count":146965,"project":"xenon"},{"download_count":146884,"project":"pysnyk"},{"download_count":146869,"project":"python-terraform"},{"download_count":146858,"project":"fsc-hdf5-io"},{"download_count":146835,"project":"bands-inspect"},{"download_count":146802,"project":"dukpy"},{"download_count":146783,"project":"flake8-json"},{"download_count":146748,"project":"tbmodels"},{"download_count":146642,"project":"lpc-checksum"},{"download_count":146614,"project":"python-openid"},{"download_count":146605,"project":"xinspect"},{"download_count":146597,"project":"nvitop"},{"download_count":146595,"project":"fastapi-cache2"},{"download_count":146576,"project":"django-nine"},{"download_count":146548,"project":"prefect-dask"},{"download_count":146455,"project":"bech32"},{"download_count":146451,"project":"fmpy"},{"download_count":146446,"project":"rapids-dependency-file-generator"},{"download_count":146418,"project":"sagemaker-inference"},{"download_count":146353,"project":"pemja"},{"download_count":146280,"project":"dacktool"},{"download_count":146204,"project":"mo-logs"},{"download_count":146149,"project":"mo-kwargs"},{"download_count":146050,"project":"pyvcd"},{"download_count":146010,"project":"skorch"},{"download_count":145953,"project":"dataengine"},{"download_count":145853,"project":"bump-my-version"},{"download_count":145802,"project":"lilcom"},{"download_count":145702,"project":"args"},{"download_count":145512,"project":"pretrainedmodels"},{"download_count":145387,"project":"pyobjc-framework-exceptionhandling"},{"download_count":145362,"project":"pytest-memray"},{"download_count":145248,"project":"django-sendgrid-v5"},{"download_count":145143,"project":"keyrings-cryptfile"},{"download_count":145031,"project":"scikit-survival"},{"download_count":144905,"project":"fs-gcsfs"},{"download_count":144884,"project":"firebolt-sdk"},{"download_count":144802,"project":"pyevtk"},{"download_count":144703,"project":"no-manylinux"},{"download_count":144668,"project":"pingouin"},{"download_count":144599,"project":"pygltflib"},{"download_count":144593,"project":"sparkdantic"},{"download_count":144582,"project":"jeedomdaemon"},{"download_count":144534,"project":"prometheus-async"},{"download_count":144483,"project":"py3dmol"},{"download_count":144481,"project":"multiprocessing-logging"},{"download_count":144405,"project":"usd-core"},{"download_count":144272,"project":"pytest-helpers-namespace"},{"download_count":144211,"project":"mdformat-gfm"},{"download_count":144184,"project":"trie"},{"download_count":144181,"project":"django-crontab"},{"download_count":144156,"project":"pytest-docker-tools"},{"download_count":144154,"project":"git-pylint-commit-hook"},{"download_count":144076,"project":"exifread"},{"download_count":144058,"project":"easydev"},{"download_count":144010,"project":"airflow-provider-great-expectations"},{"download_count":143990,"project":"handpick"},{"download_count":143922,"project":"types-aiobotocore-elbv2"},{"download_count":143759,"project":"flake8-tuple"},{"download_count":143560,"project":"pytrie"},{"download_count":143532,"project":"httpx-auth"},{"download_count":143531,"project":"google-api-python-client-stubs"},{"download_count":143525,"project":"pangres"},{"download_count":143502,"project":"teradata"},{"download_count":143465,"project":"dagster-celery"},{"download_count":143422,"project":"compress-pickle"},{"download_count":143389,"project":"scann"},{"download_count":143308,"project":"dgl"},{"download_count":143288,"project":"dagster-celery-k8s"},{"download_count":143284,"project":"lhotse"},{"download_count":143273,"project":"datetimerange"},{"download_count":143166,"project":"plotbin"},{"download_count":143110,"project":"pygrok"},{"download_count":143088,"project":"neo4j-driver"},{"download_count":143008,"project":"pyobjc-framework-coreaudio"},{"download_count":143001,"project":"ocviapy"},{"download_count":142948,"project":"pyscreenshot"},{"download_count":142945,"project":"wordninja"},{"download_count":142905,"project":"preggy"},{"download_count":142811,"project":"hatch-nodejs-version"},{"download_count":142807,"project":"loess"},{"download_count":142782,"project":"objectpath"},{"download_count":142681,"project":"setfit"},{"download_count":142423,"project":"pyobjc-framework-cfnetwork"},{"download_count":142284,"project":"grafana-client"},{"download_count":142241,"project":"bids-validator"},{"download_count":142210,"project":"dynamicprompts"},{"download_count":142194,"project":"picu"},{"download_count":142143,"project":"pybids"},{"download_count":142094,"project":"pyobjc-framework-automator"},{"download_count":142086,"project":"dh-utils"},{"download_count":142077,"project":"munidata"},{"download_count":142074,"project":"fast-query-parsers"},{"download_count":141969,"project":"widdy"},{"download_count":141910,"project":"djangosaml2"},{"download_count":141891,"project":"voluptuous-serialize"},{"download_count":141788,"project":"clip-anytorch"},{"download_count":141779,"project":"pycocoevalcap"},{"download_count":141768,"project":"antsibull-docs-parser"},{"download_count":141753,"project":"types-dateparser"},{"download_count":141683,"project":"zi-api-auth-client"},{"download_count":141597,"project":"rocksdict"},{"download_count":141594,"project":"razorpay"},{"download_count":141564,"project":"aws-opentelemetry-distro"},{"download_count":141531,"project":"pyobjc-framework-addressbook"},{"download_count":141515,"project":"fuzzyfinder"},{"download_count":141506,"project":"print-color"},{"download_count":141408,"project":"pyautogen"},{"download_count":141390,"project":"sagemaker-experiments"},{"download_count":141343,"project":"pyedbglib"},{"download_count":141337,"project":"tinynetrc"},{"download_count":141295,"project":"pymcuprog"},{"download_count":141295,"project":"pyexcel-xlsx"},{"download_count":141276,"project":"pytest-reporter"},{"download_count":141256,"project":"setoptconf"},{"download_count":141235,"project":"requests-ratelimiter"},{"download_count":141181,"project":"ecmwflibs"},{"download_count":141112,"project":"bamboolib"},{"download_count":141090,"project":"emojis"},{"download_count":141072,"project":"mkdocs-literate-nav"},{"download_count":141002,"project":"ics"},{"download_count":140924,"project":"python-lzf"},{"download_count":140904,"project":"pyobjc-framework-diskarbitration"},{"download_count":140904,"project":"promptflow"},{"download_count":140847,"project":"geojson-pydantic"},{"download_count":140826,"project":"scanpy"},{"download_count":140809,"project":"workos"},{"download_count":140743,"project":"email"},{"download_count":140618,"project":"lorem-text"},{"download_count":140568,"project":"libsast"},{"download_count":140566,"project":"spaces"},{"download_count":140550,"project":"pycdlib"},{"download_count":140517,"project":"mitmproxy-rs"},{"download_count":140468,"project":"cx-freeze"},{"download_count":140366,"project":"pyobjc-framework-osakit"},{"download_count":140291,"project":"django-elasticsearch-dsl-drf"},{"download_count":140278,"project":"laspy"},{"download_count":140244,"project":"mip"},{"download_count":140166,"project":"numpyro"},{"download_count":140154,"project":"flask-cloudflared"},{"download_count":140031,"project":"parquet-metadata"},{"download_count":139948,"project":"htbuilder"},{"download_count":139807,"project":"rbx"},{"download_count":139787,"project":"rawpy"},{"download_count":139674,"project":"pyramid-mako"},{"download_count":139653,"project":"apache-flink"},{"download_count":139604,"project":"humanreadable"},{"download_count":139595,"project":"flask-cognito-lib"},{"download_count":139527,"project":"mkdocs-section-index"},{"download_count":139522,"project":"swimbundle-utils"},{"download_count":139446,"project":"hl7apy"},{"download_count":139386,"project":"captcha"},{"download_count":139377,"project":"django-admin-interface"},{"download_count":139348,"project":"pygelf"},{"download_count":139339,"project":"quandl"},{"download_count":139338,"project":"fastexcel"},{"download_count":139273,"project":"pyobjc-framework-fsevents"},{"download_count":139167,"project":"requests-gssapi"},{"download_count":139132,"project":"pyobjc-framework-applescriptkit"},{"download_count":139116,"project":"sphinxcontrib-confluencebuilder"},{"download_count":138958,"project":"spacy-alignments"},{"download_count":138936,"project":"dagster-gcp"},{"download_count":138877,"project":"pytest-shard"},{"download_count":138812,"project":"mozterm"},{"download_count":138762,"project":"multiping"},{"download_count":138758,"project":"deep-merge"},{"download_count":138749,"project":"ipython-autotime"},{"download_count":138688,"project":"okta-jwt-verifier"},{"download_count":138669,"project":"pylint-pytest"},{"download_count":138451,"project":"sklearn-pandas"},{"download_count":138434,"project":"hug"},{"download_count":138428,"project":"pyobjc-framework-libdispatch"},{"download_count":138363,"project":"locustio"},{"download_count":138361,"project":"acachecontrol"},{"download_count":138321,"project":"esp-coredump"},{"download_count":138204,"project":"www-authenticate"},{"download_count":138016,"project":"django-bulk-update"},{"download_count":137940,"project":"inscriptis"},{"download_count":137868,"project":"throttler"},{"download_count":137849,"project":"slack-webhook"},{"download_count":137827,"project":"boilerpy3"},{"download_count":137795,"project":"cogapp"},{"download_count":137732,"project":"mergepythonclient"},{"download_count":137724,"project":"pyuca"},{"download_count":137671,"project":"pytest-logger"},{"download_count":137647,"project":"pyobjc-framework-coredata"},{"download_count":137644,"project":"python3-ldap"},{"download_count":137626,"project":"encodec"},{"download_count":137441,"project":"python-louvain"},{"download_count":137424,"project":"crewai-tools"},{"download_count":137296,"project":"pyobjc-framework-latentsemanticmapping"},{"download_count":137244,"project":"recordclass"},{"download_count":137229,"project":"pixelmatch"},{"download_count":137196,"project":"pyobjc-framework-preferencepanes"},{"download_count":137174,"project":"pyobjc-framework-installerplugins"},{"download_count":137173,"project":"postgres"},{"download_count":137154,"project":"pyartifactory"},{"download_count":137144,"project":"protoc-gen-validate"},{"download_count":137111,"project":"pdoc3"},{"download_count":137090,"project":"twython"},{"download_count":137021,"project":"pyobjc-framework-discrecording"},{"download_count":136914,"project":"pyobjc-framework-coreaudiokit"},{"download_count":136851,"project":"dagster-snowflake"},{"download_count":136817,"project":"wemake-python-styleguide"},{"download_count":136705,"project":"pypi"},{"download_count":136701,"project":"control"},{"download_count":136699,"project":"autodoc-pydantic"},{"download_count":136668,"project":"xxtea"},{"download_count":136632,"project":"objectory"},{"download_count":136563,"project":"pyobjc-framework-discrecordingui"},{"download_count":136555,"project":"pylint-exit"},{"download_count":136493,"project":"pyobjc-framework-dvdplayback"},{"download_count":136465,"project":"intake"},{"download_count":136413,"project":"apache-airflow-providers-apache-livy"},{"download_count":136362,"project":"pyobjc-framework-corebluetooth"},{"download_count":136331,"project":"pygitguardian"},{"download_count":136313,"project":"mmhash2"},{"download_count":136219,"project":"pybind11-global"},{"download_count":136140,"project":"face-recognition"},{"download_count":136089,"project":"meshtastic"},{"download_count":136033,"project":"types-aiobotocore-route53"},{"download_count":135970,"project":"pyeapi"},{"download_count":135940,"project":"sphinxcontrib-spelling"},{"download_count":135924,"project":"gcloud-aio-datastore"},{"download_count":135829,"project":"mrcfile"},{"download_count":135722,"project":"syllapy"},{"download_count":135708,"project":"loadimg"},{"download_count":135658,"project":"async-interrupt"},{"download_count":135621,"project":"pynliner"},{"download_count":135618,"project":"flask-bootstrap"},{"download_count":135537,"project":"cypari2"},{"download_count":135502,"project":"pyobjc-framework-security"},{"download_count":135457,"project":"types-aiobotocore-acm"},{"download_count":135456,"project":"symspellpy"},{"download_count":135439,"project":"django-rest-auth"},{"download_count":135430,"project":"st-annotated-text"},{"download_count":135422,"project":"types-orjson"},{"download_count":135398,"project":"pyunpack"},{"download_count":135303,"project":"flake8-literal"},{"download_count":135152,"project":"ezdxf"},{"download_count":135109,"project":"pdf2docx"},{"download_count":135073,"project":"pymunk"},{"download_count":134922,"project":"pytest-reraise"},{"download_count":134892,"project":"aws-cdk-aws-redshift-alpha"},{"download_count":134874,"project":"pyscipopt"},{"download_count":134871,"project":"bluetooth-adapters"},{"download_count":134855,"project":"streamlit-image-coordinates"},{"download_count":134854,"project":"atomicwrites-homeassistant"},{"download_count":134816,"project":"dewloosh-core"},{"download_count":134789,"project":"pyobjc-framework-webkit"},{"download_count":134763,"project":"netapp-ontap"},{"download_count":134682,"project":"python-statemachine"},{"download_count":134634,"project":"interrogate"},{"download_count":134621,"project":"libpysal"},{"download_count":134606,"project":"spark-expectations"},{"download_count":134605,"project":"purecloudplatformclientv2"},{"download_count":134602,"project":"azure-cognitiveservices-vision-computervision"},{"download_count":134600,"project":"columnar"},{"download_count":134596,"project":"smartypants"},{"download_count":134545,"project":"runstats"},{"download_count":134426,"project":"pyobjc-framework-coremedia"},{"download_count":134426,"project":"nvidia-cuda-nvcc-cu12"},{"download_count":134420,"project":"streamlit-card"},{"download_count":134367,"project":"colour-science"},{"download_count":134281,"project":"llamaindex-py-client"},{"download_count":134256,"project":"robotframework-debuglibrary"},{"download_count":134155,"project":"cirq-core"},{"download_count":134142,"project":"lion-pytorch"},{"download_count":134138,"project":"flake8-pytest-style"},{"download_count":134122,"project":"google-oauth"},{"download_count":134006,"project":"flake8-fixme"},{"download_count":134003,"project":"fairseq"},{"download_count":133934,"project":"wells"},{"download_count":133927,"project":"placebo"},{"download_count":133888,"project":"types-lxml"},{"download_count":133852,"project":"langkit"},{"download_count":133835,"project":"mxnet-mkl"},{"download_count":133824,"project":"flask-principal"},{"download_count":133730,"project":"synchronicity"},{"download_count":133655,"project":"langchain-mistralai"},{"download_count":133573,"project":"py-evm"},{"download_count":133535,"project":"telegraph"},{"download_count":133503,"project":"types-aiobotocore-iam"},{"download_count":133425,"project":"pykerberos"},{"download_count":133422,"project":"dbus-python"},{"download_count":133350,"project":"pystrict"},{"download_count":133347,"project":"mcap-protobuf-support"},{"download_count":133327,"project":"japanize-matplotlib"},{"download_count":133146,"project":"promptflow-azure"},{"download_count":133117,"project":"salesforce-api"},{"download_count":133064,"project":"pyjavaproperties3"},{"download_count":132883,"project":"flask-mongoengine"},{"download_count":132777,"project":"oras"},{"download_count":132761,"project":"zappa"},{"download_count":132732,"project":"pyfaidx"},{"download_count":132729,"project":"pytorch-ranger"},{"download_count":132701,"project":"trogon"},{"download_count":132522,"project":"lookml"},{"download_count":132516,"project":"packaging-legacy"},{"download_count":132515,"project":"rich-rst"},{"download_count":132512,"project":"initools"},{"download_count":132469,"project":"python-liquid"},{"download_count":132433,"project":"python-tools-scripts"},{"download_count":132159,"project":"x-transformers"},{"download_count":132064,"project":"bqplot"},{"download_count":131993,"project":"duet"},{"download_count":131985,"project":"tensorrt"},{"download_count":131807,"project":"redlock-py"},{"download_count":131803,"project":"qulacs"},{"download_count":131778,"project":"pytdigest"},{"download_count":131739,"project":"hypothesis-jsonschema"},{"download_count":131713,"project":"drug-named-entity-recognition"},{"download_count":131657,"project":"sphinx-markdown-builder"},{"download_count":131627,"project":"bolton-clack"},{"download_count":131610,"project":"dewloosh-math"},{"download_count":131589,"project":"pyobjc-framework-avfoundation"},{"download_count":131580,"project":"dynamic-yaml"},{"download_count":131577,"project":"dagster-docker"},{"download_count":131572,"project":"progiter"},{"download_count":131558,"project":"scriptconfig"},{"download_count":131534,"project":"fastnumbers"},{"download_count":131527,"project":"whylabs-textstat"},{"download_count":131516,"project":"edk2-pytool-library"},{"download_count":131497,"project":"pysqlite3"},{"download_count":131482,"project":"mailchimp-transactional"},{"download_count":131471,"project":"pyobjc-framework-screensaver"},{"download_count":131236,"project":"pyobjc-framework-syncservices"},{"download_count":131224,"project":"bolton-eris"},{"download_count":131218,"project":"bolton-metaman"},{"download_count":131210,"project":"bolton-typist"},{"download_count":131202,"project":"bolton-ion"},{"download_count":131145,"project":"ursina"},{"download_count":131092,"project":"selenium-stealth"},{"download_count":131066,"project":"together"},{"download_count":131046,"project":"ulid-transform"},{"download_count":131041,"project":"pyobjc-framework-searchkit"},{"download_count":130978,"project":"markdownlit"},{"download_count":130936,"project":"proto-google-cloud-datastore-v1"},{"download_count":130905,"project":"awslogs"},{"download_count":130867,"project":"business-duration"},{"download_count":130825,"project":"ascvd"},{"download_count":130752,"project":"bertopic"},{"download_count":130715,"project":"pycld2"},{"download_count":130711,"project":"aspy-yaml"},{"download_count":130700,"project":"bolton-logrus"},{"download_count":130687,"project":"gcloud-rest-datastore"},{"download_count":130645,"project":"pyobjc-framework-coreml"},{"download_count":130621,"project":"airflow-provider-hightouch"},{"download_count":130607,"project":"flock"},{"download_count":130555,"project":"streamlit-toggle-switch"},{"download_count":130465,"project":"ssh2-python"},{"download_count":130458,"project":"pyobjc-framework-colorsync"},{"download_count":130432,"project":"magodo"},{"download_count":130317,"project":"flake8-no-implicit-concat"},{"download_count":130285,"project":"patchwork"},{"download_count":130278,"project":"wxpython"},{"download_count":130207,"project":"neo"},{"download_count":130164,"project":"ftputil"},{"download_count":130149,"project":"pyobjc-framework-servicemanagement"},{"download_count":130093,"project":"potoroo"},{"download_count":130087,"project":"lumigo-opentelemetry"},{"download_count":130077,"project":"vprof"},{"download_count":130029,"project":"cloudsmith-cli"},{"download_count":129930,"project":"git-filter-repo"},{"download_count":129901,"project":"langchain-postgres"},{"download_count":129825,"project":"flake8-blind-except"},{"download_count":129811,"project":"sample-helper-aws-appconfig"},{"download_count":129804,"project":"ipyanchorviz"},{"download_count":129654,"project":"dewloosh"},{"download_count":129627,"project":"dewloosh-geom"},{"download_count":129413,"project":"gamma-pytools"},{"download_count":129404,"project":"asciichartpy"},{"download_count":129294,"project":"pyobjc-framework-corewlan"},{"download_count":129278,"project":"apache-airflow-providers-hashicorp"},{"download_count":129271,"project":"brainstem"},{"download_count":129267,"project":"os-sys"},{"download_count":129261,"project":"azureml-designer-serving"},{"download_count":129258,"project":"bleak-retry-connector"},{"download_count":129256,"project":"flexmock"},{"download_count":129209,"project":"pyobjc-framework-eventkit"},{"download_count":129150,"project":"zhinst-core"},{"download_count":129116,"project":"pyobjc-framework-accounts"},{"download_count":129111,"project":"pybboxes"},{"download_count":129085,"project":"py-sr25519-bindings"},{"download_count":129037,"project":"pyannotating"},{"download_count":129011,"project":"aiortc"},{"download_count":128918,"project":"pyobjc-framework-dictionaryservices"},{"download_count":128879,"project":"django-annoying"},{"download_count":128852,"project":"molotov"},{"download_count":128795,"project":"pyobjc-framework-netfs"},{"download_count":128792,"project":"streamlit-faker"},{"download_count":128790,"project":"pyobjc-framework-instantmessage"},{"download_count":128784,"project":"pymobiledetect"},{"download_count":128780,"project":"pep562"},{"download_count":128770,"project":"pyobjc-framework-coremediaio"},{"download_count":128763,"project":"chainer"},{"download_count":128741,"project":"pystac-client"},{"download_count":128740,"project":"pyobjc-framework-avkit"},{"download_count":128737,"project":"pyobjc-framework-notificationcenter"},{"download_count":128698,"project":"pyobjc-framework-multipeerconnectivity"},{"download_count":128687,"project":"django-cte"},{"download_count":128673,"project":"opencensus-ext-flask"},{"download_count":128658,"project":"django-cacheops"},{"download_count":128633,"project":"cbitstruct"},{"download_count":128629,"project":"moment"},{"download_count":128621,"project":"ipython-sql"},{"download_count":128610,"project":"pyobjc-framework-findersync"},{"download_count":128610,"project":"openseespy"},{"download_count":128585,"project":"pinocchio"},{"download_count":128579,"project":"streamlit-camera-input-live"},{"download_count":128556,"project":"gcloud-rest-bigquery"},{"download_count":128540,"project":"click-aliases"},{"download_count":128514,"project":"ronkyuu"},{"download_count":128509,"project":"stdiomask"},{"download_count":128492,"project":"python-magic-bin"},{"download_count":128408,"project":"django-dotenv"},{"download_count":128408,"project":"fastnlp"},{"download_count":128386,"project":"fitz"},{"download_count":128378,"project":"pyobjc-framework-network"},{"download_count":128359,"project":"frida-tools"},{"download_count":128352,"project":"django-admin-list-filter-dropdown"},{"download_count":128346,"project":"pydantic-openapi-schema"},{"download_count":128320,"project":"pyobjc-framework-naturallanguage"},{"download_count":128265,"project":"streamlit-embedcode"},{"download_count":128242,"project":"sklearndf"},{"download_count":128216,"project":"starlite"},{"download_count":128171,"project":"css-inline"},{"download_count":128149,"project":"pytest-flakefinder"},{"download_count":127967,"project":"pansi"},{"download_count":127929,"project":"torch-optimizer"},{"download_count":127816,"project":"pyobjc-framework-spritekit"},{"download_count":127804,"project":"gcloud-aio-taskqueue"},{"download_count":127783,"project":"final-class"},{"download_count":127658,"project":"bolton-proctor"},{"download_count":127657,"project":"pyutilib"},{"download_count":127613,"project":"vimala"},{"download_count":127605,"project":"uri"},{"download_count":127583,"project":"django-ordered-model"},{"download_count":127580,"project":"broadbean"},{"download_count":127579,"project":"darts"},{"download_count":127568,"project":"pystaticconfiguration"},{"download_count":127524,"project":"streamlit-vertical-slider"},{"download_count":127464,"project":"axe-selenium-python"},{"download_count":127389,"project":"qcodes"},{"download_count":127366,"project":"pyobjc-framework-securityfoundation"},{"download_count":127364,"project":"proselint"},{"download_count":127347,"project":"drgn"},{"download_count":127326,"project":"unidic-lite"},{"download_count":127290,"project":"appier"},{"download_count":127182,"project":"pyobjc-framework-applescriptobjc"},{"download_count":127152,"project":"sdcclient"},{"download_count":127097,"project":"ptable"},{"download_count":127090,"project":"great-tables"},{"download_count":127080,"project":"tuspy"},{"download_count":127067,"project":"pyobjc-framework-securityinterface"},{"download_count":127024,"project":"pyobjc-framework-vision"},{"download_count":127009,"project":"pyobjc-framework-corelocation"},{"download_count":126993,"project":"cardboardlint"},{"download_count":126987,"project":"threaded"},{"download_count":126941,"project":"django-rest-passwordreset"},{"download_count":126784,"project":"llama-index-embeddings-huggingface"},{"download_count":126675,"project":"distogram"},{"download_count":126557,"project":"aws-cdk-aws-batch"},{"download_count":126554,"project":"pyobjc-framework-scriptingbridge"},{"download_count":126526,"project":"pyobjc-framework-localauthentication"},{"download_count":126502,"project":"singlestoredb"},{"download_count":126489,"project":"gherkin-official"},{"download_count":126379,"project":"pypcd4"},{"download_count":126373,"project":"pydantic-avro"},{"download_count":126355,"project":"gcloud-rest-taskqueue"},{"download_count":126329,"project":"uptime"},{"download_count":126275,"project":"ophyd"},{"download_count":126043,"project":"ipyleaflet"},{"download_count":125922,"project":"pyobjc-framework-contacts"},{"download_count":125917,"project":"pyobjc-framework-photos"},{"download_count":125866,"project":"lazr-uri"},{"download_count":125856,"project":"pymavlink"},{"download_count":125740,"project":"pyobjc-framework-opendirectory"},{"download_count":125667,"project":"c7n-mailer"},{"download_count":125605,"project":"snakebite-py3"},{"download_count":125603,"project":"dbt-artifacts-parser"},{"download_count":125494,"project":"emails"},{"download_count":125490,"project":"filehash"},{"download_count":125422,"project":"meilisearch"},{"download_count":125382,"project":"python-mecab-ko"},{"download_count":125349,"project":"arelle-release"},{"download_count":125198,"project":"pyobjc-framework-social"},{"download_count":125179,"project":"ldap"},{"download_count":125176,"project":"pyobjc-framework-inputmethodkit"},{"download_count":125136,"project":"html-to-json"},{"download_count":125109,"project":"pyobjc-framework-imagecapturecore"},{"download_count":125029,"project":"pyobjc-framework-gamekit"},{"download_count":125011,"project":"pyobjc-framework-gamecenter"},{"download_count":124999,"project":"pyobjc-framework-storekit"},{"download_count":124982,"project":"pyobjc-framework-cryptotokenkit"},{"download_count":124969,"project":"pyobjc-framework-scenekit"},{"download_count":124964,"project":"pyobjc-framework-gamecontroller"},{"download_count":124947,"project":"flake8-use-pathlib"},{"download_count":124937,"project":"pyobjc-framework-mapkit"},{"download_count":124914,"project":"pyobjc-framework-contactsui"},{"download_count":124913,"project":"dbf"},{"download_count":124901,"project":"pyobjc-framework-iosurface"},{"download_count":124899,"project":"pyobjc-framework-ituneslibrary"},{"download_count":124885,"project":"pyobjc-framework-modelio"},{"download_count":124880,"project":"youtube-search-python"},{"download_count":124879,"project":"pyobjc-framework-collaboration"},{"download_count":124877,"project":"pyobjc-framework-corespotlight"},{"download_count":124876,"project":"clyent"},{"download_count":124866,"project":"evo"},{"download_count":124859,"project":"pyobjc-framework-mediatoolbox"},{"download_count":124853,"project":"pyobjc-framework-networkextension"},{"download_count":124850,"project":"pyobjc-framework-videotoolbox"},{"download_count":124838,"project":"pyobjc-framework-safariservices"},{"download_count":124838,"project":"pyobjc-framework-gameplaykit"},{"download_count":124836,"project":"pyobjc-framework-intents"},{"download_count":124834,"project":"rocketchat-api"},{"download_count":124816,"project":"pyobjc-framework-photosui"},{"download_count":124793,"project":"pyobjc-framework-externalaccessory"},{"download_count":124770,"project":"pyobjc-framework-mediaplayer"},{"download_count":124755,"project":"flake8-unused-arguments"},{"download_count":124752,"project":"pyobjc-framework-medialibrary"},{"download_count":124744,"project":"pyobjc-framework-cloudkit"},{"download_count":124711,"project":"zip-files"},{"download_count":124687,"project":"aiooui"},{"download_count":124682,"project":"pyobjc-framework-mediaaccessibility"},{"download_count":124672,"project":"pyobjc-framework-usernotifications"},{"download_count":124668,"project":"interchange"},{"download_count":124656,"project":"celluloid"},{"download_count":124614,"project":"ipranger"},{"download_count":124533,"project":"python-mecab-ko-dic"},{"download_count":124526,"project":"databricksapi"},{"download_count":124502,"project":"pyobjc-framework-calendarstore"},{"download_count":124460,"project":"pyobjc-framework-businesschat"},{"download_count":124432,"project":"typer-slim"},{"download_count":124391,"project":"cssmin"},{"download_count":124357,"project":"curtsies"},{"download_count":124338,"project":"pyobjc-framework-adsupport"},{"download_count":124327,"project":"apispec-oneofschema"},{"download_count":124270,"project":"pyobjc-framework-videosubscriberaccount"},{"download_count":124227,"project":"cacheout"},{"download_count":124210,"project":"cmreshandler"},{"download_count":124080,"project":"softlayer"},{"download_count":123951,"project":"pretty-midi"},{"download_count":123915,"project":"fuzzy"},{"download_count":123884,"project":"callee"},{"download_count":123799,"project":"rfc5424-logging-handler"},{"download_count":123774,"project":"jupyterlab-git"},{"download_count":123733,"project":"fava"},{"download_count":123636,"project":"pytest-recording"},{"download_count":123608,"project":"cron-validator"},{"download_count":123593,"project":"types-geoip2"},{"download_count":123562,"project":"sphinx-markdown-tables"},{"download_count":123514,"project":"usb-devices"},{"download_count":123501,"project":"unsloth"},{"download_count":123470,"project":"historydict"},{"download_count":123456,"project":"veracode-api-signing"},{"download_count":123449,"project":"conda"},{"download_count":123442,"project":"julia"},{"download_count":123422,"project":"pyts"},{"download_count":123276,"project":"dartsclone"},{"download_count":123252,"project":"mixer"},{"download_count":123140,"project":"methoddispatch"},{"download_count":123104,"project":"flake8-formatter-junit-xml"},{"download_count":123091,"project":"docx2pdf"},{"download_count":123067,"project":"findiff"},{"download_count":122976,"project":"pyjokes"},{"download_count":122955,"project":"aioice"},{"download_count":122876,"project":"flake8-annotations-complexity"},{"download_count":122849,"project":"sanic-testing"},{"download_count":122835,"project":"apache-airflow-providers-samba"},{"download_count":122830,"project":"meross-iot"},{"download_count":122823,"project":"mlforecast"},{"download_count":122797,"project":"pyatlan"},{"download_count":122784,"project":"syne-tune"},{"download_count":122768,"project":"mtcnn"},{"download_count":122637,"project":"ml-base"},{"download_count":122627,"project":"bluesky"},{"download_count":122572,"project":"pytutils"},{"download_count":122544,"project":"zhinst-toolkit"},{"download_count":122538,"project":"unicode-slugify"},{"download_count":122495,"project":"pywebpush"},{"download_count":122406,"project":"zhinst-utils"},{"download_count":122295,"project":"flupy"},{"download_count":122250,"project":"sauceclient"},{"download_count":122214,"project":"nbqa"},{"download_count":122191,"project":"pyldavis"},{"download_count":122172,"project":"urnparse"},{"download_count":122164,"project":"pylibsrtp"},{"download_count":122070,"project":"sseclient"},{"download_count":122052,"project":"django-pipeline"},{"download_count":121898,"project":"django-utils-six"},{"download_count":121828,"project":"django-bootstrap5"},{"download_count":121818,"project":"astro-sdk-python"},{"download_count":121754,"project":"loralib"},{"download_count":121731,"project":"pyros-genmsg"},{"download_count":121726,"project":"aioconsole"},{"download_count":121649,"project":"requests-ntlm2"},{"download_count":121620,"project":"streamlit-authenticator"},{"download_count":121616,"project":"test-results-parser"},{"download_count":121464,"project":"proxy-py"},{"download_count":121377,"project":"random2"},{"download_count":121372,"project":"ansimarkup"},{"download_count":121346,"project":"price-parser"},{"download_count":121310,"project":"onnx-graphsurgeon"},{"download_count":121234,"project":"openseespylinux"},{"download_count":121232,"project":"css-html-js-minify"},{"download_count":121226,"project":"flask-sock"},{"download_count":121214,"project":"qiskit-ibm-runtime"},{"download_count":121191,"project":"pottery"},{"download_count":121190,"project":"google-events"},{"download_count":121159,"project":"panda3d"},{"download_count":121122,"project":"llama-index-vector-stores-azureaisearch"},{"download_count":121037,"project":"phonetics"},{"download_count":121027,"project":"genbadge"},{"download_count":120917,"project":"wiremock"},{"download_count":120912,"project":"google-api"},{"download_count":120912,"project":"django-pgtrigger"},{"download_count":120755,"project":"dbnd-spark"},{"download_count":120692,"project":"srt"},{"download_count":120426,"project":"phpserialize"},{"download_count":120407,"project":"oslo-policy"},{"download_count":120392,"project":"crc"},{"download_count":120382,"project":"openunmix"},{"download_count":120334,"project":"macaddress"},{"download_count":120307,"project":"flake8-pie"},{"download_count":120280,"project":"highspy"},{"download_count":120220,"project":"wslink"},{"download_count":120182,"project":"airbyte-protocol-models-pdv2"},{"download_count":120158,"project":"tach"},{"download_count":120056,"project":"allpairspy"},{"download_count":120047,"project":"mm"},{"download_count":120000,"project":"pytest-faker"},{"download_count":119893,"project":"pysnmpcrypto"},{"download_count":119887,"project":"hcloud"},{"download_count":119845,"project":"waiter"},{"download_count":119777,"project":"pgmpy"},{"download_count":119756,"project":"prodigyopt"},{"download_count":119753,"project":"dvc-s3"},{"download_count":119719,"project":"mixbox"},{"download_count":119666,"project":"apache-flink-libraries"},{"download_count":119589,"project":"whatever"},{"download_count":119554,"project":"verlib2"},{"download_count":119541,"project":"kerberos"},{"download_count":119503,"project":"pulumi-oci"},{"download_count":119496,"project":"censys"},{"download_count":119446,"project":"qh3"},{"download_count":119413,"project":"contextily"},{"download_count":119391,"project":"case-converter"},{"download_count":119374,"project":"cybox"},{"download_count":119164,"project":"matrix"},{"download_count":119157,"project":"napalm"},{"download_count":119029,"project":"eth-bloom"},{"download_count":119006,"project":"simple-slurm"},{"download_count":118980,"project":"dlint"},{"download_count":118903,"project":"jump-consistent-hash"},{"download_count":118860,"project":"markdown-include"},{"download_count":118858,"project":"argparse-manpage"},{"download_count":118842,"project":"text-generation"},{"download_count":118823,"project":"django-bootstrap3"},{"download_count":118739,"project":"red-black-tree-mod"},{"download_count":118718,"project":"dagster-azure"},{"download_count":118710,"project":"airflow-code-editor"},{"download_count":118664,"project":"sahi"},{"download_count":118643,"project":"tts"},{"download_count":118557,"project":"osprofiler"},{"download_count":118519,"project":"appdirs-stubs"},{"download_count":118393,"project":"stix"},{"download_count":118361,"project":"fifolock"},{"download_count":118307,"project":"pydivert"},{"download_count":118300,"project":"django-rosetta"},{"download_count":118270,"project":"json-ref-dict"},{"download_count":118161,"project":"splinter"},{"download_count":118149,"project":"prefect-slack"},{"download_count":118125,"project":"seedir"},{"download_count":118027,"project":"junit-xml-2"},{"download_count":117987,"project":"pykafka"},{"download_count":117763,"project":"django-activity-stream"},{"download_count":117697,"project":"pytest-cpp"},{"download_count":117595,"project":"xpinyin"},{"download_count":117553,"project":"liccheck"},{"download_count":117531,"project":"uart-devices"},{"download_count":117480,"project":"tap-py"},{"download_count":117406,"project":"password-strength"},{"download_count":117349,"project":"dirty-equals"},{"download_count":117132,"project":"can-isotp"},{"download_count":117123,"project":"aws-sso-lib"},{"download_count":117080,"project":"typing-validation"},{"download_count":117067,"project":"amazon-textract-caller"},{"download_count":117048,"project":"mcap-ros2-support"},{"download_count":117004,"project":"zipcodes"},{"download_count":116980,"project":"types-google-cloud-ndb"},{"download_count":116889,"project":"spython"},{"download_count":116882,"project":"home-assistant-bluetooth"},{"download_count":116801,"project":"aiodocker"},{"download_count":116795,"project":"sqlalchemy-mixins"},{"download_count":116781,"project":"daal"},{"download_count":116694,"project":"alembic-utils"},{"download_count":116661,"project":"python-quickbooks"},{"download_count":116632,"project":"memory-tempfile"},{"download_count":116573,"project":"azureml"},{"download_count":116561,"project":"expects"},{"download_count":116558,"project":"swebench"},{"download_count":116538,"project":"yalafi"},{"download_count":116498,"project":"galois"},{"download_count":116456,"project":"pandasai"},{"download_count":116410,"project":"django-dbbackup"},{"download_count":116371,"project":"financepy"},{"download_count":116361,"project":"parquet"},{"download_count":116327,"project":"types-pycurl"},{"download_count":116291,"project":"parallel-ssh"},{"download_count":116283,"project":"django-split-settings"},{"download_count":116221,"project":"style"},{"download_count":116015,"project":"types-typed-ast"},{"download_count":115941,"project":"dagster-pagerduty"},{"download_count":115889,"project":"pipe"},{"download_count":115881,"project":"locust-plugins"},{"download_count":115857,"project":"dm-env"},{"download_count":115828,"project":"forbiddenfruit"},{"download_count":115722,"project":"chainlit"},{"download_count":115656,"project":"betacal"},{"download_count":115597,"project":"earthengine-api"},{"download_count":115567,"project":"clvm-tools-rs"},{"download_count":115529,"project":"unleashclient"},{"download_count":115459,"project":"ppscore"},{"download_count":115396,"project":"emmet-core"},{"download_count":115291,"project":"ipynbname"},{"download_count":115220,"project":"deepeval"},{"download_count":115214,"project":"dawg-python"},{"download_count":115188,"project":"pytest-tornasync"},{"download_count":115176,"project":"oslo-db"},{"download_count":115150,"project":"cognite-sdk"},{"download_count":115111,"project":"flex"},{"download_count":115064,"project":"iso-639"},{"download_count":114975,"project":"pwntools"},{"download_count":114926,"project":"django-simple-captcha"},{"download_count":114833,"project":"httpx-cache"},{"download_count":114833,"project":"stream-zip"},{"download_count":114818,"project":"b2sdk"},{"download_count":114813,"project":"coqpit"},{"download_count":114803,"project":"buildkite-test-collector"},{"download_count":114749,"project":"maison"},{"download_count":114718,"project":"python-irodsclient"},{"download_count":114718,"project":"openapi-python-client"},{"download_count":114639,"project":"django-safedelete"},{"download_count":114620,"project":"pdfminer2"},{"download_count":114609,"project":"pyrad"},{"download_count":114598,"project":"sparse-dot-topn"},{"download_count":114483,"project":"unlzw3"},{"download_count":114455,"project":"subprocess-run"},{"download_count":114453,"project":"spacy-curated-transformers"},{"download_count":114439,"project":"colorhash"},{"download_count":114426,"project":"tgi"},{"download_count":114340,"project":"wsaccel"},{"download_count":114337,"project":"subprocrunner"},{"download_count":114316,"project":"django-cache-memoize"},{"download_count":114213,"project":"fastembed"},{"download_count":114135,"project":"pyglove"},{"download_count":114103,"project":"pyepics"},{"download_count":114101,"project":"clip-interrogator"},{"download_count":114092,"project":"panphon"},{"download_count":113998,"project":"types-enum34"},{"download_count":113985,"project":"gpsoauth"},{"download_count":113959,"project":"cwcwidth"},{"download_count":113948,"project":"azure-communication-sms"},{"download_count":113911,"project":"kiwipiepy"},{"download_count":113891,"project":"subgrounds"},{"download_count":113865,"project":"pyqt5-tools"},{"download_count":113784,"project":"logstash-formatter"},{"download_count":113740,"project":"databricks-labs-blueprint"},{"download_count":113734,"project":"aiogoogle"},{"download_count":113734,"project":"phx-class-registry"},{"download_count":113720,"project":"oslo-messaging"},{"download_count":113700,"project":"ssh-python"},{"download_count":113673,"project":"mlzlog"},{"download_count":113628,"project":"onnxoptimizer"},{"download_count":113610,"project":"airflow-mcd"},{"download_count":113601,"project":"apache-airflow-providers-presto"},{"download_count":113591,"project":"pyjson5"},{"download_count":113517,"project":"django-vite"},{"download_count":113423,"project":"nvtx"},{"download_count":113391,"project":"transparent-background"},{"download_count":113321,"project":"hunspell"},{"download_count":113078,"project":"nlpaug"},{"download_count":113020,"project":"eciespy"},{"download_count":112926,"project":"editdistpy"},{"download_count":112873,"project":"llama-index-llms-ibm"},{"download_count":112768,"project":"ale-py"},{"download_count":112651,"project":"intel-cmplr-lib-ur"},{"download_count":112627,"project":"autogluon-core"},{"download_count":112627,"project":"torchlibrosa"},{"download_count":112567,"project":"curated-transformers"},{"download_count":112494,"project":"libarchive"},{"download_count":112417,"project":"sagemaker-containers"},{"download_count":112415,"project":"bloom-filter2"},{"download_count":112322,"project":"ropgadget"},{"download_count":112242,"project":"awkward0"},{"download_count":112165,"project":"llama-index-embeddings-ibm"},{"download_count":111991,"project":"flask-pydantic"},{"download_count":111935,"project":"geonamescache"},{"download_count":111887,"project":"dictances"},{"download_count":111876,"project":"wagon"},{"download_count":111863,"project":"opentracing-utils"},{"download_count":111858,"project":"django-sass-processor"},{"download_count":111856,"project":"k-diffusion"},{"download_count":111830,"project":"uproot3"},{"download_count":111828,"project":"uproot3-methods"},{"download_count":111700,"project":"oslo-service"},{"download_count":111650,"project":"schema-salad"},{"download_count":111620,"project":"pywatchman"},{"download_count":111618,"project":"django-hosts"},{"download_count":111567,"project":"python-math"},{"download_count":111554,"project":"opencensus-ext-stackdriver"},{"download_count":111524,"project":"curated-tokenizers"},{"download_count":111464,"project":"saxonche"},{"download_count":111428,"project":"timg"},{"download_count":111412,"project":"codacy-coverage"},{"download_count":111374,"project":"getschema"},{"download_count":111363,"project":"fds-sdk-utils"},{"download_count":111305,"project":"squarify"},{"download_count":111251,"project":"otel-extensions"},{"download_count":111192,"project":"readthedocs-sphinx-ext"},{"download_count":111179,"project":"st-theme"},{"download_count":111161,"project":"databricks-sql"},{"download_count":111139,"project":"undecorated"},{"download_count":111057,"project":"sceptre"},{"download_count":111029,"project":"django-haystack"},{"download_count":110988,"project":"oslo-middleware"},{"download_count":110984,"project":"paver"},{"download_count":110878,"project":"pycron"},{"download_count":110827,"project":"cwltool"},{"download_count":110810,"project":"fonts"},{"download_count":110742,"project":"sanic-cors"},{"download_count":110738,"project":"logfury"},{"download_count":110696,"project":"sqlacodegen"},{"download_count":110633,"project":"python-hosts"},{"download_count":110517,"project":"hubspot"},{"download_count":110451,"project":"brewer2mpl"},{"download_count":110401,"project":"pytest-shutil"},{"download_count":110345,"project":"types-aioboto3"},{"download_count":110322,"project":"xvfbwrapper"},{"download_count":110289,"project":"duplocloud-client"},{"download_count":110284,"project":"schedulefree"},{"download_count":110232,"project":"minijinja"},{"download_count":110183,"project":"skolemizer"},{"download_count":110164,"project":"pyarabic"},{"download_count":110109,"project":"snakes"},{"download_count":110104,"project":"secweb"},{"download_count":110059,"project":"simplejpeg"},{"download_count":110023,"project":"rpm"},{"download_count":110009,"project":"yamlfix"},{"download_count":109959,"project":"types-stripe"},{"download_count":109922,"project":"stestr"},{"download_count":109887,"project":"cycode"},{"download_count":109874,"project":"colored-traceback"},{"download_count":109753,"project":"pyyml"},{"download_count":109640,"project":"datapackage"},{"download_count":109631,"project":"jsun"},{"download_count":109595,"project":"dtw-python"},{"download_count":109442,"project":"dspy-ai"},{"download_count":109423,"project":"redislite"},{"download_count":109414,"project":"collectfast"},{"download_count":109393,"project":"setuptools-dso"},{"download_count":109343,"project":"periodictable"},{"download_count":109328,"project":"chomsky"},{"download_count":109283,"project":"datashader"},{"download_count":109282,"project":"sudachidict-full"},{"download_count":109263,"project":"keyphrase-vectorizers"},{"download_count":109259,"project":"yolov5"},{"download_count":109246,"project":"python-vlc"},{"download_count":109246,"project":"autogluon-features"},{"download_count":109199,"project":"locales"},{"download_count":109139,"project":"python-heatclient"},{"download_count":109118,"project":"dash-auth"},{"download_count":109074,"project":"click-completion"},{"download_count":109068,"project":"serverlessrepo"},{"download_count":109068,"project":"icu"},{"download_count":109063,"project":"bullet"},{"download_count":109054,"project":"pot"},{"download_count":109027,"project":"types-mysqlclient"},{"download_count":108973,"project":"rcon"},{"download_count":108925,"project":"tap-aftership"},{"download_count":108917,"project":"tap-gladly"},{"download_count":108900,"project":"cpymad"},{"download_count":108897,"project":"pytest-reporter-html1"},{"download_count":108818,"project":"dol"},{"download_count":108776,"project":"django-jsonfield"},{"download_count":108742,"project":"minrpc"},{"download_count":108734,"project":"luhn"},{"download_count":108732,"project":"autogluon-tabular"},{"download_count":108732,"project":"huggingface"},{"download_count":108708,"project":"supervisely"},{"download_count":108599,"project":"smartlingapisdk"},{"download_count":108594,"project":"async-exit-stack"},{"download_count":108593,"project":"sas7bdat"},{"download_count":108570,"project":"tls-client"},{"download_count":108537,"project":"django-heroku"},{"download_count":108439,"project":"lumigo-core"},{"download_count":108310,"project":"django-timestampable"},{"download_count":108260,"project":"devpi-common"},{"download_count":108215,"project":"dm-control"},{"download_count":108178,"project":"owlrl"},{"download_count":108166,"project":"git-url-parse"},{"download_count":108127,"project":"distinctipy"},{"download_count":108124,"project":"pgi"},{"download_count":108097,"project":"dearpygui"},{"download_count":108093,"project":"pyqt-builder"},{"download_count":108076,"project":"streamlit-profiler"},{"download_count":107995,"project":"sarif-tools"},{"download_count":107921,"project":"datetime-truncate"},{"download_count":107912,"project":"eth-tester"},{"download_count":107866,"project":"fast-curator"},{"download_count":107863,"project":"mrjob"},{"download_count":107801,"project":"ggplot"},{"download_count":107799,"project":"hive-metastore-client"},{"download_count":107798,"project":"pymsalruntime"},{"download_count":107768,"project":"rst2pdf"},{"download_count":107692,"project":"notifications-python-client"},{"download_count":107663,"project":"nassl"},{"download_count":107624,"project":"reno"},{"download_count":107589,"project":"nvgpu"},{"download_count":107530,"project":"slugid"},{"download_count":107496,"project":"asyncua"},{"download_count":107435,"project":"ccimport"},{"download_count":107382,"project":"ansible-pylibssh"},{"download_count":107373,"project":"bpython"},{"download_count":107312,"project":"alibabacloud-tea"},{"download_count":107309,"project":"flake8-mutable"},{"download_count":107286,"project":"py-cord"},{"download_count":107256,"project":"is-disposable-email"},{"download_count":107215,"project":"exrex"},{"download_count":107060,"project":"gmr"},{"download_count":107052,"project":"pccm"},{"download_count":106997,"project":"scikit-learn-intelex"},{"download_count":106897,"project":"pdfreader"},{"download_count":106799,"project":"pylint-junit"},{"download_count":106690,"project":"ansible-builder"},{"download_count":106676,"project":"pystyle"},{"download_count":106651,"project":"xdis"},{"download_count":106630,"project":"daal4py"},{"download_count":106622,"project":"fabric3"},{"download_count":106615,"project":"pyrender"},{"download_count":106530,"project":"python-consul2"},{"download_count":106519,"project":"unix-ar"},{"download_count":106518,"project":"pytest-insta"},{"download_count":106501,"project":"google-cloud-retail"},{"download_count":106455,"project":"ilock"},{"download_count":106451,"project":"wtforms-validators"},{"download_count":106404,"project":"awscli-plugin-s3-proxy"},{"download_count":106404,"project":"koheesio"},{"download_count":106349,"project":"csv23"},{"download_count":106279,"project":"django-encrypted-model-fields"},{"download_count":106260,"project":"libtmux"},{"download_count":106223,"project":"types-jmespath"},{"download_count":106190,"project":"pypugjs"},{"download_count":106102,"project":"dj-stripe"},{"download_count":106087,"project":"csaps"},{"download_count":106084,"project":"ruamel-base"},{"download_count":105992,"project":"dash-daq"},{"download_count":105989,"project":"llama-index-llms-watsonx"},{"download_count":105977,"project":"update"},{"download_count":105964,"project":"unittest-data-provider"},{"download_count":105947,"project":"ansible-vault"},{"download_count":105860,"project":"vabene"},{"download_count":105782,"project":"pafy"},{"download_count":105665,"project":"luaparser"},{"download_count":105644,"project":"pgspecial"},{"download_count":105501,"project":"dctorch"},{"download_count":105491,"project":"mt-940"},{"download_count":105470,"project":"django-parler"},{"download_count":105454,"project":"bnunicodenormalizer"},{"download_count":105450,"project":"oslo-cache"},{"download_count":105437,"project":"g2pkk"},{"download_count":105422,"project":"ultimate-hosts-blacklist-helpers"},{"download_count":105410,"project":"reretry"},{"download_count":105378,"project":"flask-openapi3"},{"download_count":105341,"project":"nemo-text-processing"},{"download_count":105279,"project":"seeq"},{"download_count":105250,"project":"persist-queue"},{"download_count":105200,"project":"snaptime"},{"download_count":105110,"project":"devpi-client"},{"download_count":104996,"project":"pyangbind"},{"download_count":104935,"project":"doublemetaphone"},{"download_count":104879,"project":"tushare"},{"download_count":104779,"project":"mwclient"},{"download_count":104713,"project":"cqlsh"},{"download_count":104666,"project":"jupyter-dash"},{"download_count":104574,"project":"flake8-typing-imports"},{"download_count":104506,"project":"pygtrans"},{"download_count":104457,"project":"kagglehub"},{"download_count":104437,"project":"zxing-cpp"},{"download_count":104405,"project":"cython-bbox"},{"download_count":104340,"project":"mutf8"},{"download_count":104298,"project":"fds-protobuf-stach-v2"},{"download_count":104294,"project":"fds-protobuf-stach"},{"download_count":104292,"project":"shipyard-templates"},{"download_count":104286,"project":"fds-protobuf-stach-extensions"},{"download_count":104270,"project":"iterators"},{"download_count":104218,"project":"flask-celery"},{"download_count":104192,"project":"azure-databricks-api"},{"download_count":104190,"project":"playsound"},{"download_count":104186,"project":"pip-compile-multi"},{"download_count":104156,"project":"flask-json"},{"download_count":104111,"project":"plexapi"},{"download_count":104108,"project":"keystonemiddleware"},{"download_count":104090,"project":"font-roboto"},{"download_count":104085,"project":"dumb-init"},{"download_count":104075,"project":"rasterstats"},{"download_count":104063,"project":"spark-parser"},{"download_count":104046,"project":"vokativ"},{"download_count":104011,"project":"google-cloud-alloydb-connector"},{"download_count":103943,"project":"contexttimer"},{"download_count":103911,"project":"tavily-python"},{"download_count":103861,"project":"lastversion"},{"download_count":103815,"project":"fds-sdk-paengine"},{"download_count":103763,"project":"githubpy"},{"download_count":103742,"project":"simpleparse"},{"download_count":103740,"project":"django-statici18n"},{"download_count":103670,"project":"fds-sdk-sparengine"},{"download_count":103666,"project":"django-postgres-extra"},{"download_count":103485,"project":"loky"},{"download_count":103467,"project":"netutils"},{"download_count":103447,"project":"djangorestframework-recursive"},{"download_count":103427,"project":"strsim"},{"download_count":103396,"project":"sqlalchemy-pytds"},{"download_count":103395,"project":"geolib"},{"download_count":103369,"project":"sshfs"},{"download_count":103319,"project":"compose"},{"download_count":103283,"project":"shodan"},{"download_count":103273,"project":"tensorflow-ranking"},{"download_count":103203,"project":"api4jenkins"},{"download_count":103199,"project":"knnimpute"},{"download_count":103195,"project":"pyexcel-xls"},{"download_count":103006,"project":"dataframe-image"},{"download_count":102974,"project":"parameters-validation"},{"download_count":102960,"project":"seeq-spy"},{"download_count":102938,"project":"recurrent"},{"download_count":102934,"project":"mozlog"},{"download_count":102909,"project":"punch-py"},{"download_count":102887,"project":"2to3"},{"download_count":102887,"project":"taskcluster-urls"},{"download_count":102814,"project":"dagster-prometheus"},{"download_count":102814,"project":"dataclasses-jsonschema"},{"download_count":102750,"project":"yamlpath"},{"download_count":102742,"project":"lesscpy"},{"download_count":102696,"project":"torchvinecopulib"},{"download_count":102689,"project":"sphinxcontrib-apidoc"},{"download_count":102682,"project":"stop-words"},{"download_count":102676,"project":"mindsdb-sql"},{"download_count":102650,"project":"cloudscale-sdk"},{"download_count":102649,"project":"zodb3"},{"download_count":102644,"project":"aspy-refactor-imports"},{"download_count":102522,"project":"hangul-romanize"},{"download_count":102493,"project":"asdf"},{"download_count":102448,"project":"neptune"},{"download_count":102418,"project":"basemap"},{"download_count":102378,"project":"scikit-surprise"},{"download_count":102372,"project":"dynamodb-encryption-sdk"},{"download_count":102336,"project":"pip-upgrader"},{"download_count":102274,"project":"stytch"},{"download_count":102273,"project":"django-browser-reload"},{"download_count":102259,"project":"pyroma"},{"download_count":102257,"project":"fastapi-users"},{"download_count":102256,"project":"jupyter-leaflet"},{"download_count":102235,"project":"pycln"},{"download_count":102218,"project":"edge-tts"},{"download_count":102198,"project":"htag"},{"download_count":102177,"project":"mkdocs-include-dir-to-nav"},{"download_count":102111,"project":"pytest-freezer"},{"download_count":102106,"project":"pyarmor-cli-core"},{"download_count":102077,"project":"flask-log-request-id"},{"download_count":102049,"project":"scalecodec"},{"download_count":102018,"project":"contrast-agent-lib"},{"download_count":101878,"project":"htmllistparse"},{"download_count":101839,"project":"google-cloud-billing"},{"download_count":101807,"project":"pybind11-stubgen"},{"download_count":101787,"project":"svgelements"},{"download_count":101783,"project":"horovod"},{"download_count":101772,"project":"pyhdfe"},{"download_count":101765,"project":"opencensus-ext-threading"},{"download_count":101653,"project":"lakefs-client"},{"download_count":101601,"project":"sockio"},{"download_count":101578,"project":"ultimate-hosts-blacklist-test-launcher"},{"download_count":101563,"project":"ema-pytorch"},{"download_count":101500,"project":"taskcluster"},{"download_count":101499,"project":"serialio"},{"download_count":101484,"project":"trufflehogregexes"},{"download_count":101458,"project":"django-pandas"},{"download_count":101454,"project":"ax-platform"},{"download_count":101439,"project":"connio"},{"download_count":101383,"project":"asyncmock"},{"download_count":101344,"project":"labmaze"},{"download_count":101310,"project":"alt-profanity-check"},{"download_count":101308,"project":"cyvcf2"},{"download_count":101250,"project":"datasetsforecast"},{"download_count":101211,"project":"skyfield-data"},{"download_count":101144,"project":"sphinx-external-toc"},{"download_count":101060,"project":"fluids"},{"download_count":100995,"project":"uuid-utils"},{"download_count":100970,"project":"quantulum3"},{"download_count":100958,"project":"fal-client"},{"download_count":100899,"project":"aws-lambda-context"},{"download_count":100876,"project":"check-wheel-contents"},{"download_count":100834,"project":"compressed-tensors"},{"download_count":100806,"project":"botbuilder-schema"},{"download_count":100803,"project":"axiom-py"},{"download_count":100780,"project":"auto-py-to-exe"},{"download_count":100768,"project":"pyone"},{"download_count":100739,"project":"sumologic-sdk"},{"download_count":100693,"project":"fireblocks-sdk"},{"download_count":100670,"project":"flake8-django"},{"download_count":100598,"project":"islpy"},{"download_count":100598,"project":"stream-inflate"},{"download_count":100440,"project":"numpyencoder"},{"download_count":100403,"project":"openvpn-status"},{"download_count":100389,"project":"epitran"},{"download_count":100365,"project":"codefind"},{"download_count":100338,"project":"pyspelling"},{"download_count":100306,"project":"tensorly"},{"download_count":100268,"project":"launchpadlib"},{"download_count":100256,"project":"ipyevents"},{"download_count":100242,"project":"datashape"},{"download_count":100235,"project":"python-facebook-api"},{"download_count":100201,"project":"airportsdata"},{"download_count":100194,"project":"blockdiag"},{"download_count":100187,"project":"exhale"},{"download_count":100187,"project":"inference-cli"},{"download_count":100170,"project":"pystow"},{"download_count":100076,"project":"noiseprotocol"},{"download_count":100014,"project":"traceback-with-variables"},{"download_count":99992,"project":"pytest-cache"},{"download_count":99942,"project":"pytest-grpc"},{"download_count":99824,"project":"copulas"},{"download_count":99814,"project":"juju"},{"download_count":99801,"project":"dsdobjects"},{"download_count":99682,"project":"sinethesizer"},{"download_count":99581,"project":"ahocorapy"},{"download_count":99543,"project":"pypi-json"},{"download_count":99540,"project":"read"},{"download_count":99495,"project":"types-backports"},{"download_count":99426,"project":"flask-security-too"},{"download_count":99409,"project":"jsoncsv"},{"download_count":99386,"project":"python-barbicanclient"},{"download_count":99352,"project":"fissix"},{"download_count":99345,"project":"ara"},{"download_count":99249,"project":"pytest-mpl"},{"download_count":99209,"project":"assemblyai"},{"download_count":99195,"project":"pandas-access"},{"download_count":99191,"project":"tensorrt-cu12"},{"download_count":99146,"project":"unsloth-zoo"},{"download_count":99129,"project":"aws-sso-util"},{"download_count":99113,"project":"qualname"},{"download_count":99007,"project":"pykalman"},{"download_count":98979,"project":"pyro5"},{"download_count":98970,"project":"deprecation-alias"},{"download_count":98924,"project":"vessl"},{"download_count":98872,"project":"fontawesome-markdown"},{"download_count":98856,"project":"python-gdcm"},{"download_count":98809,"project":"dtreeviz"},{"download_count":98808,"project":"edk2-pytool-extensions"},{"download_count":98802,"project":"mgzip"},{"download_count":98796,"project":"pycld3"},{"download_count":98773,"project":"wavefront-sdk-python"},{"download_count":98748,"project":"pystemmer"},{"download_count":98639,"project":"dsnparse"},{"download_count":98514,"project":"google-cloud-bigquery-connection"},{"download_count":98406,"project":"colcon-core"},{"download_count":98293,"project":"pytest-explicit"},{"download_count":98286,"project":"paramz"},{"download_count":98271,"project":"oslo-metrics"},{"download_count":98267,"project":"shimmy"},{"download_count":98173,"project":"drf-standardized-errors"},{"download_count":98132,"project":"envsubst"},{"download_count":98127,"project":"cruft"},{"download_count":98080,"project":"consolekit"},{"download_count":98075,"project":"sceptre-cmd-resolver"},{"download_count":98017,"project":"flake8-pyi"},{"download_count":97997,"project":"asdf-standard"},{"download_count":97981,"project":"panda3d-gltf"},{"download_count":97930,"project":"asdf-transform-schemas"},{"download_count":97883,"project":"oslo-upgradecheck"},{"download_count":97877,"project":"flake8-colors"},{"download_count":97813,"project":"sphinx-issues"},{"download_count":97806,"project":"colcon-devtools"},{"download_count":97751,"project":"sslyze"},{"download_count":97731,"project":"kodi-addon-checker"},{"download_count":97731,"project":"sceptre-file-resolver"},{"download_count":97723,"project":"panda3d-simplepbr"},{"download_count":97710,"project":"laces"},{"download_count":97695,"project":"globus-sdk"},{"download_count":97646,"project":"aesara"},{"download_count":97539,"project":"dtaidistance"},{"download_count":97530,"project":"bangla"},{"download_count":97529,"project":"django-graphql-jwt"},{"download_count":97500,"project":"pytest-cover"},{"download_count":97387,"project":"poster3"},{"download_count":97332,"project":"onigurumacffi"},{"download_count":97304,"project":"dagster-snowflake-pandas"},{"download_count":97295,"project":"hdmf"},{"download_count":97233,"project":"gluonnlp"},{"download_count":97211,"project":"endesive"},{"download_count":97200,"project":"python-libsbml"},{"download_count":97198,"project":"mda-xdrlib"},{"download_count":97182,"project":"argostranslate"},{"download_count":97158,"project":"mmcv"},{"download_count":97139,"project":"aiojobs"},{"download_count":97135,"project":"dedupe-variable-datetime"},{"download_count":97096,"project":"sexpdata"},{"download_count":97081,"project":"aioodbc"},{"download_count":97074,"project":"gpyreg"},{"download_count":97074,"project":"django-rest-polymorphic"},{"download_count":97068,"project":"slackweb"},{"download_count":97055,"project":"pycadf"},{"download_count":97011,"project":"python-i18n"},{"download_count":97009,"project":"pytest-depends"},{"download_count":96915,"project":"onnx-simplifier"},{"download_count":96902,"project":"pypsexec"},{"download_count":96887,"project":"fancyimpute"},{"download_count":96863,"project":"gruut-lang-en"},{"download_count":96816,"project":"django-better-admin-arrayfield"},{"download_count":96804,"project":"ultimate-hosts-blacklist-whitelist"},{"download_count":96789,"project":"pytest-isort"},{"download_count":96775,"project":"dash-mantine-components"},{"download_count":96736,"project":"sacred"},{"download_count":96714,"project":"dask-ml"},{"download_count":96707,"project":"json-e"},{"download_count":96693,"project":"legacy-api-wrap"},{"download_count":96693,"project":"opentelemetry-instrumentation-sklearn"},{"download_count":96689,"project":"habluetooth"},{"download_count":96650,"project":"snakemake"},{"download_count":96647,"project":"enmerkar"},{"download_count":96606,"project":"pyap"},{"download_count":96601,"project":"apache-airflow-providers-apache-pinot"},{"download_count":96588,"project":"pyinvoke"},{"download_count":96571,"project":"alibabacloud-tea-openapi"},{"download_count":96533,"project":"gruut-ipa"},{"download_count":96517,"project":"flair"},{"download_count":96477,"project":"aiohttp-session"},{"download_count":96461,"project":"functools"},{"download_count":96250,"project":"lazr-restfulclient"},{"download_count":96249,"project":"tensorflow-cpu-aws"},{"download_count":96194,"project":"g2pk"},{"download_count":96142,"project":"ucimlrepo"},{"download_count":96136,"project":"flake8-import-restrictions"},{"download_count":96135,"project":"django-jsonform"},{"download_count":96112,"project":"botframework-connector"},{"download_count":96085,"project":"bridgecrew"},{"download_count":96074,"project":"hdijupyterutils"},{"download_count":96053,"project":"sphinxemoji"},{"download_count":96012,"project":"vat-utils"},{"download_count":95907,"project":"passwordgenerator"},{"download_count":95903,"project":"flask-sso"},{"download_count":95815,"project":"thoth-common"},{"download_count":95776,"project":"pyduktape"},{"download_count":95771,"project":"pymcubes"},{"download_count":95724,"project":"bagit"},{"download_count":95674,"project":"pytest-tap"},{"download_count":95666,"project":"pyuwsgi"},{"download_count":95649,"project":"thoth-python"},{"download_count":95615,"project":"django-push-notifications"},{"download_count":95610,"project":"mailer"},{"download_count":95593,"project":"sphinx-immaterial"},{"download_count":95525,"project":"ezodf"},{"download_count":95515,"project":"thoth-analyzer"},{"download_count":95512,"project":"virustotal3"},{"download_count":95509,"project":"urllib3-future"},{"download_count":95456,"project":"ncnn"},{"download_count":95451,"project":"plan-tools"},{"download_count":95444,"project":"flake8-markdown"},{"download_count":95387,"project":"django-rest-framework"},{"download_count":95345,"project":"python-osc"},{"download_count":95305,"project":"nemo-toolkit"},{"download_count":95295,"project":"traceml"},{"download_count":95285,"project":"recurly"},{"download_count":95245,"project":"colcon-python-setup-py"},{"download_count":95241,"project":"pysrt"},{"download_count":95183,"project":"arize"},{"download_count":95072,"project":"eql"},{"download_count":95045,"project":"leval"},{"download_count":95025,"project":"autovizwidget"},{"download_count":95010,"project":"spacy-pkuseg"},{"download_count":94987,"project":"qiskit-terra"},{"download_count":94960,"project":"frappe-bench"},{"download_count":94950,"project":"spyne"},{"download_count":94903,"project":"colcon-test-result"},{"download_count":94898,"project":"compel"},{"download_count":94894,"project":"pyclean"},{"download_count":94834,"project":"samsungtvws"},{"download_count":94826,"project":"tkmacosx"},{"download_count":94789,"project":"autogluon-common"},{"download_count":94784,"project":"aws-cdk-aws-events-targets"},{"download_count":94761,"project":"colcon-cmake"},{"download_count":94760,"project":"colcon-ros"},{"download_count":94735,"project":"polygon-geohasher"},{"download_count":94710,"project":"firebase-functions"},{"download_count":94689,"project":"hass-nabucasa"},{"download_count":94573,"project":"django-q"},{"download_count":94563,"project":"colcon-recursive-crawl"},{"download_count":94515,"project":"simdkalman"},{"download_count":94442,"project":"basemap-data"},{"download_count":94441,"project":"mozilla-version"},{"download_count":94420,"project":"colcon-library-path"},{"download_count":94413,"project":"simsimd"},{"download_count":94410,"project":"gidgethub"},{"download_count":94383,"project":"curies"},{"download_count":94340,"project":"pbkdf2"},{"download_count":94334,"project":"ytmusicapi"},{"download_count":94310,"project":"rapidocr-onnxruntime"},{"download_count":94289,"project":"mlserver-mlflow"},{"download_count":94271,"project":"kodistubs"},{"download_count":94165,"project":"pyroscope-io"},{"download_count":94154,"project":"stream-unzip"},{"download_count":94034,"project":"epicscorelibs"},{"download_count":94028,"project":"windows-curses"},{"download_count":93986,"project":"colcon-common-extensions"},{"download_count":93977,"project":"edx-django-utils"},{"download_count":93970,"project":"clamd"},{"download_count":93940,"project":"bleach-allowlist"},{"download_count":93938,"project":"dbt-trino"},{"download_count":93868,"project":"fold-to-ascii"},{"download_count":93864,"project":"skypilot"},{"download_count":93858,"project":"pyinputplus"},{"download_count":93837,"project":"validated-dc"},{"download_count":93769,"project":"pysimplevalidate"},{"download_count":93722,"project":"sortednp"},{"download_count":93707,"project":"rjieba"},{"download_count":93617,"project":"dash-extensions"},{"download_count":93582,"project":"enum-tools"},{"download_count":93551,"project":"colcon-notification"},{"download_count":93541,"project":"gruut-lang-de"},{"download_count":93521,"project":"torch-stoi"},{"download_count":93486,"project":"aws-cdk-aws-imagebuilder"},{"download_count":93462,"project":"colcon-package-information"},{"download_count":93426,"project":"colcon-powershell"},{"download_count":93415,"project":"more-click"},{"download_count":93409,"project":"colcon-defaults"},{"download_count":93400,"project":"colcon-parallel-executor"},{"download_count":93395,"project":"colcon-output"},{"download_count":93366,"project":"whois"},{"download_count":93348,"project":"anymarkup-core"},{"download_count":93347,"project":"aristaproto"},{"download_count":93297,"project":"sphinx-lint"},{"download_count":93289,"project":"colcon-pkg-config"},{"download_count":93271,"project":"cornice"},{"download_count":93249,"project":"growthbook"},{"download_count":93235,"project":"colcon-package-selection"},{"download_count":93215,"project":"json-flatten"},{"download_count":93204,"project":"str2bool"},{"download_count":93194,"project":"colcon-metadata"},{"download_count":93081,"project":"gruut-lang-es"},{"download_count":93008,"project":"vici"},{"download_count":92969,"project":"anymarkup"},{"download_count":92957,"project":"gruut"},{"download_count":92934,"project":"spconv-cu120"},{"download_count":92933,"project":"pastescript"},{"download_count":92923,"project":"manifestoo-core"},{"download_count":92916,"project":"dash-renderer"},{"download_count":92874,"project":"ttp-templates"},{"download_count":92849,"project":"logtail-python"},{"download_count":92800,"project":"pytrec-eval-terrier"},{"download_count":92784,"project":"ebooklib"},{"download_count":92738,"project":"kivy-deps-sdl2"},{"download_count":92622,"project":"trainer"},{"download_count":92581,"project":"iniparse"},{"download_count":92518,"project":"kappa"},{"download_count":92512,"project":"cgroupspy"},{"download_count":92503,"project":"transformers-stream-generator"},{"download_count":92456,"project":"azureml-automl-runtime"},{"download_count":92447,"project":"multiurl"},{"download_count":92428,"project":"docdata"},{"download_count":92254,"project":"flask-opentracing"},{"download_count":92237,"project":"pdqhash"},{"download_count":92205,"project":"nuscenes-devkit"},{"download_count":92199,"project":"pedalboard"},{"download_count":92146,"project":"supermorecado"},{"download_count":92080,"project":"types-filelock"},{"download_count":92073,"project":"jupyter-book"},{"download_count":91948,"project":"pylatex"},{"download_count":91875,"project":"aqtp"},{"download_count":91857,"project":"auto-gptq"},{"download_count":91818,"project":"wait-for-it"},{"download_count":91807,"project":"docopts"},{"download_count":91805,"project":"ipyslickgrid"},{"download_count":91779,"project":"elabjournal"},{"download_count":91745,"project":"zhon"},{"download_count":91714,"project":"niquests"},{"download_count":91677,"project":"djangoql"},{"download_count":91670,"project":"rigelcore"},{"download_count":91660,"project":"desert"},{"download_count":91649,"project":"snitun"},{"download_count":91626,"project":"redmail"},{"download_count":91604,"project":"proxy-tools"},{"download_count":91599,"project":"pylsl"},{"download_count":91534,"project":"httpsig"},{"download_count":91482,"project":"fastapi-azure-auth"},{"download_count":91453,"project":"colorspacious"},{"download_count":91407,"project":"soundcard"},{"download_count":91398,"project":"adbc-driver-manager"},{"download_count":91398,"project":"django-bootstrap-form"},{"download_count":91377,"project":"bluetooth-data-tools"},{"download_count":91359,"project":"codecov-cli"},{"download_count":91354,"project":"ipyfilechooser"},{"download_count":91323,"project":"gruut-lang-fr"},{"download_count":91278,"project":"abacusai"},{"download_count":91275,"project":"openupgradelib"},{"download_count":91242,"project":"pyflux"},{"download_count":91226,"project":"vaex-core"},{"download_count":91224,"project":"wassima"},{"download_count":91214,"project":"iyzipay"},{"download_count":91211,"project":"rigel-hpl"},{"download_count":91197,"project":"notify-py"},{"download_count":91193,"project":"basepair"},{"download_count":91179,"project":"wikipedia-api"},{"download_count":91146,"project":"iminuit"},{"download_count":91134,"project":"pytest-coverage"},{"download_count":91118,"project":"pulp-glue"},{"download_count":91105,"project":"no-implicit-optional"},{"download_count":91099,"project":"sparkpost"},{"download_count":91085,"project":"cumm-cu120"},{"download_count":90999,"project":"sshconf"},{"download_count":90925,"project":"django-apscheduler"},{"download_count":90907,"project":"bluetooth-auto-recovery"},{"download_count":90843,"project":"pvxslibs"},{"download_count":90818,"project":"tflite-support"},{"download_count":90799,"project":"plette"},{"download_count":90783,"project":"opentelemetry-exporter-gcp-monitoring"},{"download_count":90783,"project":"globre"},{"download_count":90736,"project":"retina-face"},{"download_count":90736,"project":"azureml-train"},{"download_count":90604,"project":"opensearch-logger"},{"download_count":90589,"project":"instructorembedding"},{"download_count":90534,"project":"pandas-redshift"},{"download_count":90495,"project":"databricks-mosaic"},{"download_count":90438,"project":"ps-mem"},{"download_count":90430,"project":"bigtree"},{"download_count":90411,"project":"graphene-file-upload"},{"download_count":90368,"project":"pynwb"},{"download_count":90348,"project":"pymupdf4llm"},{"download_count":90316,"project":"pynmeagps"},{"download_count":90268,"project":"quaternion"},{"download_count":90259,"project":"selenium-screenshot"},{"download_count":90228,"project":"pilgram"},{"download_count":90177,"project":"packed"},{"download_count":90095,"project":"aioprometheus"},{"download_count":90087,"project":"nlopt"},{"download_count":90082,"project":"allure-combine"},{"download_count":90039,"project":"wadllib"},{"download_count":89995,"project":"datadogpy"},{"download_count":89950,"project":"dtale"},{"download_count":89933,"project":"btsocket"},{"download_count":89870,"project":"gkeepapi"},{"download_count":89854,"project":"aioftp"},{"download_count":89836,"project":"pygeoif"},{"download_count":89835,"project":"botbuilder-core"},{"download_count":89815,"project":"pgdb"},{"download_count":89735,"project":"pytest-embedded"},{"download_count":89716,"project":"rdflib-jsonld"},{"download_count":89715,"project":"config-parser"},{"download_count":89660,"project":"aider-chat"},{"download_count":89603,"project":"punpy"},{"download_count":89564,"project":"comet-maths"},{"download_count":89557,"project":"civis"},{"download_count":89553,"project":"fs-sshfs"},{"download_count":89531,"project":"django-filer"},{"download_count":89513,"project":"ipadic"},{"download_count":89447,"project":"momepy"},{"download_count":89434,"project":"django-datadog-logger"},{"download_count":89432,"project":"pytorch-msssim"},{"download_count":89408,"project":"pyproject-toml"},{"download_count":89391,"project":"flagembedding"},{"download_count":89362,"project":"stldecompose"},{"download_count":89312,"project":"rtry"},{"download_count":89302,"project":"pyink"},{"download_count":89250,"project":"plotext"},{"download_count":89245,"project":"pydateinfer"},{"download_count":89180,"project":"thoth-storages"},{"download_count":89175,"project":"flask-misaka"},{"download_count":89146,"project":"thoth-license-solver"},{"download_count":89115,"project":"datatile"},{"download_count":89063,"project":"owslib"},{"download_count":89021,"project":"dagster-databricks"},{"download_count":89015,"project":"unicode"},{"download_count":88959,"project":"retry-requests"},{"download_count":88892,"project":"flake8-pydocstyle"},{"download_count":88855,"project":"reacton"},{"download_count":88837,"project":"sphinx-toggleprompt"},{"download_count":88821,"project":"pysed"},{"download_count":88814,"project":"mypy-boto3-ds-data"},{"download_count":88798,"project":"substrate-interface"},{"download_count":88781,"project":"ai21"},{"download_count":88777,"project":"ta-lib"},{"download_count":88734,"project":"transformer-smaller-training-vocab"},{"download_count":88733,"project":"pubnub"},{"download_count":88733,"project":"p4p"},{"download_count":88732,"project":"runtests"},{"download_count":88700,"project":"pycalverter"},{"download_count":88699,"project":"zulip"},{"download_count":88678,"project":"graphql-server-core"},{"download_count":88674,"project":"sqlalchemy-utc"},{"download_count":88558,"project":"jose"},{"download_count":88554,"project":"homebase"},{"download_count":88506,"project":"alibabacloud-tea-util"},{"download_count":88460,"project":"aws-cdk-aws-fsx"},{"download_count":88392,"project":"python-documentcloud"},{"download_count":88391,"project":"alibabacloud-credentials"},{"download_count":88389,"project":"pyctcdecode"},{"download_count":88372,"project":"listcrunch"},{"download_count":88316,"project":"docstr-coverage"},{"download_count":88141,"project":"code-annotations"},{"download_count":88140,"project":"spark-testing-base"},{"download_count":88105,"project":"ydf"},{"download_count":88062,"project":"odoo-test-helper"},{"download_count":88039,"project":"graphframes-latest"},{"download_count":88028,"project":"modelcards"},{"download_count":88013,"project":"trame"},{"download_count":87989,"project":"geckodriver-autoinstaller"},{"download_count":87980,"project":"mypy-boto3-marketplace-reporting"},{"download_count":87979,"project":"kivy-deps-angle"},{"download_count":87958,"project":"df2gspread"},{"download_count":87942,"project":"pytest-test-groups"},{"download_count":87941,"project":"dbt-sqlserver"},{"download_count":87937,"project":"pytest-describe"},{"download_count":87904,"project":"pyfftw"},{"download_count":87900,"project":"bioregistry"},{"download_count":87884,"project":"storable"},{"download_count":87874,"project":"arcgis2geojson"},{"download_count":87873,"project":"typesystem"},{"download_count":87854,"project":"astatine"},{"download_count":87803,"project":"jhi-databricksenvironment"},{"download_count":87663,"project":"pyddq"},{"download_count":87591,"project":"cosmospy-protobuf"},{"download_count":87588,"project":"msgpack-types"},{"download_count":87576,"project":"mediate"},{"download_count":87561,"project":"roster"},{"download_count":87557,"project":"haystack-pydoc-tools"},{"download_count":87550,"project":"ebaysdk"},{"download_count":87549,"project":"kivy-deps-glew"},{"download_count":87526,"project":"pandas-summary"},{"download_count":87525,"project":"sphinx-thebe"},{"download_count":87453,"project":"py-dmidecode"},{"download_count":87437,"project":"pytest-embedded-serial"},{"download_count":87399,"project":"dictknife"},{"download_count":87378,"project":"asdf-astropy"},{"download_count":87324,"project":"mcap-ros1-support"},{"download_count":87316,"project":"types-pywin32"},{"download_count":87316,"project":"tlslite-ng"},{"download_count":87315,"project":"browser-cookie3"},{"download_count":87311,"project":"fastremap"},{"download_count":87210,"project":"pycel"},{"download_count":87176,"project":"notify2"},{"download_count":87152,"project":"aws-parallelcluster"},{"download_count":87142,"project":"vonage"},{"download_count":87098,"project":"geometry3d"},{"download_count":87095,"project":"pypeln"},{"download_count":87090,"project":"proxy-db"},{"download_count":87090,"project":"alpinepkgs"},{"download_count":87078,"project":"equinox"},{"download_count":87066,"project":"alibabacloud-openapi-util"},{"download_count":86973,"project":"llama-index-embeddings-bedrock"},{"download_count":86891,"project":"django-types"},{"download_count":86855,"project":"ghstack"},{"download_count":86828,"project":"python-sonarqube-api"},{"download_count":86786,"project":"asdf-coordinates-schemas"},{"download_count":86726,"project":"blowfish"},{"download_count":86688,"project":"django-linear-migrations"},{"download_count":86680,"project":"pyplexity"},{"download_count":86639,"project":"nostradamus"},{"download_count":86625,"project":"rwslib"},{"download_count":86623,"project":"theano"},{"download_count":86612,"project":"ipydatawidgets"},{"download_count":86574,"project":"openmetadata-ingestion"},{"download_count":86568,"project":"dataclasses-json-speakeasy"},{"download_count":86509,"project":"torchfcpe"},{"download_count":86489,"project":"bumpver"},{"download_count":86485,"project":"xclim"},{"download_count":86472,"project":"datalab"},{"download_count":86460,"project":"ctgan"},{"download_count":86382,"project":"optimum-quanto"},{"download_count":86330,"project":"fastapi-restful"},{"download_count":86262,"project":"typos"},{"download_count":86176,"project":"qbittorrent-api"},{"download_count":86172,"project":"datacorecommon"},{"download_count":86169,"project":"nevergrad"},{"download_count":86121,"project":"nplusone"},{"download_count":86087,"project":"dask-glm"},{"download_count":86085,"project":"dython"},{"download_count":86073,"project":"lexid"},{"download_count":86041,"project":"pytest-embedded-idf"},{"download_count":85997,"project":"pyspark-extension"},{"download_count":85988,"project":"appdynamics"},{"download_count":85987,"project":"databricks-labs-lsql"},{"download_count":85985,"project":"s3urls"},{"download_count":85958,"project":"vcstool"},{"download_count":85838,"project":"linearmodels"},{"download_count":85809,"project":"httpx-oauth"},{"download_count":85791,"project":"tiktokapi"},{"download_count":85775,"project":"prophecy-libs"},{"download_count":85760,"project":"linetools"},{"download_count":85760,"project":"awxkit"},{"download_count":85752,"project":"telegram"},{"download_count":85655,"project":"pan-os-python"},{"download_count":85577,"project":"jh2"},{"download_count":85570,"project":"urlpath"},{"download_count":85546,"project":"pymantic"},{"download_count":85505,"project":"dash-ag-grid"},{"download_count":85504,"project":"flake8-block-comment"},{"download_count":85492,"project":"grnhse-api"},{"download_count":85476,"project":"pureport-python"},{"download_count":85467,"project":"petname"},{"download_count":85464,"project":"django-tenants"},{"download_count":85395,"project":"giddy"},{"download_count":85393,"project":"botframework-streaming"},{"download_count":85370,"project":"sagemaker-pyspark"},{"download_count":85348,"project":"bincopy"},{"download_count":85346,"project":"pytest-embedded-serial-esp"},{"download_count":85338,"project":"playwright-stealth"},{"download_count":85318,"project":"ordered-enum"},{"download_count":85317,"project":"sphinx-multitoc-numbering"},{"download_count":85317,"project":"trio-chrome-devtools-protocol"},{"download_count":85283,"project":"swagger-ui-py"},{"download_count":85251,"project":"pylti1p3"},{"download_count":85251,"project":"pyscard"},{"download_count":85240,"project":"r7insight-python"},{"download_count":85237,"project":"customerio"},{"download_count":85186,"project":"ddddocr"},{"download_count":85177,"project":"trufflehog"},{"download_count":85172,"project":"amazon-textract-textractor"},{"download_count":85117,"project":"flask-unittest"},{"download_count":85087,"project":"siphon"},{"download_count":85069,"project":"demjson"},{"download_count":85038,"project":"sty"},{"download_count":85035,"project":"pyinstrument-cext"},{"download_count":85024,"project":"e2b"},{"download_count":84942,"project":"onnx2tf"},{"download_count":84939,"project":"alibabacloud-endpoint-util"},{"download_count":84938,"project":"django-jinja"},{"download_count":84935,"project":"skforecast"},{"download_count":84911,"project":"py-bip39-bindings"},{"download_count":84816,"project":"flake8-executable"},{"download_count":84790,"project":"openqa-client"},{"download_count":84779,"project":"flake8-picky-parentheses"},{"download_count":84702,"project":"telnetlib3"},{"download_count":84700,"project":"robotpy-wpiutil"},{"download_count":84675,"project":"pypandoc-binary"},{"download_count":84665,"project":"jdatetime"},{"download_count":84643,"project":"pyad"},{"download_count":84642,"project":"cwl-utils"},{"download_count":84599,"project":"simhash"},{"download_count":84594,"project":"schemathesis"},{"download_count":84552,"project":"transformcl"},{"download_count":84532,"project":"exponent-server-sdk"},{"download_count":84519,"project":"promptflow-tools"},{"download_count":84452,"project":"xarray-datatree"},{"download_count":84452,"project":"djangorestframework-jsonapi"},{"download_count":84409,"project":"py-ed25519-zebra-bindings"},{"download_count":84385,"project":"python-gerrit-api"},{"download_count":84360,"project":"mkdocs-git-authors-plugin"},{"download_count":84342,"project":"keras-core"},{"download_count":84311,"project":"face-recognition-models"},{"download_count":84309,"project":"ai21-tokenizer"},{"download_count":84305,"project":"shutilwhich"},{"download_count":84304,"project":"edlib"},{"download_count":84293,"project":"simple-tornado"},{"download_count":84282,"project":"environ"},{"download_count":84263,"project":"adafruit-blinka"},{"download_count":84249,"project":"humbug"},{"download_count":84227,"project":"mapply"},{"download_count":84223,"project":"solara"},{"download_count":84221,"project":"keras-cv"},{"download_count":84127,"project":"sweetener"},{"download_count":84111,"project":"pymqi"},{"download_count":84084,"project":"datasketches"},{"download_count":84066,"project":"mediapy"},{"download_count":84045,"project":"pytest-redis"},{"download_count":84031,"project":"django-redis-cache"},{"download_count":84021,"project":"python-nmap"},{"download_count":84019,"project":"logging-json"},{"download_count":83994,"project":"spyder-kernels"},{"download_count":83940,"project":"strawberry-graphql-django"},{"download_count":83936,"project":"neologism"},{"download_count":83916,"project":"python-designateclient"},{"download_count":83908,"project":"pytest-embedded-qemu"},{"download_count":83894,"project":"apache-airflow-providers-asana"},{"download_count":83888,"project":"aws-cdk-aws-codepipeline"},{"download_count":83861,"project":"json2table"},{"download_count":83850,"project":"file-read-backwards"},{"download_count":83848,"project":"ec2instanceconnectcli"},{"download_count":83840,"project":"pytkdocs"},{"download_count":83840,"project":"azdev"},{"download_count":83836,"project":"reverse-geocode"},{"download_count":83720,"project":"robotpy-wpimath"},{"download_count":83580,"project":"django-etc"},{"download_count":83536,"project":"pypg"},{"download_count":83468,"project":"wslwinreg"},{"download_count":83396,"project":"business-rules"},{"download_count":83393,"project":"burger"},{"download_count":83390,"project":"django-upgrade"},{"download_count":83261,"project":"nicknames"},{"download_count":83250,"project":"taskflow"},{"download_count":83224,"project":"defcon"},{"download_count":83221,"project":"affinegap"},{"download_count":83164,"project":"openqasm3"},{"download_count":83154,"project":"higlass-schema"},{"download_count":83137,"project":"load-dotenv"},{"download_count":83127,"project":"mparticle"},{"download_count":83119,"project":"datadog-cdk-constructs-v2"},{"download_count":83082,"project":"advertools"},{"download_count":83015,"project":"scout-apm"},{"download_count":83006,"project":"elasticecshandler"},{"download_count":82969,"project":"aws-cdk-aws-kinesisfirehose-destinations-alpha"},{"download_count":82951,"project":"pyscf"},{"download_count":82923,"project":"hexdump"},{"download_count":82849,"project":"grpcio-opentracing"},{"download_count":82821,"project":"sailthru-client"},{"download_count":82809,"project":"pygad"},{"download_count":82804,"project":"torcheval"},{"download_count":82784,"project":"requests-async"},{"download_count":82774,"project":"magicalimport"},{"download_count":82721,"project":"matplotlib-venn"},{"download_count":82712,"project":"sure"},{"download_count":82675,"project":"pyplugs"},{"download_count":82672,"project":"george"},{"download_count":82665,"project":"pythreejs"},{"download_count":82651,"project":"pickle-mixin"},{"download_count":82643,"project":"gpy"},{"download_count":82603,"project":"logdna"},{"download_count":82558,"project":"contentful"},{"download_count":82526,"project":"markdown-strings"},{"download_count":82512,"project":"ibmcloudant"},{"download_count":82508,"project":"whisper-normalizer"},{"download_count":82495,"project":"chemicals"},{"download_count":82407,"project":"logutils"},{"download_count":82338,"project":"hatch-jupyter-builder"},{"download_count":82338,"project":"qutip"},{"download_count":82334,"project":"azure-appconfiguration-provider"},{"download_count":82319,"project":"fbscribelogger"},{"download_count":82311,"project":"frontend"},{"download_count":82299,"project":"servir"},{"download_count":82296,"project":"idf-build-apps"},{"download_count":82214,"project":"localconfig"},{"download_count":82206,"project":"tryingsnake"},{"download_count":82064,"project":"chromedriver-py"},{"download_count":82055,"project":"chacha20poly1305-reuseable"},{"download_count":82054,"project":"sphinx-jupyterbook-latex"},{"download_count":82022,"project":"uwsgitop"},{"download_count":81970,"project":"aws-cdk-aws-kinesisfirehose-alpha"},{"download_count":81914,"project":"sng4onnx"},{"download_count":81825,"project":"validate-docbr"},{"download_count":81798,"project":"molecule-docker"},{"download_count":81765,"project":"zhdate"},{"download_count":81750,"project":"efficientnet"},{"download_count":81724,"project":"mkdocs-jupyter"},{"download_count":81700,"project":"mwtextextractor"},{"download_count":81669,"project":"django-sequences"},{"download_count":81628,"project":"bash"},{"download_count":81621,"project":"multiversx-sdk-core"},{"download_count":81599,"project":"drf-flex-fields"},{"download_count":81498,"project":"edx-drf-extensions"},{"download_count":81470,"project":"datetype"},{"download_count":81442,"project":"phaxio"},{"download_count":81400,"project":"interruptingcow"},{"download_count":81394,"project":"onnx2torch"},{"download_count":81377,"project":"eight"},{"download_count":81373,"project":"jedi-language-server"},{"download_count":81352,"project":"ctadirac"},{"download_count":81322,"project":"pyntcore"},{"download_count":81277,"project":"libipld"},{"download_count":81203,"project":"xmlsig"},{"download_count":81188,"project":"google-gax"},{"download_count":81161,"project":"abnf"},{"download_count":81160,"project":"skqulacs"},{"download_count":81154,"project":"robotpy-wpinet"},{"download_count":81091,"project":"aws-cdk-aws-kinesisfirehose"},{"download_count":81073,"project":"numpy-stl"},{"download_count":81059,"project":"xminds"},{"download_count":81031,"project":"pydeps"},{"download_count":80978,"project":"ffmpegio"},{"download_count":80917,"project":"pythonpsi"},{"download_count":80915,"project":"cronex"},{"download_count":80907,"project":"wpilib"},{"download_count":80894,"project":"alibabacloud-gateway-spi"},{"download_count":80875,"project":"ffmpegio-core"},{"download_count":80831,"project":"sphinx-comments"},{"download_count":80825,"project":"import-ipynb"},{"download_count":80785,"project":"sdnotify"},{"download_count":80784,"project":"robotpy-cli"},{"download_count":80761,"project":"spur"},{"download_count":80734,"project":"hyperleaup"},{"download_count":80709,"project":"akshare"},{"download_count":80702,"project":"py-healthcheck"},{"download_count":80700,"project":"couchdb"},{"download_count":80688,"project":"sarge"},{"download_count":80666,"project":"psd-tools"},{"download_count":80663,"project":"photutils"},{"download_count":80629,"project":"inform"},{"download_count":80625,"project":"eip712"},{"download_count":80617,"project":"cufflinks"},{"download_count":80614,"project":"zope-index"},{"download_count":80599,"project":"pytest-emoji"},{"download_count":80595,"project":"jarowinkler"},{"download_count":80591,"project":"kiwipiepy-model"},{"download_count":80576,"project":"toolium"},{"download_count":80505,"project":"pytubefix"},{"download_count":80460,"project":"ahrs"},{"download_count":80451,"project":"pyrofork"},{"download_count":80439,"project":"mscerts"},{"download_count":80355,"project":"atproto"},{"download_count":80308,"project":"mitogen"},{"download_count":80282,"project":"robotpy-hal"},{"download_count":80232,"project":"pyshortcuts"},{"download_count":80205,"project":"htmltools"},{"download_count":80198,"project":"b2"},{"download_count":80180,"project":"requests-auth"},{"download_count":80139,"project":"pyrsmq"},{"download_count":80074,"project":"aggdraw"},{"download_count":80044,"project":"google-colab-shell"},{"download_count":80026,"project":"pykd"},{"download_count":80022,"project":"alibabacloud-tea-xml"},{"download_count":80005,"project":"python-dxf"},{"download_count":79992,"project":"github-action-utils"},{"download_count":79954,"project":"py-securestring"},{"download_count":79947,"project":"identity"},{"download_count":79940,"project":"opencensus-ext-sqlalchemy"},{"download_count":79934,"project":"ical"},{"download_count":79908,"project":"webdavclient3"},{"download_count":79872,"project":"apache-airflow-providers-apache-cassandra"},{"download_count":79858,"project":"flask-api"},{"download_count":79852,"project":"vk-api"},{"download_count":79771,"project":"ascii-magic"},{"download_count":79680,"project":"asn1ate"},{"download_count":79673,"project":"pytest-pretty"},{"download_count":79655,"project":"iden"},{"download_count":79629,"project":"multiline-log-formatter"},{"download_count":79612,"project":"fontawesomefree"},{"download_count":79589,"project":"pycuda"},{"download_count":79564,"project":"pynini"},{"download_count":79554,"project":"tf-agents"},{"download_count":79550,"project":"ipinfo"},{"download_count":79528,"project":"minify-html"},{"download_count":79481,"project":"automaton"},{"download_count":79422,"project":"deptry"},{"download_count":79390,"project":"public"},{"download_count":79378,"project":"edx-rest-api-client"},{"download_count":79371,"project":"sagemaker-feature-store-pyspark"},{"download_count":79331,"project":"butterfree"},{"download_count":79243,"project":"fslpy"},{"download_count":79228,"project":"scrapingbee"},{"download_count":79228,"project":"aplr"},{"download_count":79218,"project":"iterfzf"},{"download_count":79218,"project":"adafruit-pureio"},{"download_count":79215,"project":"ocrmypdf"},{"download_count":79191,"project":"farm-haystack"},{"download_count":79179,"project":"httplib2shim"},{"download_count":79162,"project":"daemonize"},{"download_count":79160,"project":"kiss-headers"},{"download_count":79115,"project":"hype-html"},{"download_count":79088,"project":"thermo"},{"download_count":79075,"project":"mozdebug"},{"download_count":79031,"project":"pytest-json"},{"download_count":78947,"project":"generic-etl"},{"download_count":78932,"project":"prefect-azure"},{"download_count":78846,"project":"expiring-dict"},{"download_count":78841,"project":"clize"},{"download_count":78837,"project":"pylibiio"},{"download_count":78835,"project":"trame-client"},{"download_count":78821,"project":"django-deprecate-fields"},{"download_count":78807,"project":"rasa-sdk"},{"download_count":78779,"project":"pyasn"},{"download_count":78771,"project":"normality"},{"download_count":78763,"project":"pulumi-kubernetes"},{"download_count":78759,"project":"caproto"},{"download_count":78743,"project":"fhirclient"},{"download_count":78723,"project":"musicbrainzngs"},{"download_count":78719,"project":"http-ece"},{"download_count":78707,"project":"cdktf"},{"download_count":78662,"project":"pytest-timeouts"},{"download_count":78655,"project":"magika"},{"download_count":78566,"project":"asv"},{"download_count":78562,"project":"wkhtmltopdf"},{"download_count":78560,"project":"azure-storage-logging"},{"download_count":78558,"project":"baby-steps"},{"download_count":78532,"project":"odo"},{"download_count":78528,"project":"django-tailwind"},{"download_count":78513,"project":"pybigquery"},{"download_count":78476,"project":"esda"},{"download_count":78475,"project":"einx"},{"download_count":78431,"project":"argparse-logging"},{"download_count":78419,"project":"aiocsv"},{"download_count":78404,"project":"mteb"},{"download_count":78400,"project":"dashscope"},{"download_count":78366,"project":"spyder"},{"download_count":78329,"project":"unfoldnd"},{"download_count":78315,"project":"py115j"},{"download_count":78296,"project":"pyshacl"},{"download_count":78282,"project":"sqlmesh"},{"download_count":78250,"project":"pglast"},{"download_count":78247,"project":"vininfo"},{"download_count":78167,"project":"pecan"},{"download_count":78158,"project":"django-cachalot"},{"download_count":78087,"project":"nose-xunitmp"},{"download_count":78071,"project":"pgcli"},{"download_count":78059,"project":"plantuml"},{"download_count":78041,"project":"aws-cdk-aws-s3-notifications"},{"download_count":78030,"project":"django-add-default-value"},{"download_count":77976,"project":"pybufrkit"},{"download_count":77973,"project":"tarsafe"},{"download_count":77950,"project":"pyrfc"},{"download_count":77947,"project":"huey"},{"download_count":77945,"project":"metpy"},{"download_count":77908,"project":"jsonable"},{"download_count":77898,"project":"heroku3"},{"download_count":77878,"project":"blaze"},{"download_count":77858,"project":"autogluon"},{"download_count":77847,"project":"session-info"},{"download_count":77832,"project":"dbt-exasol"},{"download_count":77825,"project":"filigran-sseclient"},{"download_count":77813,"project":"sdmetrics"},{"download_count":77797,"project":"pytest-harvest"},{"download_count":77792,"project":"ttach"},{"download_count":77712,"project":"color-matcher"},{"download_count":77710,"project":"pymonetdb"},{"download_count":77639,"project":"dbutils-typehint"},{"download_count":77621,"project":"vosk"},{"download_count":77614,"project":"swiftsimio"},{"download_count":77613,"project":"streamlit-option-menu"},{"download_count":77610,"project":"autogluon-timeseries"},{"download_count":77514,"project":"spacy-lookups-data"},{"download_count":77508,"project":"seqio"},{"download_count":77418,"project":"sigmatools"},{"download_count":77413,"project":"csv2md"},{"download_count":77405,"project":"pcapy-ng"},{"download_count":77400,"project":"django-guid"},{"download_count":77308,"project":"reg"},{"download_count":77282,"project":"mkdocstrings-python-legacy"},{"download_count":77273,"project":"semantic-link-sempy"},{"download_count":77256,"project":"pytorch-revgrad"},{"download_count":77209,"project":"properties"},{"download_count":77189,"project":"velociraptor"},{"download_count":77160,"project":"django-staff-sso-client"},{"download_count":77079,"project":"pymorphy2"},{"download_count":77045,"project":"voila"},{"download_count":77008,"project":"hier-config"},{"download_count":76998,"project":"py-vapid"},{"download_count":76990,"project":"pip-review"},{"download_count":76894,"project":"colcon-bash"},{"download_count":76889,"project":"argparse2"},{"download_count":76885,"project":"tox-gh"},{"download_count":76882,"project":"apache-airflow-providers-cloudant"},{"download_count":76846,"project":"od"},{"download_count":76801,"project":"colcon-cd"},{"download_count":76753,"project":"django-ckeditor-5"},{"download_count":76728,"project":"lunr"},{"download_count":76719,"project":"rlpycairo"},{"download_count":76675,"project":"ovh"},{"download_count":76628,"project":"google-cloud-quotas"},{"download_count":76581,"project":"kerchunk"},{"download_count":76581,"project":"mwtypes"},{"download_count":76560,"project":"fastapi-sso"},{"download_count":76534,"project":"uptrace"},{"download_count":76484,"project":"piecewise-regression"},{"download_count":76482,"project":"colcon-zsh"},{"download_count":76474,"project":"hypothesis-graphql"},{"download_count":76449,"project":"enforce-typing"},{"download_count":76449,"project":"aiohttp-middlewares"},{"download_count":76373,"project":"jupyter-telemetry"},{"download_count":76344,"project":"sib-api-v3-sdk"},{"download_count":76254,"project":"optimum-neuron"},{"download_count":76216,"project":"mpire"},{"download_count":76121,"project":"saucebindings"},{"download_count":76092,"project":"instaloader"},{"download_count":76078,"project":"chart-studio"},{"download_count":76042,"project":"deepecho"},{"download_count":76037,"project":"django-log-formatter-asim"},{"download_count":76027,"project":"dbt-copilot-python"},{"download_count":76011,"project":"ofxparse"},{"download_count":75966,"project":"nestedtext"},{"download_count":75962,"project":"devicetree"},{"download_count":75938,"project":"bigdl-nano"},{"download_count":75864,"project":"laboratory"},{"download_count":75851,"project":"pyastronomy"},{"download_count":75813,"project":"keystone-engine"},{"download_count":75803,"project":"mcrcon"},{"download_count":75800,"project":"tonyg-rfc3339"},{"download_count":75799,"project":"etcd3"},{"download_count":75783,"project":"conda-pack"},{"download_count":75782,"project":"flask-paginate"},{"download_count":75763,"project":"morfessor"},{"download_count":75762,"project":"typesense"},{"download_count":75745,"project":"interpret"},{"download_count":75723,"project":"dependencies"},{"download_count":75680,"project":"pigar"},{"download_count":75673,"project":"pypmml"},{"download_count":75673,"project":"pypac"},{"download_count":75668,"project":"findimports"},{"download_count":75626,"project":"pysolar"},{"download_count":75596,"project":"pytils"},{"download_count":75577,"project":"gen-wrappers"},{"download_count":75577,"project":"nptdms"},{"download_count":75539,"project":"asv-runner"},{"download_count":75503,"project":"mode-streaming"},{"download_count":75477,"project":"confusable-homoglyphs"},{"download_count":75424,"project":"mlpiper"},{"download_count":75409,"project":"adafruit-circuitpython-busdevice"},{"download_count":75391,"project":"sphinxcontrib-openapi"},{"download_count":75302,"project":"jenkspy"},{"download_count":75291,"project":"flask-authz"},{"download_count":75285,"project":"pbs4py"},{"download_count":75265,"project":"database-sanitizer"},{"download_count":75256,"project":"sqlalchemy-dremio"},{"download_count":75246,"project":"geotext"},{"download_count":75230,"project":"foca"},{"download_count":75175,"project":"requests-negotiate-sspi"},{"download_count":75168,"project":"flup"},{"download_count":75135,"project":"panda"},{"download_count":75115,"project":"sift"},{"download_count":75099,"project":"descript-audio-codec"},{"download_count":75084,"project":"libhoney"},{"download_count":75058,"project":"autogluon-multimodal"},{"download_count":75025,"project":"pysodium"},{"download_count":75017,"project":"django-cms"},{"download_count":75013,"project":"pyjanitor"},{"download_count":74999,"project":"fastapi-slim"},{"download_count":74992,"project":"pymediainfo-pyrofork"},{"download_count":74956,"project":"arcgis"},{"download_count":74940,"project":"colcon-argcomplete"},{"download_count":74927,"project":"sanic-jwt"},{"download_count":74922,"project":"pysigma"},{"download_count":74882,"project":"grin"},{"download_count":74873,"project":"blurb"},{"download_count":74839,"project":"pure-python-adb"},{"download_count":74822,"project":"pyion2json"},{"download_count":74821,"project":"flox"},{"download_count":74819,"project":"onnxruntime-extensions"},{"download_count":74757,"project":"texterrors"},{"download_count":74710,"project":"pysnowflake"},{"download_count":74682,"project":"peewee-migrate"},{"download_count":74639,"project":"py-expression-eval"},{"download_count":74633,"project":"tacacs-plus"},{"download_count":74624,"project":"depinfo"},{"download_count":74617,"project":"tooz"},{"download_count":74612,"project":"disposable-email-domains"},{"download_count":74611,"project":"pynetdicom"},{"download_count":74608,"project":"asset"},{"download_count":74555,"project":"qtawesome"},{"download_count":74533,"project":"kaldi-python-io"},{"download_count":74518,"project":"redo"},{"download_count":74499,"project":"apache-airflow-providers-telegram"},{"download_count":74488,"project":"pydoop"},{"download_count":74434,"project":"fauxfactory"},{"download_count":74424,"project":"scikit-posthocs"},{"download_count":74406,"project":"snakemake-interface-common"},{"download_count":74389,"project":"appdynamics-proxysupport-linux-x64"},{"download_count":74388,"project":"keyrings-envvars"},{"download_count":74368,"project":"redfish"},{"download_count":74364,"project":"typer-config"},{"download_count":74353,"project":"bag"},{"download_count":74328,"project":"ansible-tower-cli"},{"download_count":74303,"project":"dynamo-json"},{"download_count":74289,"project":"flask-shell-ipython"},{"download_count":74254,"project":"pvfactors"},{"download_count":74157,"project":"azure-ai-contentsafety"},{"download_count":74139,"project":"dom-toml"},{"download_count":74138,"project":"fastapi-jwt-auth"},{"download_count":74128,"project":"streamlit-cookies-controller"},{"download_count":74021,"project":"snakemake-interface-storage-plugins"},{"download_count":73998,"project":"flask-graphql"},{"download_count":73995,"project":"oauthenticator"},{"download_count":73993,"project":"edx-toggles"},{"download_count":73990,"project":"swiglpk"},{"download_count":73919,"project":"django-permissions-policy"},{"download_count":73904,"project":"django-cache-url"},{"download_count":73871,"project":"pyspc"},{"download_count":73810,"project":"adafruit-platformdetect"},{"download_count":73799,"project":"django-slack"},{"download_count":73785,"project":"gpio"},{"download_count":73772,"project":"edx-lint"},{"download_count":73769,"project":"runpod"},{"download_count":73731,"project":"pytiled-parser"},{"download_count":73726,"project":"fsc-export"},{"download_count":73715,"project":"slackbot"},{"download_count":73691,"project":"domino-code-assist"},{"download_count":73685,"project":"click-pathlib"},{"download_count":73685,"project":"tidyexc"},{"download_count":73675,"project":"asyncgui"},{"download_count":73665,"project":"adafruit-circuitpython-typing"},{"download_count":73651,"project":"gower"},{"download_count":73615,"project":"compas"},{"download_count":73608,"project":"mailosaur"},{"download_count":73587,"project":"oslo-reports"},{"download_count":73586,"project":"parametrize-from-file"},{"download_count":73544,"project":"avro-validator"},{"download_count":73528,"project":"solace-pubsubplus"},{"download_count":73518,"project":"pyxlsx"},{"download_count":73488,"project":"flake8-breakpoint"},{"download_count":73477,"project":"django-weasyprint"},{"download_count":73473,"project":"djangocms-admin-style"},{"download_count":73469,"project":"crc16"},{"download_count":73469,"project":"hdrhistogram"},{"download_count":73466,"project":"symmetry-representation"},{"download_count":73459,"project":"giving"},{"download_count":73449,"project":"testinfra"},{"download_count":73433,"project":"pdm-pep517"},{"download_count":73409,"project":"numbagg"},{"download_count":73375,"project":"demoji"},{"download_count":73367,"project":"django-multi-email-field"},{"download_count":73363,"project":"simpledbf"},{"download_count":73279,"project":"django-ranged-response"},{"download_count":73266,"project":"django-cprofile-middleware"},{"download_count":73226,"project":"django-fernet-fields-v2"},{"download_count":73200,"project":"mudata"},{"download_count":73193,"project":"unihandecode"},{"download_count":73189,"project":"py-manga"},{"download_count":73185,"project":"pysmartdl"},{"download_count":73170,"project":"asciimatics"},{"download_count":73159,"project":"tensorflow-model-analysis"},{"download_count":73152,"project":"ixnetwork-restpy"},{"download_count":73127,"project":"xraylib"},{"download_count":73116,"project":"niltype"},{"download_count":73096,"project":"azure-cli-diff-tool"},{"download_count":73087,"project":"gpt4all"},{"download_count":73085,"project":"google-cloud-alloydb"},{"download_count":73075,"project":"qpsolvers"},{"download_count":73074,"project":"cobra"},{"download_count":73058,"project":"data-prep-toolkit"},{"download_count":73034,"project":"pythtb"},{"download_count":73002,"project":"types-typing-extensions"},{"download_count":72994,"project":"py-algorand-sdk"},{"download_count":72988,"project":"unavailable-object"},{"download_count":72983,"project":"airtable"},{"download_count":72975,"project":"pylbfgs"},{"download_count":72926,"project":"pyarrowfs-adlgen2"},{"download_count":72817,"project":"databricks-automl-runtime"},{"download_count":72778,"project":"dataclass-csv"},{"download_count":72744,"project":"markyp"},{"download_count":72741,"project":"cwl-upgrader"},{"download_count":72737,"project":"g4f"},{"download_count":72735,"project":"diff-pdf-visually"},{"download_count":72699,"project":"django-enumfields"},{"download_count":72646,"project":"google-cloud-bigquery-datapolicies"},{"download_count":72643,"project":"nvidia-stub"},{"download_count":72627,"project":"pyhacrf-datamade"},{"download_count":72621,"project":"openedx-events"},{"download_count":72591,"project":"aws-cdk-aws-batch-alpha"},{"download_count":72589,"project":"jujubundlelib"},{"download_count":72583,"project":"wechaty-puppet"},{"download_count":72564,"project":"markyp-html"},{"download_count":72528,"project":"pyadi-iio"},{"download_count":72486,"project":"theblues"},{"download_count":72477,"project":"pyclamd"}]} +{"last_update":"2024-11-26 15:27:36","query":{"bytes_billed":1093117411328,"bytes_processed":1093117178583,"cached":false,"estimated_cost":"4.98"},"rows":[{"download_count":1524424909,"project":"boto3"},{"download_count":723535841,"project":"botocore"},{"download_count":669567184,"project":"urllib3"},{"download_count":572923467,"project":"setuptools"},{"download_count":569832883,"project":"requests"},{"download_count":522318360,"project":"certifi"},{"download_count":516338990,"project":"charset-normalizer"},{"download_count":515119853,"project":"idna"},{"download_count":493933210,"project":"packaging"},{"download_count":479733428,"project":"typing-extensions"},{"download_count":458419757,"project":"python-dateutil"},{"download_count":451882547,"project":"aiobotocore"},{"download_count":425799712,"project":"s3transfer"},{"download_count":419156985,"project":"grpcio-status"},{"download_count":382543314,"project":"pyyaml"},{"download_count":378342158,"project":"six"},{"download_count":361788085,"project":"fsspec"},{"download_count":353134683,"project":"s3fs"},{"download_count":340373155,"project":"numpy"},{"download_count":333074719,"project":"pip"},{"download_count":311939810,"project":"wheel"},{"download_count":310137004,"project":"cryptography"},{"download_count":299348525,"project":"awscli"},{"download_count":298527556,"project":"pydantic"},{"download_count":278794136,"project":"cffi"},{"download_count":275222126,"project":"attrs"},{"download_count":269837676,"project":"pycparser"},{"download_count":268367132,"project":"google-api-core"},{"download_count":268260875,"project":"pandas"},{"download_count":266927491,"project":"importlib-metadata"},{"download_count":257555136,"project":"jmespath"},{"download_count":254429455,"project":"click"},{"download_count":251781720,"project":"rsa"},{"download_count":249463990,"project":"zipp"},{"download_count":247839989,"project":"pyasn1"},{"download_count":244790382,"project":"markupsafe"},{"download_count":238473266,"project":"pytz"},{"download_count":234603693,"project":"colorama"},{"download_count":234415433,"project":"protobuf"},{"download_count":228326164,"project":"platformdirs"},{"download_count":227628315,"project":"jinja2"},{"download_count":214090196,"project":"rich"},{"download_count":212915063,"project":"tomli"},{"download_count":201707527,"project":"pytest"},{"download_count":200416540,"project":"pydantic-core"},{"download_count":198459247,"project":"pluggy"},{"download_count":196360067,"project":"pyjwt"},{"download_count":189917017,"project":"aiohttp"},{"download_count":187429396,"project":"jsonschema"},{"download_count":180062563,"project":"googleapis-common-protos"},{"download_count":179523222,"project":"virtualenv"},{"download_count":177681715,"project":"cachetools"},{"download_count":175851653,"project":"google-auth"},{"download_count":174153899,"project":"filelock"},{"download_count":171421039,"project":"wrapt"},{"download_count":165772817,"project":"sqlalchemy"},{"download_count":164291449,"project":"docutils"},{"download_count":159246171,"project":"pyasn1-modules"},{"download_count":157870770,"project":"pyarrow"},{"download_count":155577216,"project":"iniconfig"},{"download_count":153638766,"project":"pygments"},{"download_count":153394963,"project":"greenlet"},{"download_count":147174513,"project":"yarl"},{"download_count":145309334,"project":"annotated-types"},{"download_count":144887397,"project":"psutil"},{"download_count":144152744,"project":"requests-oauthlib"},{"download_count":143438146,"project":"tzdata"},{"download_count":141314490,"project":"exceptiongroup"},{"download_count":141265541,"project":"multidict"},{"download_count":140379403,"project":"pyparsing"},{"download_count":140208074,"project":"requests-toolbelt"},{"download_count":137583397,"project":"soupsieve"},{"download_count":136834028,"project":"werkzeug"},{"download_count":134573380,"project":"oauthlib"},{"download_count":134243722,"project":"beautifulsoup4"},{"download_count":132830533,"project":"frozenlist"},{"download_count":129453026,"project":"more-itertools"},{"download_count":126327213,"project":"tomlkit"},{"download_count":125159075,"project":"distlib"},{"download_count":124856059,"project":"aiosignal"},{"download_count":124601669,"project":"grpcio"},{"download_count":122873563,"project":"scipy"},{"download_count":122312044,"project":"tqdm"},{"download_count":122231218,"project":"pathspec"},{"download_count":119938931,"project":"async-timeout"},{"download_count":119917665,"project":"pillow"},{"download_count":119782099,"project":"isodate"},{"download_count":118381743,"project":"decorator"},{"download_count":118155766,"project":"anyio"},{"download_count":115469601,"project":"deprecated"},{"download_count":114272063,"project":"sniffio"},{"download_count":112360325,"project":"sortedcontainers"},{"download_count":111962076,"project":"httpx"},{"download_count":111499110,"project":"markdown-it-py"},{"download_count":110197498,"project":"coverage"},{"download_count":109718928,"project":"pyopenssl"},{"download_count":109086054,"project":"openpyxl"},{"download_count":108872239,"project":"mypy-extensions"},{"download_count":108529087,"project":"et-xmlfile"},{"download_count":108403579,"project":"rpds-py"},{"download_count":107723005,"project":"h11"},{"download_count":106920152,"project":"flask"},{"download_count":105345151,"project":"httpcore"},{"download_count":105314328,"project":"lxml"},{"download_count":103174197,"project":"jsonschema-specifications"},{"download_count":102332012,"project":"proto-plus"},{"download_count":101644622,"project":"mdurl"},{"download_count":99002908,"project":"python-dotenv"},{"download_count":97027686,"project":"referencing"},{"download_count":96651316,"project":"propcache"},{"download_count":95945273,"project":"dill"},{"download_count":94803170,"project":"ptyprocess"},{"download_count":94761769,"project":"google-cloud-storage"},{"download_count":94421876,"project":"msgpack"},{"download_count":94403508,"project":"poetry-core"},{"download_count":94209053,"project":"pexpect"},{"download_count":93917281,"project":"asn1crypto"},{"download_count":93768551,"project":"opentelemetry-sdk"},{"download_count":92260819,"project":"azure-core"},{"download_count":92121820,"project":"gitpython"},{"download_count":91816084,"project":"pynacl"},{"download_count":91596290,"project":"aiohappyeyeballs"},{"download_count":90483828,"project":"websocket-client"},{"download_count":89962445,"project":"tenacity"},{"download_count":89162596,"project":"itsdangerous"},{"download_count":86275692,"project":"grpcio-tools"},{"download_count":84535306,"project":"google-cloud-core"},{"download_count":84385460,"project":"importlib-resources"},{"download_count":83502963,"project":"smmap"},{"download_count":83385560,"project":"gitdb"},{"download_count":82608739,"project":"psycopg2-binary"},{"download_count":81652652,"project":"asgiref"},{"download_count":80215078,"project":"scikit-learn"},{"download_count":79447150,"project":"msal"},{"download_count":79423256,"project":"wcwidth"},{"download_count":79422943,"project":"alembic"},{"download_count":79249319,"project":"google-resumable-media"},{"download_count":78880248,"project":"keyring"},{"download_count":78614675,"project":"trove-classifiers"},{"download_count":77041365,"project":"chardet"},{"download_count":75956518,"project":"regex"},{"download_count":75633021,"project":"shellingham"},{"download_count":74652406,"project":"mccabe"},{"download_count":74597957,"project":"blinker"},{"download_count":74464833,"project":"opentelemetry-api"},{"download_count":73530936,"project":"backoff"},{"download_count":73283241,"project":"snowflake-connector-python"},{"download_count":73206620,"project":"bcrypt"},{"download_count":72870017,"project":"pytest-cov"},{"download_count":72269843,"project":"build"},{"download_count":72227293,"project":"ruamel-yaml"},{"download_count":71597791,"project":"jaraco-classes"},{"download_count":71353387,"project":"pyproject-hooks"},{"download_count":70953342,"project":"pkginfo"},{"download_count":70709263,"project":"fastapi"},{"download_count":70175076,"project":"jeepney"},{"download_count":69982800,"project":"secretstorage"},{"download_count":69899730,"project":"google-crc32c"},{"download_count":69893776,"project":"tabulate"},{"download_count":69024058,"project":"matplotlib"},{"download_count":68345665,"project":"pycodestyle"},{"download_count":67980101,"project":"fastjsonschema"},{"download_count":67879634,"project":"paramiko"},{"download_count":67669258,"project":"py"},{"download_count":67398241,"project":"threadpoolctl"},{"download_count":67269074,"project":"gunicorn"},{"download_count":67104764,"project":"poetry-plugin-export"},{"download_count":66978587,"project":"sqlparse"},{"download_count":66716617,"project":"dnspython"},{"download_count":66044584,"project":"networkx"},{"download_count":65439173,"project":"google-cloud-bigquery"},{"download_count":65348499,"project":"prompt-toolkit"},{"download_count":65263336,"project":"google-api-python-client"},{"download_count":64340070,"project":"marshmallow"},{"download_count":63831887,"project":"azure-storage-blob"},{"download_count":62987422,"project":"rapidfuzz"},{"download_count":62864078,"project":"py4j"},{"download_count":62353947,"project":"mock"},{"download_count":62322310,"project":"isort"},{"download_count":62015149,"project":"joblib"},{"download_count":61811990,"project":"portalocker"},{"download_count":61578397,"project":"ipython"},{"download_count":61191401,"project":"typedload"},{"download_count":60790096,"project":"xmltodict"},{"download_count":59847510,"project":"kiwisolver"},{"download_count":59232745,"project":"docker"},{"download_count":59217133,"project":"azure-identity"},{"download_count":58920026,"project":"redis"},{"download_count":58485576,"project":"babel"},{"download_count":58479065,"project":"black"},{"download_count":58352252,"project":"google-auth-oauthlib"},{"download_count":58132004,"project":"ruamel-yaml-clib"},{"download_count":58055790,"project":"defusedxml"},{"download_count":57902787,"project":"nest-asyncio"},{"download_count":57523036,"project":"termcolor"},{"download_count":57410354,"project":"fonttools"},{"download_count":57187020,"project":"starlette"},{"download_count":56820610,"project":"sentry-sdk"},{"download_count":56725232,"project":"cloudpickle"},{"download_count":56229478,"project":"nodeenv"},{"download_count":55870976,"project":"cycler"},{"download_count":55662291,"project":"ply"},{"download_count":55347841,"project":"awswrangler"},{"download_count":55227591,"project":"mako"},{"download_count":55113281,"project":"msal-extensions"},{"download_count":55036047,"project":"httplib2"},{"download_count":54347656,"project":"uritemplate"},{"download_count":54294520,"project":"tzlocal"},{"download_count":54220194,"project":"cython"},{"download_count":53910253,"project":"traitlets"},{"download_count":53518386,"project":"types-requests"},{"download_count":53227393,"project":"opentelemetry-semantic-conventions"},{"download_count":52530518,"project":"pyflakes"},{"download_count":52331750,"project":"tornado"},{"download_count":52132314,"project":"pymysql"},{"download_count":51938957,"project":"markdown"},{"download_count":51913387,"project":"setuptools-scm"},{"download_count":51736099,"project":"jedi"},{"download_count":51600036,"project":"pyrsistent"},{"download_count":51191430,"project":"toml"},{"download_count":50995447,"project":"cachecontrol"},{"download_count":50656800,"project":"google-auth-httplib2"},{"download_count":50549981,"project":"prometheus-client"},{"download_count":50443702,"project":"distro"},{"download_count":50044678,"project":"uvicorn"},{"download_count":49816736,"project":"argcomplete"},{"download_count":49272749,"project":"pendulum"},{"download_count":48709519,"project":"installer"},{"download_count":48199153,"project":"flake8"},{"download_count":48133856,"project":"parso"},{"download_count":47949465,"project":"pyzmq"},{"download_count":47628414,"project":"debugpy"},{"download_count":47253031,"project":"openai"},{"download_count":46837153,"project":"poetry"},{"download_count":46823972,"project":"matplotlib-inline"},{"download_count":46613886,"project":"dulwich"},{"download_count":46138604,"project":"contourpy"},{"download_count":46066504,"project":"huggingface-hub"},{"download_count":45658609,"project":"webencodings"},{"download_count":45585881,"project":"kubernetes"},{"download_count":45509159,"project":"websockets"},{"download_count":45250727,"project":"crashtest"},{"download_count":44658999,"project":"jsonpointer"},{"download_count":44443003,"project":"grpc-google-iam-v1"},{"download_count":44254488,"project":"typer"},{"download_count":44225990,"project":"mypy"},{"download_count":44072736,"project":"scramp"},{"download_count":43648998,"project":"stack-data"},{"download_count":43353755,"project":"orjson"},{"download_count":42978257,"project":"croniter"},{"download_count":42802051,"project":"cleo"},{"download_count":42603105,"project":"transformers"},{"download_count":42442570,"project":"asttokens"},{"download_count":42358183,"project":"executing"},{"download_count":42028069,"project":"pycryptodome"},{"download_count":41589294,"project":"pycryptodomex"},{"download_count":41533711,"project":"pymongo"},{"download_count":41450363,"project":"python-json-logger"},{"download_count":41039653,"project":"pytest-mock"},{"download_count":40941937,"project":"ipykernel"},{"download_count":40546300,"project":"multiprocess"},{"download_count":40338683,"project":"requests-aws4auth"},{"download_count":40301704,"project":"pure-eval"},{"download_count":40198892,"project":"typing-inspect"},{"download_count":40122763,"project":"arrow"},{"download_count":39703290,"project":"python-slugify"},{"download_count":39424564,"project":"zope-interface"},{"download_count":39424518,"project":"types-python-dateutil"},{"download_count":39413194,"project":"sphinx"},{"download_count":39130084,"project":"pre-commit"},{"download_count":39112447,"project":"jupyter-core"},{"download_count":38689189,"project":"jupyter-client"},{"download_count":38396708,"project":"aiofiles"},{"download_count":37995587,"project":"opentelemetry-proto"},{"download_count":37840868,"project":"future"},{"download_count":37819348,"project":"identify"},{"download_count":37732122,"project":"astroid"},{"download_count":37677770,"project":"loguru"},{"download_count":37124427,"project":"pytzdata"},{"download_count":36727711,"project":"datadog"},{"download_count":36313319,"project":"lazy-object-proxy"},{"download_count":36296819,"project":"redshift-connector"},{"download_count":35942407,"project":"elasticsearch"},{"download_count":35820813,"project":"aioitertools"},{"download_count":35812649,"project":"rfc3339-validator"},{"download_count":35807157,"project":"cfgv"},{"download_count":35481993,"project":"bs4"},{"download_count":35325564,"project":"jupyterlab"},{"download_count":35296368,"project":"nbconvert"},{"download_count":35242099,"project":"hatchling"},{"download_count":35011053,"project":"pylint"},{"download_count":35007442,"project":"pygithub"},{"download_count":34972549,"project":"msrest"},{"download_count":34769678,"project":"colorlog"},{"download_count":34701541,"project":"comm"},{"download_count":34633683,"project":"nbformat"},{"download_count":34541462,"project":"retry"},{"download_count":34520226,"project":"pytest-runner"},{"download_count":34351437,"project":"azure-common"},{"download_count":34109224,"project":"smart-open"},{"download_count":33942717,"project":"bleach"},{"download_count":33630636,"project":"ruff"},{"download_count":33563151,"project":"torch"},{"download_count":33522875,"project":"setproctitle"},{"download_count":33365883,"project":"shapely"},{"download_count":33304738,"project":"pg8000"},{"download_count":33136833,"project":"nbclient"},{"download_count":33076671,"project":"tokenizers"},{"download_count":33071872,"project":"responses"},{"download_count":33007133,"project":"pydantic-settings"},{"download_count":32960259,"project":"jupyter-server"},{"download_count":32835152,"project":"hypothesis"},{"download_count":32779177,"project":"opentelemetry-exporter-otlp-proto-http"},{"download_count":32575323,"project":"opentelemetry-exporter-otlp-proto-grpc"},{"download_count":32517689,"project":"ordered-set"},{"download_count":32412754,"project":"apache-airflow"},{"download_count":32239556,"project":"tinycss2"},{"download_count":32164707,"project":"appdirs"},{"download_count":32012493,"project":"jsonpath-ng"},{"download_count":31998440,"project":"google-cloud-secret-manager"},{"download_count":31991259,"project":"mistune"},{"download_count":31805120,"project":"google-cloud-pubsub"},{"download_count":31599172,"project":"mysql-connector-python"},{"download_count":31565544,"project":"jsonpatch"},{"download_count":31272613,"project":"snowballstemmer"},{"download_count":31072713,"project":"pkgutil-resolve-name"},{"download_count":30927046,"project":"requests-file"},{"download_count":30919584,"project":"sympy"},{"download_count":30855473,"project":"slack-sdk"},{"download_count":30758226,"project":"notebook"},{"download_count":30699414,"project":"pyspark"},{"download_count":30597653,"project":"watchdog"},{"download_count":30353753,"project":"jaraco-functools"},{"download_count":30260807,"project":"pytest-xdist"},{"download_count":30251220,"project":"jupyterlab-server"},{"download_count":30209638,"project":"snowflake-sqlalchemy"},{"download_count":29901498,"project":"opentelemetry-exporter-otlp"},{"download_count":29897390,"project":"django"},{"download_count":29848969,"project":"google-pasta"},{"download_count":29532015,"project":"opensearch-py"},{"download_count":29399705,"project":"oscrypto"},{"download_count":29139385,"project":"toolz"},{"download_count":28948095,"project":"typeguard"},{"download_count":28638141,"project":"humanfriendly"},{"download_count":28476303,"project":"tox"},{"download_count":28321693,"project":"execnet"},{"download_count":28190776,"project":"mdit-py-plugins"},{"download_count":28172626,"project":"email-validator"},{"download_count":28129250,"project":"jaraco-context"},{"download_count":28060479,"project":"aenum"},{"download_count":27871167,"project":"ipywidgets"},{"download_count":27836124,"project":"text-unidecode"},{"download_count":27782251,"project":"xlrd"},{"download_count":27779771,"project":"cattrs"},{"download_count":27761285,"project":"google-cloud-aiplatform"},{"download_count":27691017,"project":"overrides"},{"download_count":27676011,"project":"imagesize"},{"download_count":27529305,"project":"absl-py"},{"download_count":27494468,"project":"uvloop"},{"download_count":27422471,"project":"argon2-cffi"},{"download_count":27280776,"project":"lz4"},{"download_count":27265683,"project":"json5"},{"download_count":27262919,"project":"langchain-core"},{"download_count":27246576,"project":"alabaster"},{"download_count":27196306,"project":"jupyterlab-pygments"},{"download_count":27111784,"project":"opentelemetry-exporter-otlp-proto-common"},{"download_count":27089942,"project":"pandocfilters"},{"download_count":27013491,"project":"pysocks"},{"download_count":26966580,"project":"widgetsnbextension"},{"download_count":26796419,"project":"flask-caching"},{"download_count":26711946,"project":"jupyterlab-widgets"},{"download_count":26637399,"project":"xgboost"},{"download_count":26627184,"project":"sphinxcontrib-serializinghtml"},{"download_count":26616214,"project":"sphinxcontrib-htmlhelp"},{"download_count":26462739,"project":"argon2-cffi-bindings"},{"download_count":26430029,"project":"send2trash"},{"download_count":26422968,"project":"sphinxcontrib-applehelp"},{"download_count":26406365,"project":"sphinxcontrib-qthelp"},{"download_count":26368543,"project":"rfc3986"},{"download_count":26266285,"project":"apache-airflow-providers-common-sql"},{"download_count":26253976,"project":"sphinxcontrib-devhelp"},{"download_count":26218305,"project":"httptools"},{"download_count":26092035,"project":"pbr"},{"download_count":26011667,"project":"pyodbc"},{"download_count":25982371,"project":"pytest-asyncio"},{"download_count":25843228,"project":"mpmath"},{"download_count":25749351,"project":"schema"},{"download_count":25633314,"project":"xlsxwriter"},{"download_count":25567868,"project":"db-dtypes"},{"download_count":25502663,"project":"selenium"},{"download_count":25403136,"project":"python-multipart"},{"download_count":25373150,"project":"dataclasses-json"},{"download_count":25315807,"project":"sphinxcontrib-jsmath"},{"download_count":25199289,"project":"webcolors"},{"download_count":25174658,"project":"simplejson"},{"download_count":25159380,"project":"sagemaker"},{"download_count":25105478,"project":"tb-nightly"},{"download_count":25064974,"project":"terminado"},{"download_count":24984511,"project":"semver"},{"download_count":24895341,"project":"inflection"},{"download_count":24872769,"project":"progressbar2"},{"download_count":24708685,"project":"flask-wtf"},{"download_count":24693723,"project":"structlog"},{"download_count":24543848,"project":"grpcio-health-checking"},{"download_count":24478244,"project":"altair"},{"download_count":24409614,"project":"langchain"},{"download_count":24264274,"project":"google-cloud-appengine-logging"},{"download_count":24006235,"project":"notebook-shim"},{"download_count":23862225,"project":"async-lru"},{"download_count":23846869,"project":"fqdn"},{"download_count":23801334,"project":"python-utils"},{"download_count":23669841,"project":"uri-template"},{"download_count":23627134,"project":"isoduration"},{"download_count":23591462,"project":"tensorboard"},{"download_count":23460504,"project":"pandas-gbq"},{"download_count":23445196,"project":"rfc3986-validator"},{"download_count":23422043,"project":"graphql-core"},{"download_count":23336494,"project":"google-cloud-resource-manager"},{"download_count":23102449,"project":"jupyter-events"},{"download_count":23048813,"project":"azure-storage-file-datalake"},{"download_count":22930084,"project":"databricks-sql-connector"},{"download_count":22899602,"project":"watchfiles"},{"download_count":22686197,"project":"nltk"},{"download_count":22602557,"project":"backports-tarfile"},{"download_count":22524321,"project":"python-daemon"},{"download_count":22428258,"project":"trio"},{"download_count":22285555,"project":"pathos"},{"download_count":22225689,"project":"h5py"},{"download_count":22224492,"project":"tiktoken"},{"download_count":22221783,"project":"jupyter-server-terminals"},{"download_count":22071800,"project":"asynctest"},{"download_count":22032380,"project":"ujson"},{"download_count":21984870,"project":"google-cloud-logging"},{"download_count":21964747,"project":"click-man"},{"download_count":21911676,"project":"jiter"},{"download_count":21892444,"project":"pox"},{"download_count":21864767,"project":"sentencepiece"},{"download_count":21837145,"project":"ppft"},{"download_count":21695896,"project":"prettytable"},{"download_count":21450498,"project":"jupyter-lsp"},{"download_count":21336984,"project":"gcsfs"},{"download_count":21303111,"project":"pyright"},{"download_count":21303015,"project":"flatbuffers"},{"download_count":21183420,"project":"coloredlogs"},{"download_count":21128473,"project":"hvac"},{"download_count":20989812,"project":"freezegun"},{"download_count":20988627,"project":"adal"},{"download_count":20826079,"project":"types-pyyaml"},{"download_count":20802907,"project":"aws-requests-auth"},{"download_count":20751713,"project":"outcome"},{"download_count":20739754,"project":"plotly"},{"download_count":20717370,"project":"lockfile"},{"download_count":20677629,"project":"linkify-it-py"},{"download_count":20508192,"project":"durationpy"},{"download_count":20432190,"project":"dbt-core"},{"download_count":20350288,"project":"docstring-parser"},{"download_count":20341806,"project":"google-cloud-bigquery-storage"},{"download_count":20225302,"project":"oauth2client"},{"download_count":20214850,"project":"connexion"},{"download_count":20139269,"project":"faker"},{"download_count":20136560,"project":"rich-argparse"},{"download_count":20022314,"project":"confluent-kafka"},{"download_count":19941688,"project":"imageio"},{"download_count":19936731,"project":"safetensors"},{"download_count":19843272,"project":"docker-pycreds"},{"download_count":19756748,"project":"tensorflow"},{"download_count":19438875,"project":"frozendict"},{"download_count":19422840,"project":"smdebug-rulesconfig"},{"download_count":19320967,"project":"seaborn"},{"download_count":19299191,"project":"numba"},{"download_count":19290043,"project":"opentelemetry-instrumentation"},{"download_count":19252049,"project":"uv"},{"download_count":19209460,"project":"readme-renderer"},{"download_count":19206335,"project":"tblib"},{"download_count":19186458,"project":"parameterized"},{"download_count":19131959,"project":"wsproto"},{"download_count":19122104,"project":"wandb"},{"download_count":19029972,"project":"dataclasses"},{"download_count":18975780,"project":"twine"},{"download_count":18904754,"project":"nose"},{"download_count":18765842,"project":"deepdiff"},{"download_count":18756658,"project":"gremlinpython"},{"download_count":18681898,"project":"entrypoints"},{"download_count":18658531,"project":"llvmlite"},{"download_count":18642232,"project":"langchain-community"},{"download_count":18576446,"project":"fastavro"},{"download_count":18520670,"project":"google-cloud-dataproc"},{"download_count":18493362,"project":"semantic-version"},{"download_count":18480053,"project":"time-machine"},{"download_count":18419265,"project":"monotonic"},{"download_count":18394846,"project":"mlflow"},{"download_count":18354260,"project":"databricks-sdk"},{"download_count":18288127,"project":"xxhash"},{"download_count":18231845,"project":"universal-pathlib"},{"download_count":18196017,"project":"marshmallow-oneofschema"},{"download_count":18188577,"project":"nh3"},{"download_count":18128668,"project":"deprecation"},{"download_count":18119923,"project":"pydeequ"},{"download_count":18100572,"project":"gast"},{"download_count":18089081,"project":"graphviz"},{"download_count":18019353,"project":"requests-mock"},{"download_count":17988049,"project":"great-expectations"},{"download_count":17975978,"project":"pydata-google-auth"},{"download_count":17862962,"project":"trio-websocket"},{"download_count":17703587,"project":"cached-property"},{"download_count":17678892,"project":"zeep"},{"download_count":17671922,"project":"editables"},{"download_count":17641030,"project":"apache-airflow-providers-cncf-kubernetes"},{"download_count":17596893,"project":"psycopg2"},{"download_count":17543412,"project":"retrying"},{"download_count":17516437,"project":"azure-keyvault-secrets"},{"download_count":17513907,"project":"flask-sqlalchemy"},{"download_count":17385479,"project":"html5lib"},{"download_count":17380613,"project":"flask-appbuilder"},{"download_count":17347934,"project":"datasets"},{"download_count":17248915,"project":"thrift"},{"download_count":17207176,"project":"docopt"},{"download_count":17172043,"project":"apispec"},{"download_count":17168401,"project":"gevent"},{"download_count":17100960,"project":"imbalanced-learn"},{"download_count":17084175,"project":"google-cloud-audit-log"},{"download_count":17005524,"project":"flask-session"},{"download_count":16772706,"project":"azure-mgmt-core"},{"download_count":16754215,"project":"click-plugins"},{"download_count":16640139,"project":"flask-login"},{"download_count":16618290,"project":"zope-event"},{"download_count":16609451,"project":"pyproject-api"},{"download_count":16499689,"project":"sshtunnel"},{"download_count":16402184,"project":"zstandard"},{"download_count":16394263,"project":"statsmodels"},{"download_count":16352751,"project":"amqp"},{"download_count":16265298,"project":"torchvision"},{"download_count":16259000,"project":"pymssql"},{"download_count":16170991,"project":"looker-sdk"},{"download_count":16099877,"project":"antlr4-python3-runtime"},{"download_count":16049035,"project":"nvidia-nccl-cu12"},{"download_count":16016185,"project":"authlib"},{"download_count":15869113,"project":"pickleshare"},{"download_count":15824684,"project":"google-re2"},{"download_count":15638579,"project":"google-cloud-monitoring"},{"download_count":15601385,"project":"google-cloud-kms"},{"download_count":15498724,"project":"opentelemetry-util-http"},{"download_count":15494892,"project":"nodejs-wheel-binaries"},{"download_count":15493274,"project":"kafka-python"},{"download_count":15437867,"project":"triton"},{"download_count":15426353,"project":"kombu"},{"download_count":15422217,"project":"delta-spark"},{"download_count":15403927,"project":"unidecode"},{"download_count":15401390,"project":"libcst"},{"download_count":15337373,"project":"google-cloud-vision"},{"download_count":15320827,"project":"wtforms"},{"download_count":15302202,"project":"google-cloud-container"},{"download_count":15299604,"project":"backcall"},{"download_count":15297381,"project":"dask"},{"download_count":15277684,"project":"pybind11"},{"download_count":15129398,"project":"vine"},{"download_count":15095850,"project":"google-cloud-spanner"},{"download_count":15094765,"project":"celery"},{"download_count":15091000,"project":"ecdsa"},{"download_count":15086801,"project":"patsy"},{"download_count":15013673,"project":"argparse"},{"download_count":14993584,"project":"opencv-python"},{"download_count":14835439,"project":"sqlalchemy-utils"},{"download_count":14786223,"project":"google-cloud-bigquery-datatransfer"},{"download_count":14729727,"project":"humanize"},{"download_count":14698218,"project":"google-cloud-tasks"},{"download_count":14690649,"project":"google-cloud-datacatalog"},{"download_count":14615459,"project":"google-cloud-dlp"},{"download_count":14550883,"project":"makefun"},{"download_count":14547574,"project":"moto"},{"download_count":14546712,"project":"simple-salesforce"},{"download_count":14506459,"project":"tensorboard-data-server"},{"download_count":14401254,"project":"pip-tools"},{"download_count":14387813,"project":"keras"},{"download_count":14386846,"project":"cachelib"},{"download_count":14376580,"project":"billiard"},{"download_count":14334629,"project":"mlflow-skinny"},{"download_count":14270525,"project":"mypy-boto3-s3"},{"download_count":14168514,"project":"yapf"},{"download_count":14165126,"project":"nvidia-cublas-cu12"},{"download_count":14156295,"project":"google-ads"},{"download_count":14141313,"project":"google-cloud-bigtable"},{"download_count":14117612,"project":"apache-airflow-providers-snowflake"},{"download_count":14068645,"project":"azure-datalake-store"},{"download_count":14012816,"project":"watchtower"},{"download_count":14009934,"project":"pyserial"},{"download_count":13973531,"project":"spacy"},{"download_count":13919363,"project":"configupdater"},{"download_count":13869600,"project":"flask-cors"},{"download_count":13842929,"project":"pytimeparse"},{"download_count":13830020,"project":"boto3-stubs"},{"download_count":13817626,"project":"ijson"},{"download_count":13803916,"project":"nvidia-cusparse-cu12"},{"download_count":13737010,"project":"google-cloud-build"},{"download_count":13730791,"project":"pyroaring"},{"download_count":13713908,"project":"nvidia-nvjitlink-cu12"},{"download_count":13662086,"project":"google-cloud-workflows"},{"download_count":13632336,"project":"bitarray"},{"download_count":13625654,"project":"langsmith"},{"download_count":13605224,"project":"google-cloud-redis"},{"download_count":13587491,"project":"opt-einsum"},{"download_count":13568748,"project":"mashumaro"},{"download_count":13565981,"project":"lark"},{"download_count":13564149,"project":"astunparse"},{"download_count":13563564,"project":"nvidia-cuda-runtime-cu12"},{"download_count":13551903,"project":"google-cloud-firestore"},{"download_count":13532728,"project":"nvidia-cuda-cupti-cu12"},{"download_count":13522167,"project":"nvidia-cufft-cu12"},{"download_count":13521018,"project":"jupyter-console"},{"download_count":13505183,"project":"google-cloud-automl"},{"download_count":13498448,"project":"google-cloud-dataplex"},{"download_count":13491464,"project":"datetime"},{"download_count":13446847,"project":"funcsigs"},{"download_count":13437660,"project":"hpack"},{"download_count":13434488,"project":"nvidia-cudnn-cu12"},{"download_count":13430987,"project":"tensorflow-estimator"},{"download_count":13426069,"project":"h2"},{"download_count":13357637,"project":"nvidia-cuda-nvrtc-cu12"},{"download_count":13336661,"project":"apache-airflow-providers-ssh"},{"download_count":13310420,"project":"databricks-cli"},{"download_count":13280502,"project":"azure-mgmt-resource"},{"download_count":13279873,"project":"nvidia-curand-cu12"},{"download_count":13261182,"project":"hyperframe"},{"download_count":13259954,"project":"nvidia-cusolver-cu12"},{"download_count":13251349,"project":"pytest-metadata"},{"download_count":13250410,"project":"google-cloud-os-login"},{"download_count":13231420,"project":"apache-airflow-providers-google"},{"download_count":13213335,"project":"jupyter"},{"download_count":13210840,"project":"google-cloud-videointelligence"},{"download_count":13180083,"project":"google-cloud-language"},{"download_count":13175780,"project":"pipenv"},{"download_count":13172365,"project":"brotli"},{"download_count":13132856,"project":"types-pytz"},{"download_count":13120748,"project":"sqlalchemy-jsonfield"},{"download_count":13101142,"project":"commonmark"},{"download_count":13081191,"project":"nvidia-nvtx-cu12"},{"download_count":13043815,"project":"graphene"},{"download_count":12954381,"project":"google-cloud-memcache"},{"download_count":12886381,"project":"mypy-boto3-rds"},{"download_count":12773536,"project":"botocore-stubs"},{"download_count":12771629,"project":"google-cloud-translate"},{"download_count":12724775,"project":"narwhals"},{"download_count":12653167,"project":"google-cloud-dataproc-metastore"},{"download_count":12650212,"project":"click-repl"},{"download_count":12643435,"project":"sqlalchemy-bigquery"},{"download_count":12625875,"project":"google-cloud-orchestration-airflow"},{"download_count":12625290,"project":"click-didyoumean"},{"download_count":12583254,"project":"analytics-python"},{"download_count":12546944,"project":"apache-airflow-providers-databricks"},{"download_count":12537474,"project":"graphql-relay"},{"download_count":12505871,"project":"agate"},{"download_count":12459180,"project":"types-protobuf"},{"download_count":12419591,"project":"google-cloud-compute"},{"download_count":12325422,"project":"omegaconf"},{"download_count":12317657,"project":"tldextract"},{"download_count":12309039,"project":"thinc"},{"download_count":12308273,"project":"gspread"},{"download_count":12245826,"project":"google-cloud-speech"},{"download_count":12178355,"project":"gcloud-aio-storage"},{"download_count":12124737,"project":"msrestazure"},{"download_count":12103832,"project":"gcloud-aio-auth"},{"download_count":12067712,"project":"blis"},{"download_count":12061108,"project":"apache-beam"},{"download_count":12057075,"project":"google-cloud-texttospeech"},{"download_count":12018418,"project":"pywin32"},{"download_count":11974182,"project":"google-cloud-dataform"},{"download_count":11955514,"project":"configparser"},{"download_count":11948923,"project":"apache-airflow-providers-mysql"},{"download_count":11941649,"project":"uc-micro-py"},{"download_count":11914067,"project":"djangorestframework"},{"download_count":11898344,"project":"jira"},{"download_count":11883859,"project":"scikit-image"},{"download_count":11872873,"project":"types-awscrt"},{"download_count":11827006,"project":"levenshtein"},{"download_count":11811624,"project":"astor"},{"download_count":11796909,"project":"python-jose"},{"download_count":11757257,"project":"ddtrace"},{"download_count":11754748,"project":"fasteners"},{"download_count":11674778,"project":"jsonpickle"},{"download_count":11640578,"project":"catalogue"},{"download_count":11603748,"project":"preshed"},{"download_count":11597799,"project":"sphinx-rtd-theme"},{"download_count":11596447,"project":"types-setuptools"},{"download_count":11549928,"project":"cymem"},{"download_count":11534657,"project":"pycountry"},{"download_count":11525093,"project":"murmurhash"},{"download_count":11482001,"project":"hyperlink"},{"download_count":11461791,"project":"astronomer-cosmos"},{"download_count":11436086,"project":"gcloud-aio-bigquery"},{"download_count":11428807,"project":"sh"},{"download_count":11420532,"project":"srsly"},{"download_count":11401253,"project":"marshmallow-sqlalchemy"},{"download_count":11396773,"project":"pytest-html"},{"download_count":11387704,"project":"wasabi"},{"download_count":11368005,"project":"parsedatetime"},{"download_count":11351119,"project":"types-s3transfer"},{"download_count":11258838,"project":"pkce"},{"download_count":11200168,"project":"python-magic"},{"download_count":11192099,"project":"stevedore"},{"download_count":11174290,"project":"langcodes"},{"download_count":11150071,"project":"flask-jwt-extended"},{"download_count":11123676,"project":"mysqlclient"},{"download_count":11056080,"project":"evergreen-py"},{"download_count":11003879,"project":"ninja"},{"download_count":10996482,"project":"apache-airflow-providers-http"},{"download_count":10917611,"project":"avro-python3"},{"download_count":10907445,"project":"python-gitlab"},{"download_count":10890008,"project":"pytest-timeout"},{"download_count":10862255,"project":"opentelemetry-instrumentation-requests"},{"download_count":10847292,"project":"pypdf2"},{"download_count":10836815,"project":"texttable"},{"download_count":10799242,"project":"partd"},{"download_count":10667799,"project":"backports-zoneinfo"},{"download_count":10646860,"project":"validators"},{"download_count":10630513,"project":"lightgbm"},{"download_count":10629441,"project":"flask-limiter"},{"download_count":10582948,"project":"pytest-rerunfailures"},{"download_count":10569832,"project":"libclang"},{"download_count":10549036,"project":"locket"},{"download_count":10531066,"project":"dacite"},{"download_count":10527151,"project":"limits"},{"download_count":10524714,"project":"spacy-legacy"},{"download_count":10520863,"project":"apscheduler"},{"download_count":10498058,"project":"cron-descriptor"},{"download_count":10436878,"project":"psycopg"},{"download_count":10432027,"project":"spacy-loggers"},{"download_count":10415572,"project":"grpcio-gcp"},{"download_count":10388194,"project":"python-gnupg"},{"download_count":10384087,"project":"pysftp"},{"download_count":10356514,"project":"iso8601"},{"download_count":10350102,"project":"opencensus"},{"download_count":10337942,"project":"elastic-transport"},{"download_count":10328164,"project":"ml-dtypes"},{"download_count":10326121,"project":"aniso8601"},{"download_count":10295389,"project":"incremental"},{"download_count":10271653,"project":"cramjam"},{"download_count":10264745,"project":"pycrypto"},{"download_count":10243263,"project":"langchain-text-splitters"},{"download_count":10233774,"project":"db-contrib-tool"},{"download_count":10217536,"project":"mergedeep"},{"download_count":10198601,"project":"gsutil"},{"download_count":10146979,"project":"bytecode"},{"download_count":10145438,"project":"confection"},{"download_count":10142685,"project":"envier"},{"download_count":10099648,"project":"langchain-google-vertexai"},{"download_count":10030452,"project":"polars"},{"download_count":10018088,"project":"onnxruntime"},{"download_count":10007629,"project":"pyathena"},{"download_count":9955963,"project":"parse"},{"download_count":9954706,"project":"opencensus-context"},{"download_count":9951916,"project":"tensorflow-io-gcs-filesystem"},{"download_count":9840505,"project":"jpype1"},{"download_count":9831605,"project":"sendgrid"},{"download_count":9830635,"project":"azure-mgmt-storage"},{"download_count":9826897,"project":"azure-kusto-data"},{"download_count":9811335,"project":"asyncpg"},{"download_count":9771589,"project":"cfn-lint"},{"download_count":9719701,"project":"leather"},{"download_count":9682479,"project":"dbt-extractor"},{"download_count":9589150,"project":"parsimonious"},{"download_count":9584641,"project":"tensorflow-serving-api"},{"download_count":9583474,"project":"dateparser"},{"download_count":9535845,"project":"azure-storage-queue"},{"download_count":9529767,"project":"ratelimit"},{"download_count":9527020,"project":"avro"},{"download_count":9514171,"project":"types-urllib3"},{"download_count":9511437,"project":"fastapi-cli"},{"download_count":9461663,"project":"dbt-common"},{"download_count":9405939,"project":"twisted"},{"download_count":9289104,"project":"cssselect"},{"download_count":9258673,"project":"pyproj"},{"download_count":9160170,"project":"python-http-client"},{"download_count":9156484,"project":"cytoolz"},{"download_count":9130207,"project":"azure-mgmt-datafactory"},{"download_count":9095787,"project":"office365-rest-python-client"},{"download_count":9050050,"project":"inflect"},{"download_count":9041949,"project":"aliyun-python-sdk-core"},{"download_count":9009841,"project":"dbt-semantic-interfaces"},{"download_count":8996022,"project":"boto"},{"download_count":8975053,"project":"yamllint"},{"download_count":8972826,"project":"azure-servicebus"},{"download_count":8971977,"project":"constantly"},{"download_count":8969683,"project":"automat"},{"download_count":8930195,"project":"google-cloud-dataflow-client"},{"download_count":8922397,"project":"clickclick"},{"download_count":8880163,"project":"pathlib"},{"download_count":8867444,"project":"kubernetes-asyncio"},{"download_count":8847411,"project":"flask-babel"},{"download_count":8775747,"project":"openapi-spec-validator"},{"download_count":8771388,"project":"sphinxcontrib-jquery"},{"download_count":8761743,"project":"invoke"},{"download_count":8753686,"project":"contextlib2"},{"download_count":8735976,"project":"py-cpuinfo"},{"download_count":8718284,"project":"methodtools"},{"download_count":8691247,"project":"pyspnego"},{"download_count":8671432,"project":"typing"},{"download_count":8666285,"project":"holidays"},{"download_count":8652182,"project":"accelerate"},{"download_count":8644464,"project":"azure-cosmos"},{"download_count":8622213,"project":"enum34"},{"download_count":8595132,"project":"waitress"},{"download_count":8585830,"project":"eth-utils"},{"download_count":8584798,"project":"eth-hash"},{"download_count":8578740,"project":"apache-airflow-providers-ftp"},{"download_count":8538045,"project":"cmake"},{"download_count":8517306,"project":"netaddr"},{"download_count":8483460,"project":"immutabledict"},{"download_count":8455128,"project":"phonenumbers"},{"download_count":8450170,"project":"wirerope"},{"download_count":8428257,"project":"oracledb"},{"download_count":8416386,"project":"webob"},{"download_count":8401677,"project":"azure-storage-file-share"},{"download_count":8352170,"project":"opencensus-ext-azure"},{"download_count":8312384,"project":"opentelemetry-instrumentation-asgi"},{"download_count":8299738,"project":"resolvelib"},{"download_count":8256359,"project":"eth-typing"},{"download_count":8244913,"project":"aws-xray-sdk"},{"download_count":8237630,"project":"pypdf"},{"download_count":8157099,"project":"pyee"},{"download_count":8128565,"project":"apache-airflow-providers-sqlite"},{"download_count":8086179,"project":"mypy-boto3-appflow"},{"download_count":8073890,"project":"protobuf3-to-dict"},{"download_count":8053397,"project":"pywavelets"},{"download_count":8032190,"project":"apache-airflow-providers-fab"},{"download_count":8030843,"project":"mmh3"},{"download_count":8006846,"project":"bidict"},{"download_count":8003655,"project":"jaydebeapi"},{"download_count":7982278,"project":"pydash"},{"download_count":7975013,"project":"google-cloud-storage-transfer"},{"download_count":7962737,"project":"google-cloud-run"},{"download_count":7936363,"project":"streamlit"},{"download_count":7923620,"project":"google-cloud-batch"},{"download_count":7919341,"project":"opentelemetry-instrumentation-fastapi"},{"download_count":7916212,"project":"dbt-adapters"},{"download_count":7912171,"project":"autopep8"},{"download_count":7892209,"project":"prison"},{"download_count":7881315,"project":"tableauserverclient"},{"download_count":7798139,"project":"diskcache"},{"download_count":7792109,"project":"bracex"},{"download_count":7782365,"project":"cfn-flip"},{"download_count":7766791,"project":"duckdb"},{"download_count":7762832,"project":"cloudpathlib"},{"download_count":7742179,"project":"logbook"},{"download_count":7709820,"project":"langchain-openai"},{"download_count":7626244,"project":"fuzzywuzzy"},{"download_count":7623204,"project":"python-docx"},{"download_count":7595448,"project":"natsort"},{"download_count":7569137,"project":"python-levenshtein"},{"download_count":7561622,"project":"tifffile"},{"download_count":7544077,"project":"playwright"},{"download_count":7510898,"project":"aiosqlite"},{"download_count":7463815,"project":"azure-nspkg"},{"download_count":7444651,"project":"ipython-genutils"},{"download_count":7412818,"project":"pytest-django"},{"download_count":7410037,"project":"types-redis"},{"download_count":7389375,"project":"fire"},{"download_count":7380241,"project":"factory-boy"},{"download_count":7356977,"project":"azure-mgmt-containerregistry"},{"download_count":7343836,"project":"pydot"},{"download_count":7299696,"project":"lazy-loader"},{"download_count":7292105,"project":"torchmetrics"},{"download_count":7277722,"project":"msgspec"},{"download_count":7273280,"project":"gql"},{"download_count":7266960,"project":"configargparse"},{"download_count":7241964,"project":"fastparquet"},{"download_count":7184467,"project":"psycopg-binary"},{"download_count":7169170,"project":"geopandas"},{"download_count":7168614,"project":"passlib"},{"download_count":7151519,"project":"pytorch-lightning"},{"download_count":7052873,"project":"datadog-api-client"},{"download_count":6963912,"project":"azure-storage-common"},{"download_count":6951208,"project":"marisa-trie"},{"download_count":6928227,"project":"pydeck"},{"download_count":6916466,"project":"sqlalchemy-spanner"},{"download_count":6898150,"project":"opencv-python-headless"},{"download_count":6891879,"project":"tensorflow-text"},{"download_count":6878458,"project":"pep517"},{"download_count":6852799,"project":"unicodecsv"},{"download_count":6842660,"project":"cligj"},{"download_count":6839715,"project":"pymdown-extensions"},{"download_count":6827650,"project":"openapi-schema-validator"},{"download_count":6802348,"project":"weaviate-client"},{"download_count":6799956,"project":"azure-mgmt-cosmosdb"},{"download_count":6797518,"project":"typed-ast"},{"download_count":6787661,"project":"gradio"},{"download_count":6783800,"project":"bottle"},{"download_count":6781150,"project":"apache-airflow-providers-imap"},{"download_count":6773188,"project":"language-data"},{"download_count":6772416,"project":"pydub"},{"download_count":6768397,"project":"sentence-transformers"},{"download_count":6764223,"project":"django-cors-headers"},{"download_count":6746011,"project":"shap"},{"download_count":6740077,"project":"eth-abi"},{"download_count":6710628,"project":"kfp"},{"download_count":6692150,"project":"events"},{"download_count":6682237,"project":"xarray"},{"download_count":6668513,"project":"azure-keyvault-keys"},{"download_count":6659828,"project":"ansible"},{"download_count":6644514,"project":"slicer"},{"download_count":6630146,"project":"pytest-random-order"},{"download_count":6624598,"project":"ansible-core"},{"download_count":6600052,"project":"aws-sam-translator"},{"download_count":6583400,"project":"querystring-parser"},{"download_count":6546025,"project":"iso3166"},{"download_count":6544785,"project":"apache-airflow-providers-slack"},{"download_count":6523010,"project":"statsd"},{"download_count":6515099,"project":"keyrings-google-artifactregistry-auth"},{"download_count":6504995,"project":"awscrt"},{"download_count":6496856,"project":"ua-parser"},{"download_count":6482251,"project":"astropy"},{"download_count":6446750,"project":"trino"},{"download_count":6406997,"project":"starkbank-ecdsa"},{"download_count":6394152,"project":"django-filter"},{"download_count":6391234,"project":"sqlglot"},{"download_count":6383044,"project":"applicationinsights"},{"download_count":6353805,"project":"pyqt5"},{"download_count":6347295,"project":"yappi"},{"download_count":6345776,"project":"onnx"},{"download_count":6339257,"project":"mypy-boto3-redshift-data"},{"download_count":6335074,"project":"google"},{"download_count":6326997,"project":"boltons"},{"download_count":6325045,"project":"jellyfish"},{"download_count":6324217,"project":"wcmatch"},{"download_count":6303016,"project":"ray"},{"download_count":6302917,"project":"nvidia-cublas-cu11"},{"download_count":6287213,"project":"eval-type-backport"},{"download_count":6237671,"project":"voluptuous"},{"download_count":6195595,"project":"mkdocs-material"},{"download_count":6161424,"project":"nvidia-cudnn-cu11"},{"download_count":6154272,"project":"crcmod"},{"download_count":6132930,"project":"minimal-snowplow-tracker"},{"download_count":6119158,"project":"slackclient"},{"download_count":6115354,"project":"magicattr"},{"download_count":6114669,"project":"timm"},{"download_count":6105505,"project":"torchaudio"},{"download_count":6103575,"project":"azure-keyvault"},{"download_count":6102758,"project":"junitparser"},{"download_count":6065887,"project":"pyerfa"},{"download_count":6059799,"project":"lightning-utilities"},{"download_count":6040908,"project":"setuptools-rust"},{"download_count":6023943,"project":"azure-batch"},{"download_count":6022948,"project":"fs"},{"download_count":6016547,"project":"pika"},{"download_count":6008273,"project":"grpc-interceptor"},{"download_count":5971141,"project":"nvidia-cuda-runtime-cu11"},{"download_count":5957834,"project":"types-dataclasses"},{"download_count":5956333,"project":"geographiclib"},{"download_count":5941382,"project":"peewee"},{"download_count":5938951,"project":"marshmallow-enum"},{"download_count":5935143,"project":"requests-ntlm"},{"download_count":5933489,"project":"geopy"},{"download_count":5931037,"project":"nvidia-cuda-nvrtc-cu11"},{"download_count":5930645,"project":"azure-mgmt-compute"},{"download_count":5919911,"project":"inject"},{"download_count":5898694,"project":"pyotp"},{"download_count":5890819,"project":"geoip2"},{"download_count":5883658,"project":"emoji"},{"download_count":5879668,"project":"keras-applications"},{"download_count":5873765,"project":"jsonlines"},{"download_count":5871827,"project":"pint"},{"download_count":5870895,"project":"pathy"},{"download_count":5870753,"project":"junit-xml"},{"download_count":5862711,"project":"pytest-localserver"},{"download_count":5852115,"project":"azure-mgmt-containerinstance"},{"download_count":5841007,"project":"eth-account"},{"download_count":5810689,"project":"pyhcl"},{"download_count":5808618,"project":"pyqt5-sip"},{"download_count":5806552,"project":"ultralytics"},{"download_count":5788322,"project":"tokenize-rt"},{"download_count":5781417,"project":"adlfs"},{"download_count":5768510,"project":"weasel"},{"download_count":5758810,"project":"reportlab"},{"download_count":5752031,"project":"jsondiff"},{"download_count":5742435,"project":"flask-restful"},{"download_count":5722309,"project":"jsonref"},{"download_count":5720409,"project":"immutables"},{"download_count":5708566,"project":"pandas-stubs"},{"download_count":5701597,"project":"tomli-w"},{"download_count":5694562,"project":"aws-lambda-powertools"},{"download_count":5691989,"project":"zope-deprecation"},{"download_count":5686811,"project":"textual"},{"download_count":5679508,"project":"apache-airflow-providers-amazon"},{"download_count":5661908,"project":"pywin32-ctypes"},{"download_count":5659972,"project":"maxminddb"},{"download_count":5644642,"project":"elementpath"},{"download_count":5623895,"project":"ciso8601"},{"download_count":5621609,"project":"webdriver-manager"},{"download_count":5615313,"project":"azure-graphrbac"},{"download_count":5614365,"project":"pycares"},{"download_count":5604707,"project":"faiss-cpu"},{"download_count":5583660,"project":"apache-airflow-providers-smtp"},{"download_count":5578261,"project":"asyncio"},{"download_count":5565586,"project":"cohere"},{"download_count":5562187,"project":"feedparser"},{"download_count":5557556,"project":"bandit"},{"download_count":5544112,"project":"aiodns"},{"download_count":5533252,"project":"cloudformation-cli"},{"download_count":5524450,"project":"flit-core"},{"download_count":5519177,"project":"h3"},{"download_count":5516452,"project":"pastedeploy"},{"download_count":5514337,"project":"python-nvd3"},{"download_count":5513116,"project":"ftfy"},{"download_count":5504984,"project":"pdfminer-six"},{"download_count":5502852,"project":"apache-airflow-providers-common-io"},{"download_count":5498948,"project":"cloudformation-cli-java-plugin"},{"download_count":5497870,"project":"cloudformation-cli-python-plugin"},{"download_count":5496344,"project":"cloudformation-cli-go-plugin"},{"download_count":5494251,"project":"cloudformation-cli-typescript-plugin"},{"download_count":5488228,"project":"astropy-iers-data"},{"download_count":5469680,"project":"rdflib"},{"download_count":5465349,"project":"swagger-ui-bundle"},{"download_count":5460413,"project":"einops"},{"download_count":5439083,"project":"distributed"},{"download_count":5418902,"project":"service-identity"},{"download_count":5380048,"project":"google-analytics-admin"},{"download_count":5378518,"project":"pyqt5-qt5"},{"download_count":5355797,"project":"zc-lockfile"},{"download_count":5349527,"project":"autograd"},{"download_count":5348837,"project":"deltalake"},{"download_count":5321640,"project":"paho-mqtt"},{"download_count":5314244,"project":"mkdocs"},{"download_count":5307906,"project":"aioresponses"},{"download_count":5288292,"project":"stripe"},{"download_count":5284352,"project":"orderly-set"},{"download_count":5265463,"project":"filterpy"},{"download_count":5260945,"project":"json-merge-patch"},{"download_count":5248996,"project":"azure-mgmt-authorization"},{"download_count":5248727,"project":"checkov"},{"download_count":5242610,"project":"futures"},{"download_count":5239760,"project":"azure-mgmt-network"},{"download_count":5216760,"project":"blessed"},{"download_count":5216090,"project":"opentelemetry-instrumentation-wsgi"},{"download_count":5214456,"project":"ldap3"},{"download_count":5198666,"project":"multimethod"},{"download_count":5186786,"project":"azure-mgmt-keyvault"},{"download_count":5178988,"project":"teradatasql"},{"download_count":5178541,"project":"hiredis"},{"download_count":5161510,"project":"python-telegram-bot"},{"download_count":5155171,"project":"scp"},{"download_count":5145812,"project":"pulp"},{"download_count":5142503,"project":"flexparser"},{"download_count":5127908,"project":"pymupdf"},{"download_count":5126057,"project":"cssselect2"},{"download_count":5125163,"project":"pydocstyle"},{"download_count":5120677,"project":"apache-airflow-providers-docker"},{"download_count":5110584,"project":"elasticsearch-dsl"},{"download_count":5106956,"project":"pyperclip"},{"download_count":5088196,"project":"flexcache"},{"download_count":5086428,"project":"ndg-httpsclient"},{"download_count":5082663,"project":"pytest-forked"},{"download_count":5068791,"project":"dpath"},{"download_count":5063825,"project":"azure-keyvault-certificates"},{"download_count":5051593,"project":"microsoft-kiota-http"},{"download_count":5048196,"project":"pyaml"},{"download_count":5048156,"project":"google-cloud"},{"download_count":5031902,"project":"meson"},{"download_count":5030967,"project":"snowflake-snowpark-python"},{"download_count":4996095,"project":"albumentations"},{"download_count":4993470,"project":"async-generator"},{"download_count":4989596,"project":"sanic"},{"download_count":4983759,"project":"prefect"},{"download_count":4971645,"project":"aiohttp-retry"},{"download_count":4967034,"project":"readchar"},{"download_count":4966132,"project":"pathlib2"},{"download_count":4950264,"project":"twilio"},{"download_count":4935024,"project":"sphinx-autodoc-typehints"},{"download_count":4933086,"project":"pygame"},{"download_count":4903261,"project":"addict"},{"download_count":4898367,"project":"pytz-deprecation-shim"},{"download_count":4887802,"project":"posthog"},{"download_count":4862028,"project":"fiona"},{"download_count":4857690,"project":"fabric"},{"download_count":4844894,"project":"strictyaml"},{"download_count":4838350,"project":"lark-parser"},{"download_count":4837274,"project":"pyinstrument"},{"download_count":4822717,"project":"types-paramiko"},{"download_count":4816421,"project":"falcon"},{"download_count":4812411,"project":"strenum"},{"download_count":4804394,"project":"userpath"},{"download_count":4792325,"project":"gradio-client"},{"download_count":4787974,"project":"apache-airflow-providers-common-compat"},{"download_count":4787564,"project":"mongomock"},{"download_count":4765126,"project":"azure-eventhub"},{"download_count":4755839,"project":"sanic-routing"},{"download_count":4748492,"project":"asyncssh"},{"download_count":4746827,"project":"httpx-sse"},{"download_count":4734450,"project":"constructs"},{"download_count":4732019,"project":"mixpanel"},{"download_count":4730586,"project":"influxdb-client"},{"download_count":4730052,"project":"ghp-import"},{"download_count":4722801,"project":"xmlschema"},{"download_count":4722261,"project":"ddsketch"},{"download_count":4716002,"project":"qtpy"},{"download_count":4699957,"project":"dask-expr"},{"download_count":4699235,"project":"azure-kusto-ingest"},{"download_count":4688752,"project":"oldest-supported-numpy"},{"download_count":4686912,"project":"toposort"},{"download_count":4670019,"project":"stringcase"},{"download_count":4653780,"project":"filetype"},{"download_count":4643282,"project":"xyzservices"},{"download_count":4641466,"project":"atlassian-python-api"},{"download_count":4618674,"project":"uuid6"},{"download_count":4612240,"project":"pyyaml-env-tag"},{"download_count":4611325,"project":"mypy-boto3-sqs"},{"download_count":4609471,"project":"atomicwrites"},{"download_count":4607111,"project":"cerberus"},{"download_count":4606703,"project":"formulaic"},{"download_count":4593953,"project":"sklearn"},{"download_count":4584846,"project":"optree"},{"download_count":4581071,"project":"pytest-env"},{"download_count":4578306,"project":"mypy-boto3-dynamodb"},{"download_count":4572342,"project":"binaryornot"},{"download_count":4548317,"project":"webtest"},{"download_count":4532057,"project":"pyelftools"},{"download_count":4530914,"project":"parse-type"},{"download_count":4525478,"project":"firebase-admin"},{"download_count":4510346,"project":"openlineage-integration-common"},{"download_count":4507363,"project":"pgpy"},{"download_count":4507118,"project":"eventlet"},{"download_count":4501346,"project":"sqlalchemy-redshift"},{"download_count":4494965,"project":"qrcode"},{"download_count":4489110,"project":"schedule"},{"download_count":4484975,"project":"jax"},{"download_count":4470931,"project":"chroma-hnswlib"},{"download_count":4455958,"project":"mypy-boto3-glue"},{"download_count":4445887,"project":"pandera"},{"download_count":4444138,"project":"anthropic"},{"download_count":4419167,"project":"html5tagger"},{"download_count":4417656,"project":"nbclassic"},{"download_count":4417224,"project":"tracerite"},{"download_count":4415948,"project":"mypy-protobuf"},{"download_count":4411558,"project":"azure-devops"},{"download_count":4409343,"project":"bokeh"},{"download_count":4407562,"project":"construct"},{"download_count":4406092,"project":"click-option-group"},{"download_count":4377725,"project":"acryl-datahub"},{"download_count":4373870,"project":"face"},{"download_count":4342707,"project":"python-engineio"},{"download_count":4339112,"project":"pytest-randomly"},{"download_count":4330953,"project":"glom"},{"download_count":4329708,"project":"python-socketio"},{"download_count":4324456,"project":"transaction"},{"download_count":4321658,"project":"tensorboardx"},{"download_count":4312629,"project":"smbprotocol"},{"download_count":4309656,"project":"gensim"},{"download_count":4307537,"project":"pyarrow-hotfix"},{"download_count":4307391,"project":"ipaddress"},{"download_count":4305163,"project":"convertdate"},{"download_count":4280694,"project":"kfp-pipeline-spec"},{"download_count":4268557,"project":"meson-python"},{"download_count":4262476,"project":"django-extensions"},{"download_count":4258244,"project":"apprise"},{"download_count":4256374,"project":"mkdocs-material-extensions"},{"download_count":4254489,"project":"python-jenkins"},{"download_count":4252992,"project":"opentelemetry-instrumentation-flask"},{"download_count":4251279,"project":"cloudevents"},{"download_count":4244976,"project":"mypy-boto3-secretsmanager"},{"download_count":4244043,"project":"grpcio-reflection"},{"download_count":4242192,"project":"orderedmultidict"},{"download_count":4240748,"project":"pyrfc3339"},{"download_count":4238147,"project":"gym-notices"},{"download_count":4236748,"project":"pipx"},{"download_count":4236111,"project":"azure-mgmt-datalake-store"},{"download_count":4235593,"project":"types-toml"},{"download_count":4233970,"project":"langdetect"},{"download_count":4218657,"project":"numexpr"},{"download_count":4214929,"project":"ipdb"},{"download_count":4204480,"project":"uncertainties"},{"download_count":4200883,"project":"flask-migrate"},{"download_count":4198383,"project":"pyproject-metadata"},{"download_count":4188924,"project":"cookiecutter"},{"download_count":4185327,"project":"url-normalize"},{"download_count":4176283,"project":"azure-data-tables"},{"download_count":4175649,"project":"geventhttpclient"},{"download_count":4172302,"project":"namex"},{"download_count":4170517,"project":"types-pyopenssl"},{"download_count":4165903,"project":"rich-click"},{"download_count":4160262,"project":"interface-meta"},{"download_count":4159791,"project":"mypy-boto3-lambda"},{"download_count":4152468,"project":"python-editor"},{"download_count":4149001,"project":"pytest-split"},{"download_count":4146196,"project":"py-partiql-parser"},{"download_count":4144305,"project":"azure-mgmt-containerservice"},{"download_count":4121991,"project":"yfinance"},{"download_count":4113141,"project":"btrees"},{"download_count":4088938,"project":"furl"},{"download_count":4079481,"project":"keras-preprocessing"},{"download_count":4070130,"project":"zope-proxy"},{"download_count":4069877,"project":"llama-parse"},{"download_count":4062078,"project":"persistent"},{"download_count":4058518,"project":"hatch-vcs"},{"download_count":4057617,"project":"optuna"},{"download_count":4056992,"project":"pytest-benchmark"},{"download_count":4051226,"project":"yandexcloud"},{"download_count":4049933,"project":"hdfs"},{"download_count":4049005,"project":"opentelemetry-instrumentation-dbapi"},{"download_count":4046760,"project":"dbt-snowflake"},{"download_count":4038472,"project":"dash"},{"download_count":4029013,"project":"spark-nlp"},{"download_count":4027354,"project":"zope-deferredimport"},{"download_count":4025264,"project":"jaxlib"},{"download_count":4024550,"project":"daff"},{"download_count":4017545,"project":"multipart"},{"download_count":4005866,"project":"nox"},{"download_count":4001815,"project":"tensorboard-plugin-wit"},{"download_count":3995705,"project":"diff-cover"},{"download_count":3987332,"project":"azure-mgmt-monitor"},{"download_count":3974337,"project":"recordlinkage"},{"download_count":3973393,"project":"prometheus-flask-exporter"},{"download_count":3971822,"project":"minio"},{"download_count":3970735,"project":"facebook-business"},{"download_count":3963810,"project":"w3lib"},{"download_count":3963146,"project":"simple-websocket"},{"download_count":3956288,"project":"xlwt"},{"download_count":3950043,"project":"zodbpickle"},{"download_count":3949353,"project":"pdfplumber"},{"download_count":3949319,"project":"flask-httpauth"},{"download_count":3945607,"project":"pydantic-extra-types"},{"download_count":3928417,"project":"django-storages"},{"download_count":3924314,"project":"zconfig"},{"download_count":3923086,"project":"cog"},{"download_count":3920598,"project":"zodb"},{"download_count":3920416,"project":"korean-lunar-calendar"},{"download_count":3915004,"project":"altgraph"},{"download_count":3903162,"project":"cx-oracle"},{"download_count":3898679,"project":"microsoft-kiota-abstractions"},{"download_count":3891489,"project":"azure-mgmt-sql"},{"download_count":3886908,"project":"hexbytes"},{"download_count":3871497,"project":"azure-mgmt-redis"},{"download_count":3861647,"project":"asteval"},{"download_count":3855293,"project":"opentelemetry-instrumentation-urllib3"},{"download_count":3845514,"project":"javaproperties"},{"download_count":3836600,"project":"pympler"},{"download_count":3834684,"project":"eth-rlp"},{"download_count":3832418,"project":"python-decouple"},{"download_count":3820464,"project":"jwcrypto"},{"download_count":3808883,"project":"azure-mgmt-managementgroups"},{"download_count":3804895,"project":"openlineage-python"},{"download_count":3800043,"project":"shortuuid"},{"download_count":3799610,"project":"singer-python"},{"download_count":3794528,"project":"roman"},{"download_count":3790092,"project":"aiohttp-cors"},{"download_count":3789289,"project":"azure-mgmt-web"},{"download_count":3788859,"project":"coveralls"},{"download_count":3764662,"project":"griffe"},{"download_count":3762620,"project":"tensorflow-metadata"},{"download_count":3761849,"project":"pathable"},{"download_count":3757847,"project":"terminaltables"},{"download_count":3745405,"project":"pipdeptree"},{"download_count":3743335,"project":"pytest-sugar"},{"download_count":3735774,"project":"hydra-core"},{"download_count":3734034,"project":"azure-mgmt-servicebus"},{"download_count":3734004,"project":"fakeredis"},{"download_count":3728498,"project":"rdkit"},{"download_count":3727845,"project":"catboost"},{"download_count":3725567,"project":"biopython"},{"download_count":3718174,"project":"types-six"},{"download_count":3716472,"project":"pyfakefs"},{"download_count":3713820,"project":"opentelemetry-instrumentation-urllib"},{"download_count":3707273,"project":"aioboto3"},{"download_count":3695224,"project":"py-spy"},{"download_count":3693264,"project":"python3-saml"},{"download_count":3692173,"project":"pyinstaller"},{"download_count":3681129,"project":"azure-mgmt-nspkg"},{"download_count":3673784,"project":"ffmpy"},{"download_count":3666807,"project":"tweepy"},{"download_count":3665190,"project":"flower"},{"download_count":3657370,"project":"pooch"},{"download_count":3657183,"project":"dbt-postgres"},{"download_count":3637501,"project":"openxlab"},{"download_count":3621587,"project":"logzero"},{"download_count":3621151,"project":"azure-synapse-artifacts"},{"download_count":3614774,"project":"qdrant-client"},{"download_count":3614580,"project":"marshmallow-dataclass"},{"download_count":3612508,"project":"llama-index-core"},{"download_count":3609735,"project":"azure-mgmt-msi"},{"download_count":3597079,"project":"pypika"},{"download_count":3595711,"project":"uamqp"},{"download_count":3593375,"project":"web3"},{"download_count":3588059,"project":"azure-mgmt-rdbms"},{"download_count":3588052,"project":"singer-sdk"},{"download_count":3578200,"project":"types-tabulate"},{"download_count":3577144,"project":"moreorless"},{"download_count":3575406,"project":"django-cleanup"},{"download_count":3551490,"project":"litellm"},{"download_count":3548036,"project":"rasterio"},{"download_count":3546700,"project":"soundfile"},{"download_count":3535330,"project":"eth-keys"},{"download_count":3526729,"project":"proglog"},{"download_count":3526162,"project":"opentelemetry-instrumentation-psycopg2"},{"download_count":3522876,"project":"python3-openid"},{"download_count":3522261,"project":"azure-mgmt-dns"},{"download_count":3521186,"project":"azure-mgmt-datalake-nspkg"},{"download_count":3520946,"project":"robotframework"},{"download_count":3520436,"project":"functions-framework"},{"download_count":3511872,"project":"pyinstaller-hooks-contrib"},{"download_count":3508207,"project":"clickhouse-connect"},{"download_count":3502094,"project":"whitenoise"},{"download_count":3499060,"project":"questionary"},{"download_count":3495759,"project":"myst-parser"},{"download_count":3488680,"project":"zict"},{"download_count":3484394,"project":"deepmerge"},{"download_count":3481770,"project":"qtconsole"},{"download_count":3462242,"project":"enum-compat"},{"download_count":3461042,"project":"netcdf4"},{"download_count":3458963,"project":"discord-py"},{"download_count":3456967,"project":"configobj"},{"download_count":3449882,"project":"beartype"},{"download_count":3444477,"project":"colorful"},{"download_count":3444184,"project":"mypy-boto3-cloudformation"},{"download_count":3427901,"project":"appnope"},{"download_count":3418834,"project":"azure-mgmt-eventhub"},{"download_count":3415833,"project":"lxml-html-clean"},{"download_count":3406092,"project":"opentelemetry-instrumentation-django"},{"download_count":3404860,"project":"dbt-bigquery"},{"download_count":3403556,"project":"ddt"},{"download_count":3398729,"project":"mypy-boto3-ec2"},{"download_count":3397049,"project":"pymeeus"},{"download_count":3391341,"project":"user-agents"},{"download_count":3387525,"project":"jsii"},{"download_count":3386000,"project":"kfp-server-api"},{"download_count":3380867,"project":"azure-monitor-opentelemetry-exporter"},{"download_count":3377658,"project":"multitasking"},{"download_count":3375980,"project":"azure-mgmt-advisor"},{"download_count":3374958,"project":"unittest-xml-reporting"},{"download_count":3372996,"project":"types-cachetools"},{"download_count":3369678,"project":"shopifyapi"},{"download_count":3367053,"project":"trailrunner"},{"download_count":3362908,"project":"azure-mgmt-batch"},{"download_count":3358950,"project":"knack"},{"download_count":3355476,"project":"sagemaker-core"},{"download_count":3354780,"project":"requests-cache"},{"download_count":3354187,"project":"mkdocs-get-deps"},{"download_count":3350526,"project":"fastcore"},{"download_count":3347888,"project":"pyactiveresource"},{"download_count":3341864,"project":"azure-mgmt-loganalytics"},{"download_count":3337694,"project":"pymsteams"},{"download_count":3323008,"project":"sphinx-copybutton"},{"download_count":3321222,"project":"cftime"},{"download_count":3316890,"project":"pdf2image"},{"download_count":3316600,"project":"pyphen"},{"download_count":3311524,"project":"dynaconf"},{"download_count":3308024,"project":"azure-mgmt-cdn"},{"download_count":3297484,"project":"uuid"},{"download_count":3291335,"project":"django-redis"},{"download_count":3287301,"project":"restrictedpython"},{"download_count":3283541,"project":"click-default-group"},{"download_count":3279609,"project":"kaleido"},{"download_count":3275762,"project":"azure-mgmt-search"},{"download_count":3275517,"project":"pathvalidate"},{"download_count":3273465,"project":"speechbrain"},{"download_count":3270763,"project":"patchelf"},{"download_count":3267567,"project":"llama-index"},{"download_count":3266463,"project":"pyhumps"},{"download_count":3262616,"project":"hyperpyyaml"},{"download_count":3262302,"project":"fake-useragent"},{"download_count":3256535,"project":"azure-mgmt-cognitiveservices"},{"download_count":3256524,"project":"autoflake"},{"download_count":3254376,"project":"affine"},{"download_count":3249280,"project":"geojson"},{"download_count":3248699,"project":"azure-mgmt-recoveryservices"},{"download_count":3247887,"project":"azure-mgmt-trafficmanager"},{"download_count":3242388,"project":"apache-airflow-providers-sftp"},{"download_count":3239731,"project":"azure-mgmt-marketplaceordering"},{"download_count":3239309,"project":"azure-mgmt-iothub"},{"download_count":3236268,"project":"pinecone-client"},{"download_count":3236267,"project":"types-docutils"},{"download_count":3235101,"project":"codecov"},{"download_count":3230583,"project":"azure-mgmt-recoveryservicesbackup"},{"download_count":3228509,"project":"azure-mgmt-eventgrid"},{"download_count":3227804,"project":"cmdstanpy"},{"download_count":3226379,"project":"zope-i18nmessageid"},{"download_count":3225478,"project":"opentelemetry-instrumentation-logging"},{"download_count":3222930,"project":"azure-mgmt-devtestlabs"},{"download_count":3219634,"project":"azure-cosmosdb-table"},{"download_count":3209955,"project":"pgvector"},{"download_count":3209042,"project":"pathlib-abc"},{"download_count":3206973,"project":"kazoo"},{"download_count":3205620,"project":"bitstring"},{"download_count":3197952,"project":"pyhamcrest"},{"download_count":3196505,"project":"plotnine"},{"download_count":3185739,"project":"azure-appconfiguration"},{"download_count":3173333,"project":"azure-cosmosdb-nspkg"},{"download_count":3170029,"project":"paginate"},{"download_count":3169256,"project":"motor"},{"download_count":3167819,"project":"zope-tal"},{"download_count":3167487,"project":"azure-mgmt-applicationinsights"},{"download_count":3158206,"project":"cassandra-driver"},{"download_count":3157515,"project":"python-snappy"},{"download_count":3153516,"project":"opentelemetry-distro"},{"download_count":3147648,"project":"fpdf"},{"download_count":3138969,"project":"flake8-bugbear"},{"download_count":3130449,"project":"colour"},{"download_count":3128093,"project":"azureml-core"},{"download_count":3126620,"project":"dash-core-components"},{"download_count":3124404,"project":"types-cffi"},{"download_count":3123860,"project":"django-debug-toolbar"},{"download_count":3117834,"project":"dash-html-components"},{"download_count":3117463,"project":"pep8"},{"download_count":3109840,"project":"dash-table"},{"download_count":3106829,"project":"pycocotools"},{"download_count":3098024,"project":"publication"},{"download_count":3096038,"project":"azure-mgmt-servicefabric"},{"download_count":3091965,"project":"chameleon"},{"download_count":3088609,"project":"azure-mgmt-signalr"},{"download_count":3087416,"project":"asana"},{"download_count":3086872,"project":"azure-mgmt-billing"},{"download_count":3085389,"project":"python-box"},{"download_count":3082820,"project":"azure-mgmt-media"},{"download_count":3081097,"project":"msgraph-core"},{"download_count":3077320,"project":"fixedint"},{"download_count":3076580,"project":"plumbum"},{"download_count":3076201,"project":"stdlibs"},{"download_count":3076070,"project":"azure-mgmt-policyinsights"},{"download_count":3074291,"project":"azure-mgmt-iothubprovisioningservices"},{"download_count":3073349,"project":"azure-mgmt-batchai"},{"download_count":3064903,"project":"usort"},{"download_count":3063155,"project":"venusian"},{"download_count":3059006,"project":"locust"},{"download_count":3057036,"project":"microsoft-kiota-authentication-azure"},{"download_count":3056138,"project":"unstructured-client"},{"download_count":3049907,"project":"pyfiglet"},{"download_count":3046743,"project":"azure-mgmt-datamigration"},{"download_count":3046320,"project":"influxdb"},{"download_count":3046131,"project":"prophet"},{"download_count":3045258,"project":"sql-metadata"},{"download_count":3043220,"project":"accesscontrol"},{"download_count":3042339,"project":"azure-mgmt-maps"},{"download_count":3040927,"project":"azure-mgmt-iotcentral"},{"download_count":3039782,"project":"ufmt"},{"download_count":3039170,"project":"azure-functions"},{"download_count":3035040,"project":"pyhocon"},{"download_count":3030982,"project":"dunamai"},{"download_count":3030159,"project":"mypy-boto3-sts"},{"download_count":3024626,"project":"hatch-fancy-pypi-readme"},{"download_count":3022776,"project":"nested-lookup"},{"download_count":3020419,"project":"python-arango"},{"download_count":3019203,"project":"jsonschema-path"},{"download_count":3017562,"project":"lightning"},{"download_count":3013519,"project":"expiringdict"},{"download_count":3010145,"project":"sphinx-autoapi"},{"download_count":3009761,"project":"objsize"},{"download_count":3007421,"project":"acquisition"},{"download_count":2998991,"project":"memray"},{"download_count":2992720,"project":"maturin"},{"download_count":2981598,"project":"uritools"},{"download_count":2975664,"project":"pytest-messenger"},{"download_count":2966827,"project":"webargs"},{"download_count":2962435,"project":"sgmllib3k"},{"download_count":2954613,"project":"netifaces"},{"download_count":2952534,"project":"reactivex"},{"download_count":2941606,"project":"zope-hookable"},{"download_count":2937594,"project":"lru-dict"},{"download_count":2934030,"project":"azure-monitor-query"},{"download_count":2929323,"project":"numcodecs"},{"download_count":2928023,"project":"pyxlsb"},{"download_count":2927749,"project":"zope-component"},{"download_count":2927336,"project":"yq"},{"download_count":2924885,"project":"injector"},{"download_count":2923450,"project":"aws-cdk-integ-tests-alpha"},{"download_count":2918358,"project":"zope-schema"},{"download_count":2915156,"project":"vcrpy"},{"download_count":2914304,"project":"pypandoc"},{"download_count":2913578,"project":"librosa"},{"download_count":2898933,"project":"imageio-ffmpeg"},{"download_count":2895191,"project":"cbor2"},{"download_count":2893926,"project":"osqp"},{"download_count":2892709,"project":"simpleeval"},{"download_count":2890568,"project":"unidiff"},{"download_count":2886500,"project":"zope-security"},{"download_count":2886329,"project":"html2text"},{"download_count":2883843,"project":"python-gettext"},{"download_count":2882996,"project":"mizani"},{"download_count":2882141,"project":"zope-exceptions"},{"download_count":2881229,"project":"cssutils"},{"download_count":2880657,"project":"environs"},{"download_count":2879724,"project":"pydata-sphinx-theme"},{"download_count":2871163,"project":"extensionclass"},{"download_count":2863055,"project":"dm-tree"},{"download_count":2859430,"project":"launchdarkly-server-sdk"},{"download_count":2856921,"project":"itypes"},{"download_count":2856093,"project":"zope-i18n"},{"download_count":2856061,"project":"zope-publisher"},{"download_count":2854628,"project":"zope-configuration"},{"download_count":2854252,"project":"persistence"},{"download_count":2853795,"project":"azure-storage-file"},{"download_count":2852768,"project":"zope-container"},{"download_count":2852168,"project":"zope-testing"},{"download_count":2851803,"project":"jdcal"},{"download_count":2850780,"project":"translationstring"},{"download_count":2849614,"project":"zope-lifecycleevent"},{"download_count":2848890,"project":"zope-location"},{"download_count":2846475,"project":"zope-browser"},{"download_count":2846170,"project":"zope-contenttype"},{"download_count":2840505,"project":"rlp"},{"download_count":2837647,"project":"zope-cachedescriptors"},{"download_count":2837513,"project":"zope-dottedname"},{"download_count":2835624,"project":"zope-traversing"},{"download_count":2835526,"project":"av"},{"download_count":2835241,"project":"google-cloud-datastore"},{"download_count":2834539,"project":"wsgiproxy2"},{"download_count":2831360,"project":"astral"},{"download_count":2831061,"project":"zope-size"},{"download_count":2830861,"project":"zope-filerepresentation"},{"download_count":2830857,"project":"zope-annotation"},{"download_count":2829970,"project":"zope-site"},{"download_count":2829654,"project":"bump2version"},{"download_count":2828841,"project":"zope"},{"download_count":2828627,"project":"inquirer"},{"download_count":2828120,"project":"papermill"},{"download_count":2827650,"project":"zope-processlifetime"},{"download_count":2826818,"project":"authencoding"},{"download_count":2826699,"project":"django-environ"},{"download_count":2826420,"project":"zexceptions"},{"download_count":2826202,"project":"zope-datetime"},{"download_count":2824763,"project":"djangorestframework-simplejwt"},{"download_count":2823127,"project":"documenttemplate"},{"download_count":2822214,"project":"zope-tales"},{"download_count":2821925,"project":"zope-pagetemplate"},{"download_count":2821920,"project":"nose2"},{"download_count":2819760,"project":"zope-contentprovider"},{"download_count":2819705,"project":"zope-structuredtext"},{"download_count":2819459,"project":"zope-browserpage"},{"download_count":2819308,"project":"zope-testbrowser"},{"download_count":2819109,"project":"zope-sequencesort"},{"download_count":2818928,"project":"z3c-pt"},{"download_count":2818915,"project":"zope-browserresource"},{"download_count":2817939,"project":"zope-ptresource"},{"download_count":2817204,"project":"zope-viewlet"},{"download_count":2817185,"project":"zope-browsermenu"},{"download_count":2815559,"project":"multimapping"},{"download_count":2813654,"project":"zope-globalrequest"},{"download_count":2805992,"project":"num2words"},{"download_count":2798890,"project":"pyusb"},{"download_count":2792134,"project":"fasttext-wheel"},{"download_count":2788930,"project":"olefile"},{"download_count":2787403,"project":"allure-python-commons"},{"download_count":2783721,"project":"sphinx-design"},{"download_count":2781823,"project":"aiokafka"},{"download_count":2780767,"project":"diffusers"},{"download_count":2775659,"project":"pynamodb"},{"download_count":2771611,"project":"behave"},{"download_count":2770945,"project":"amazon-ion"},{"download_count":2764729,"project":"zipfile38"},{"download_count":2752116,"project":"flaky"},{"download_count":2745286,"project":"datasketch"},{"download_count":2741765,"project":"python-pptx"},{"download_count":2736337,"project":"pastel"},{"download_count":2732350,"project":"sqlmodel"},{"download_count":2730431,"project":"types-markdown"},{"download_count":2730359,"project":"pyppeteer"},{"download_count":2730021,"project":"opentelemetry-exporter-prometheus"},{"download_count":2729897,"project":"rx"},{"download_count":2725907,"project":"sseclient-py"},{"download_count":2721330,"project":"ortools"},{"download_count":2719871,"project":"types-croniter"},{"download_count":2712878,"project":"sagemaker-mlflow"},{"download_count":2706654,"project":"bitstruct"},{"download_count":2704978,"project":"hupper"},{"download_count":2700840,"project":"dynamodb-json"},{"download_count":2694399,"project":"pypng"},{"download_count":2689873,"project":"testpath"},{"download_count":2689519,"project":"dictdiffer"},{"download_count":2682603,"project":"eth-keyfile"},{"download_count":2679200,"project":"azure-eventgrid"},{"download_count":2669922,"project":"appium-python-client"},{"download_count":2667561,"project":"testcontainers"},{"download_count":2666444,"project":"semgrep"},{"download_count":2666248,"project":"multipledispatch"},{"download_count":2665801,"project":"python-rapidjson"},{"download_count":2663314,"project":"hijri-converter"},{"download_count":2660161,"project":"apache-flink"},{"download_count":2660132,"project":"pep8-naming"},{"download_count":2654804,"project":"zarr"},{"download_count":2652712,"project":"apache-airflow-providers-microsoft-mssql"},{"download_count":2651542,"project":"respx"},{"download_count":2649135,"project":"repoze-lru"},{"download_count":2647439,"project":"unearth"},{"download_count":2645271,"project":"pefile"},{"download_count":2644357,"project":"pystache"},{"download_count":2641026,"project":"types-deprecated"},{"download_count":2638400,"project":"pyhive"},{"download_count":2635810,"project":"pemja"},{"download_count":2632260,"project":"pyogrio"},{"download_count":2630296,"project":"evaluate"},{"download_count":2624796,"project":"azure-synapse-spark"},{"download_count":2624048,"project":"geomet"},{"download_count":2623762,"project":"memory-profiler"},{"download_count":2616601,"project":"bitsandbytes"},{"download_count":2615432,"project":"python-crontab"},{"download_count":2610223,"project":"peft"},{"download_count":2609480,"project":"pytest-repeat"},{"download_count":2608981,"project":"aws-cdk-asset-awscli-v1"},{"download_count":2607756,"project":"apache-flink-libraries"},{"download_count":2605117,"project":"microsoft-kiota-serialization-json"},{"download_count":2594856,"project":"scandir"},{"download_count":2592177,"project":"google-cloud-pubsublite"},{"download_count":2591663,"project":"xmlsec"},{"download_count":2591587,"project":"elementary-data"},{"download_count":2585163,"project":"mkdocstrings-python"},{"download_count":2581000,"project":"opencensus-ext-logging"},{"download_count":2569369,"project":"quicktions"},{"download_count":2568452,"project":"timezonefinder"},{"download_count":2567565,"project":"sqlfluff"},{"download_count":2564269,"project":"drf-spectacular"},{"download_count":2563824,"project":"pmdarima"},{"download_count":2562470,"project":"hatch"},{"download_count":2560899,"project":"nvidia-ml-py"},{"download_count":2560445,"project":"flask-restx"},{"download_count":2559405,"project":"pyramid"},{"download_count":2558187,"project":"promise"},{"download_count":2556436,"project":"avro-gen3"},{"download_count":2550492,"project":"python-consul"},{"download_count":2550229,"project":"testfixtures"},{"download_count":2549913,"project":"google-generativeai"},{"download_count":2544613,"project":"sentinels"},{"download_count":2536539,"project":"click-spinner"},{"download_count":2536453,"project":"apache-airflow-providers-postgres"},{"download_count":2532675,"project":"openlineage-sql"},{"download_count":2528852,"project":"concurrent-log-handler"},{"download_count":2527581,"project":"click-log"},{"download_count":2523865,"project":"pytesseract"},{"download_count":2522478,"project":"pyhanko"},{"download_count":2520542,"project":"databricks-api"},{"download_count":2520093,"project":"newrelic"},{"download_count":2518187,"project":"igraph"},{"download_count":2512928,"project":"aiomqtt"},{"download_count":2506809,"project":"kivy"},{"download_count":2502980,"project":"hyperopt"},{"download_count":2501175,"project":"langchain-google-community"},{"download_count":2487432,"project":"plaster"},{"download_count":2487402,"project":"plaster-pastedeploy"},{"download_count":2482734,"project":"wget"},{"download_count":2481984,"project":"trimesh"},{"download_count":2476950,"project":"airbyte-api"},{"download_count":2470907,"project":"ultralytics-thop"},{"download_count":2468455,"project":"oss2"},{"download_count":2467842,"project":"scikit-build-core"},{"download_count":2466249,"project":"pprintpp"},{"download_count":2463586,"project":"sacrebleu"},{"download_count":2463502,"project":"genson"},{"download_count":2460911,"project":"lifelines"},{"download_count":2450431,"project":"mmcif"},{"download_count":2448912,"project":"scs"},{"download_count":2445331,"project":"scapy"},{"download_count":2442282,"project":"chromadb"},{"download_count":2440406,"project":"rtree"},{"download_count":2438656,"project":"easyconfig"},{"download_count":2437469,"project":"cheroot"},{"download_count":2435064,"project":"types-pymysql"},{"download_count":2434656,"project":"packageurl-python"},{"download_count":2433289,"project":"gym"},{"download_count":2431580,"project":"thefuzz"},{"download_count":2425974,"project":"aws-psycopg2"},{"download_count":2423007,"project":"expandvars"},{"download_count":2416008,"project":"django-stubs"},{"download_count":2413728,"project":"pypdfium2"},{"download_count":2411111,"project":"clickhouse-driver"},{"download_count":2410360,"project":"weasyprint"},{"download_count":2404878,"project":"poetry-dynamic-versioning"},{"download_count":2404156,"project":"yt-dlp"},{"download_count":2397835,"project":"s3path"},{"download_count":2397205,"project":"pex"},{"download_count":2396617,"project":"mbstrdecoder"},{"download_count":2394668,"project":"alibabacloud-adb20211201"},{"download_count":2392693,"project":"pytest-ordering"},{"download_count":2390230,"project":"flake8-isort"},{"download_count":2385452,"project":"django-timezone-field"},{"download_count":2384142,"project":"google-apitools"},{"download_count":2383496,"project":"aiohttp-sse-client"},{"download_count":2380846,"project":"awkward-cpp"},{"download_count":2378545,"project":"cvxpy"},{"download_count":2375896,"project":"datefinder"},{"download_count":2372243,"project":"lit"},{"download_count":2370649,"project":"nibabel"},{"download_count":2357760,"project":"license-expression"},{"download_count":2355418,"project":"sudachidict-core"},{"download_count":2354800,"project":"autobahn"},{"download_count":2353667,"project":"pinotdb"},{"download_count":2350828,"project":"boolean-py"},{"download_count":2349178,"project":"typepy"},{"download_count":2348887,"project":"types-aiofiles"},{"download_count":2345074,"project":"stanio"},{"download_count":2340753,"project":"thrift-sasl"},{"download_count":2340192,"project":"psycopg-pool"},{"download_count":2333901,"project":"latexcodec"},{"download_count":2332417,"project":"pygit2"},{"download_count":2332192,"project":"awkward"},{"download_count":2329097,"project":"allure-pytest"},{"download_count":2328545,"project":"txaio"},{"download_count":2317980,"project":"qdldl"},{"download_count":2316075,"project":"bashlex"},{"download_count":2309233,"project":"django-stubs-ext"},{"download_count":2307329,"project":"teradatasqlalchemy"},{"download_count":2299832,"project":"pybtex"},{"download_count":2287139,"project":"azure-mgmt-datalake-analytics"},{"download_count":2282570,"project":"biotite"},{"download_count":2280713,"project":"chevron"},{"download_count":2279275,"project":"umap-learn"},{"download_count":2278410,"project":"pyzstd"},{"download_count":2276602,"project":"dropbox"},{"download_count":2271369,"project":"sacremoses"},{"download_count":2271018,"project":"svgwrite"},{"download_count":2268880,"project":"azure-cli-core"},{"download_count":2263727,"project":"cleanco"},{"download_count":2260495,"project":"coreapi"},{"download_count":2259566,"project":"ffmpeg-python"},{"download_count":2258713,"project":"azure-mgmt-reservations"},{"download_count":2256452,"project":"eascheduler"},{"download_count":2251386,"project":"pyzipper"},{"download_count":2248654,"project":"boxsdk"},{"download_count":2244492,"project":"opentelemetry-instrumentation-grpc"},{"download_count":2239446,"project":"jwt"},{"download_count":2239446,"project":"ifaddr"},{"download_count":2235949,"project":"google-ai-generativelanguage"},{"download_count":2229922,"project":"findspark"},{"download_count":2227967,"project":"cyclonedx-python-lib"},{"download_count":2223175,"project":"ckzg"},{"download_count":2217795,"project":"pypiwin32"},{"download_count":2217469,"project":"pyquery"},{"download_count":2214880,"project":"dependency-injector"},{"download_count":2213686,"project":"pytest-order"},{"download_count":2209278,"project":"blobfile"},{"download_count":2207693,"project":"biotraj"},{"download_count":2206884,"project":"pytd"},{"download_count":2206881,"project":"pikepdf"},{"download_count":2198607,"project":"pycurl"},{"download_count":2191967,"project":"dbutils"},{"download_count":2190775,"project":"jsonpath-python"},{"download_count":2189495,"project":"pynndescent"},{"download_count":2187487,"project":"ephem"},{"download_count":2186262,"project":"flask-bcrypt"},{"download_count":2184975,"project":"soxr"},{"download_count":2181370,"project":"pymupdfb"},{"download_count":2179162,"project":"opencv-contrib-python"},{"download_count":2165169,"project":"drf-yasg"},{"download_count":2155225,"project":"rply"},{"download_count":2154791,"project":"azure-mgmt-consumption"},{"download_count":2154279,"project":"pyiceberg"},{"download_count":2150108,"project":"markdownify"},{"download_count":2147761,"project":"pytest-custom-exit-code"},{"download_count":2146536,"project":"vertica-python"},{"download_count":2144726,"project":"python-bidi"},{"download_count":2142782,"project":"aws-cdk-lib"},{"download_count":2137593,"project":"yamale"},{"download_count":2136768,"project":"pytest-check"},{"download_count":2135341,"project":"datamodel-code-generator"},{"download_count":2133641,"project":"python-pam"},{"download_count":2129196,"project":"supervisor"},{"download_count":2123625,"project":"pytest-base-url"},{"download_count":2117285,"project":"path"},{"download_count":2115736,"project":"tmtools"},{"download_count":2114858,"project":"markdown2"},{"download_count":2113532,"project":"base58"},{"download_count":2110874,"project":"iopath"},{"download_count":2110323,"project":"azure-loganalytics"},{"download_count":2109185,"project":"zopfli"},{"download_count":2099260,"project":"anytree"},{"download_count":2098933,"project":"neo4j"},{"download_count":2098056,"project":"pkgconfig"},{"download_count":2097987,"project":"o365"},{"download_count":2096940,"project":"py7zr"},{"download_count":2096513,"project":"furo"},{"download_count":2089812,"project":"ec2-metadata"},{"download_count":2086614,"project":"salesforce-bulk"},{"download_count":2083964,"project":"tree-sitter"},{"download_count":2077834,"project":"rollbar"},{"download_count":2074934,"project":"pyunormalize"},{"download_count":2074302,"project":"robotframework-pythonlibcore"},{"download_count":2070003,"project":"azure-mgmt-relay"},{"download_count":2069218,"project":"tablib"},{"download_count":2067445,"project":"notion-client"},{"download_count":2066624,"project":"diagrams"},{"download_count":2065888,"project":"audioread"},{"download_count":2064682,"project":"haversine"},{"download_count":2064315,"project":"commentjson"},{"download_count":2060648,"project":"strip-hints"},{"download_count":2060409,"project":"tritonclient"},{"download_count":2060241,"project":"aws-cdk-asset-kubectl-v20"},{"download_count":2060139,"project":"pynvml"},{"download_count":2059395,"project":"atpublic"},{"download_count":2058462,"project":"unstructured"},{"download_count":2054471,"project":"rfc3987"},{"download_count":2054251,"project":"comtypes"},{"download_count":2053837,"project":"pdpyras"},{"download_count":2053146,"project":"mkdocstrings"},{"download_count":2051885,"project":"ansible-compat"},{"download_count":2051822,"project":"azure"},{"download_count":2051664,"project":"socksio"},{"download_count":2050072,"project":"json-log-formatter"},{"download_count":2047694,"project":"requests-futures"},{"download_count":2046264,"project":"azure-mgmt-subscription"},{"download_count":2043808,"project":"pykwalify"},{"download_count":2042848,"project":"microsoft-kiota-serialization-text"},{"download_count":2039199,"project":"sqlglotrs"},{"download_count":2038702,"project":"yaspin"},{"download_count":2031535,"project":"multi-key-dict"},{"download_count":2026955,"project":"llama-index-indices-managed-llama-cloud"},{"download_count":2020356,"project":"psygnal"},{"download_count":2020231,"project":"joserfc"},{"download_count":2015952,"project":"flask-openid"},{"download_count":2014723,"project":"aliyun-python-sdk-kms"},{"download_count":2008191,"project":"yacs"},{"download_count":2001963,"project":"language-tags"},{"download_count":2000227,"project":"bumpversion"},{"download_count":1998411,"project":"grimp"},{"download_count":1995830,"project":"pyexasol"},{"download_count":1995693,"project":"pygsheets"},{"download_count":1995403,"project":"kornia"},{"download_count":1994658,"project":"django-celery-beat"},{"download_count":1994335,"project":"portpicker"},{"download_count":1991578,"project":"pyppmd"},{"download_count":1990081,"project":"pyaes"},{"download_count":1989105,"project":"llama-index-llms-openai"},{"download_count":1985869,"project":"curlify"},{"download_count":1984131,"project":"jaconv"},{"download_count":1980346,"project":"pyreadline3"},{"download_count":1978986,"project":"diff-match-patch"},{"download_count":1973861,"project":"torchsde"},{"download_count":1973585,"project":"std-uritemplate"},{"download_count":1968036,"project":"tensorflow-hub"},{"download_count":1966212,"project":"pybcj"},{"download_count":1959990,"project":"graphframes"},{"download_count":1959428,"project":"python-string-utils"},{"download_count":1952263,"project":"json-repair"},{"download_count":1944737,"project":"pydispatcher"},{"download_count":1937203,"project":"shtab"},{"download_count":1936295,"project":"dj-database-url"},{"download_count":1936071,"project":"py-serializable"},{"download_count":1934865,"project":"kivy-garden"},{"download_count":1933694,"project":"polling"},{"download_count":1931163,"project":"cloud-sql-python-connector"},{"download_count":1928197,"project":"azure-core-tracing-opentelemetry"},{"download_count":1927566,"project":"trampoline"},{"download_count":1926648,"project":"pytest-httpx"},{"download_count":1923124,"project":"tensorflow-datasets"},{"download_count":1919326,"project":"contextvars"},{"download_count":1918433,"project":"multivolumefile"},{"download_count":1917648,"project":"tld"},{"download_count":1910912,"project":"subprocess-tee"},{"download_count":1910840,"project":"singledispatch"},{"download_count":1901140,"project":"hologram"},{"download_count":1900933,"project":"azure-search-documents"},{"download_count":1899667,"project":"lmfit"},{"download_count":1899136,"project":"opsgenie-sdk"},{"download_count":1898920,"project":"databricks-connect"},{"download_count":1897766,"project":"requirements-parser"},{"download_count":1896267,"project":"cloudformation-cli-python-lib"},{"download_count":1892649,"project":"sudachipy"},{"download_count":1892367,"project":"azure-monitor-opentelemetry"},{"download_count":1892309,"project":"rustworkx"},{"download_count":1891112,"project":"dominate"},{"download_count":1889842,"project":"prometheus-fastapi-instrumentator"},{"download_count":1887759,"project":"python-ldap"},{"download_count":1886134,"project":"mysql-connector"},{"download_count":1884983,"project":"flake8-docstrings"},{"download_count":1884474,"project":"funcy"},{"download_count":1882077,"project":"signalfx"},{"download_count":1881983,"project":"gdown"},{"download_count":1880722,"project":"sounddevice"},{"download_count":1880659,"project":"pytest-json-report"},{"download_count":1880108,"project":"stone"},{"download_count":1878714,"project":"aiofile"},{"download_count":1874716,"project":"snuggs"},{"download_count":1874171,"project":"google-analytics-data"},{"download_count":1873784,"project":"pydicom"},{"download_count":1869726,"project":"pygeohash"},{"download_count":1862094,"project":"hjson"},{"download_count":1861462,"project":"azure-cli-telemetry"},{"download_count":1860463,"project":"flatten-json"},{"download_count":1859826,"project":"channels"},{"download_count":1859313,"project":"tzfpy"},{"download_count":1858076,"project":"mkdocs-autorefs"},{"download_count":1857059,"project":"edgegrid-python"},{"download_count":1854806,"project":"mockito"},{"download_count":1852024,"project":"opentelemetry-instrumentation-redis"},{"download_count":1851544,"project":"chispa"},{"download_count":1848499,"project":"pyluach"},{"download_count":1848014,"project":"pytest-aiohttp"},{"download_count":1847070,"project":"pynvim"},{"download_count":1846632,"project":"pytest-subtests"},{"download_count":1845360,"project":"shareplum"},{"download_count":1843889,"project":"sqlalchemy2-stubs"},{"download_count":1842621,"project":"lasio"},{"download_count":1841992,"project":"pymemcache"},{"download_count":1840440,"project":"types-jsonschema"},{"download_count":1839863,"project":"azure-ai-ml"},{"download_count":1834208,"project":"aioredis"},{"download_count":1833675,"project":"docker-compose"},{"download_count":1828270,"project":"accessible-pygments"},{"download_count":1825115,"project":"numpydoc"},{"download_count":1824635,"project":"pypyp"},{"download_count":1821167,"project":"syrupy"},{"download_count":1820531,"project":"truststore"},{"download_count":1817565,"project":"json-delta"},{"download_count":1817434,"project":"pyramid-jinja2"},{"download_count":1816060,"project":"memoization"},{"download_count":1815767,"project":"types-pillow"},{"download_count":1813922,"project":"colored"},{"download_count":1813591,"project":"dagster-docker"},{"download_count":1812943,"project":"pycairo"},{"download_count":1809068,"project":"urwid"},{"download_count":1808577,"project":"opentracing"},{"download_count":1808332,"project":"azure-mgmt-notificationhubs"},{"download_count":1806214,"project":"schematics"},{"download_count":1805431,"project":"django-oauth-toolkit"},{"download_count":1805285,"project":"aws-cdk-asset-node-proxy-agent-v6"},{"download_count":1805197,"project":"polib"},{"download_count":1803364,"project":"pyudev"},{"download_count":1802628,"project":"coreschema"},{"download_count":1798503,"project":"rq"},{"download_count":1796985,"project":"towncrier"},{"download_count":1795829,"project":"opentelemetry-instrumentation-sqlalchemy"},{"download_count":1791866,"project":"intervaltree"},{"download_count":1791185,"project":"boa-str"},{"download_count":1790426,"project":"pydyf"},{"download_count":1789719,"project":"f90nml"},{"download_count":1787374,"project":"undetected-chromedriver"},{"download_count":1787132,"project":"jproperties"},{"download_count":1786878,"project":"timeout-decorator"},{"download_count":1782904,"project":"tf-keras"},{"download_count":1781158,"project":"opentelemetry-resource-detector-azure"},{"download_count":1778471,"project":"insight-cli"},{"download_count":1773711,"project":"pytest-instafail"},{"download_count":1767231,"project":"virtualenv-clone"},{"download_count":1765908,"project":"azure-mgmt-logic"},{"download_count":1765873,"project":"google-cloud-recommendations-ai"},{"download_count":1764615,"project":"langgraph"},{"download_count":1762926,"project":"sphinx-basic-ng"},{"download_count":1760083,"project":"etils"},{"download_count":1758693,"project":"urllib3-secure-extra"},{"download_count":1754849,"project":"pure-sasl"},{"download_count":1752093,"project":"fasttext"},{"download_count":1750736,"project":"caio"},{"download_count":1747244,"project":"jq"},{"download_count":1744672,"project":"apache-sedona"},{"download_count":1744473,"project":"onnxruntime-gpu"},{"download_count":1744142,"project":"setuptools-scm-git-archive"},{"download_count":1740576,"project":"backports-functools-lru-cache"},{"download_count":1740473,"project":"sqlparams"},{"download_count":1732988,"project":"quart"},{"download_count":1732116,"project":"munch"},{"download_count":1728500,"project":"boostedblob"},{"download_count":1728185,"project":"azure-mgmt-apimanagement"},{"download_count":1721539,"project":"pylint-plugin-utils"},{"download_count":1718086,"project":"sarif-om"},{"download_count":1710311,"project":"azure-servicefabric"},{"download_count":1708273,"project":"bottleneck"},{"download_count":1708257,"project":"checksumdir"},{"download_count":1706274,"project":"types-certifi"},{"download_count":1705729,"project":"easydict"},{"download_count":1705092,"project":"jsonconversion"},{"download_count":1703574,"project":"wordcloud"},{"download_count":1703568,"project":"robotframework-seleniumlibrary"},{"download_count":1703314,"project":"dirtyjson"},{"download_count":1703199,"project":"xformers"},{"download_count":1702557,"project":"requests-aws-sign"},{"download_count":1702324,"project":"pdm"},{"download_count":1701274,"project":"pywinauto"},{"download_count":1700462,"project":"codeowners"},{"download_count":1698947,"project":"azure-mgmt"},{"download_count":1698736,"project":"inflate64"},{"download_count":1698193,"project":"clarabel"},{"download_count":1697849,"project":"ecos"},{"download_count":1695683,"project":"azure-mgmt-scheduler"},{"download_count":1694095,"project":"numdifftools"},{"download_count":1692204,"project":"opentelemetry-instrumentation-aiohttp-client"},{"download_count":1691672,"project":"pyserial-asyncio"},{"download_count":1690460,"project":"fpdf2"},{"download_count":1689219,"project":"mypy-boto3-athena"},{"download_count":1688279,"project":"slotted"},{"download_count":1686688,"project":"tlparse"},{"download_count":1686518,"project":"pamqp"},{"download_count":1684699,"project":"azure-mgmt-commerce"},{"download_count":1684222,"project":"parsel"},{"download_count":1684087,"project":"soda-core"},{"download_count":1683517,"project":"azure-mgmt-powerbiembedded"},{"download_count":1682742,"project":"nptyping"},{"download_count":1682481,"project":"tk"},{"download_count":1682195,"project":"flask-socketio"},{"download_count":1682112,"project":"gpxpy"},{"download_count":1680274,"project":"decopatch"},{"download_count":1678980,"project":"dagster"},{"download_count":1678866,"project":"azure-servicemanagement-legacy"},{"download_count":1678052,"project":"azure-mgmt-hanaonazure"},{"download_count":1677172,"project":"rpyc"},{"download_count":1675512,"project":"azure-mgmt-machinelearningcompute"},{"download_count":1674700,"project":"pyramid-debugtoolbar"},{"download_count":1674200,"project":"azure-mgmt-managementpartner"},{"download_count":1674126,"project":"jschema-to-python"},{"download_count":1672628,"project":"folium"},{"download_count":1671729,"project":"llama-index-agent-openai"},{"download_count":1671244,"project":"dockerfile-parse"},{"download_count":1671160,"project":"serial"},{"download_count":1669366,"project":"dbt-redshift"},{"download_count":1665156,"project":"databricks-pypi1"},{"download_count":1663593,"project":"vulture"},{"download_count":1662142,"project":"riot"},{"download_count":1661835,"project":"jieba"},{"download_count":1658155,"project":"hishel"},{"download_count":1656740,"project":"azure-schemaregistry"},{"download_count":1656401,"project":"pyclipper"},{"download_count":1655371,"project":"uwsgi"},{"download_count":1655279,"project":"editdistance"},{"download_count":1653576,"project":"pyramid-mako"},{"download_count":1653307,"project":"flashtext"},{"download_count":1652454,"project":"branca"},{"download_count":1652443,"project":"types-html5lib"},{"download_count":1652386,"project":"python-crfsuite"},{"download_count":1649510,"project":"azure-mgmt-devspaces"},{"download_count":1642992,"project":"casefy"},{"download_count":1640291,"project":"pytest-playwright"},{"download_count":1638816,"project":"findpython"},{"download_count":1636861,"project":"queuelib"},{"download_count":1635691,"project":"mongoengine"},{"download_count":1635209,"project":"moviepy"},{"download_count":1634051,"project":"lmdb"},{"download_count":1633620,"project":"mutagen"},{"download_count":1631454,"project":"azure-applicationinsights"},{"download_count":1630947,"project":"azure-cli"},{"download_count":1630071,"project":"dagster-pipes"},{"download_count":1629851,"project":"zstd"},{"download_count":1625941,"project":"pywinrm"},{"download_count":1623578,"project":"setuptools-git-versioning"},{"download_count":1623064,"project":"langchain-experimental"},{"download_count":1622911,"project":"llama-index-readers-llama-parse"},{"download_count":1621226,"project":"aws-secretsmanager-caching"},{"download_count":1619505,"project":"opentelemetry-instrumentation-httpx"},{"download_count":1619174,"project":"dataclasses-avroschema"},{"download_count":1617636,"project":"ws4py"},{"download_count":1616438,"project":"striprtf"},{"download_count":1611761,"project":"temporalio"},{"download_count":1609436,"project":"boto3-type-annotations"},{"download_count":1608845,"project":"mypy-boto3-iam"},{"download_count":1608586,"project":"types-ujson"},{"download_count":1606640,"project":"llama-index-readers-file"},{"download_count":1606488,"project":"dep-logic"},{"download_count":1601125,"project":"anyascii"},{"download_count":1598794,"project":"azure-mgmt-privatedns"},{"download_count":1597836,"project":"django-appconf"},{"download_count":1597461,"project":"aiogram"},{"download_count":1597274,"project":"backports-weakref"},{"download_count":1597155,"project":"pandas-datareader"},{"download_count":1596560,"project":"redis-py-cluster"},{"download_count":1595834,"project":"pywinpty"},{"download_count":1591143,"project":"prefect-aws"},{"download_count":1590423,"project":"pbs-installer"},{"download_count":1585505,"project":"daphne"},{"download_count":1584856,"project":"itemadapter"},{"download_count":1584732,"project":"tableauhyperapi"},{"download_count":1582631,"project":"safety"},{"download_count":1582359,"project":"codespell"},{"download_count":1578750,"project":"pipelinewise-singer-python"},{"download_count":1578660,"project":"django-model-utils"},{"download_count":1576410,"project":"opentelemetry-propagator-aws-xray"},{"download_count":1575389,"project":"github-heatmap"},{"download_count":1572930,"project":"types-cryptography"},{"download_count":1572481,"project":"pybuildkite"},{"download_count":1571984,"project":"imagehash"},{"download_count":1571237,"project":"fixtures"},{"download_count":1570747,"project":"autograd-gamma"},{"download_count":1568069,"project":"python-xlib"},{"download_count":1567576,"project":"pdfkit"},{"download_count":1566105,"project":"azure-mgmt-hdinsight"},{"download_count":1564384,"project":"cairocffi"},{"download_count":1563303,"project":"youtube-transcript-api"},{"download_count":1562301,"project":"alive-progress"},{"download_count":1561561,"project":"flametree"},{"download_count":1558563,"project":"jsonpath-rw"},{"download_count":1556382,"project":"pyopengl"},{"download_count":1555764,"project":"modin"},{"download_count":1554648,"project":"ansible-lint"},{"download_count":1554418,"project":"protego"},{"download_count":1553368,"project":"palettable"},{"download_count":1551850,"project":"boto3-stubs-lite"},{"download_count":1551114,"project":"scrapy"},{"download_count":1549634,"project":"types-psycopg2"},{"download_count":1549397,"project":"typeid-python"},{"download_count":1548183,"project":"types-mock"},{"download_count":1545131,"project":"types-python-slugify"},{"download_count":1544539,"project":"python-codon-tables"},{"download_count":1544144,"project":"dnachisel"},{"download_count":1542704,"project":"pysnmp"},{"download_count":1539631,"project":"install-jdk"},{"download_count":1536612,"project":"hdbcli"},{"download_count":1534510,"project":"google-cloud-trace"},{"download_count":1534306,"project":"asgi-lifespan"},{"download_count":1533876,"project":"pandasql"},{"download_count":1533259,"project":"mando"},{"download_count":1531014,"project":"nvidia-cusolver-cu11"},{"download_count":1529922,"project":"gprof2dot"},{"download_count":1528404,"project":"pulumi"},{"download_count":1525974,"project":"nbsphinx"},{"download_count":1525863,"project":"azure-mgmt-synapse"},{"download_count":1522300,"project":"nvidia-cufft-cu11"},{"download_count":1521669,"project":"azure-mgmt-security"},{"download_count":1521503,"project":"arpeggio"},{"download_count":1521220,"project":"cairosvg"},{"download_count":1521052,"project":"pytimeparse2"},{"download_count":1520810,"project":"radon"},{"download_count":1519514,"project":"conan"},{"download_count":1517944,"project":"nvidia-cuda-cupti-cu11"},{"download_count":1515806,"project":"nvidia-cusparse-cu11"},{"download_count":1514979,"project":"antlr4-tools"},{"download_count":1513248,"project":"opentelemetry-instrumentation-botocore"},{"download_count":1513200,"project":"types-simplejson"},{"download_count":1512382,"project":"category-encoders"},{"download_count":1509221,"project":"dnslib"},{"download_count":1508767,"project":"nvidia-curand-cu11"},{"download_count":1507523,"project":"spglib"},{"download_count":1507488,"project":"dpkt"},{"download_count":1504340,"project":"node-semver"},{"download_count":1503739,"project":"oci"},{"download_count":1503021,"project":"pysmi"},{"download_count":1502844,"project":"robotframework-requests"},{"download_count":1500599,"project":"pyandoc"},{"download_count":1500189,"project":"geoalchemy2"},{"download_count":1500038,"project":"gs-quant"},{"download_count":1498023,"project":"tox-uv"},{"download_count":1497993,"project":"hatch-requirements-txt"},{"download_count":1496637,"project":"ansicolors"},{"download_count":1495057,"project":"smartsheet-python-sdk"},{"download_count":1491634,"project":"jupytext"},{"download_count":1490788,"project":"llama-index-cli"},{"download_count":1488622,"project":"intelhex"},{"download_count":1488148,"project":"premailer"},{"download_count":1487837,"project":"grpclib"},{"download_count":1486679,"project":"open-clip-torch"},{"download_count":1486065,"project":"nvidia-nvtx-cu11"},{"download_count":1485830,"project":"simsimd"},{"download_count":1485806,"project":"linecache2"},{"download_count":1482835,"project":"priority"},{"download_count":1481947,"project":"strawberry-graphql"},{"download_count":1479756,"project":"dbus-fast"},{"download_count":1479108,"project":"slack-bolt"},{"download_count":1478650,"project":"asciitree"},{"download_count":1476491,"project":"traceback2"},{"download_count":1476016,"project":"nvidia-nccl-cu11"},{"download_count":1471694,"project":"dbt-spark"},{"download_count":1469574,"project":"python-hcl2"},{"download_count":1468188,"project":"freetype-py"},{"download_count":1466204,"project":"mypy-boto3-ssm"},{"download_count":1465287,"project":"itemloaders"},{"download_count":1464335,"project":"optimum"},{"download_count":1464071,"project":"pyformance"},{"download_count":1462835,"project":"click-help-colors"},{"download_count":1462610,"project":"about-time"},{"download_count":1462494,"project":"certbot-dns-cloudflare"},{"download_count":1460048,"project":"tempora"},{"download_count":1459568,"project":"extras"},{"download_count":1457852,"project":"tensorflow-intel"},{"download_count":1456141,"project":"dicttoxml"},{"download_count":1453160,"project":"azure-multiapi-storage"},{"download_count":1451894,"project":"mypy-boto3-stepfunctions"},{"download_count":1450843,"project":"typish"},{"download_count":1450248,"project":"future-fstrings"},{"download_count":1448238,"project":"logging-azure-rest"},{"download_count":1448090,"project":"mypy-boto3-ecr"},{"download_count":1445850,"project":"apache-airflow-providers-mongo"},{"download_count":1445313,"project":"llama-index-embeddings-openai"},{"download_count":1444775,"project":"braceexpand"},{"download_count":1444329,"project":"cmd2"},{"download_count":1443155,"project":"ecs-logging"},{"download_count":1441326,"project":"requests-unixsocket"},{"download_count":1439197,"project":"aws-encryption-sdk"},{"download_count":1436419,"project":"discord"},{"download_count":1433603,"project":"uproot"},{"download_count":1432272,"project":"tecton"},{"download_count":1429224,"project":"pytube"},{"download_count":1428999,"project":"colorclass"},{"download_count":1428988,"project":"stdlib-list"},{"download_count":1428354,"project":"orbax-checkpoint"},{"download_count":1427882,"project":"djangorestframework-stubs"},{"download_count":1427041,"project":"clang-format"},{"download_count":1426054,"project":"azure-mgmt-appconfiguration"},{"download_count":1425112,"project":"llama-index-program-openai"},{"download_count":1424209,"project":"azure-mgmt-sqlvirtualmachine"},{"download_count":1421316,"project":"pyclothoids"},{"download_count":1420572,"project":"sphinx-argparse"},{"download_count":1420395,"project":"azure-mgmt-redhatopenshift"},{"download_count":1417509,"project":"soda-core-spark-df"},{"download_count":1416591,"project":"azure-mgmt-netapp"},{"download_count":1413343,"project":"pytest-bdd"},{"download_count":1412367,"project":"azure-synapse-accesscontrol"},{"download_count":1411353,"project":"treelib"},{"download_count":1410979,"project":"types-aiobotocore"},{"download_count":1410505,"project":"python-stdnum"},{"download_count":1410477,"project":"python-iso639"},{"download_count":1410265,"project":"openshift"},{"download_count":1409815,"project":"azure-keyvault-administration"},{"download_count":1404991,"project":"sphinx-autobuild"},{"download_count":1404864,"project":"pyvirtualdisplay"},{"download_count":1404822,"project":"django-phonenumber-field"},{"download_count":1403709,"project":"flit"},{"download_count":1400265,"project":"django-celery-results"},{"download_count":1398685,"project":"find-libpython"},{"download_count":1396772,"project":"bazel-runfiles"},{"download_count":1396232,"project":"azure-mgmt-botservice"},{"download_count":1392838,"project":"bc-detect-secrets"},{"download_count":1392045,"project":"pylance"},{"download_count":1390697,"project":"sse-starlette"},{"download_count":1390607,"project":"azure-mgmt-imagebuilder"},{"download_count":1390471,"project":"launchdarkly-eventsource"},{"download_count":1390398,"project":"mypy-boto3-kinesis"},{"download_count":1388790,"project":"dparse"},{"download_count":1386608,"project":"llama-index-multi-modal-llms-openai"},{"download_count":1385664,"project":"speechrecognition"},{"download_count":1385301,"project":"gspread-dataframe"},{"download_count":1384223,"project":"azure-mgmt-databoxedge"},{"download_count":1382206,"project":"openvino"},{"download_count":1380846,"project":"arabic-reshaper"},{"download_count":1380733,"project":"azure-synapse-managedprivateendpoints"},{"download_count":1380143,"project":"databricks"},{"download_count":1380043,"project":"troposphere"},{"download_count":1379764,"project":"pylint-django"},{"download_count":1379638,"project":"azure-mgmt-servicelinker"},{"download_count":1379056,"project":"mypy-boto3-ecs"},{"download_count":1378516,"project":"azure-mgmt-extendedlocation"},{"download_count":1378376,"project":"flake8-comprehensions"},{"download_count":1377448,"project":"tcolorpy"},{"download_count":1377275,"project":"ydb"},{"download_count":1377245,"project":"pytest-icdiff"},{"download_count":1375024,"project":"mleap"},{"download_count":1374115,"project":"backports-tempfile"},{"download_count":1373233,"project":"koalas"},{"download_count":1372331,"project":"azure-mgmt-servicefabricmanagedclusters"},{"download_count":1371279,"project":"sphinxcontrib-spelling"},{"download_count":1370847,"project":"ghapi"},{"download_count":1370745,"project":"tensorflow-probability"},{"download_count":1370218,"project":"cuda-python"},{"download_count":1369381,"project":"dbt-databricks"},{"download_count":1369308,"project":"apache-airflow-providers-dbt-cloud"},{"download_count":1368007,"project":"llama-index-legacy"},{"download_count":1365631,"project":"coolname"},{"download_count":1365257,"project":"poethepoet"},{"download_count":1363289,"project":"aiolimiter"},{"download_count":1362152,"project":"gotrue"},{"download_count":1361726,"project":"emcee"},{"download_count":1361297,"project":"country-converter"},{"download_count":1360872,"project":"presto-python-client"},{"download_count":1359969,"project":"j2cli"},{"download_count":1359822,"project":"curl-cffi"},{"download_count":1359339,"project":"supabase"},{"download_count":1355997,"project":"aws-cdk-cloud-assembly-schema"},{"download_count":1355298,"project":"langchain-aws"},{"download_count":1354152,"project":"azureml-dataprep"},{"download_count":1353925,"project":"httpretty"},{"download_count":1353085,"project":"mediapipe"},{"download_count":1352257,"project":"spdx-tools"},{"download_count":1350330,"project":"llama-index-question-gen-openai"},{"download_count":1348674,"project":"pathlib-mate"},{"download_count":1348321,"project":"fugue"},{"download_count":1347784,"project":"update-checker"},{"download_count":1346742,"project":"hypercorn"},{"download_count":1346431,"project":"github3-py"},{"download_count":1345754,"project":"apache-airflow-providers-jdbc"},{"download_count":1345448,"project":"patch-ng"},{"download_count":1344772,"project":"icalendar"},{"download_count":1344682,"project":"databricks-pypi2"},{"download_count":1343956,"project":"types-tqdm"},{"download_count":1339946,"project":"realtime"},{"download_count":1338561,"project":"ladybug-core"},{"download_count":1338471,"project":"types-psutil"},{"download_count":1338325,"project":"giturlparse"},{"download_count":1337813,"project":"simple-gcp-object-downloader"},{"download_count":1335663,"project":"aio-pika"},{"download_count":1334703,"project":"azure-mgmt-kusto"},{"download_count":1334563,"project":"htmldate"},{"download_count":1332625,"project":"ladybug-geometry"},{"download_count":1332042,"project":"jaraco-text"},{"download_count":1331595,"project":"ip3country"},{"download_count":1331490,"project":"cinemagoer"},{"download_count":1331431,"project":"honeybee-core"},{"download_count":1330598,"project":"postgrest"},{"download_count":1328254,"project":"supafunc"},{"download_count":1328244,"project":"django-crispy-forms"},{"download_count":1327094,"project":"heapdict"},{"download_count":1326825,"project":"tensorflow-io"},{"download_count":1326079,"project":"mangum"},{"download_count":1325366,"project":"openlineage-airflow"},{"download_count":1321653,"project":"sphinxcontrib-mermaid"},{"download_count":1321166,"project":"requests-sigv4"},{"download_count":1319432,"project":"icdiff"},{"download_count":1319199,"project":"bson"},{"download_count":1318889,"project":"kornia-rs"},{"download_count":1318788,"project":"django-ipware"},{"download_count":1318503,"project":"xmldiff"},{"download_count":1317258,"project":"storage3"},{"download_count":1314985,"project":"imdbpy"},{"download_count":1313979,"project":"line-profiler"},{"download_count":1313259,"project":"aiormq"},{"download_count":1312879,"project":"htmlmin"},{"download_count":1312832,"project":"jiwer"},{"download_count":1312439,"project":"zeroconf"},{"download_count":1310216,"project":"svglib"},{"download_count":1310101,"project":"ladybug-geometry-polyskel"},{"download_count":1309941,"project":"simpy"},{"download_count":1309773,"project":"c7n"},{"download_count":1309428,"project":"soda-core-spark"},{"download_count":1307264,"project":"pytest-freezegun"},{"download_count":1307175,"project":"honeybee-schema"},{"download_count":1305542,"project":"lizard"},{"download_count":1304307,"project":"onnxconverter-common"},{"download_count":1303593,"project":"autocommand"},{"download_count":1302495,"project":"pyhanko-certvalidator"},{"download_count":1299914,"project":"social-auth-core"},{"download_count":1299427,"project":"segment-analytics-python"},{"download_count":1298785,"project":"honeybee-standards"},{"download_count":1298700,"project":"pydantic-openapi-helper"},{"download_count":1296317,"project":"requests-html"},{"download_count":1294585,"project":"googlemaps"},{"download_count":1293476,"project":"cliff"},{"download_count":1293241,"project":"plac"},{"download_count":1293039,"project":"requests-kerberos"},{"download_count":1292795,"project":"types-pygments"},{"download_count":1292408,"project":"gcovr"},{"download_count":1291049,"project":"types-beautifulsoup4"},{"download_count":1290981,"project":"aiostream"},{"download_count":1288637,"project":"aiocache"},{"download_count":1288254,"project":"tensorstore"},{"download_count":1287649,"project":"aws-lambda-builders"},{"download_count":1283291,"project":"notifiers"},{"download_count":1281884,"project":"idna-ssl"},{"download_count":1280827,"project":"aiomultiprocess"},{"download_count":1279889,"project":"pyvisa"},{"download_count":1279059,"project":"pdm-backend"},{"download_count":1278903,"project":"ansi2html"},{"download_count":1278636,"project":"attrdict"},{"download_count":1276811,"project":"unittest2"},{"download_count":1274178,"project":"python-can"},{"download_count":1274040,"project":"prance"},{"download_count":1272521,"project":"metaflow"},{"download_count":1272245,"project":"rstr"},{"download_count":1272179,"project":"textblob"},{"download_count":1271869,"project":"xhtml2pdf"},{"download_count":1271853,"project":"in-n-out"},{"download_count":1270685,"project":"json-stream-rs-tokenizer"},{"download_count":1270270,"project":"jaraco-collections"},{"download_count":1268815,"project":"html-testrunner"},{"download_count":1268008,"project":"cdk-nag"},{"download_count":1267201,"project":"backports-cached-property"},{"download_count":1266819,"project":"polyfactory"},{"download_count":1265003,"project":"log-symbols"},{"download_count":1264281,"project":"django-simple-history"},{"download_count":1263923,"project":"param"},{"download_count":1263764,"project":"spinners"},{"download_count":1261674,"project":"azureml-dataprep-rslex"},{"download_count":1260103,"project":"openvino-telemetry"},{"download_count":1258142,"project":"jsonschema-spec"},{"download_count":1257502,"project":"coremltools"},{"download_count":1257211,"project":"pytest-httpserver"},{"download_count":1256891,"project":"pylev"},{"download_count":1256603,"project":"pymilvus"},{"download_count":1254100,"project":"circuitbreaker"},{"download_count":1252069,"project":"zenpy"},{"download_count":1250608,"project":"dogpile-cache"},{"download_count":1248527,"project":"bc-python-hcl2"},{"download_count":1248130,"project":"arviz"},{"download_count":1247127,"project":"ibm-db"},{"download_count":1241575,"project":"oslo-utils"},{"download_count":1239959,"project":"blosc2"},{"download_count":1239705,"project":"cerberus-python-client"},{"download_count":1239026,"project":"rembg"},{"download_count":1238632,"project":"ulid-py"},{"download_count":1238624,"project":"pycomposefile"},{"download_count":1238053,"project":"sqlfluff-templater-dbt"},{"download_count":1236885,"project":"auth0-python"},{"download_count":1236417,"project":"channels-redis"},{"download_count":1235808,"project":"more-executors"},{"download_count":1234327,"project":"mypy-boto3-apigateway"},{"download_count":1233852,"project":"dbl-tempo"},{"download_count":1232228,"project":"kaitaistruct"},{"download_count":1228959,"project":"port-for"},{"download_count":1226200,"project":"pymatting"},{"download_count":1224786,"project":"flask-testing"},{"download_count":1224784,"project":"supervision"},{"download_count":1224771,"project":"policy-sentry"},{"download_count":1222652,"project":"opentelemetry-exporter-gcp-trace"},{"download_count":1221409,"project":"pycep-parser"},{"download_count":1220751,"project":"flask-mail"},{"download_count":1218681,"project":"json-stream"},{"download_count":1218429,"project":"xmod"},{"download_count":1218344,"project":"selenium-wire"},{"download_count":1218009,"project":"cloudflare"},{"download_count":1216780,"project":"pymatgen"},{"download_count":1215451,"project":"plyvel"},{"download_count":1214542,"project":"pytest-dotenv"},{"download_count":1211942,"project":"albucore"},{"download_count":1210796,"project":"editor"},{"download_count":1207657,"project":"fastpurge"},{"download_count":1207594,"project":"cloudsplaining"},{"download_count":1207473,"project":"checkdigit"},{"download_count":1206118,"project":"tables"},{"download_count":1204027,"project":"flask-compress"},{"download_count":1203775,"project":"langgraph-checkpoint"},{"download_count":1201863,"project":"ibm-cloud-sdk-core"},{"download_count":1200919,"project":"langchain-anthropic"},{"download_count":1200008,"project":"runs"},{"download_count":1198184,"project":"pytest-flask"},{"download_count":1195850,"project":"langfuse"},{"download_count":1195624,"project":"pretty-html-table"},{"download_count":1195047,"project":"msoffcrypto-tool"},{"download_count":1194814,"project":"opentelemetry-resourcedetector-gcp"},{"download_count":1193973,"project":"async-property"},{"download_count":1192624,"project":"dohq-artifactory"},{"download_count":1192112,"project":"odfpy"},{"download_count":1189342,"project":"livereload"},{"download_count":1189134,"project":"django-import-export"},{"download_count":1188506,"project":"flake8-builtins"},{"download_count":1188440,"project":"mss"},{"download_count":1187501,"project":"ndjson"},{"download_count":1186194,"project":"rouge-score"},{"download_count":1185942,"project":"z3-solver"},{"download_count":1185581,"project":"mypy-boto3-emr"},{"download_count":1182897,"project":"gymnasium"},{"download_count":1181212,"project":"hubspot-api-client"},{"download_count":1181144,"project":"pony"},{"download_count":1180583,"project":"python-keycloak"},{"download_count":1179598,"project":"betterproto"},{"download_count":1179588,"project":"opentelemetry-sdk-extension-aws"},{"download_count":1178331,"project":"symengine"},{"download_count":1176531,"project":"panel"},{"download_count":1175366,"project":"polling2"},{"download_count":1174713,"project":"python-subunit"},{"download_count":1174613,"project":"pygtrie"},{"download_count":1174033,"project":"lunardate"},{"download_count":1171839,"project":"piexif"},{"download_count":1171459,"project":"apsw"},{"download_count":1170285,"project":"lunarcalendar"},{"download_count":1169999,"project":"jupyter-ydoc"},{"download_count":1169667,"project":"impyla"},{"download_count":1169419,"project":"ruptures"},{"download_count":1166361,"project":"social-auth-app-django"},{"download_count":1165026,"project":"tensorflow-addons"},{"download_count":1163878,"project":"llama-cloud"},{"download_count":1163265,"project":"jupyter-server-ydoc"},{"download_count":1162755,"project":"exchangelib"},{"download_count":1162651,"project":"signxml"},{"download_count":1161773,"project":"argparse-addons"},{"download_count":1161564,"project":"pytest-mypy"},{"download_count":1161350,"project":"schemdraw"},{"download_count":1159340,"project":"hmmlearn"},{"download_count":1156167,"project":"bc-jsonpath-ng"},{"download_count":1154816,"project":"autopage"},{"download_count":1154519,"project":"databases"},{"download_count":1154076,"project":"mygene"},{"download_count":1152148,"project":"python-igraph"},{"download_count":1151803,"project":"biothings-client"},{"download_count":1150598,"project":"cherrypy"},{"download_count":1147412,"project":"glob2"},{"download_count":1146535,"project":"statsforecast"},{"download_count":1146291,"project":"ccxt"},{"download_count":1146027,"project":"mirakuru"},{"download_count":1143783,"project":"sphinx-book-theme"},{"download_count":1142174,"project":"brotlicffi"},{"download_count":1142072,"project":"pytest-cases"},{"download_count":1141572,"project":"awesomeversion"},{"download_count":1141519,"project":"dockerpty"},{"download_count":1141154,"project":"oyaml"},{"download_count":1140673,"project":"torchtext"},{"download_count":1139523,"project":"dagster-pandas"},{"download_count":1135962,"project":"bio"},{"download_count":1135313,"project":"flake8-polyfill"},{"download_count":1131725,"project":"oslo-config"},{"download_count":1130757,"project":"pip-requirements-parser"},{"download_count":1128720,"project":"dagster-aws"},{"download_count":1128473,"project":"sphinxcontrib-bibtex"},{"download_count":1127884,"project":"gitdb2"},{"download_count":1127816,"project":"ydata-profiling"},{"download_count":1127303,"project":"gprofiler-official"},{"download_count":1126491,"project":"janus"},{"download_count":1125949,"project":"honeybee-energy"},{"download_count":1125717,"project":"apache-airflow-providers-microsoft-azure"},{"download_count":1125526,"project":"html-text"},{"download_count":1124584,"project":"xdoctest"},{"download_count":1123823,"project":"watchgod"},{"download_count":1123819,"project":"google-cloud-artifact-registry"},{"download_count":1123522,"project":"xattr"},{"download_count":1123215,"project":"apache-airflow-providers-odbc"},{"download_count":1121091,"project":"jinja2-simple-tags"},{"download_count":1121088,"project":"pymongo-auth-aws"},{"download_count":1119202,"project":"testtools"},{"download_count":1118122,"project":"verboselogs"},{"download_count":1117123,"project":"django-js-asset"},{"download_count":1115980,"project":"ntlm-auth"},{"download_count":1115729,"project":"dagster-graphql"},{"download_count":1115008,"project":"thop"},{"download_count":1112954,"project":"webdataset"},{"download_count":1112835,"project":"pysbd"},{"download_count":1112362,"project":"paste"},{"download_count":1111796,"project":"elastic-apm"},{"download_count":1111770,"project":"y-py"},{"download_count":1110917,"project":"triad"},{"download_count":1109836,"project":"resampy"},{"download_count":1109766,"project":"oslo-i18n"},{"download_count":1108672,"project":"mypy-boto3-sns"},{"download_count":1107725,"project":"tinydb"},{"download_count":1106520,"project":"puremagic"},{"download_count":1106487,"project":"pybase64"},{"download_count":1106240,"project":"skl2onnx"},{"download_count":1103398,"project":"pybytebuffer"},{"download_count":1103125,"project":"descartes"},{"download_count":1102570,"project":"vtk"},{"download_count":1098864,"project":"portend"},{"download_count":1098584,"project":"s3cmd"},{"download_count":1097844,"project":"flake8-black"},{"download_count":1097801,"project":"geocoder"},{"download_count":1097711,"project":"aws-sam-cli"},{"download_count":1096692,"project":"pyquaternion"},{"download_count":1096118,"project":"p4python"},{"download_count":1095613,"project":"dash-bootstrap-components"},{"download_count":1095389,"project":"requests-auth-aws-sigv4"},{"download_count":1095312,"project":"ladybug-display"},{"download_count":1094678,"project":"salib"},{"download_count":1092389,"project":"mypy-boto3-xray"},{"download_count":1091875,"project":"opencv-contrib-python-headless"},{"download_count":1091755,"project":"ctranslate2"},{"download_count":1091741,"project":"gcs-oauth2-boto-plugin"},{"download_count":1090308,"project":"jaxtyping"},{"download_count":1089547,"project":"docx2txt"},{"download_count":1087266,"project":"inquirerpy"},{"download_count":1086111,"project":"msgraph-sdk"},{"download_count":1085364,"project":"click-shell"},{"download_count":1084894,"project":"mypy-boto3-schemas"},{"download_count":1084738,"project":"mypy-boto3-signer"},{"download_count":1084469,"project":"ladybug-rhino"},{"download_count":1083699,"project":"seleniumbase"},{"download_count":1082248,"project":"pfzy"},{"download_count":1082143,"project":"backports-datetime-fromisoformat"},{"download_count":1081894,"project":"gmpy2"},{"download_count":1081745,"project":"adagio"},{"download_count":1080517,"project":"model-bakery"},{"download_count":1077766,"project":"pyvis"},{"download_count":1077726,"project":"sshpubkeys"},{"download_count":1077498,"project":"stringzilla"},{"download_count":1075823,"project":"jupyter-server-fileid"},{"download_count":1075699,"project":"edx-opaque-keys"},{"download_count":1075649,"project":"dagster-postgres"},{"download_count":1075376,"project":"azure-mgmt-appcontainers"},{"download_count":1075276,"project":"grpc-stubs"},{"download_count":1073300,"project":"phik"},{"download_count":1071483,"project":"sgqlc"},{"download_count":1071207,"project":"pybloom-live"},{"download_count":1070640,"project":"oslo-serialization"},{"download_count":1068384,"project":"textwrap3"},{"download_count":1068238,"project":"transitions"},{"download_count":1067609,"project":"types-aiobotocore-s3"},{"download_count":1065356,"project":"pytorch-metric-learning"},{"download_count":1064470,"project":"debtcollector"},{"download_count":1063036,"project":"inflector"},{"download_count":1062921,"project":"dagster-spark"},{"download_count":1062766,"project":"ph-units"},{"download_count":1062406,"project":"pybtex-docutils"},{"download_count":1061942,"project":"hashids"},{"download_count":1061216,"project":"pinecone-plugin-inference"},{"download_count":1059521,"project":"ypy-websocket"},{"download_count":1059459,"project":"setuptools-git"},{"download_count":1058661,"project":"prawcore"},{"download_count":1057579,"project":"mido"},{"download_count":1056484,"project":"trafilatura"},{"download_count":1055735,"project":"jinja2-humanize-extension"},{"download_count":1055302,"project":"cloudscraper"},{"download_count":1054722,"project":"napari-plugin-engine"},{"download_count":1052403,"project":"ratelim"},{"download_count":1051961,"project":"azure-storage"},{"download_count":1051926,"project":"shiboken6"},{"download_count":1051059,"project":"simple-ddl-parser"},{"download_count":1050783,"project":"monty"},{"download_count":1050307,"project":"web-fragments"},{"download_count":1049066,"project":"pydevd"},{"download_count":1047939,"project":"boost-histogram"},{"download_count":1047137,"project":"c7n-org"},{"download_count":1046429,"project":"ansiwrap"},{"download_count":1044285,"project":"flatten-dict"},{"download_count":1042995,"project":"phonenumberslite"},{"download_count":1041668,"project":"flake8-quotes"},{"download_count":1041351,"project":"uhashring"},{"download_count":1040902,"project":"probableparsing"},{"download_count":1039837,"project":"gnureadline"},{"download_count":1037832,"project":"pypsrp"},{"download_count":1036687,"project":"pyside6"},{"download_count":1032858,"project":"pinecone-plugin-interface"},{"download_count":1032435,"project":"httmock"},{"download_count":1032199,"project":"workalendar"},{"download_count":1032143,"project":"js2py"},{"download_count":1031082,"project":"pyside6-essentials"},{"download_count":1031021,"project":"devtools"},{"download_count":1029179,"project":"stestr"},{"download_count":1027295,"project":"progress"},{"download_count":1026856,"project":"neatest"},{"download_count":1026169,"project":"chkpkg"},{"download_count":1025921,"project":"swifter"},{"download_count":1025008,"project":"pytest-socket"},{"download_count":1024958,"project":"editorconfig"},{"download_count":1024630,"project":"clang"},{"download_count":1023957,"project":"usaddress"},{"download_count":1023448,"project":"azure-ai-formrecognizer"},{"download_count":1023405,"project":"dataproperty"},{"download_count":1023255,"project":"types-freezegun"},{"download_count":1020332,"project":"chex"},{"download_count":1019527,"project":"tyro"},{"download_count":1019046,"project":"pyside6-addons"},{"download_count":1018058,"project":"aiomysql"},{"download_count":1016831,"project":"objgraph"},{"download_count":1016822,"project":"azureml-dataprep-native"},{"download_count":1015324,"project":"praw"},{"download_count":1014603,"project":"safehttpx"},{"download_count":1014147,"project":"pylru"},{"download_count":1013659,"project":"pyglet"},{"download_count":1012601,"project":"instructor"},{"download_count":1012364,"project":"crccheck"},{"download_count":1011319,"project":"property-manager"},{"download_count":1008846,"project":"ebcdic"},{"download_count":1008671,"project":"django-allauth"},{"download_count":1008206,"project":"google-cloud-bigquery-biglake"},{"download_count":1007566,"project":"sasl"},{"download_count":1007311,"project":"dirty-equals"},{"download_count":1003183,"project":"segment-anything"},{"download_count":1002781,"project":"wand"},{"download_count":1002581,"project":"singleton-decorator"},{"download_count":1002340,"project":"types-markupsafe"},{"download_count":999685,"project":"func-timeout"},{"download_count":997890,"project":"visions"},{"download_count":997554,"project":"wmi"},{"download_count":997231,"project":"kgb"},{"download_count":997092,"project":"snowflake"},{"download_count":995582,"project":"jsonmerge"},{"download_count":995282,"project":"google-cloud-discoveryengine"},{"download_count":994371,"project":"correctionlib"},{"download_count":994322,"project":"mypy-boto3-emr-serverless"},{"download_count":992785,"project":"raven"},{"download_count":991495,"project":"graypy"},{"download_count":990367,"project":"flake8-pyproject"},{"download_count":989895,"project":"types-jinja2"},{"download_count":989568,"project":"jsbeautifier"},{"download_count":987284,"project":"decli"},{"download_count":986779,"project":"artifacts-keyring"},{"download_count":985846,"project":"scikit-optimize"},{"download_count":982955,"project":"intervals"},{"download_count":980528,"project":"dagster-webserver"},{"download_count":980102,"project":"pyvmomi"},{"download_count":978572,"project":"python-ulid"},{"download_count":978442,"project":"hist"},{"download_count":978417,"project":"mplhep"},{"download_count":978109,"project":"openapi-schema-pydantic"},{"download_count":976156,"project":"pcpp"},{"download_count":974916,"project":"python-on-whales"},{"download_count":973883,"project":"pyairtable"},{"download_count":973732,"project":"aws-cdk-aws-lambda-python-alpha"},{"download_count":972813,"project":"protoc-gen-openapiv2"},{"download_count":972725,"project":"annoy"},{"download_count":971749,"project":"uhi"},{"download_count":971715,"project":"hsluv"},{"download_count":971626,"project":"types-decorator"},{"download_count":970967,"project":"msgpack-numpy"},{"download_count":970341,"project":"python-baseconv"},{"download_count":969389,"project":"histoprint"},{"download_count":968713,"project":"tensorflow-cpu"},{"download_count":968688,"project":"jsons"},{"download_count":968566,"project":"sphinx-tabs"},{"download_count":967444,"project":"yarg"},{"download_count":966549,"project":"tabledata"},{"download_count":966293,"project":"vector"},{"download_count":966165,"project":"django-otp"},{"download_count":965681,"project":"mimesis"},{"download_count":965161,"project":"pytest-assume"},{"download_count":964897,"project":"openstackdocstheme"},{"download_count":963067,"project":"dlt"},{"download_count":962682,"project":"flask-smorest"},{"download_count":958384,"project":"colorcet"},{"download_count":958242,"project":"dask-awkward"},{"download_count":958086,"project":"aiorwlock"},{"download_count":957030,"project":"nanoid"},{"download_count":956740,"project":"zigpy"},{"download_count":956131,"project":"oslotest"},{"download_count":955786,"project":"mplhep-data"},{"download_count":955662,"project":"dask-histogram"},{"download_count":954292,"project":"funcparserlib"},{"download_count":954253,"project":"pyld"},{"download_count":954240,"project":"coffea"},{"download_count":953482,"project":"wtforms-components"},{"download_count":951766,"project":"open3d"},{"download_count":951497,"project":"farama-notifications"},{"download_count":951462,"project":"versioneer"},{"download_count":950894,"project":"suds-community"},{"download_count":950040,"project":"isoweek"},{"download_count":948434,"project":"pluginbase"},{"download_count":948117,"project":"mecab-python3"},{"download_count":946658,"project":"pytest-postgresql"},{"download_count":945932,"project":"corner"},{"download_count":945894,"project":"grapheme"},{"download_count":945720,"project":"livy"},{"download_count":943760,"project":"fsspec-xrootd"},{"download_count":943252,"project":"lxml-stubs"},{"download_count":941782,"project":"pyviz-comms"},{"download_count":941730,"project":"flatdict"},{"download_count":941717,"project":"wtforms-alchemy"},{"download_count":941283,"project":"pyupgrade"},{"download_count":941003,"project":"os-api-ref"},{"download_count":940725,"project":"zdaemon"},{"download_count":940659,"project":"retry2"},{"download_count":940402,"project":"ruyaml"},{"download_count":939491,"project":"pretend"},{"download_count":938836,"project":"google-cloud-pipeline-components"},{"download_count":938470,"project":"dateformat"},{"download_count":938280,"project":"ndindex"},{"download_count":938012,"project":"bz2file"},{"download_count":938006,"project":"rope"},{"download_count":937676,"project":"azureml-mlflow"},{"download_count":936852,"project":"ptpython"},{"download_count":936334,"project":"tdqm"},{"download_count":935572,"project":"safety-schemas"},{"download_count":935380,"project":"logzio-python-handler"},{"download_count":935056,"project":"magic-filter"},{"download_count":934494,"project":"pytablewriter"},{"download_count":934190,"project":"peppercorn"},{"download_count":932753,"project":"credstash"},{"download_count":931582,"project":"xmljson"},{"download_count":930684,"project":"types-termcolor"},{"download_count":929374,"project":"prisma"},{"download_count":928182,"project":"apache-airflow-providers-pagerduty"},{"download_count":927785,"project":"keystoneauth1"},{"download_count":925231,"project":"utilsforecast"},{"download_count":924555,"project":"quantlib"},{"download_count":924114,"project":"lupa"},{"download_count":922525,"project":"shellescape"},{"download_count":921635,"project":"vispy"},{"download_count":920380,"project":"returns"},{"download_count":919952,"project":"types-retry"},{"download_count":918782,"project":"rfc3339"},{"download_count":918382,"project":"jupyter-packaging"},{"download_count":917704,"project":"facexlib"},{"download_count":917330,"project":"pyqt6"},{"download_count":917260,"project":"apache-airflow-providers-tableau"},{"download_count":915986,"project":"datacompy"},{"download_count":915197,"project":"mammoth"},{"download_count":913330,"project":"justext"},{"download_count":913030,"project":"optax"},{"download_count":912730,"project":"subprocess32"},{"download_count":911426,"project":"astpretty"},{"download_count":910753,"project":"argh"},{"download_count":910295,"project":"snowflake-core"},{"download_count":908799,"project":"odict"},{"download_count":908733,"project":"flax"},{"download_count":908432,"project":"torchdiffeq"},{"download_count":907684,"project":"h5netcdf"},{"download_count":907649,"project":"pyrate-limiter"},{"download_count":905776,"project":"gguf"},{"download_count":905215,"project":"mercantile"},{"download_count":905194,"project":"cobble"},{"download_count":904633,"project":"crc32c"},{"download_count":904167,"project":"types-click"},{"download_count":903236,"project":"config"},{"download_count":902499,"project":"pyahocorasick"},{"download_count":900869,"project":"plumber"},{"download_count":900339,"project":"noise"},{"download_count":899868,"project":"smmap2"},{"download_count":899851,"project":"naked"},{"download_count":898021,"project":"imblearn"},{"download_count":897518,"project":"django-countries"},{"download_count":897081,"project":"ase"},{"download_count":897016,"project":"types-pyserial"},{"download_count":895945,"project":"array-record"},{"download_count":893721,"project":"pipreqs"},{"download_count":891702,"project":"parce"},{"download_count":891479,"project":"flask-marshmallow"},{"download_count":890300,"project":"sktime"},{"download_count":890081,"project":"commitizen"},{"download_count":890077,"project":"sqlite-utils"},{"download_count":889984,"project":"camel-converter"},{"download_count":889157,"project":"cachy"},{"download_count":888272,"project":"torchdata"},{"download_count":887283,"project":"pillow-heif"},{"download_count":887191,"project":"poetry-plugin-pypi-mirror"},{"download_count":886697,"project":"mypy-boto3-sagemaker"},{"download_count":886604,"project":"textparser"},{"download_count":882541,"project":"langgraph-sdk"},{"download_count":882514,"project":"pyside2"},{"download_count":881626,"project":"buildkite-test-collector"},{"download_count":880927,"project":"pip-api"},{"download_count":880458,"project":"marshmallow-jsonschema"},{"download_count":879499,"project":"dictances"},{"download_count":879291,"project":"ollama"},{"download_count":878418,"project":"hnswlib"},{"download_count":878132,"project":"tableau-api-lib"},{"download_count":877403,"project":"exchange-calendars"},{"download_count":877170,"project":"cached-path"},{"download_count":876487,"project":"pyqt6-qt6"},{"download_count":875256,"project":"shiboken2"},{"download_count":874706,"project":"pytelegrambotapi"},{"download_count":873704,"project":"pytest-dependency"},{"download_count":873604,"project":"mypy-boto3-kms"},{"download_count":872935,"project":"flake8-print"},{"download_count":871894,"project":"opentelemetry-instrumentation-jinja2"},{"download_count":871549,"project":"microsoft-security-utilities-secret-masker"},{"download_count":871275,"project":"gevent-websocket"},{"download_count":870645,"project":"datumaro"},{"download_count":870381,"project":"pyemd"},{"download_count":869939,"project":"microsoft-kiota-serialization-form"},{"download_count":869091,"project":"doit"},{"download_count":868658,"project":"cfile"},{"download_count":868063,"project":"pyenchant"},{"download_count":867417,"project":"fasttext-langdetect"},{"download_count":866552,"project":"dotty-dict"},{"download_count":866218,"project":"frida"},{"download_count":864716,"project":"seqio-nightly"},{"download_count":863197,"project":"microsoft-kiota-serialization-multipart"},{"download_count":862664,"project":"flasgger"},{"download_count":862339,"project":"pytest-trio"},{"download_count":862235,"project":"flask-admin"},{"download_count":860505,"project":"awslambdaric"},{"download_count":860343,"project":"trl"},{"download_count":859964,"project":"pydriller"},{"download_count":859187,"project":"pyqt6-sip"},{"download_count":858424,"project":"traittypes"},{"download_count":854749,"project":"jamo"},{"download_count":854302,"project":"pylatexenc"},{"download_count":853881,"project":"asgi-correlation-id"},{"download_count":853642,"project":"apache-airflow-providers-airbyte"},{"download_count":853558,"project":"types-colorama"},{"download_count":853496,"project":"k8"},{"download_count":852108,"project":"ovmsclient"},{"download_count":851931,"project":"icecream"},{"download_count":851340,"project":"apache-airflow-providers-salesforce"},{"download_count":851053,"project":"docformatter"},{"download_count":850918,"project":"python3-logstash"},{"download_count":850905,"project":"nulltype"},{"download_count":850311,"project":"vlsir"},{"download_count":850201,"project":"statsig"},{"download_count":850143,"project":"vlsirtools"},{"download_count":848768,"project":"recommonmark"},{"download_count":847392,"project":"kaldiio"},{"download_count":846744,"project":"openinference-semantic-conventions"},{"download_count":846732,"project":"yarn-api-client"},{"download_count":846585,"project":"pysam"},{"download_count":846482,"project":"halo"},{"download_count":846148,"project":"breathe"},{"download_count":844585,"project":"hmsclient"},{"download_count":843907,"project":"scrypt"},{"download_count":841249,"project":"sphinxcontrib-httpdomain"},{"download_count":839606,"project":"import-linter"},{"download_count":838771,"project":"dict2xml"},{"download_count":838658,"project":"custom-inherit"},{"download_count":837248,"project":"advent-of-code"},{"download_count":836790,"project":"opentelemetry-instrumentation-sqlite3"},{"download_count":835890,"project":"textdistance"},{"download_count":835736,"project":"fastprogress"},{"download_count":834661,"project":"azure-mgmt-resourcegraph"},{"download_count":833084,"project":"cppy"},{"download_count":833056,"project":"shyaml"},{"download_count":833023,"project":"pyscreeze"},{"download_count":832354,"project":"kconfiglib"},{"download_count":829960,"project":"pygam"},{"download_count":829609,"project":"scikit-build"},{"download_count":827986,"project":"python-oxmsg"},{"download_count":827965,"project":"gssapi"},{"download_count":827644,"project":"sampleproject"},{"download_count":826849,"project":"pyshp"},{"download_count":825209,"project":"pysmb"},{"download_count":825167,"project":"eyes-selenium"},{"download_count":825156,"project":"python-ipware"},{"download_count":825067,"project":"clickhouse-sqlalchemy"},{"download_count":824858,"project":"spandrel"},{"download_count":822579,"project":"mlxtend"},{"download_count":822524,"project":"eralchemy2"},{"download_count":820688,"project":"eyes-common"},{"download_count":820487,"project":"django-csp"},{"download_count":819818,"project":"pytest-alembic"},{"download_count":819494,"project":"coreforecast"},{"download_count":819447,"project":"pulsar-client"},{"download_count":819268,"project":"rjsmin"},{"download_count":818449,"project":"sharepy"},{"download_count":818140,"project":"superqt"},{"download_count":817800,"project":"fvcore"},{"download_count":817661,"project":"apache-airflow-providers-datadog"},{"download_count":816396,"project":"natto-py"},{"download_count":815688,"project":"untokenize"},{"download_count":814238,"project":"parsley"},{"download_count":813717,"project":"sqlite-fts4"},{"download_count":812826,"project":"pdbr"},{"download_count":812668,"project":"pytest-recording"},{"download_count":812640,"project":"fastapi-pagination"},{"download_count":812574,"project":"blake3"},{"download_count":812537,"project":"cibuildwheel"},{"download_count":811367,"project":"cmaes"},{"download_count":811281,"project":"histlite"},{"download_count":810986,"project":"mypy-boto3-appconfig"},{"download_count":808836,"project":"gluonts"},{"download_count":808155,"project":"pydantic-compat"},{"download_count":807875,"project":"torch-model-archiver"},{"download_count":806869,"project":"aiosmtplib"},{"download_count":806624,"project":"table-meta"},{"download_count":806385,"project":"vertexai"},{"download_count":806268,"project":"versioneer-518"},{"download_count":805979,"project":"lancedb"},{"download_count":805396,"project":"flake8-import-order"},{"download_count":805208,"project":"pyspellchecker"},{"download_count":804308,"project":"apache-airflow-providers-celery"},{"download_count":803038,"project":"youtube-dl"},{"download_count":802633,"project":"pysaml2"},{"download_count":801581,"project":"strict-rfc3339"},{"download_count":800717,"project":"apache-airflow-providers-apache-spark"},{"download_count":800324,"project":"starlette-context"},{"download_count":800048,"project":"eradicate"},{"download_count":799005,"project":"backports-entry-points-selectable"},{"download_count":798944,"project":"generalimport"},{"download_count":798927,"project":"mypy-boto3-lakeformation"},{"download_count":798424,"project":"casadi"},{"download_count":797490,"project":"a2wsgi"},{"download_count":797342,"project":"flake8-eradicate"},{"download_count":797206,"project":"pydruid"},{"download_count":797178,"project":"py-models-parser"},{"download_count":796663,"project":"elasticsearch7"},{"download_count":796494,"project":"easyprocess"},{"download_count":795699,"project":"pyxdg"},{"download_count":795591,"project":"groq"},{"download_count":795447,"project":"prefect-gcp"},{"download_count":793706,"project":"python-geohash"},{"download_count":793693,"project":"pandas-market-calendars"},{"download_count":791575,"project":"blessings"},{"download_count":791556,"project":"imath"},{"download_count":791488,"project":"django-prometheus"},{"download_count":789886,"project":"jinja2-time"},{"download_count":789014,"project":"dotmap"},{"download_count":788312,"project":"parsy"},{"download_count":787545,"project":"fluent-logger"},{"download_count":787482,"project":"pytest-snapshot"},{"download_count":787079,"project":"core-universal"},{"download_count":786742,"project":"lief"},{"download_count":785970,"project":"mypy-boto3-dataexchange"},{"download_count":785858,"project":"starlette-exporter"},{"download_count":785696,"project":"django-health-check"},{"download_count":784007,"project":"clean-fid"},{"download_count":783806,"project":"django-silk"},{"download_count":783727,"project":"wurlitzer"},{"download_count":783083,"project":"dicomweb-client"},{"download_count":782949,"project":"pyu2f"},{"download_count":782637,"project":"courlan"},{"download_count":779860,"project":"apache-airflow-microsoft-fabric-plugin"},{"download_count":777814,"project":"arch"},{"download_count":777711,"project":"pytest-azurepipelines"},{"download_count":777628,"project":"wasmtime"},{"download_count":776850,"project":"banal"},{"download_count":776366,"project":"opentelemetry-instrumentation-celery"},{"download_count":775846,"project":"xarray-einstats"},{"download_count":775828,"project":"josepy"},{"download_count":775456,"project":"python-semantic-release"},{"download_count":775169,"project":"snowflake-legacy"},{"download_count":774925,"project":"avro-gen"},{"download_count":774680,"project":"littleutils"},{"download_count":774159,"project":"magicgui"},{"download_count":773814,"project":"os-service-types"},{"download_count":773765,"project":"pykakasi"},{"download_count":773638,"project":"keyrings-alt"},{"download_count":773306,"project":"cchardet"},{"download_count":773045,"project":"parver"},{"download_count":772511,"project":"app-model"},{"download_count":772018,"project":"djlint"},{"download_count":770904,"project":"mypy-boto3-events"},{"download_count":770569,"project":"cachey"},{"download_count":770299,"project":"pyconify"},{"download_count":769358,"project":"flask-talisman"},{"download_count":769170,"project":"shrub-py"},{"download_count":769006,"project":"mypy-boto3-logs"},{"download_count":768248,"project":"publish-event-sns"},{"download_count":768025,"project":"collections-extended"},{"download_count":767344,"project":"napari-console"},{"download_count":767068,"project":"npe2"},{"download_count":766828,"project":"napari"},{"download_count":766773,"project":"crayons"},{"download_count":766501,"project":"jsonargparse"},{"download_count":765946,"project":"napari-svg"},{"download_count":765266,"project":"google-reauth"},{"download_count":764973,"project":"tfds-nightly"},{"download_count":764296,"project":"dataclass-wizard"},{"download_count":764129,"project":"cheetah3"},{"download_count":763567,"project":"google-cloud-error-reporting"},{"download_count":763298,"project":"git-remote-codecommit"},{"download_count":762936,"project":"modelscope"},{"download_count":762704,"project":"crypto"},{"download_count":761320,"project":"stim"},{"download_count":760960,"project":"netmiko"},{"download_count":760222,"project":"pyfunctional"},{"download_count":760094,"project":"nbtlib"},{"download_count":758752,"project":"backports-csv"},{"download_count":758668,"project":"pathtools"},{"download_count":755298,"project":"pudb"},{"download_count":753847,"project":"hdbscan"},{"download_count":753834,"project":"mapbox-earcut"},{"download_count":752547,"project":"sphinx-jinja"},{"download_count":751999,"project":"akshare"},{"download_count":751369,"project":"azureml-dataset-runtime"},{"download_count":750511,"project":"openturns"},{"download_count":750460,"project":"pygraphviz"},{"download_count":750083,"project":"ibm-platform-services"},{"download_count":750035,"project":"multiset"},{"download_count":749718,"project":"apache-airflow-providers-oracle"},{"download_count":749219,"project":"django-anymail"},{"download_count":747459,"project":"pynput"},{"download_count":747379,"project":"streamerate"},{"download_count":747299,"project":"flask-oidc"},{"download_count":747249,"project":"names"},{"download_count":747229,"project":"throttlex"},{"download_count":747066,"project":"tsx"},{"download_count":747061,"project":"faster-whisper"},{"download_count":746102,"project":"ntplib"},{"download_count":745872,"project":"zthreading"},{"download_count":745800,"project":"connectorx"},{"download_count":744619,"project":"openapi-core"},{"download_count":744607,"project":"sparkorm"},{"download_count":744568,"project":"libsass"},{"download_count":742292,"project":"flaml"},{"download_count":741869,"project":"detect-secrets"},{"download_count":739376,"project":"rpaframework"},{"download_count":738823,"project":"galvani"},{"download_count":738288,"project":"domdf-python-tools"},{"download_count":737978,"project":"dagster-k8s"},{"download_count":737657,"project":"frictionless"},{"download_count":737452,"project":"jupyter-cache"},{"download_count":736038,"project":"openstacksdk"},{"download_count":735975,"project":"modal"},{"download_count":734942,"project":"python-lsp-jsonrpc"},{"download_count":734772,"project":"httpbin"},{"download_count":734408,"project":"jsmin"},{"download_count":734401,"project":"azure-mgmt-managedservices"},{"download_count":734221,"project":"okta"},{"download_count":733496,"project":"pyautogui"},{"download_count":732341,"project":"schwifty"},{"download_count":731785,"project":"jetblack-iso8601"},{"download_count":731062,"project":"sqlalchemy-stubs"},{"download_count":729366,"project":"python-memcached"},{"download_count":728658,"project":"pytweening"},{"download_count":728450,"project":"presidio-analyzer"},{"download_count":728438,"project":"pytest-flake8"},{"download_count":727967,"project":"fastapi-utils"},{"download_count":727832,"project":"beancount"},{"download_count":727606,"project":"pyloudnorm"},{"download_count":726604,"project":"azure-mgmt-hybridcompute"},{"download_count":726290,"project":"win32-setctime"},{"download_count":724034,"project":"awscliv2"},{"download_count":722119,"project":"tensorflow-model-optimization"},{"download_count":721021,"project":"tfx-bsl"},{"download_count":719906,"project":"pystan"},{"download_count":719680,"project":"looseversion"},{"download_count":719680,"project":"pynose"},{"download_count":719400,"project":"slacker"},{"download_count":719395,"project":"django-taggit"},{"download_count":719211,"project":"acme"},{"download_count":719184,"project":"mypy-boto3-elbv2"},{"download_count":718431,"project":"drf-nested-routers"},{"download_count":718047,"project":"dataset"},{"download_count":717410,"project":"uplink"},{"download_count":715908,"project":"graphlib-backport"},{"download_count":715692,"project":"simple-parsing"},{"download_count":715314,"project":"dagster-dbt"},{"download_count":715250,"project":"pvlib"},{"download_count":714302,"project":"textfsm"},{"download_count":713446,"project":"pyrect"},{"download_count":713266,"project":"langchain-google-genai"},{"download_count":711755,"project":"xlutils"},{"download_count":711378,"project":"django-formtools"},{"download_count":711239,"project":"sphinx-automodapi"},{"download_count":711202,"project":"gender-guesser"},{"download_count":710853,"project":"feedgen"},{"download_count":710681,"project":"pygetwindow"},{"download_count":708798,"project":"stable-baselines3"},{"download_count":708085,"project":"sqllineage"},{"download_count":708025,"project":"dateutils"},{"download_count":707770,"project":"regress"},{"download_count":707213,"project":"suds-py3"},{"download_count":706860,"project":"tbats"},{"download_count":706703,"project":"leb128"},{"download_count":703737,"project":"vllm"},{"download_count":703037,"project":"flake8-debugger"},{"download_count":702901,"project":"rcssmin"},{"download_count":702592,"project":"interegular"},{"download_count":701924,"project":"logz"},{"download_count":701845,"project":"azureml-defaults"},{"download_count":701594,"project":"pytest-factoryboy"},{"download_count":701239,"project":"argo-workflows"},{"download_count":701170,"project":"python-miio"},{"download_count":701130,"project":"pytoolconfig"},{"download_count":700878,"project":"dagster-cloud"},{"download_count":700867,"project":"hpgeom"},{"download_count":700315,"project":"sly"},{"download_count":699828,"project":"fancycompleter"},{"download_count":699302,"project":"wikitextparser"},{"download_count":699286,"project":"pre-commit-uv"},{"download_count":699003,"project":"boto-session-manager"},{"download_count":698475,"project":"fastrlock"},{"download_count":698458,"project":"pyomo"},{"download_count":697798,"project":"macholib"},{"download_count":697712,"project":"ratelimiter"},{"download_count":697220,"project":"beautifultable"},{"download_count":697198,"project":"opentelemetry-instrumentation-asyncpg"},{"download_count":697080,"project":"asynch"},{"download_count":696936,"project":"tbb"},{"download_count":696805,"project":"awacs"},{"download_count":696753,"project":"backports-shutil-get-terminal-size"},{"download_count":696658,"project":"confuse"},{"download_count":695703,"project":"transforms3d"},{"download_count":694815,"project":"azure-storage-nspkg"},{"download_count":694468,"project":"pytest-parallel"},{"download_count":693760,"project":"mouseinfo"},{"download_count":692982,"project":"varname"},{"download_count":692837,"project":"pymisp"},{"download_count":692542,"project":"pypinyin"},{"download_count":692217,"project":"pymatching"},{"download_count":691686,"project":"django-picklefield"},{"download_count":691618,"project":"opentelemetry-instrumentation-system-metrics"},{"download_count":691488,"project":"bibtexparser"},{"download_count":691053,"project":"pyod"},{"download_count":690234,"project":"bezier"},{"download_count":690098,"project":"opentelemetry-instrumentation-aws-lambda"},{"download_count":689538,"project":"ldaptor"},{"download_count":689444,"project":"django-compressor"},{"download_count":689208,"project":"swagger-spec-validator"},{"download_count":688891,"project":"duckduckgo-search"},{"download_count":688625,"project":"morefs"},{"download_count":688237,"project":"executor"},{"download_count":686491,"project":"homeassistant"},{"download_count":685360,"project":"pdbpp"},{"download_count":684976,"project":"wmctrl"},{"download_count":684802,"project":"pip-audit"},{"download_count":684230,"project":"inotify"},{"download_count":683876,"project":"pip-system-certs"},{"download_count":683560,"project":"gnupg"},{"download_count":683391,"project":"bleak"},{"download_count":683194,"project":"pyte"},{"download_count":683124,"project":"django-mptt"},{"download_count":682684,"project":"arnparse"},{"download_count":682352,"project":"anybadge"},{"download_count":681939,"project":"docopt-ng"},{"download_count":681751,"project":"ariadne"},{"download_count":681564,"project":"pytest-httpbin"},{"download_count":681480,"project":"jinjasql"},{"download_count":681436,"project":"evergreen-lint"},{"download_count":680687,"project":"infinity"},{"download_count":680251,"project":"flytekit"},{"download_count":679264,"project":"curatorbin"},{"download_count":678936,"project":"pymsgbox"},{"download_count":678931,"project":"distribute"},{"download_count":678389,"project":"ocspbuilder"},{"download_count":678388,"project":"marko"},{"download_count":678368,"project":"pusher"},{"download_count":678190,"project":"property-cached"},{"download_count":677499,"project":"pantab"},{"download_count":677212,"project":"structlog-sentry"},{"download_count":676600,"project":"fusepy"},{"download_count":675905,"project":"darglint"},{"download_count":675896,"project":"ocspresponder"},{"download_count":675875,"project":"azure-ai-documentintelligence"},{"download_count":675865,"project":"safer"},{"download_count":675585,"project":"python-keystoneclient"},{"download_count":675496,"project":"htmldocx"},{"download_count":675455,"project":"netsuitesdk"},{"download_count":675327,"project":"proxy-protocol"},{"download_count":675295,"project":"meshio"},{"download_count":674099,"project":"ping3"},{"download_count":673759,"project":"injectool"},{"download_count":673660,"project":"spython"},{"download_count":672955,"project":"mypy-boto3-ses"},{"download_count":671543,"project":"datadog-logger"},{"download_count":671115,"project":"quinn"},{"download_count":671045,"project":"opentelemetry-instrumentation-pymongo"},{"download_count":670845,"project":"clipboard"},{"download_count":670456,"project":"outlines"},{"download_count":670407,"project":"click-default-group-wheel"},{"download_count":670286,"project":"quart-cors"},{"download_count":670227,"project":"retry-decorator"},{"download_count":669625,"project":"nats-py"},{"download_count":668895,"project":"ajsonrpc"},{"download_count":668035,"project":"flyteidl"},{"download_count":667928,"project":"lm-format-enforcer"},{"download_count":667826,"project":"coincurve"},{"download_count":667774,"project":"clikit"},{"download_count":666438,"project":"pebble"},{"download_count":666354,"project":"libusb1"},{"download_count":666263,"project":"mistletoe"},{"download_count":664651,"project":"pdoc"},{"download_count":664330,"project":"html-tag-names"},{"download_count":664077,"project":"nameparser"},{"download_count":663844,"project":"html-void-elements"},{"download_count":662869,"project":"datadog-lambda"},{"download_count":662085,"project":"cvxopt"},{"download_count":661543,"project":"p4p"},{"download_count":661072,"project":"scikit-base"},{"download_count":659497,"project":"envs"},{"download_count":657931,"project":"ipyvuetify"},{"download_count":656964,"project":"requestsexceptions"},{"download_count":656938,"project":"s3pathlib"},{"download_count":655981,"project":"music21"},{"download_count":655333,"project":"envyaml"},{"download_count":654835,"project":"iterproxy"},{"download_count":654555,"project":"docker-image-py"},{"download_count":654444,"project":"ragas"},{"download_count":653450,"project":"enrich"},{"download_count":653057,"project":"validate-email"},{"download_count":652334,"project":"typing-utils"},{"download_count":652256,"project":"slowapi"},{"download_count":651974,"project":"python-frontmatter"},{"download_count":651944,"project":"opensimplex"},{"download_count":651574,"project":"fido2"},{"download_count":651489,"project":"googleads"},{"download_count":651465,"project":"epicscorelibs"},{"download_count":650769,"project":"patool"},{"download_count":650363,"project":"ipyvue"},{"download_count":649751,"project":"tcod"},{"download_count":649422,"project":"pvxslibs"},{"download_count":649382,"project":"zipfile36"},{"download_count":649036,"project":"pyannote-core"},{"download_count":648463,"project":"pythonnet"},{"download_count":648107,"project":"pykmip"},{"download_count":647980,"project":"numpy-financial"},{"download_count":647772,"project":"spark-sklearn"},{"download_count":647426,"project":"msgpack-python"},{"download_count":647333,"project":"random-password-generator"},{"download_count":647104,"project":"outdated"},{"download_count":646572,"project":"pyannote-database"},{"download_count":646520,"project":"path-dict"},{"download_count":645864,"project":"oauth2"},{"download_count":645671,"project":"minidump"},{"download_count":645343,"project":"pip-licenses"},{"download_count":644944,"project":"ipyparallel"},{"download_count":644274,"project":"types-dateparser"},{"download_count":643994,"project":"nanobind"},{"download_count":641770,"project":"xatlas"},{"download_count":641684,"project":"setuptools-dso"},{"download_count":640770,"project":"geomdl"},{"download_count":640457,"project":"misaka"},{"download_count":640342,"project":"requests-oauth"},{"download_count":639658,"project":"scons"},{"download_count":638964,"project":"json2html"},{"download_count":638767,"project":"llm-dialog-manager"},{"download_count":638350,"project":"pyrtf3"},{"download_count":638279,"project":"pyjsparser"},{"download_count":638109,"project":"pre-commit-hooks"},{"download_count":638096,"project":"autodocsumm"},{"download_count":637884,"project":"pyroute2"},{"download_count":637769,"project":"google-cloud-iam"},{"download_count":637666,"project":"asyncache"},{"download_count":637308,"project":"json-logging"},{"download_count":636812,"project":"wordfreq"},{"download_count":635796,"project":"rpaframework-core"},{"download_count":635686,"project":"dictlib"},{"download_count":634407,"project":"myst-nb"},{"download_count":634320,"project":"beniget"},{"download_count":634034,"project":"mxnet"},{"download_count":632768,"project":"pytest-lazy-fixture"},{"download_count":632659,"project":"manifold3d"},{"download_count":631806,"project":"webassets"},{"download_count":631595,"project":"easyocr"},{"download_count":631400,"project":"simplegeneric"},{"download_count":631349,"project":"pyannote-metrics"},{"download_count":631073,"project":"healpy"},{"download_count":631058,"project":"yellowbrick"},{"download_count":630984,"project":"easing-functions"},{"download_count":630606,"project":"gpustat"},{"download_count":630557,"project":"mypy-boto3-batch"},{"download_count":630470,"project":"clldutils"},{"download_count":630069,"project":"types-openpyxl"},{"download_count":630044,"project":"assertpy"},{"download_count":628326,"project":"deepl"},{"download_count":628305,"project":"pyevtk"},{"download_count":628297,"project":"fastai"},{"download_count":628131,"project":"pdbp"},{"download_count":627325,"project":"bands-inspect"},{"download_count":627090,"project":"fsc-hdf5-io"},{"download_count":626842,"project":"opentelemetry-instrumentation-threading"},{"download_count":626780,"project":"tbmodels"},{"download_count":626482,"project":"luigi"},{"download_count":626156,"project":"cursor"},{"download_count":626068,"project":"mistral-common"},{"download_count":625415,"project":"polyline"},{"download_count":625097,"project":"munkres"},{"download_count":624745,"project":"aim"},{"download_count":623870,"project":"escapism"},{"download_count":623473,"project":"roundrobin"},{"download_count":622972,"project":"java-manifest"},{"download_count":622956,"project":"tangled-up-in-unicode"},{"download_count":622684,"project":"pythran-openblas"},{"download_count":622444,"project":"pyston"},{"download_count":622127,"project":"locate"},{"download_count":621674,"project":"stepfunctions"},{"download_count":621053,"project":"svg-path"},{"download_count":620874,"project":"pyston-autoload"},{"download_count":620412,"project":"vhacdx"},{"download_count":620326,"project":"django-ses"},{"download_count":619936,"project":"jstyleson"},{"download_count":619495,"project":"opentelemetry-propagator-b3"},{"download_count":619009,"project":"algoliasearch"},{"download_count":617217,"project":"baron"},{"download_count":616986,"project":"hdf5plugin"},{"download_count":616907,"project":"tabcompleter"},{"download_count":616746,"project":"qudida"},{"download_count":616234,"project":"sphinx-airflow-theme"},{"download_count":616109,"project":"perlin-noise"},{"download_count":614655,"project":"redbaron"},{"download_count":614544,"project":"bitmath"},{"download_count":612397,"project":"slugify"},{"download_count":612101,"project":"us"},{"download_count":611517,"project":"xsdata"},{"download_count":611476,"project":"pytest-ansible"},{"download_count":611381,"project":"rpaframework-pdf"},{"download_count":611255,"project":"databricks-feature-store"},{"download_count":611246,"project":"apache-airflow-providers-atlassian-jira"},{"download_count":611238,"project":"gcloud"},{"download_count":611203,"project":"csvw"},{"download_count":610755,"project":"webrtcvad-wheels"},{"download_count":610233,"project":"codetiming"},{"download_count":609975,"project":"stups-tokens"},{"download_count":609763,"project":"azure-mgmt-quota"},{"download_count":609442,"project":"fastcluster"},{"download_count":608378,"project":"pytest-djangoapp"},{"download_count":607879,"project":"feu"},{"download_count":607768,"project":"sqlalchemy-hana"},{"download_count":607311,"project":"apipkg"},{"download_count":607197,"project":"drissionpage"},{"download_count":606586,"project":"robotframework-seleniumtestability"},{"download_count":606502,"project":"jinja2-cli"},{"download_count":605414,"project":"deep-translator"},{"download_count":605169,"project":"pytest-github-actions-annotate-failures"},{"download_count":604885,"project":"acryl-datahub-airflow-plugin"},{"download_count":603563,"project":"torch-complex"},{"download_count":603411,"project":"flask-basicauth"},{"download_count":602930,"project":"imagecodecs"},{"download_count":602801,"project":"milvus-lite"},{"download_count":601878,"project":"func-args"},{"download_count":601683,"project":"pentapy"},{"download_count":600583,"project":"apache-airflow-providers-redis"},{"download_count":600490,"project":"geckodriver-autoinstaller"},{"download_count":600323,"project":"requests-pkcs12"},{"download_count":599853,"project":"snakeviz"},{"download_count":599486,"project":"inputimeout"},{"download_count":599102,"project":"robocorp-storage"},{"download_count":599071,"project":"restructuredtext-lint"},{"download_count":598599,"project":"django-waffle"},{"download_count":598577,"project":"clr-loader"},{"download_count":597561,"project":"azureml-pipeline-core"},{"download_count":597403,"project":"telethon"},{"download_count":597091,"project":"red-discordbot"},{"download_count":597031,"project":"chalice"},{"download_count":595744,"project":"mypy-boto3-cloudwatch"},{"download_count":595656,"project":"textstat"},{"download_count":595594,"project":"pydrive2"},{"download_count":595456,"project":"formic2"},{"download_count":595427,"project":"pyapacheatlas"},{"download_count":595407,"project":"pillow-avif-plugin"},{"download_count":595180,"project":"dotenv"},{"download_count":594147,"project":"splunk-sdk"},{"download_count":594109,"project":"types-stripe"},{"download_count":593996,"project":"opentelemetry-exporter-prometheus-remote-write"},{"download_count":593655,"project":"sgp4"},{"download_count":593551,"project":"pygobject"},{"download_count":593218,"project":"sphinx-prompt"},{"download_count":593069,"project":"azure-containerregistry"},{"download_count":592767,"project":"opentelemetry-instrumentation-starlette"},{"download_count":592274,"project":"gtts"},{"download_count":591551,"project":"case-conversion"},{"download_count":591537,"project":"pyre-extensions"},{"download_count":591338,"project":"molecule"},{"download_count":590944,"project":"google-cloud-recaptcha-enterprise"},{"download_count":590748,"project":"betamax"},{"download_count":590607,"project":"pytest-nunit"},{"download_count":590589,"project":"publicsuffix2"},{"download_count":590523,"project":"databind-core"},{"download_count":590416,"project":"snowplow-tracker"},{"download_count":590188,"project":"py-ecc"},{"download_count":589209,"project":"stups-zign"},{"download_count":588925,"project":"ntc-templates"},{"download_count":588560,"project":"stups-cli-support"},{"download_count":588075,"project":"django-widget-tweaks"},{"download_count":587969,"project":"databind-json"},{"download_count":587328,"project":"prefect-docker"},{"download_count":586945,"project":"funasr"},{"download_count":586905,"project":"ubelt"},{"download_count":585288,"project":"webvtt-py"},{"download_count":584976,"project":"versioningit"},{"download_count":584409,"project":"xdg"},{"download_count":583828,"project":"sparqlwrapper"},{"download_count":583814,"project":"aiodataloader"},{"download_count":583706,"project":"delta"},{"download_count":583302,"project":"codefind"},{"download_count":583152,"project":"newrelic-telemetry-sdk"},{"download_count":583092,"project":"colorzero"},{"download_count":582824,"project":"httpie"},{"download_count":582667,"project":"pycognito"},{"download_count":582438,"project":"vobject"},{"download_count":582343,"project":"simpleitk"},{"download_count":582048,"project":"pyawscron"},{"download_count":581878,"project":"python-certifi-win32"},{"download_count":581186,"project":"gpiozero"},{"download_count":580140,"project":"ably"},{"download_count":579481,"project":"pyfzf"},{"download_count":578564,"project":"spanishconjugator"},{"download_count":578491,"project":"plaid-python"},{"download_count":578030,"project":"hstspreload"},{"download_count":577934,"project":"pyjarowinkler"},{"download_count":577751,"project":"bugsnag"},{"download_count":577627,"project":"mplfinance"},{"download_count":576748,"project":"luqum"},{"download_count":576602,"project":"lagom"},{"download_count":576408,"project":"pyrepl"},{"download_count":576026,"project":"extract-msg"},{"download_count":575875,"project":"resize-right"},{"download_count":575685,"project":"flask-swagger-ui"},{"download_count":575214,"project":"sphinxcontrib-websupport"},{"download_count":574632,"project":"pytest-profiling"},{"download_count":574583,"project":"java-access-bridge-wrapper"},{"download_count":574448,"project":"libretranslatepy"},{"download_count":574423,"project":"numpy-groupies"},{"download_count":573780,"project":"mypy-boto3-cognito-idp"},{"download_count":573688,"project":"pyyaml-include"},{"download_count":573539,"project":"gputil"},{"download_count":573235,"project":"robocorp-vault"},{"download_count":573058,"project":"types-werkzeug"},{"download_count":572582,"project":"pytorch-wpe"},{"download_count":572032,"project":"mistralai"},{"download_count":571635,"project":"sbvirtualdisplay"},{"download_count":571618,"project":"pynput-robocorp-fork"},{"download_count":571117,"project":"rank-bm25"},{"download_count":570938,"project":"mypy-boto3-bedrock-runtime"},{"download_count":570580,"project":"deepspeed"},{"download_count":570488,"project":"apache-airflow-providers-apache-kafka"},{"download_count":570425,"project":"pyorc"},{"download_count":569779,"project":"translate"},{"download_count":569253,"project":"tensorflow-gpu"},{"download_count":568539,"project":"pyairports"},{"download_count":567733,"project":"dbfread"},{"download_count":567145,"project":"locustio"},{"download_count":567053,"project":"newspaper3k"},{"download_count":566747,"project":"opentelemetry-instrumentation-boto3sqs"},{"download_count":566588,"project":"asteroid-filterbanks"},{"download_count":566054,"project":"daiquiri"},{"download_count":565538,"project":"jsonfield"},{"download_count":565399,"project":"mwparserfromhell"},{"download_count":565182,"project":"apeye-core"},{"download_count":565033,"project":"mdx-truly-sane-lists"},{"download_count":564001,"project":"grpc-gateway-protoc-gen-openapiv2"},{"download_count":563879,"project":"screeninfo"},{"download_count":563559,"project":"jplephem"},{"download_count":562867,"project":"dvc"},{"download_count":562802,"project":"xinspect"},{"download_count":562466,"project":"asyncclick"},{"download_count":562104,"project":"flake8-bandit"},{"download_count":561804,"project":"tensorflowonspark"},{"download_count":560315,"project":"west"},{"download_count":560154,"project":"office365"},{"download_count":558637,"project":"pyexcel-io"},{"download_count":558074,"project":"cvdupdate"},{"download_count":557420,"project":"openinference-instrumentation"},{"download_count":557365,"project":"tentaclio"},{"download_count":556608,"project":"opentelemetry-instrumentation-pika"},{"download_count":556184,"project":"yapsy"},{"download_count":555772,"project":"clvm-rs"},{"download_count":555769,"project":"django-polymorphic"},{"download_count":555318,"project":"torch-audiomentations"},{"download_count":555188,"project":"chomsky"},{"download_count":554740,"project":"get-reader"},{"download_count":554587,"project":"imapclient"},{"download_count":554383,"project":"dgl"},{"download_count":554174,"project":"tinysegmenter"},{"download_count":554047,"project":"primepy"},{"download_count":554024,"project":"braintree"},{"download_count":553892,"project":"pytest-deadfixtures"},{"download_count":553642,"project":"pyannote-audio"},{"download_count":553484,"project":"torch-pitch-shift"},{"download_count":553360,"project":"fcm-django"},{"download_count":552874,"project":"azureml-telemetry"},{"download_count":552663,"project":"airbyte-cdk"},{"download_count":551962,"project":"mongo-tooling-metrics"},{"download_count":551441,"project":"prometheus-api-client"},{"download_count":551266,"project":"mltable"},{"download_count":550856,"project":"tentaclio-s3"},{"download_count":550717,"project":"pytest-clarity"},{"download_count":550600,"project":"tatsu"},{"download_count":550294,"project":"uuid-utils"},{"download_count":549648,"project":"flask-assets"},{"download_count":549521,"project":"mongo-ninja-python"},{"download_count":548828,"project":"quadprog"},{"download_count":548179,"project":"tensorflow-transform"},{"download_count":547985,"project":"localstack-core"},{"download_count":547801,"project":"lml"},{"download_count":547148,"project":"s2sphere"},{"download_count":546432,"project":"adjusttext"},{"download_count":546047,"project":"opentelemetry-test-utils"},{"download_count":546020,"project":"junit2html"},{"download_count":545544,"project":"duckdb-engine"},{"download_count":545530,"project":"opentelemetry-instrumentation-asyncio"},{"download_count":544644,"project":"imgaug"},{"download_count":544558,"project":"types-xmltodict"},{"download_count":544336,"project":"pyspark-dist-explore"},{"download_count":544207,"project":"docker-py"},{"download_count":544094,"project":"python-fsutil"},{"download_count":544023,"project":"python-redis-lock"},{"download_count":543816,"project":"ncclient"},{"download_count":543450,"project":"infi-systray"},{"download_count":543174,"project":"cssbeautifier"},{"download_count":542864,"project":"maybe-else"},{"download_count":542800,"project":"python-logging-loki"},{"download_count":542493,"project":"pymiscutils"},{"download_count":542151,"project":"pyxray"},{"download_count":541959,"project":"scooby"},{"download_count":541906,"project":"pyiotools"},{"download_count":541799,"project":"iterative-telemetry"},{"download_count":541265,"project":"sparkmeasure"},{"download_count":541229,"project":"django-axes"},{"download_count":541192,"project":"pysubtypes"},{"download_count":540951,"project":"pathmagic"},{"download_count":540802,"project":"prettierfier"},{"download_count":540579,"project":"neptune-client"},{"download_count":540531,"project":"pyannote-pipeline"},{"download_count":540310,"project":"pytest-qt"},{"download_count":540270,"project":"yamlordereddictloader"},{"download_count":540029,"project":"types-chardet"},{"download_count":539755,"project":"nagiosplugin"},{"download_count":539398,"project":"sortednp"},{"download_count":539379,"project":"ufal-udpipe"},{"download_count":539341,"project":"hbutils"},{"download_count":538727,"project":"blosc"},{"download_count":538722,"project":"sparse"},{"download_count":538493,"project":"memepy"},{"download_count":538261,"project":"embedchain"},{"download_count":537644,"project":"tldrwl"},{"download_count":537545,"project":"types-flask"},{"download_count":536976,"project":"cbor"},{"download_count":536677,"project":"types-tzlocal"},{"download_count":536333,"project":"dagster-slack"},{"download_count":535617,"project":"google-cloud-os-config"},{"download_count":534866,"project":"publicsuffixlist"},{"download_count":534623,"project":"ibm-db-sa"},{"download_count":534329,"project":"matrix"},{"download_count":533938,"project":"darkdetect"},{"download_count":533796,"project":"pytest-watch"},{"download_count":533453,"project":"mypy-boto3-route53"},{"download_count":532360,"project":"partial-json-parser"},{"download_count":532026,"project":"django-admin-rangefilter"},{"download_count":531925,"project":"glfw"},{"download_count":531603,"project":"krb5"},{"download_count":531368,"project":"apache-airflow-providers-github"},{"download_count":531227,"project":"osc-lib"},{"download_count":530793,"project":"neologism"},{"download_count":530131,"project":"policyuniverse"},{"download_count":529708,"project":"mkdocs-macros-plugin"},{"download_count":529185,"project":"helpers"},{"download_count":528644,"project":"pyqtgraph"},{"download_count":528541,"project":"apeye"},{"download_count":528346,"project":"apache-airflow-providers-openlineage"},{"download_count":528100,"project":"getmac"},{"download_count":528071,"project":"xrft"},{"download_count":527870,"project":"qiskit"},{"download_count":527797,"project":"app-store-scraper"},{"download_count":525968,"project":"gurobipy"},{"download_count":525590,"project":"django-ratelimit"},{"download_count":525537,"project":"rangehttpserver"},{"download_count":525530,"project":"dagster-cloud-cli"},{"download_count":525472,"project":"mf2py"},{"download_count":524993,"project":"jschon"},{"download_count":524396,"project":"pymannkendall"},{"download_count":523741,"project":"crewai"},{"download_count":522941,"project":"pytest-celery"},{"download_count":522716,"project":"functools32"},{"download_count":522472,"project":"xmodem"},{"download_count":522232,"project":"extruct"},{"download_count":521717,"project":"importlib"},{"download_count":521359,"project":"python-openstackclient"},{"download_count":521279,"project":"pyrdfa3"},{"download_count":520882,"project":"pydantic-yaml"},{"download_count":520699,"project":"readerwriterlock"},{"download_count":520360,"project":"python-cinderclient"},{"download_count":520347,"project":"ruamel-yaml-jinja2"},{"download_count":520339,"project":"mkdocs-git-revision-date-localized-plugin"},{"download_count":520194,"project":"pattern"},{"download_count":520004,"project":"lime"},{"download_count":519123,"project":"tink"},{"download_count":518710,"project":"scriptconfig"},{"download_count":518635,"project":"event-model"},{"download_count":518087,"project":"splunk-handler"},{"download_count":517792,"project":"json-spec"},{"download_count":517589,"project":"flask-script"},{"download_count":516958,"project":"teradataml"},{"download_count":516854,"project":"skyfield"},{"download_count":516815,"project":"tempita"},{"download_count":516810,"project":"opencc-python-reimplemented"},{"download_count":516708,"project":"progiter"},{"download_count":516631,"project":"isal"},{"download_count":516588,"project":"casbin"},{"download_count":516397,"project":"coolprop"},{"download_count":516286,"project":"pulumi-aws"},{"download_count":515601,"project":"unstructured-inference"},{"download_count":515579,"project":"decord"},{"download_count":515562,"project":"elasticsearch8"},{"download_count":514449,"project":"aws-cdk-aws-glue-alpha"},{"download_count":514214,"project":"skolemizer"},{"download_count":513985,"project":"flake8-tidy-imports"},{"download_count":513722,"project":"jenkinsapi"},{"download_count":513602,"project":"autofaker"},{"download_count":513565,"project":"google-python-cloud-debugger"},{"download_count":512546,"project":"lorem"},{"download_count":512263,"project":"icontract"},{"download_count":512216,"project":"cma"},{"download_count":511808,"project":"primp"},{"download_count":511464,"project":"flash-attn"},{"download_count":511435,"project":"caproto"},{"download_count":511287,"project":"hf-transfer"},{"download_count":511259,"project":"expecttest"},{"download_count":510565,"project":"flask-pymongo"},{"download_count":510338,"project":"stringparser"},{"download_count":510130,"project":"check-jsonschema"},{"download_count":509354,"project":"keyboard"},{"download_count":509248,"project":"google-cloud-org-policy"},{"download_count":508844,"project":"routes"},{"download_count":508613,"project":"pybase62"},{"download_count":507376,"project":"jinja2-pluralize"},{"download_count":507140,"project":"transformations"},{"download_count":506657,"project":"kedro"},{"download_count":506630,"project":"objprint"},{"download_count":506229,"project":"flask-apscheduler"},{"download_count":506210,"project":"rouge"},{"download_count":506127,"project":"customtkinter"},{"download_count":506108,"project":"fhir-resources"},{"download_count":506022,"project":"guppy3"},{"download_count":505813,"project":"pytest-docker"},{"download_count":505141,"project":"picu"},{"download_count":505001,"project":"munidata"},{"download_count":504572,"project":"sodapy"},{"download_count":504547,"project":"fava"},{"download_count":504069,"project":"tippo"},{"download_count":503958,"project":"delegator-py"},{"download_count":503770,"project":"blendmodes"},{"download_count":503199,"project":"python-coveralls"},{"download_count":502975,"project":"sk-dist"},{"download_count":502709,"project":"brotlipy"},{"download_count":502499,"project":"wasmer"},{"download_count":502467,"project":"backports-ssl-match-hostname"},{"download_count":502112,"project":"weread2notionpro"},{"download_count":502046,"project":"cantools"},{"download_count":502024,"project":"gdbmongo"},{"download_count":501438,"project":"sigtools"},{"download_count":501415,"project":"dbt-fabric"},{"download_count":501199,"project":"rpy2"},{"download_count":500386,"project":"capstone"},{"download_count":500274,"project":"rauth"},{"download_count":500077,"project":"acryl-sqlglot"},{"download_count":499826,"project":"shandy-sqlfmt"},{"download_count":499605,"project":"openmim"},{"download_count":498944,"project":"cement"},{"download_count":498892,"project":"bsdiff4"},{"download_count":498776,"project":"zipfile-deflate64"},{"download_count":498673,"project":"pyminizip"},{"download_count":498584,"project":"flask-oauthlib"},{"download_count":498365,"project":"mysql"},{"download_count":497767,"project":"mypy-boto3-eks"},{"download_count":497284,"project":"ess-streaming-data-types"},{"download_count":497099,"project":"yattag"},{"download_count":496888,"project":"colander"},{"download_count":496785,"project":"localstack-ext"},{"download_count":496620,"project":"elasticsearch-dbapi"},{"download_count":496107,"project":"django-treebeard"},{"download_count":495980,"project":"pydoe"},{"download_count":495671,"project":"coola"},{"download_count":495196,"project":"apache-airflow-providers-apache-hive"},{"download_count":495147,"project":"rarfile"},{"download_count":494998,"project":"suds"},{"download_count":494810,"project":"scikeras"},{"download_count":494797,"project":"docstring-to-markdown"},{"download_count":493819,"project":"alexapy"},{"download_count":493717,"project":"optbinning"},{"download_count":493668,"project":"tomesd"},{"download_count":493093,"project":"types-pyasn1"},{"download_count":492913,"project":"lkml"},{"download_count":492679,"project":"sqlalchemy-mate"},{"download_count":492189,"project":"easygui"},{"download_count":491493,"project":"requirements-detector"},{"download_count":491434,"project":"entsoe-py"},{"download_count":491433,"project":"apispec-webframeworks"},{"download_count":491014,"project":"scrapbook"},{"download_count":490892,"project":"scikit-plot"},{"download_count":490791,"project":"cookies"},{"download_count":490773,"project":"unyt"},{"download_count":490701,"project":"keras-tuner"},{"download_count":490683,"project":"seqeval"},{"download_count":489952,"project":"asyncstdlib"},{"download_count":489064,"project":"apache-airflow-providers-opsgenie"},{"download_count":488960,"project":"simple-settings"},{"download_count":488796,"project":"submitit"},{"download_count":488790,"project":"miscreant"},{"download_count":488724,"project":"types-aiobotocore-sqs"},{"download_count":488366,"project":"evidently"},{"download_count":487924,"project":"stomp-py"},{"download_count":487689,"project":"ipympl"},{"download_count":487664,"project":"ibmcloudant"},{"download_count":487621,"project":"flake8-plugin-utils"},{"download_count":487399,"project":"cron-schedule-triggers"},{"download_count":487300,"project":"celery-types"},{"download_count":486822,"project":"flake8-broken-line"},{"download_count":485678,"project":"dimod"},{"download_count":485128,"project":"javaobj-py3"},{"download_count":485003,"project":"graphene-django"},{"download_count":484959,"project":"mypy-boto3"},{"download_count":484939,"project":"langchain-cohere"},{"download_count":484384,"project":"mkdocs-redirects"},{"download_count":484320,"project":"pymodbus"},{"download_count":484239,"project":"django-ninja"},{"download_count":484073,"project":"lpips"},{"download_count":484060,"project":"jupyter-server-proxy"},{"download_count":483373,"project":"httpx-ws"},{"download_count":483359,"project":"jsonpath-rw-ext"},{"download_count":483303,"project":"dag-factory"},{"download_count":483142,"project":"pathfinding"},{"download_count":482681,"project":"opentelemetry-exporter-jaeger-thrift"},{"download_count":482342,"project":"assisted-service-client"},{"download_count":481781,"project":"proxy-db"},{"download_count":481476,"project":"markuppy"},{"download_count":481176,"project":"mlserver"},{"download_count":480842,"project":"holoviews"},{"download_count":480833,"project":"tox-gh-actions"},{"download_count":479803,"project":"azure-eventhub-checkpointstoreblob-aio"},{"download_count":479288,"project":"dbt-athena-community"},{"download_count":478989,"project":"dbt-duckdb"},{"download_count":478760,"project":"sqlitedict"},{"download_count":478674,"project":"ml-collections"},{"download_count":477636,"project":"pygerduty"},{"download_count":477580,"project":"xtgeo"},{"download_count":477388,"project":"django-ckeditor"},{"download_count":477353,"project":"mypy-boto3-config"},{"download_count":477059,"project":"azureml-inference-server-http"},{"download_count":477020,"project":"effdet"},{"download_count":476835,"project":"tableschema"},{"download_count":476788,"project":"neovim"},{"download_count":476743,"project":"rfc5424-logging-handler"},{"download_count":476684,"project":"segments"},{"download_count":475471,"project":"bearlibterminal"},{"download_count":474704,"project":"django-webpack-loader"},{"download_count":474156,"project":"comet-ml"},{"download_count":473478,"project":"azure-cognitiveservices-speech"},{"download_count":473173,"project":"cmarkgfm"},{"download_count":472689,"project":"mlforecast"},{"download_count":472499,"project":"wasmer-compiler-cranelift"},{"download_count":472494,"project":"import-deps"},{"download_count":472458,"project":"cli-helpers"},{"download_count":472388,"project":"types-aioboto3"},{"download_count":472212,"project":"plotly-resampler"},{"download_count":471841,"project":"copier"},{"download_count":471839,"project":"flogging"},{"download_count":471505,"project":"tdigest"},{"download_count":471450,"project":"flask-executor"},{"download_count":471305,"project":"grequests"},{"download_count":471115,"project":"google-cloud-dns"},{"download_count":471107,"project":"psycogreen"},{"download_count":470504,"project":"fragile"},{"download_count":469701,"project":"pbs4py"},{"download_count":469614,"project":"judo"},{"download_count":469435,"project":"bravado"},{"download_count":469429,"project":"localstack"},{"download_count":469378,"project":"grandalf"},{"download_count":469362,"project":"google-cloud-asset"},{"download_count":469355,"project":"pip-check"},{"download_count":469288,"project":"pyngrok"},{"download_count":469113,"project":"deptry"},{"download_count":468843,"project":"ibm-cos-sdk-core"},{"download_count":468770,"project":"importlab"},{"download_count":468662,"project":"matrix-client"},{"download_count":468660,"project":"mpi4py"},{"download_count":468468,"project":"bridgecrew"},{"download_count":468178,"project":"zha-quirks"},{"download_count":467896,"project":"antlr-denter"},{"download_count":467732,"project":"currencyconverter"},{"download_count":467478,"project":"tinyhtml5"},{"download_count":467474,"project":"mkdocs-monorepo-plugin"},{"download_count":466998,"project":"pytest-flakefinder"},{"download_count":466702,"project":"ibm-cos-sdk-s3transfer"},{"download_count":466112,"project":"zigpy-znp"},{"download_count":466040,"project":"zigpy-deconz"},{"download_count":465602,"project":"cupy-cuda12x"},{"download_count":465521,"project":"tree-sitter-python"},{"download_count":465380,"project":"mkdocs-gen-files"},{"download_count":465206,"project":"dvc-data"},{"download_count":465138,"project":"flake8-commas"},{"download_count":464151,"project":"bellows"},{"download_count":464120,"project":"zigpy-xbee"},{"download_count":464015,"project":"ibm-cos-sdk"},{"download_count":463999,"project":"types-boto"},{"download_count":463830,"project":"opencensus-ext-requests"},{"download_count":463802,"project":"sphinx-sitemap"},{"download_count":462961,"project":"mpyc"},{"download_count":462675,"project":"crispy-bootstrap5"},{"download_count":462414,"project":"sobol-seq"},{"download_count":462161,"project":"docxtpl"},{"download_count":461893,"project":"hacking"},{"download_count":461888,"project":"graphitesend"},{"download_count":461664,"project":"azure-monitor-ingestion"},{"download_count":461525,"project":"nudged"},{"download_count":461302,"project":"sttable"},{"download_count":460452,"project":"pyvim"},{"download_count":459966,"project":"mypy-boto3-pinpoint-sms-voice-v2"},{"download_count":459892,"project":"embreex"},{"download_count":459427,"project":"pyzbar"},{"download_count":459280,"project":"final-class"},{"download_count":459018,"project":"openinference-instrumentation-langchain"},{"download_count":458946,"project":"google-cloud-access-context-manager"},{"download_count":458668,"project":"pandas-flavor"},{"download_count":457949,"project":"general-functions"},{"download_count":457654,"project":"pytest-retry"},{"download_count":457340,"project":"aws-embedded-metrics"},{"download_count":457187,"project":"langchain-chroma"},{"download_count":456820,"project":"presidio-anonymizer"},{"download_count":456114,"project":"treq"},{"download_count":455718,"project":"mlog-arithmetic-runner"},{"download_count":455626,"project":"azureml-automl-core"},{"download_count":455032,"project":"azure-schemaregistry-avroserializer"},{"download_count":454857,"project":"types-bleach"},{"download_count":454840,"project":"azureml-train-core"},{"download_count":454290,"project":"webhelpers2"},{"download_count":453951,"project":"extension-helpers"},{"download_count":453886,"project":"alibabacloud-tea"},{"download_count":453682,"project":"pycparserext-gnuc"},{"download_count":453336,"project":"pynetbox"},{"download_count":453309,"project":"pismosendlogs"},{"download_count":453191,"project":"argparse-dataclass"},{"download_count":453109,"project":"django-coverage-plugin"},{"download_count":452695,"project":"pi-heif"},{"download_count":452597,"project":"python-socks"},{"download_count":452501,"project":"flufl-lock"},{"download_count":452172,"project":"robotframework-stacktrace"},{"download_count":452139,"project":"pytest-datadir"},{"download_count":452054,"project":"thoth-common"},{"download_count":451828,"project":"openai-whisper"},{"download_count":451474,"project":"patch"},{"download_count":451337,"project":"django-structlog"},{"download_count":450939,"project":"window-ops"},{"download_count":450867,"project":"word2number"},{"download_count":450853,"project":"titlecase"},{"download_count":450259,"project":"pyxirr"},{"download_count":449493,"project":"django-reversion"},{"download_count":449492,"project":"libusb-package"},{"download_count":449415,"project":"flask-sso"},{"download_count":449259,"project":"sqlalchemy-migrate"},{"download_count":448495,"project":"jsoncomment"},{"download_count":448331,"project":"pydantic-xml"},{"download_count":448188,"project":"flask-swagger"},{"download_count":447517,"project":"pysimdjson"},{"download_count":447457,"project":"pythonping"},{"download_count":447040,"project":"tensorflowjs"},{"download_count":446473,"project":"opentelemetry-instrumentation-tortoiseorm"},{"download_count":446424,"project":"mypy-boto3-sagemaker-runtime"},{"download_count":446342,"project":"thoth-python"},{"download_count":446247,"project":"codegen"},{"download_count":446002,"project":"azure-mgmt-postgresqlflexibleservers"},{"download_count":445804,"project":"turbopuffer"},{"download_count":445772,"project":"aresponses"},{"download_count":445291,"project":"thoth-storages"},{"download_count":445187,"project":"thoth-analyzer"},{"download_count":444693,"project":"xmlrunner"},{"download_count":444464,"project":"types-aiobotocore-dynamodb"},{"download_count":444039,"project":"tencentcloud-sdk-python"},{"download_count":443896,"project":"pyct"},{"download_count":443560,"project":"patterns"},{"download_count":443339,"project":"urwid-readline"},{"download_count":443225,"project":"pyrogram"},{"download_count":442881,"project":"uszipcode"},{"download_count":442577,"project":"anyconfig"},{"download_count":442351,"project":"graphyte"},{"download_count":442057,"project":"sqlean-py"},{"download_count":441321,"project":"line-bot-sdk"},{"download_count":441042,"project":"nlpaug"},{"download_count":441010,"project":"simpervisor"},{"download_count":440416,"project":"pretty-errors"},{"download_count":440283,"project":"synchronicity"},{"download_count":440224,"project":"azure-mgmt-mysqlflexibleservers"},{"download_count":440060,"project":"asyncio-throttle"},{"download_count":439836,"project":"opentelemetry-instrumentation-boto"},{"download_count":439719,"project":"dictio"},{"download_count":439719,"project":"kt-legacy"},{"download_count":438966,"project":"pytype"},{"download_count":438651,"project":"umodbus"},{"download_count":438374,"project":"glances"},{"download_count":438207,"project":"missingpy"},{"download_count":437404,"project":"mypy-boto3-firehose"},{"download_count":437253,"project":"mujoco"},{"download_count":437249,"project":"feast"},{"download_count":437193,"project":"openmath"},{"download_count":436903,"project":"gpyreg"},{"download_count":436718,"project":"mypy-boto3-sso"},{"download_count":436465,"project":"mike"},{"download_count":436229,"project":"waiting"},{"download_count":436202,"project":"sphinx-favicon"},{"download_count":436194,"project":"bayesian-optimization"},{"download_count":434671,"project":"opentelemetry-exporter-jaeger-proto-grpc"},{"download_count":434467,"project":"python-whois"},{"download_count":434447,"project":"pytest-testinfra"},{"download_count":433832,"project":"thoth-license-solver"},{"download_count":433476,"project":"quantities"},{"download_count":433368,"project":"simple-term-menu"},{"download_count":433309,"project":"layoutparser"},{"download_count":433116,"project":"proselint"},{"download_count":432745,"project":"opencc"},{"download_count":432337,"project":"distogram"},{"download_count":432187,"project":"telebot"},{"download_count":432153,"project":"honcho"},{"download_count":432134,"project":"groundingdino-py"},{"download_count":432046,"project":"pytest-pythonpath"},{"download_count":432012,"project":"testing-common-database"},{"download_count":431831,"project":"pandas-profiling"},{"download_count":431760,"project":"mypy-boto3-efs"},{"download_count":431473,"project":"kafka"},{"download_count":431446,"project":"target-hotglue"},{"download_count":431179,"project":"deap"},{"download_count":431019,"project":"utm"},{"download_count":430977,"project":"mypy-boto3-dms"},{"download_count":430673,"project":"python-benedict"},{"download_count":430648,"project":"bounded-pool-executor"},{"download_count":430543,"project":"verspec"},{"download_count":430406,"project":"teamcity-messages"},{"download_count":430066,"project":"mdformat"},{"download_count":429922,"project":"python-barcode"},{"download_count":429894,"project":"uuid7"},{"download_count":429876,"project":"itables"},{"download_count":429527,"project":"formencode"},{"download_count":429481,"project":"ospx"},{"download_count":429267,"project":"tabula-py"},{"download_count":429198,"project":"thriftpy2"},{"download_count":429190,"project":"pyserde"},{"download_count":429012,"project":"recurring-ical-events"},{"download_count":428418,"project":"ulid-transform"},{"download_count":428412,"project":"pylint-celery"},{"download_count":428043,"project":"aioquic"},{"download_count":427688,"project":"cirq-core"},{"download_count":427164,"project":"types-aiobotocore-lambda"},{"download_count":426295,"project":"dataengineeringutils3"},{"download_count":426096,"project":"forex-python"},{"download_count":426034,"project":"imutils"},{"download_count":425757,"project":"dvclive"},{"download_count":425569,"project":"xopen"},{"download_count":425559,"project":"jsonformatter"},{"download_count":425388,"project":"azureml-train-restclients-hyperdrive"},{"download_count":425282,"project":"torch-geometric"},{"download_count":424904,"project":"voluptuous-serialize"},{"download_count":424679,"project":"bzt"},{"download_count":424460,"project":"ttp"},{"download_count":424279,"project":"mojap-metadata"},{"download_count":424245,"project":"dodgy"},{"download_count":423379,"project":"django-modeltranslation"},{"download_count":423204,"project":"async-modbus"},{"download_count":423035,"project":"python-logstash"},{"download_count":423030,"project":"pyagrum-nightly"},{"download_count":422793,"project":"localstack-client"},{"download_count":421974,"project":"hurry-filesize"},{"download_count":421762,"project":"pyqrcode"},{"download_count":421661,"project":"attr"},{"download_count":421512,"project":"pytest-vcr"},{"download_count":421157,"project":"fredapi"},{"download_count":421124,"project":"django-localflavor"},{"download_count":420885,"project":"python-json-config"},{"download_count":420876,"project":"python-lsp-server"},{"download_count":420858,"project":"result"},{"download_count":420428,"project":"backports-abc"},{"download_count":420191,"project":"atomicwrites-homeassistant"},{"download_count":419999,"project":"django-two-factor-auth"},{"download_count":419854,"project":"clvm-tools-rs"},{"download_count":419328,"project":"autobean-refactor"},{"download_count":418929,"project":"appengine-python-standard"},{"download_count":418767,"project":"numpy-quaternion"},{"download_count":418743,"project":"ldapdomaindump"},{"download_count":418732,"project":"yalafi"},{"download_count":418490,"project":"uptime-kuma-api"},{"download_count":418017,"project":"python-swiftclient"},{"download_count":417896,"project":"selinux"},{"download_count":417746,"project":"prospector"},{"download_count":417725,"project":"autogluon-core"},{"download_count":417710,"project":"google-play-scraper"},{"download_count":417395,"project":"python-calamine"},{"download_count":417221,"project":"dvc-render"},{"download_count":416605,"project":"segno"},{"download_count":416521,"project":"types-docopt"},{"download_count":416154,"project":"tox-ansible"},{"download_count":416098,"project":"b2sdk"},{"download_count":415962,"project":"stamina"},{"download_count":415835,"project":"djangorestframework-api-key"},{"download_count":415517,"project":"googletrans"},{"download_count":415508,"project":"autogluon-tabular"},{"download_count":415503,"project":"gspread-formatting"},{"download_count":415182,"project":"celluloid"},{"download_count":414941,"project":"lsprotocol"},{"download_count":414714,"project":"u-msgpack-python"},{"download_count":414265,"project":"sphinx-toolbox"},{"download_count":414243,"project":"apache-airflow-client"},{"download_count":413471,"project":"x-wr-timezone"},{"download_count":413295,"project":"appier"},{"download_count":413255,"project":"fairscale"},{"download_count":413229,"project":"petname"},{"download_count":413124,"project":"pem"},{"download_count":413015,"project":"spandrel-extra-arches"},{"download_count":412734,"project":"certbot"},{"download_count":412642,"project":"halp"},{"download_count":412425,"project":"azure-mgmt-costmanagement"},{"download_count":412274,"project":"chromedriver-autoinstaller"},{"download_count":411471,"project":"bravado-core"},{"download_count":411276,"project":"burger"},{"download_count":411154,"project":"pykube"},{"download_count":411118,"project":"nmslib"},{"download_count":410621,"project":"pymunk"},{"download_count":410605,"project":"ansible-runner"},{"download_count":410474,"project":"dvc-objects"},{"download_count":410300,"project":"types-aiobotocore-dataexchange"},{"download_count":410007,"project":"testing-postgresql"},{"download_count":409581,"project":"missingno"},{"download_count":409470,"project":"fastdiff"},{"download_count":409293,"project":"wincertstore"},{"download_count":409048,"project":"codeguru-profiler-agent"},{"download_count":408531,"project":"nvidia-nvcomp-cu12"},{"download_count":408519,"project":"ansible-base"},{"download_count":408432,"project":"databricks-pypi-extras"},{"download_count":408359,"project":"petl"},{"download_count":408304,"project":"pan-python"},{"download_count":408088,"project":"ordereddict"},{"download_count":408087,"project":"plum-dispatch"},{"download_count":408024,"project":"logfury"},{"download_count":407831,"project":"catkin-pkg"},{"download_count":407361,"project":"marshmallow-jsonapi"},{"download_count":407150,"project":"atomlite"},{"download_count":407085,"project":"pdfrw"},{"download_count":407002,"project":"stk"},{"download_count":406825,"project":"sqltrie"},{"download_count":406437,"project":"click-configfile"},{"download_count":406362,"project":"cmakelang"},{"download_count":406092,"project":"pyexcel"},{"download_count":405984,"project":"sphinx-gallery"},{"download_count":405856,"project":"python-novaclient"},{"download_count":405839,"project":"unstructured-pytesseract"},{"download_count":405520,"project":"robotframework-pabot"},{"download_count":405467,"project":"ropwr"},{"download_count":405305,"project":"faiss-gpu"},{"download_count":405218,"project":"wslwinreg"},{"download_count":405216,"project":"pysqlite3-binary"},{"download_count":405043,"project":"platformio"},{"download_count":404201,"project":"spindry"},{"download_count":404143,"project":"pyaudio"},{"download_count":404053,"project":"types-python-jose"},{"download_count":403978,"project":"mchammer"},{"download_count":403909,"project":"rmsd"},{"download_count":403843,"project":"espaloma-charge"},{"download_count":403783,"project":"typing-validation"},{"download_count":403543,"project":"lazy-imports"},{"download_count":403522,"project":"jupyter-highlight-selected-word"},{"download_count":403314,"project":"azureml-train-automl-client"},{"download_count":403095,"project":"tach"},{"download_count":402748,"project":"cron-converter"},{"download_count":402747,"project":"imap-tools"},{"download_count":402724,"project":"stko"},{"download_count":402632,"project":"pystrict"},{"download_count":402510,"project":"shellcheck-py"},{"download_count":402510,"project":"intuit-oauth"},{"download_count":402412,"project":"torchbiggraph"},{"download_count":402175,"project":"always-updates"},{"download_count":401858,"project":"django-rest-enumfield"},{"download_count":401759,"project":"opentelemetry-instrumentation-kafka-python"},{"download_count":401751,"project":"segyio"},{"download_count":401100,"project":"rdt"},{"download_count":401023,"project":"pytools"},{"download_count":400820,"project":"tsdownsample"},{"download_count":400754,"project":"python-liquid"},{"download_count":400706,"project":"email-reply-parser"},{"download_count":400171,"project":"aiopg"},{"download_count":399811,"project":"arthurai"},{"download_count":399802,"project":"pyscaffold"},{"download_count":399788,"project":"prettyprinter"},{"download_count":399656,"project":"lucopy"},{"download_count":399565,"project":"django-tables2"},{"download_count":399415,"project":"snapshottest"},{"download_count":399070,"project":"oslo-log"},{"download_count":399028,"project":"autogluon-features"},{"download_count":398610,"project":"flask-authz"},{"download_count":398575,"project":"opentelemetry-propagator-gcp"},{"download_count":398539,"project":"types-aiobotocore-ec2"},{"download_count":398264,"project":"mypy-boto3-cloudfront"},{"download_count":398154,"project":"langid"},{"download_count":398113,"project":"foca"},{"download_count":397877,"project":"brickflows"},{"download_count":397791,"project":"cartopy"},{"download_count":397585,"project":"click-config-file"},{"download_count":397338,"project":"pyfunceble-dev"},{"download_count":397303,"project":"python-amazon-sp-api"},{"download_count":397007,"project":"drf-spectacular-sidecar"},{"download_count":396640,"project":"autogluon"},{"download_count":396066,"project":"scmrepo"},{"download_count":396016,"project":"wikipedia"},{"download_count":395616,"project":"julius"},{"download_count":395585,"project":"types-ipaddress"},{"download_count":395560,"project":"oslo-context"},{"download_count":395314,"project":"google-search-results"},{"download_count":395243,"project":"kopf"},{"download_count":395232,"project":"qcelemental"},{"download_count":395143,"project":"blackduck"},{"download_count":394942,"project":"psycopg-c"},{"download_count":394098,"project":"junos-eznc"},{"download_count":393914,"project":"lakefs-sdk"},{"download_count":393553,"project":"pycaret"},{"download_count":393449,"project":"dvc-studio-client"},{"download_count":393353,"project":"google-cloud-scheduler"},{"download_count":393285,"project":"solders"},{"download_count":392892,"project":"flake8-variables-names"},{"download_count":392634,"project":"celery-redbeat"},{"download_count":392478,"project":"awkward0"},{"download_count":392309,"project":"mkdocs-awesome-pages-plugin"},{"download_count":392197,"project":"yara-python"},{"download_count":392091,"project":"jupyter-nbextensions-configurator"},{"download_count":392082,"project":"py-range-parse"},{"download_count":391884,"project":"george"},{"download_count":391241,"project":"uproot3"},{"download_count":391044,"project":"uproot3-methods"},{"download_count":390906,"project":"pyjnius"},{"download_count":390873,"project":"progressbar"},{"download_count":390478,"project":"pylint-pydantic"},{"download_count":390454,"project":"pythran"},{"download_count":390339,"project":"pytest-subprocess"},{"download_count":390309,"project":"autodoc-pydantic"},{"download_count":389844,"project":"tslearn"},{"download_count":389580,"project":"distance"},{"download_count":389399,"project":"pyobjc-core"},{"download_count":389159,"project":"cf-xarray"},{"download_count":388897,"project":"pygls"},{"download_count":388521,"project":"mypy-boto3-cloudtrail"},{"download_count":388172,"project":"azureml-pipeline-steps"},{"download_count":387871,"project":"dict2css"},{"download_count":387742,"project":"nvidia-cuda-nvcc-cu12"},{"download_count":387229,"project":"sphinx-jinja2-compat"},{"download_count":387108,"project":"moderngl"},{"download_count":386785,"project":"plux"},{"download_count":386700,"project":"pretty-midi"},{"download_count":386509,"project":"mojimoji"},{"download_count":386205,"project":"usd-core"},{"download_count":386191,"project":"paramiko-expect"},{"download_count":386006,"project":"django-auditlog"},{"download_count":385906,"project":"intel-openmp"},{"download_count":385752,"project":"mypy-boto3-route53domains"},{"download_count":385500,"project":"azureml-featurestore"},{"download_count":385498,"project":"fast-curator"},{"download_count":385465,"project":"pid"},{"download_count":385261,"project":"opentelemetry-instrumentation-pymysql"},{"download_count":384950,"project":"roboflow"},{"download_count":384744,"project":"types-aiobotocore-rds"},{"download_count":384475,"project":"lomond"},{"download_count":384414,"project":"flask-dance"},{"download_count":384403,"project":"pyathenajdbc"},{"download_count":384242,"project":"gfpgan"},{"download_count":384225,"project":"pandarallel"},{"download_count":384169,"project":"sqlalchemy-trino"},{"download_count":383985,"project":"databind"},{"download_count":383906,"project":"selectolax"},{"download_count":383859,"project":"sphinx-reredirects"},{"download_count":383646,"project":"clint"},{"download_count":383619,"project":"hidapi"},{"download_count":383612,"project":"mypy-boto3-autoscaling"},{"download_count":383159,"project":"pycarlo"},{"download_count":382975,"project":"flexmock"},{"download_count":382863,"project":"nvidia-ml-py3"},{"download_count":382755,"project":"ipython-autotime"},{"download_count":382405,"project":"vprof"},{"download_count":382373,"project":"img2pdf"},{"download_count":382361,"project":"monkeytype"},{"download_count":381852,"project":"pyfarmhash"},{"download_count":381633,"project":"markyp"},{"download_count":381478,"project":"markyp-html"},{"download_count":381422,"project":"pytest-memray"},{"download_count":381352,"project":"types-futures"},{"download_count":381207,"project":"python-graphql-client"},{"download_count":381076,"project":"flask-shell-ipython"},{"download_count":380846,"project":"cpymad"},{"download_count":380716,"project":"allure-behave"},{"download_count":379870,"project":"pylightxl"},{"download_count":379860,"project":"dm-control"},{"download_count":379830,"project":"mailjet-rest"},{"download_count":379759,"project":"pyjks"},{"download_count":379677,"project":"azureml-pipeline"},{"download_count":379647,"project":"pqdm"},{"download_count":379371,"project":"pyhdb"},{"download_count":379179,"project":"ipyanchorviz"},{"download_count":379055,"project":"aplr"},{"download_count":378900,"project":"tensorflow-recommenders"},{"download_count":378865,"project":"google-cloud-documentai"},{"download_count":378819,"project":"fastdownload"},{"download_count":378390,"project":"django-colorfield"},{"download_count":378229,"project":"flake8-pep3101"},{"download_count":378144,"project":"smartystreets-python-sdk"},{"download_count":378027,"project":"jsonpath"},{"download_count":378010,"project":"pgeocode"},{"download_count":377963,"project":"accumulation-tree"},{"download_count":377940,"project":"fastapi-slim"},{"download_count":377914,"project":"pydotplus"},{"download_count":377823,"project":"array-api-compat"},{"download_count":377503,"project":"whoosh"},{"download_count":377404,"project":"spotipy"},{"download_count":377267,"project":"pyvalid"},{"download_count":376983,"project":"cloudsmith-api"},{"download_count":376918,"project":"pdfminer"},{"download_count":376694,"project":"flake8-annotations"},{"download_count":376520,"project":"django-mysql"},{"download_count":376349,"project":"authcaptureproxy"},{"download_count":376222,"project":"usearch"},{"download_count":376217,"project":"reportportal-client"},{"download_count":375301,"project":"check-manifest"},{"download_count":375237,"project":"mypy-boto3-opensearch"},{"download_count":374764,"project":"json-rpc"},{"download_count":374403,"project":"awsiotsdk"},{"download_count":374049,"project":"pluralizer"},{"download_count":373807,"project":"fixit"},{"download_count":373527,"project":"curio"},{"download_count":373445,"project":"great-expectations-experimental"},{"download_count":373367,"project":"wpilib"},{"download_count":372871,"project":"mypy-boto3-textract"},{"download_count":372870,"project":"phonemizer"},{"download_count":372621,"project":"delegator"},{"download_count":372600,"project":"apache-airflow-providers-elasticsearch"},{"download_count":372255,"project":"databricks-feature-engineering"},{"download_count":372248,"project":"osmium"},{"download_count":372021,"project":"pinecone"},{"download_count":371955,"project":"testresources"},{"download_count":371928,"project":"giving"},{"download_count":371888,"project":"pyvista"},{"download_count":371869,"project":"tf2onnx"},{"download_count":371849,"project":"tika"},{"download_count":371496,"project":"mechanicalsoup"},{"download_count":371137,"project":"unicorn"},{"download_count":370963,"project":"pyntcore"},{"download_count":370820,"project":"chainer"},{"download_count":370808,"project":"sqlalchemy-json"},{"download_count":370801,"project":"flake8-deprecated"},{"download_count":370654,"project":"nose-parameterized"},{"download_count":370634,"project":"android-backup"},{"download_count":370628,"project":"pigpio"},{"download_count":370409,"project":"mock-alchemy"},{"download_count":370401,"project":"sphinx-notfound-page"},{"download_count":370252,"project":"capsolver"},{"download_count":370052,"project":"unittest-data-provider"},{"download_count":369795,"project":"pytrends"},{"download_count":369776,"project":"cloudwatch"},{"download_count":369190,"project":"feedfinder2"},{"download_count":369145,"project":"codacy-coverage"},{"download_count":369046,"project":"oletools"},{"download_count":369034,"project":"langchain-groq"},{"download_count":368755,"project":"kneed"},{"download_count":368736,"project":"jieba3k"},{"download_count":368724,"project":"dewloosh-core"},{"download_count":368469,"project":"apiclient"},{"download_count":368318,"project":"pymediainfo"},{"download_count":368211,"project":"fugashi"},{"download_count":367459,"project":"dewloosh-math"},{"download_count":367338,"project":"fastapi-mail"},{"download_count":367303,"project":"opentelemetry-instrumentation-openai"},{"download_count":367283,"project":"langchain-huggingface"},{"download_count":367193,"project":"dewloosh-geom"},{"download_count":367013,"project":"grpcio-testing"},{"download_count":367006,"project":"ciscoconfparse"},{"download_count":366860,"project":"filecheck"},{"download_count":366739,"project":"dewloosh"},{"download_count":366713,"project":"timeago"},{"download_count":366257,"project":"taskgroup"},{"download_count":365948,"project":"logging"},{"download_count":365922,"project":"pydomo"},{"download_count":365912,"project":"robotpy-wpiutil"},{"download_count":365702,"project":"pyqtwebengine"},{"download_count":365651,"project":"py-moneyed"},{"download_count":365349,"project":"apache-airflow-providers-apache-druid"},{"download_count":364995,"project":"bootstrap-flask"},{"download_count":364868,"project":"yandex-query-client"},{"download_count":364797,"project":"libarchive-c"},{"download_count":364743,"project":"lameenc"},{"download_count":364725,"project":"whylogs"},{"download_count":364601,"project":"swiftsimio"},{"download_count":364525,"project":"types-appdirs"},{"download_count":363946,"project":"pymeta3"},{"download_count":363767,"project":"robotpy-hal"},{"download_count":363608,"project":"pydeprecate"},{"download_count":363557,"project":"ragged-buffer"},{"download_count":363339,"project":"pyrr"},{"download_count":363216,"project":"hass-client"},{"download_count":363203,"project":"aerospike"},{"download_count":363126,"project":"aws-assume-role-lib"},{"download_count":362947,"project":"docstring-parser-fork"},{"download_count":362840,"project":"clickhouse-toolset"},{"download_count":362679,"project":"alembic-postgresql-enum"},{"download_count":362637,"project":"simplefix"},{"download_count":362320,"project":"opentelemetry-instrumentation-elasticsearch"},{"download_count":362230,"project":"velociraptor"},{"download_count":362141,"project":"crowdstrike-falconpy"},{"download_count":361732,"project":"py-backwards"},{"download_count":361725,"project":"django-auth-ldap"},{"download_count":361613,"project":"pcodedmp"},{"download_count":361569,"project":"sip"},{"download_count":361521,"project":"pyicu-binary"},{"download_count":361450,"project":"mmhash3"},{"download_count":361383,"project":"py-backwards-astunparse"},{"download_count":361342,"project":"poetry-plugin-tweak-dependencies-version"},{"download_count":361273,"project":"python-interface"},{"download_count":361256,"project":"python-louvain"},{"download_count":361009,"project":"dlinfo"},{"download_count":360904,"project":"mypy-boto3-elasticache"},{"download_count":360738,"project":"fastapi-users"},{"download_count":360737,"project":"typeshed-client"},{"download_count":360542,"project":"qulacs"},{"download_count":360516,"project":"robotpy-wpimath"},{"download_count":360430,"project":"random-user-agent"},{"download_count":360215,"project":"flask-sock"},{"download_count":360124,"project":"types-aiobotocore-cloudformation"},{"download_count":359924,"project":"onnxsim"},{"download_count":359908,"project":"ytmusicapi"},{"download_count":359865,"project":"reprint"},{"download_count":359271,"project":"azureml-sdk"},{"download_count":359208,"project":"urlextract"},{"download_count":359186,"project":"visitor"},{"download_count":359009,"project":"django-nested-admin"},{"download_count":358669,"project":"mailchimp-marketing"},{"download_count":358367,"project":"spotinst-agent"},{"download_count":358334,"project":"grafanalib"},{"download_count":358294,"project":"robotpy-wpinet"},{"download_count":358280,"project":"opentelemetry-instrumentation-mysql"},{"download_count":358159,"project":"dm-env"},{"download_count":357863,"project":"domain2idna"},{"download_count":357333,"project":"dvc-task"},{"download_count":356522,"project":"nutter"},{"download_count":356442,"project":"labmaze"},{"download_count":356372,"project":"tf-estimator-nightly"},{"download_count":356071,"project":"fluids"},{"download_count":355672,"project":"vadersentiment"},{"download_count":355296,"project":"pymacaroons"},{"download_count":355229,"project":"tqdm-multiprocess"},{"download_count":355091,"project":"xxtea"},{"download_count":354827,"project":"rdrobust"},{"download_count":354445,"project":"langchainhub"},{"download_count":354213,"project":"pynrrd"},{"download_count":354084,"project":"kafka-python-ng"},{"download_count":353754,"project":"docarray"},{"download_count":353490,"project":"simplejpeg"},{"download_count":353423,"project":"pyfume"},{"download_count":353409,"project":"types-httplib2"},{"download_count":353265,"project":"pulp-glue"},{"download_count":353100,"project":"multiaddr"},{"download_count":352908,"project":"everett"},{"download_count":352775,"project":"py2md"},{"download_count":351889,"project":"sumy"},{"download_count":351767,"project":"pytest-testmon"},{"download_count":351574,"project":"cognitojwt"},{"download_count":351493,"project":"plyfile"},{"download_count":351263,"project":"crontab"},{"download_count":351206,"project":"agilicus"},{"download_count":350231,"project":"aws-cdk-core"},{"download_count":350024,"project":"compressed-tensors"},{"download_count":349788,"project":"pyobjc-framework-cocoa"},{"download_count":349628,"project":"python-jsonschema-objects"},{"download_count":349389,"project":"g2p-en"},{"download_count":349361,"project":"swig"},{"download_count":349157,"project":"asammdf"},{"download_count":348855,"project":"plantuml-markdown"},{"download_count":348484,"project":"dvc-http"},{"download_count":348462,"project":"pystac"},{"download_count":348281,"project":"controlnet-aux"},{"download_count":348014,"project":"opentelemetry-instrumentation-tornado"},{"download_count":347992,"project":"crochet"},{"download_count":347516,"project":"qiskit-aer"},{"download_count":347329,"project":"compressed-rtf"},{"download_count":347298,"project":"robotpy-cli"},{"download_count":347230,"project":"vk-api"},{"download_count":346855,"project":"pydevd-pycharm"},{"download_count":346842,"project":"types-regex"},{"download_count":346592,"project":"treelite"},{"download_count":346258,"project":"m2crypto"},{"download_count":346230,"project":"fs-s3fs"},{"download_count":345735,"project":"morecantile"},{"download_count":345630,"project":"kerberos"},{"download_count":345587,"project":"apache-airflow-providers-trino"},{"download_count":345504,"project":"workos"},{"download_count":345485,"project":"glcontext"},{"download_count":345441,"project":"chiapos"},{"download_count":345399,"project":"elasticmock"},{"download_count":345375,"project":"djangorestframework-csv"},{"download_count":345372,"project":"llama-index-llms-azure-openai"},{"download_count":345235,"project":"flake8-html"},{"download_count":345042,"project":"pyspark-pandas"},{"download_count":344958,"project":"mypy-boto3-redshift"},{"download_count":344814,"project":"asn1"},{"download_count":344807,"project":"fernet"},{"download_count":344732,"project":"jupyterhub"},{"download_count":344649,"project":"aws-cdk-asset-node-proxy-agent-v5"},{"download_count":344531,"project":"argilla"},{"download_count":344492,"project":"pycnite"},{"download_count":344427,"project":"google-api-python-client-stubs"},{"download_count":344176,"project":"humanreadable"},{"download_count":343996,"project":"apache-airflow-providers-sendgrid"},{"download_count":343805,"project":"anndata"},{"download_count":342959,"project":"rake-nltk"},{"download_count":342810,"project":"sphinx-markdown-builder"},{"download_count":342753,"project":"setoptconf-tmp"},{"download_count":342399,"project":"2captcha-python"},{"download_count":342313,"project":"model-index"},{"download_count":341683,"project":"pycollada"},{"download_count":341583,"project":"django-object-actions"},{"download_count":341447,"project":"lazy"},{"download_count":340861,"project":"strsimpy"},{"download_count":340854,"project":"django-guardian"},{"download_count":340720,"project":"mypy-boto3-codepipeline"},{"download_count":340687,"project":"meteostat"},{"download_count":340533,"project":"statistics"},{"download_count":340244,"project":"wechaty"},{"download_count":340070,"project":"powerlaw"},{"download_count":339752,"project":"oci-cli"},{"download_count":339732,"project":"mpld3"},{"download_count":339627,"project":"compose"},{"download_count":339610,"project":"evdev"},{"download_count":339585,"project":"discord-webhook"},{"download_count":339374,"project":"django-user-agents"},{"download_count":339318,"project":"apache-airflow-providers-jenkins"},{"download_count":338864,"project":"draftjs-exporter"},{"download_count":338831,"project":"h3-pyspark"},{"download_count":338593,"project":"robotframework-jsonlibrary"},{"download_count":338343,"project":"td-client"},{"download_count":338238,"project":"jinja2-ansible-filters"},{"download_count":338094,"project":"pydrive"},{"download_count":337937,"project":"openapi3"},{"download_count":337833,"project":"pulp-cli"},{"download_count":337754,"project":"chia-rs"},{"download_count":337610,"project":"drf-extensions"},{"download_count":337600,"project":"dagster-pyspark"},{"download_count":337464,"project":"aws-cdk-cx-api"},{"download_count":337440,"project":"wechaty-puppet"},{"download_count":337061,"project":"repoze-who"},{"download_count":337061,"project":"sql-formatter"},{"download_count":336981,"project":"delayed-assert"},{"download_count":336600,"project":"pylink-square"},{"download_count":336390,"project":"table-logger"},{"download_count":336294,"project":"mendeleev"},{"download_count":336032,"project":"poyo"},{"download_count":335987,"project":"pyftpdlib"},{"download_count":335891,"project":"llama-index-embeddings-azure-openai"},{"download_count":335703,"project":"oras"},{"download_count":335687,"project":"python-gflags"},{"download_count":335674,"project":"sphinx-click"},{"download_count":335624,"project":"gdal"},{"download_count":335547,"project":"suds-jurko"},{"download_count":335518,"project":"kr8s"},{"download_count":335504,"project":"genbadge"},{"download_count":335481,"project":"sacred"},{"download_count":335036,"project":"detect-delimiter"},{"download_count":334746,"project":"django-fsm"},{"download_count":334689,"project":"django-etc"},{"download_count":334471,"project":"simple-azure-blob-downloader"},{"download_count":334467,"project":"flake8-simplify"},{"download_count":334355,"project":"kedro-datasets"},{"download_count":334088,"project":"ada-url"},{"download_count":333953,"project":"doc8"},{"download_count":333663,"project":"anyscale"},{"download_count":333643,"project":"pdfminer2"},{"download_count":333514,"project":"django-json-widget"},{"download_count":333434,"project":"nox-poetry"},{"download_count":333428,"project":"pockets"},{"download_count":333392,"project":"pylama"},{"download_count":333343,"project":"gitlint-core"},{"download_count":333271,"project":"flupy"},{"download_count":333223,"project":"flake8-string-format"},{"download_count":333188,"project":"periodictable"},{"download_count":333120,"project":"gitlint"},{"download_count":332980,"project":"mypy-boto3-es"},{"download_count":332922,"project":"multiprocessing-logging"},{"download_count":332808,"project":"chargebee"},{"download_count":332741,"project":"aiosmtpd"},{"download_count":332625,"project":"jsun"},{"download_count":332586,"project":"paddlepaddle"},{"download_count":332485,"project":"rdkit-pypi"},{"download_count":332457,"project":"gto"},{"download_count":332452,"project":"scenedetect"},{"download_count":332375,"project":"ibm-watsonx-ai"},{"download_count":332346,"project":"tree-sitter-languages"},{"download_count":332177,"project":"aws-kinesis-agg"},{"download_count":332142,"project":"python-dynamodb-lock"},{"download_count":332053,"project":"pyannotating"},{"download_count":331859,"project":"asyncio-mqtt"},{"download_count":331726,"project":"dwave-networkx"},{"download_count":331717,"project":"enum"},{"download_count":331447,"project":"delocate"},{"download_count":331264,"project":"mypy-boto3-quicksight"},{"download_count":331150,"project":"pylsqpack"},{"download_count":331059,"project":"mypy-boto3-codedeploy"},{"download_count":330959,"project":"mitmproxy"},{"download_count":330908,"project":"chemicals"},{"download_count":330865,"project":"fuzzytm"},{"download_count":330651,"project":"mypy-boto3-organizations"},{"download_count":330418,"project":"csaps"},{"download_count":330264,"project":"iso4217"},{"download_count":329957,"project":"whatever"},{"download_count":329897,"project":"clearml"},{"download_count":329793,"project":"python-osc"},{"download_count":329696,"project":"coiled"},{"download_count":329573,"project":"simpful"},{"download_count":329374,"project":"delighted"},{"download_count":329216,"project":"onigurumacffi"},{"download_count":328939,"project":"flake8-rst-docstrings"},{"download_count":328806,"project":"djangorestframework-dataclasses"},{"download_count":328717,"project":"pylint-flask"},{"download_count":328651,"project":"asyncer"},{"download_count":328619,"project":"mlzlog"},{"download_count":328466,"project":"rioxarray"},{"download_count":328459,"project":"tgcrypto"},{"download_count":328432,"project":"pytest-isort"},{"download_count":328425,"project":"pytest-variables"},{"download_count":328365,"project":"mypy-boto3-application-autoscaling"},{"download_count":328260,"project":"chiavdf"},{"download_count":328054,"project":"sphinxcontrib-napoleon"},{"download_count":328031,"project":"stopit"},{"download_count":328002,"project":"aws-lambda-typing"},{"download_count":327944,"project":"minrpc"},{"download_count":327654,"project":"stytch"},{"download_count":327622,"project":"mypy-boto3-mq"},{"download_count":327610,"project":"ezdxf"},{"download_count":327559,"project":"types-flask-cors"},{"download_count":327513,"project":"jsonslicer"},{"download_count":327314,"project":"rule-engine"},{"download_count":327313,"project":"robotframework-browser"},{"download_count":327293,"project":"mypy-boto3-kafka"},{"download_count":327022,"project":"mypy-boto3-cognito-identity"},{"download_count":326997,"project":"dagit"},{"download_count":326977,"project":"easy-logs"},{"download_count":326839,"project":"qcodes"},{"download_count":326821,"project":"rich-rst"},{"download_count":326740,"project":"aliyun-python-sdk-vpc"},{"download_count":326610,"project":"hydra-colorlog"},{"download_count":326544,"project":"jsonalias"},{"download_count":326453,"project":"types-boto3"},{"download_count":326335,"project":"aiogoogle"},{"download_count":326252,"project":"mypy-boto3-workspaces"},{"download_count":326096,"project":"cli-exit-tools"},{"download_count":326077,"project":"gpsoauth"},{"download_count":326048,"project":"azure-communication-email"},{"download_count":325981,"project":"py-sr25519-bindings"},{"download_count":325884,"project":"metaphone"},{"download_count":325603,"project":"ffmpegio"},{"download_count":325421,"project":"ophyd"},{"download_count":325252,"project":"prefixed"},{"download_count":325046,"project":"thermo"},{"download_count":324986,"project":"gin-config"},{"download_count":324837,"project":"dagster-shell"},{"download_count":324662,"project":"bluesky"},{"download_count":324420,"project":"coverage-badge"},{"download_count":324406,"project":"python-monkey-business"},{"download_count":324186,"project":"ffmpegio-core"},{"download_count":324088,"project":"asyncmy"},{"download_count":323918,"project":"pyshark"},{"download_count":323616,"project":"django-rq"},{"download_count":323606,"project":"wechaty-grpc"},{"download_count":323424,"project":"tree-sitter-javascript"},{"download_count":323400,"project":"transliterate"},{"download_count":323386,"project":"asyncgui"},{"download_count":323342,"project":"pick"},{"download_count":323275,"project":"kubernetes-client"},{"download_count":322990,"project":"whatthepatch"},{"download_count":322986,"project":"autogluon-common"},{"download_count":322881,"project":"duet"},{"download_count":322829,"project":"mypy-boto3-ds"},{"download_count":322770,"project":"secure"},{"download_count":322454,"project":"mcap"},{"download_count":322354,"project":"webexteamssdk"},{"download_count":322269,"project":"lib-detect-testenv"},{"download_count":322173,"project":"streamlit-aggrid"},{"download_count":321839,"project":"pymoo"},{"download_count":321758,"project":"aws-cdk-aws-iam"},{"download_count":321518,"project":"wechaty-puppet-service"},{"download_count":321500,"project":"preggy"},{"download_count":321438,"project":"alembic-utils"},{"download_count":321300,"project":"mypy-boto3-ce"},{"download_count":321177,"project":"cdktf"},{"download_count":321167,"project":"itchat-uos"},{"download_count":320883,"project":"bioregistry"},{"download_count":320878,"project":"cxxfilt"},{"download_count":320839,"project":"aws-cdk-region-info"},{"download_count":320626,"project":"mypy-boto3-identitystore"},{"download_count":320460,"project":"paddleocr"},{"download_count":320426,"project":"dynamo-pandas"},{"download_count":320361,"project":"pegen"},{"download_count":320339,"project":"clickhouse-cityhash"},{"download_count":320273,"project":"path-py"},{"download_count":320199,"project":"django-tinymce"},{"download_count":319944,"project":"hierarchicalforecast"},{"download_count":319937,"project":"aws-logging-handlers"},{"download_count":319891,"project":"awscli-local"},{"download_count":319491,"project":"pyepics"},{"download_count":319489,"project":"json-encoder"},{"download_count":319476,"project":"sspilib"},{"download_count":319466,"project":"r2pipe"},{"download_count":319418,"project":"subprocrunner"},{"download_count":319075,"project":"idf-component-manager"},{"download_count":319011,"project":"mypy-boto3-docdb"},{"download_count":318948,"project":"django-constance"},{"download_count":318691,"project":"mkdocs-techdocs-core"},{"download_count":318658,"project":"keras-nightly"},{"download_count":318649,"project":"historydict"},{"download_count":318612,"project":"bolton-clack"},{"download_count":318351,"project":"nagisa"},{"download_count":318347,"project":"mkl"},{"download_count":318229,"project":"eccodes"},{"download_count":317918,"project":"ansible-pylibssh"},{"download_count":317578,"project":"pytest-unordered"},{"download_count":317523,"project":"rstcheck"},{"download_count":317518,"project":"rtfde"},{"download_count":317516,"project":"dbx"},{"download_count":317419,"project":"djangorestframework-camel-case"},{"download_count":317357,"project":"fiscalyear"},{"download_count":316918,"project":"basicsr"},{"download_count":316571,"project":"azure-digitaltwins-core"},{"download_count":316302,"project":"zake"},{"download_count":316182,"project":"nbstripout"},{"download_count":316159,"project":"mypy-boto3-dax"},{"download_count":316079,"project":"mypy-boto3-dynamodbstreams"},{"download_count":316043,"project":"bolton-eris"},{"download_count":316023,"project":"magodo"},{"download_count":316023,"project":"jsonseq"},{"download_count":316005,"project":"wiki-fetch"},{"download_count":315999,"project":"mypy-boto3-wafv2"},{"download_count":315941,"project":"jupyter-contrib-core"},{"download_count":315939,"project":"faust-cchardet"},{"download_count":315897,"project":"utils"},{"download_count":315650,"project":"bolton-typist"},{"download_count":315621,"project":"bolton-logrus"},{"download_count":315533,"project":"bolton-metaman"},{"download_count":315482,"project":"aws-msk-iam-sasl-signer-python"},{"download_count":315427,"project":"entrypoint2"},{"download_count":315393,"project":"opentelemetry-semantic-conventions-ai"},{"download_count":315347,"project":"python-mimeparse"},{"download_count":315257,"project":"bolton-ion"},{"download_count":315048,"project":"httpie-edgegrid"},{"download_count":315023,"project":"potoroo"},{"download_count":314917,"project":"varint"},{"download_count":314779,"project":"mygeotab"},{"download_count":314767,"project":"python3-xlib"},{"download_count":314238,"project":"django-rest-swagger"},{"download_count":314138,"project":"janome"},{"download_count":313898,"project":"mypy-boto3-iot-data"},{"download_count":313894,"project":"azure-mgmt-deploymentmanager"},{"download_count":313842,"project":"ascii-magic"},{"download_count":313835,"project":"pythtb"},{"download_count":313804,"project":"dissect-target"},{"download_count":313767,"project":"tzwhere"},{"download_count":313714,"project":"opendatalab"},{"download_count":313706,"project":"mail-parser"},{"download_count":313655,"project":"mkdocs-literate-nav"},{"download_count":313629,"project":"fsc-export"},{"download_count":313616,"project":"rq-dashboard"},{"download_count":313592,"project":"django-configurations"},{"download_count":313538,"project":"maya"},{"download_count":313524,"project":"pyudorandom"},{"download_count":313492,"project":"mypy-boto3-acm"},{"download_count":313444,"project":"symmetry-representation"},{"download_count":313332,"project":"git-python"},{"download_count":313267,"project":"camelot-py"},{"download_count":313161,"project":"quandl"},{"download_count":312986,"project":"sphinx-togglebutton"},{"download_count":312846,"project":"anywidget"},{"download_count":312750,"project":"rlbot"},{"download_count":312676,"project":"home-assistant-bluetooth"},{"download_count":312666,"project":"certvalidator"},{"download_count":312642,"project":"sphinxcontrib-plantuml"},{"download_count":312611,"project":"deepeval"},{"download_count":312551,"project":"beaker"},{"download_count":312532,"project":"broadbean"},{"download_count":312225,"project":"django-multiselectfield"},{"download_count":312169,"project":"urlobject"},{"download_count":311849,"project":"mypy-boto3-resourcegroupstaggingapi"},{"download_count":311748,"project":"pyglove"},{"download_count":311669,"project":"pysolr"},{"download_count":311565,"project":"macaroonbakery"},{"download_count":311523,"project":"nbqa"},{"download_count":311287,"project":"mypy-boto3-rds-data"},{"download_count":310768,"project":"opentelemetry-instrumentation-confluent-kafka"},{"download_count":310668,"project":"wmill"},{"download_count":310611,"project":"fds-sdk-utils"},{"download_count":310474,"project":"ete3"},{"download_count":310354,"project":"alacorder"},{"download_count":310282,"project":"haystack-experimental"},{"download_count":310278,"project":"cosmotech-api"},{"download_count":310231,"project":"ansimarkup"},{"download_count":310058,"project":"expects"},{"download_count":309721,"project":"redisgraph-bulk-loader"},{"download_count":309655,"project":"ipfshttpclient"},{"download_count":309612,"project":"undecorated"},{"download_count":309566,"project":"bolton-proctor"},{"download_count":309494,"project":"mypy-boto3-iot"},{"download_count":309450,"project":"httpx-cache"},{"download_count":309404,"project":"ast-grep-py"},{"download_count":309402,"project":"robotframework-assertion-engine"},{"download_count":309335,"project":"pypd"},{"download_count":309218,"project":"vimala"},{"download_count":308945,"project":"mdutils"},{"download_count":308907,"project":"mypy-boto3-sesv2"},{"download_count":308648,"project":"asciichartpy"},{"download_count":308053,"project":"unicodedata2"},{"download_count":307978,"project":"aws-error-utils"},{"download_count":307932,"project":"plotly-express"},{"download_count":307601,"project":"ptvsd"},{"download_count":307598,"project":"latex2mathml"},{"download_count":307547,"project":"flask-redis"},{"download_count":307530,"project":"mrcfile"},{"download_count":307342,"project":"fuzzyset2"},{"download_count":307241,"project":"types-orjson"},{"download_count":306830,"project":"prefect-shell"},{"download_count":306826,"project":"luaparser"},{"download_count":306803,"project":"nbmake"},{"download_count":306739,"project":"couchbase"},{"download_count":306661,"project":"xlsx2csv"},{"download_count":306629,"project":"mkdocs-include-markdown-plugin"},{"download_count":306586,"project":"pwdlib"},{"download_count":306510,"project":"sorl-thumbnail"},{"download_count":306471,"project":"aiohttp-socks"},{"download_count":306452,"project":"apache-airflow-providers-papermill"},{"download_count":306437,"project":"awsebcli"},{"download_count":306288,"project":"fastly"},{"download_count":306085,"project":"opentelemetry-exporter-jaeger"},{"download_count":305779,"project":"airflow-exporter"},{"download_count":305640,"project":"mypy-boto3-transcribe"},{"download_count":305541,"project":"persist-queue"},{"download_count":305403,"project":"starrocks"},{"download_count":305208,"project":"pyproject-flake8"},{"download_count":305203,"project":"jupyter-contrib-nbextensions"},{"download_count":305121,"project":"redis-sentinel-url"},{"download_count":304807,"project":"python-etcd"},{"download_count":304589,"project":"ml-base"},{"download_count":304119,"project":"mypy-boto3-transfer"},{"download_count":304084,"project":"prometheus-async"},{"download_count":303780,"project":"pygmo"},{"download_count":303572,"project":"soda-core-snowflake"},{"download_count":303233,"project":"mypy-boto3-codebuild"},{"download_count":303056,"project":"mypy-boto3-translate"},{"download_count":302965,"project":"gherkin-official"},{"download_count":302954,"project":"dotnetcore2"},{"download_count":302903,"project":"pyreadline"},{"download_count":302765,"project":"mypy-boto3-apigatewayv2"},{"download_count":302664,"project":"py-grpc-prometheus"},{"download_count":302342,"project":"starlark-pyo3"},{"download_count":302197,"project":"dragonfly-core"},{"download_count":302174,"project":"ibis-framework"},{"download_count":302083,"project":"slack"},{"download_count":302013,"project":"lightfm"},{"download_count":301926,"project":"httptest"},{"download_count":301796,"project":"pybars3"},{"download_count":301756,"project":"trafaret"},{"download_count":301679,"project":"dj-rest-auth"},{"download_count":301464,"project":"python-tds"},{"download_count":301141,"project":"whylogs-sketching"},{"download_count":301137,"project":"odxtools"},{"download_count":301127,"project":"mindsdb-sql"},{"download_count":301053,"project":"mypy-boto3-bedrock"},{"download_count":300926,"project":"flask-apispec"},{"download_count":300861,"project":"mypy-boto3-apigatewaymanagementapi"},{"download_count":300558,"project":"pyautogen"},{"download_count":300496,"project":"inference-schema"},{"download_count":300455,"project":"abnf"},{"download_count":300439,"project":"mypy-boto3-mwaa"},{"download_count":300425,"project":"mypy-boto3-securityhub"},{"download_count":300320,"project":"fastdtw"},{"download_count":299926,"project":"django-jazzmin"},{"download_count":299693,"project":"apache-airflow-providers-apache-beam"},{"download_count":299535,"project":"robocorp-log"},{"download_count":299289,"project":"art"},{"download_count":299160,"project":"pbspark"},{"download_count":299145,"project":"robotframework-robocop"},{"download_count":299035,"project":"pulp-cli-deb"},{"download_count":298858,"project":"opentelemetry-instrumentation-falcon"},{"download_count":298850,"project":"mypy-boto3-ec2-instance-connect"},{"download_count":298802,"project":"apache-airflow-providers-vertica"},{"download_count":298786,"project":"mypy-boto3-sso-oidc"},{"download_count":298736,"project":"mypy-boto3-mediaconvert"},{"download_count":298444,"project":"pulp-glue-deb"},{"download_count":298400,"project":"whylabs-client"},{"download_count":298342,"project":"pybacklogpy"},{"download_count":298143,"project":"molecule-plugins"},{"download_count":298037,"project":"objectory"},{"download_count":298011,"project":"docxcompose"},{"download_count":297921,"project":"mypy-boto3-synthetics"},{"download_count":297796,"project":"aiortc"},{"download_count":297755,"project":"dockerfile"},{"download_count":297750,"project":"kodi-addon-checker"},{"download_count":297684,"project":"djangorestframework-jwt"},{"download_count":297626,"project":"pylibmc"},{"download_count":297571,"project":"uvicorn-worker"},{"download_count":297545,"project":"bitvector"},{"download_count":297535,"project":"pandoc"},{"download_count":297461,"project":"mypy-boto3-servicediscovery"},{"download_count":297259,"project":"mypy-boto3-ram"},{"download_count":297052,"project":"binpacking"},{"download_count":296975,"project":"pyang"},{"download_count":296956,"project":"aws-cdk-aws-ec2"},{"download_count":296955,"project":"qds-sdk"},{"download_count":296931,"project":"click-aliases"},{"download_count":296817,"project":"pyvcd"},{"download_count":296766,"project":"virtme-ng"},{"download_count":296634,"project":"django-money"},{"download_count":296527,"project":"mypy-boto3-pinpoint"},{"download_count":296374,"project":"arize-phoenix"},{"download_count":296158,"project":"mypy-boto3-directconnect"},{"download_count":295997,"project":"flask-security-too"},{"download_count":295977,"project":"simple-slurm"},{"download_count":295960,"project":"docrepr"},{"download_count":295767,"project":"spacy-wordnet"},{"download_count":295759,"project":"sqlalchemy-drill"},{"download_count":295630,"project":"fds-sdk-paengine"},{"download_count":295595,"project":"dsdobjects"},{"download_count":295556,"project":"mypy-boto3-marketplace-entitlement"},{"download_count":295521,"project":"ormsgpack"},{"download_count":295512,"project":"mypy-boto3-location"},{"download_count":295240,"project":"pyinstaller-versionfile"},{"download_count":295213,"project":"tensorboard-plugin-profile"},{"download_count":295179,"project":"fds-sdk-sparengine"},{"download_count":295166,"project":"pyvoronoi"},{"download_count":295147,"project":"airbyte"},{"download_count":295101,"project":"murmurhash2"},{"download_count":294838,"project":"fds-protobuf-stach-extensions"},{"download_count":294816,"project":"kodistubs"},{"download_count":294804,"project":"mode"},{"download_count":294746,"project":"sqlalchemy-databricks"},{"download_count":294579,"project":"onnxmltools"},{"download_count":294568,"project":"fds-protobuf-stach-v2"},{"download_count":294559,"project":"mypy-boto3-elb"},{"download_count":294556,"project":"dynet"},{"download_count":294552,"project":"mypy-boto3-s3control"},{"download_count":294443,"project":"fds-protobuf-stach"},{"download_count":294266,"project":"cloudinary"},{"download_count":294261,"project":"opentelemetry-propagator-jaeger"},{"download_count":294089,"project":"mypy-boto3-connect"},{"download_count":293971,"project":"aws-cdk-aws-s3"},{"download_count":293718,"project":"aliyun-python-sdk-r-kvstore"},{"download_count":293555,"project":"opentelemetry-instrumentation-aio-pika"},{"download_count":293380,"project":"highspy"},{"download_count":293265,"project":"keplergl"},{"download_count":293059,"project":"solana"},{"download_count":292985,"project":"dbt-artifacts-parser"},{"download_count":292781,"project":"construct-typing"},{"download_count":292755,"project":"onnxscript"},{"download_count":292703,"project":"mypy-boto3-codeartifact"},{"download_count":292702,"project":"mypy-boto3-ebs"},{"download_count":292625,"project":"mypy-boto3-scheduler"},{"download_count":292558,"project":"dagster-celery"},{"download_count":292440,"project":"mypy-boto3-support"},{"download_count":292433,"project":"django-log-request-id"},{"download_count":292365,"project":"googlesearch-python"},{"download_count":292305,"project":"mypy-boto3-servicecatalog"},{"download_count":292288,"project":"pulumi-command"},{"download_count":292225,"project":"caldav"},{"download_count":292064,"project":"mypy-boto3-service-quotas"},{"download_count":291823,"project":"mypy-boto3-route53resolver"},{"download_count":291807,"project":"napalm"},{"download_count":291665,"project":"configcrunch"},{"download_count":291589,"project":"django-migration-linter"},{"download_count":291446,"project":"pygeos"},{"download_count":291282,"project":"pyarmor"},{"download_count":291095,"project":"sqlalchemy-cockroachdb"},{"download_count":290713,"project":"pydoc-markdown"},{"download_count":290304,"project":"mypy-boto3-polly"},{"download_count":290207,"project":"amqpstorm"},{"download_count":289950,"project":"ordered-enum"},{"download_count":289739,"project":"empy"},{"download_count":289726,"project":"sphinxext-opengraph"},{"download_count":289689,"project":"synapseml"},{"download_count":289608,"project":"mypy-boto3-dlm"},{"download_count":289528,"project":"fcache"},{"download_count":289476,"project":"pylatex"},{"download_count":289431,"project":"mypy-boto3-medialive"},{"download_count":289402,"project":"mypy-boto3-comprehend"},{"download_count":289399,"project":"mypy-boto3-meteringmarketplace"},{"download_count":289335,"project":"docspec-python"},{"download_count":289307,"project":"bce-python-sdk"},{"download_count":289208,"project":"torchinfo"},{"download_count":289189,"project":"chiabip158"},{"download_count":289146,"project":"mypy-boto3-pricing"},{"download_count":289012,"project":"huaweicloudsdkcore"},{"download_count":288970,"project":"mypy-boto3-imagebuilder"},{"download_count":288915,"project":"datatest"},{"download_count":288849,"project":"ibm-watson-machine-learning"},{"download_count":288834,"project":"django-braces"},{"download_count":288701,"project":"mypy-boto3-neptune"},{"download_count":288667,"project":"opentelemetry-instrumentation-pyramid"},{"download_count":288476,"project":"opentelemetry-instrumentation-mysqlclient"},{"download_count":288075,"project":"mypy-boto3-budgets"},{"download_count":287967,"project":"pyrs"},{"download_count":287842,"project":"svgelements"},{"download_count":287752,"project":"mypy-boto3-amplify"},{"download_count":287724,"project":"csr"},{"download_count":287676,"project":"linode-cli"},{"download_count":287575,"project":"dagster-gcp"},{"download_count":287552,"project":"nr-stream"},{"download_count":287537,"project":"mypy-boto3-guardduty"},{"download_count":287516,"project":"pytest-docker-tools"},{"download_count":287494,"project":"awscurl"},{"download_count":287409,"project":"vt-py"},{"download_count":287281,"project":"dm-haiku"},{"download_count":287124,"project":"mypy-boto3-networkmanager"},{"download_count":286966,"project":"mkdocs-glightbox"},{"download_count":286915,"project":"mypy-boto3-mturk"},{"download_count":286853,"project":"pymc"},{"download_count":286832,"project":"salesforce-fuelsdk-sans"},{"download_count":286726,"project":"mypy-boto3-mediatailor"},{"download_count":286718,"project":"mypy-boto3-acm-pca"},{"download_count":286667,"project":"mypy-boto3-appsync"},{"download_count":286663,"project":"lightstep"},{"download_count":286608,"project":"elasticsearch6"},{"download_count":286516,"project":"mypy-boto3-fsx"},{"download_count":286453,"project":"nr-util"},{"download_count":286415,"project":"mypy-boto3-discovery"},{"download_count":286336,"project":"mypy-boto3-personalize"},{"download_count":286236,"project":"langchain-ibm"},{"download_count":286193,"project":"mypy-boto3-datasync"},{"download_count":286167,"project":"mypy-boto3-outposts"},{"download_count":286134,"project":"aws-cdk-aws-kms"},{"download_count":285902,"project":"mypy-boto3-mediastore"},{"download_count":285871,"project":"mypy-boto3-mediaconnect"},{"download_count":285818,"project":"mypy-boto3-forecastquery"},{"download_count":285799,"project":"geohash2"},{"download_count":285741,"project":"mypy-boto3-mediapackage"},{"download_count":285725,"project":"mypy-boto3-serverlessrepo"},{"download_count":285509,"project":"mypy-boto3-pinpoint-email"},{"download_count":285435,"project":"mypy-boto3-storagegateway"},{"download_count":285430,"project":"mypy-boto3-license-manager"},{"download_count":285399,"project":"mypy-boto3-inspector"},{"download_count":285331,"project":"mypy-boto3-mgh"},{"download_count":285162,"project":"pytrie"},{"download_count":285153,"project":"sanitize-filename"},{"download_count":285152,"project":"mypy-boto3-personalize-runtime"},{"download_count":285121,"project":"google-cloud-dialogflow-cx"},{"download_count":285114,"project":"tflite-model-maker-nightly"},{"download_count":285100,"project":"docspec"},{"download_count":285084,"project":"mypy-boto3-mediastore-data"},{"download_count":285072,"project":"neotime"},{"download_count":285059,"project":"cx-freeze"},{"download_count":285035,"project":"mypy-boto3-health"},{"download_count":284960,"project":"extra-streamlit-components"},{"download_count":284952,"project":"async-asgi-testclient"},{"download_count":284832,"project":"python-jsonpath"},{"download_count":284809,"project":"viztracer"},{"download_count":284709,"project":"mypy-boto3-iot-jobs-data"},{"download_count":284693,"project":"mypy-boto3-compute-optimizer"},{"download_count":284621,"project":"mypy-boto3-accessanalyzer"},{"download_count":284584,"project":"enlighten"},{"download_count":284536,"project":"dagster-snowflake"},{"download_count":284452,"project":"mypy-boto3-emr-containers"},{"download_count":284428,"project":"yoyo-migrations"},{"download_count":284427,"project":"chalkpy"},{"download_count":284415,"project":"mypy-boto3-shield"},{"download_count":284410,"project":"portion"},{"download_count":284400,"project":"pytensor"},{"download_count":284394,"project":"mypy-boto3-marketplace-catalog"},{"download_count":284354,"project":"mypy-boto3-marketplacecommerceanalytics"},{"download_count":284353,"project":"mypy-boto3-pi"},{"download_count":284306,"project":"m3u8"},{"download_count":284285,"project":"mypy-boto3-managedblockchain"},{"download_count":284282,"project":"haystack-ai"},{"download_count":284276,"project":"mypy-boto3-opsworks"},{"download_count":284184,"project":"mypy-boto3-iotsecuretunneling"},{"download_count":284172,"project":"mypy-boto3-machinelearning"},{"download_count":284127,"project":"mypy-boto3-iot1click-devices"},{"download_count":284076,"project":"mypy-boto3-cloudsearchdomain"},{"download_count":284026,"project":"django-select2"},{"download_count":284004,"project":"mypy-boto3-timestream-query"},{"download_count":283942,"project":"robocorp-tasks"},{"download_count":283925,"project":"mypy-boto3-personalize-events"},{"download_count":283916,"project":"micloud"},{"download_count":283896,"project":"mypy-boto3-gamelift"},{"download_count":283852,"project":"pyvisa-py"},{"download_count":283761,"project":"mypy-boto3-waf"},{"download_count":283728,"project":"mypy-boto3-forecast"},{"download_count":283724,"project":"mypy-boto3-cloudsearch"},{"download_count":283613,"project":"mypy-boto3-fms"},{"download_count":283565,"project":"mypy-boto3-rekognition"},{"download_count":283473,"project":"mypy-boto3-iotevents-data"},{"download_count":283472,"project":"tabcmd"},{"download_count":283457,"project":"pybaselines"},{"download_count":283428,"project":"mypy-boto3-importexport"},{"download_count":283405,"project":"moepy"},{"download_count":283370,"project":"mem0ai"},{"download_count":283358,"project":"mypy-boto3-backup"},{"download_count":283283,"project":"mypy-boto3-migrationhub-config"},{"download_count":283212,"project":"ansicon"},{"download_count":283150,"project":"mypy-boto3-neptunedata"},{"download_count":283075,"project":"streamlit-keyup"},{"download_count":283033,"project":"mypy-boto3-devicefarm"},{"download_count":282981,"project":"mypy-boto3-ecr-public"},{"download_count":282977,"project":"mypy-boto3-elasticbeanstalk"},{"download_count":282931,"project":"mypy-boto3-sdb"},{"download_count":282928,"project":"ffmpeg"},{"download_count":282924,"project":"mypy-boto3-mediapackage-vod"},{"download_count":282917,"project":"mypy-boto3-groundstation"},{"download_count":282831,"project":"elevenlabs"},{"download_count":282771,"project":"types-oauthlib"},{"download_count":282761,"project":"pytest-selenium"},{"download_count":282646,"project":"single-source"},{"download_count":282573,"project":"cowsay"},{"download_count":282557,"project":"amplitude-analytics"},{"download_count":282554,"project":"mypy-boto3-comprehendmedical"},{"download_count":282532,"project":"mypy-boto3-globalaccelerator"},{"download_count":282508,"project":"mypy-boto3-frauddetector"},{"download_count":282415,"project":"mypy-boto3-snowball"},{"download_count":282406,"project":"mypy-boto3-elastictranscoder"},{"download_count":282256,"project":"opentelemetry-instrumentation-aiopg"},{"download_count":282242,"project":"mypy-boto3-lex-runtime"},{"download_count":282241,"project":"mypy-boto3-glacier"},{"download_count":282215,"project":"webapp2"},{"download_count":282166,"project":"scalecodec"},{"download_count":282166,"project":"mypy-boto3-kendra"},{"download_count":282150,"project":"mnemonic"},{"download_count":282115,"project":"mypy-boto3-iot1click-projects"},{"download_count":282102,"project":"mypy-boto3-workmail"},{"download_count":282072,"project":"mypy-boto3-kinesis-video-archived-media"},{"download_count":282041,"project":"mypy-boto3-elastic-inference"},{"download_count":281989,"project":"mypy-boto3-kinesis-video-signaling"},{"download_count":281906,"project":"pennylane-lightning"},{"download_count":281904,"project":"mypy-boto3-waf-regional"},{"download_count":281904,"project":"mypy-boto3-appmesh"},{"download_count":281849,"project":"mypy-boto3-kinesisvideo"},{"download_count":281844,"project":"mypy-boto3-lex-models"},{"download_count":281841,"project":"mypy-boto3-greengrass"},{"download_count":281839,"project":"mypy-boto3-appstream"},{"download_count":281755,"project":"prov"},{"download_count":281689,"project":"netutils"},{"download_count":281680,"project":"mypy-boto3-iotevents"},{"download_count":281662,"project":"mypy-boto3-timestream-write"},{"download_count":281608,"project":"prefect-github"},{"download_count":281515,"project":"pickle5"},{"download_count":281488,"project":"gviz-api"},{"download_count":281436,"project":"supermercado"},{"download_count":281375,"project":"mypy-boto3-lightsail"},{"download_count":281371,"project":"beancount-import"},{"download_count":281366,"project":"pystow"},{"download_count":281365,"project":"mypy-boto3-codecommit"},{"download_count":281349,"project":"mypy-boto3-workdocs"},{"download_count":281250,"project":"honeybee-radiance"},{"download_count":281221,"project":"mypy-boto3-kinesisanalytics"},{"download_count":281210,"project":"mypy-boto3-iotanalytics"},{"download_count":281127,"project":"mypy-boto3-kinesis-video-media"},{"download_count":281099,"project":"mypy-boto3-sms-voice"},{"download_count":281085,"project":"mypy-boto3-qldb-session"},{"download_count":281071,"project":"mypy-boto3-pinpoint-sms-voice"},{"download_count":281034,"project":"pythainlp"},{"download_count":280989,"project":"mozilla-django-oidc"},{"download_count":280980,"project":"mypy-boto3-datapipeline"},{"download_count":280965,"project":"mypy-boto3-connectparticipant"},{"download_count":280963,"project":"wagtail"},{"download_count":280958,"project":"mypy-boto3-iotthingsgraph"},{"download_count":280902,"project":"mypy-boto3-swf"},{"download_count":280841,"project":"magika"},{"download_count":280840,"project":"mypy-boto3-opsworkscm"},{"download_count":280837,"project":"einops-exts"},{"download_count":280799,"project":"robocorp-workitems"},{"download_count":280791,"project":"aws-cdk-aws-events"},{"download_count":280791,"project":"mypy-boto3-kinesisanalyticsv2"},{"download_count":280788,"project":"mypy-boto3-cur"},{"download_count":280737,"project":"mypy-boto3-workmailmessageflow"},{"download_count":280647,"project":"smart-importer"},{"download_count":280623,"project":"xraydb"},{"download_count":280492,"project":"mypy-boto3-detective"},{"download_count":280464,"project":"amundsen-databuilder"},{"download_count":280459,"project":"nbsphinx-link"},{"download_count":280451,"project":"mypy-boto3-sms"},{"download_count":280365,"project":"mypy-boto3-savingsplans"},{"download_count":280333,"project":"robocorp"},{"download_count":280314,"project":"redlock-py"},{"download_count":280224,"project":"elasticsearch-curator"},{"download_count":280091,"project":"mypy-boto3-qldb"},{"download_count":280082,"project":"mypy-boto3-chime"},{"download_count":279992,"project":"interpret-core"},{"download_count":279982,"project":"prefect-sqlalchemy"},{"download_count":279906,"project":"mypy-boto3-cloudhsm"},{"download_count":279873,"project":"mypy-boto3-sagemaker-a2i-runtime"},{"download_count":279751,"project":"mypy-boto3-cloudhsmv2"},{"download_count":279745,"project":"awslimitchecker"},{"download_count":279691,"project":"cognite-sdk"},{"download_count":279560,"project":"mypy-boto3-application-insights"},{"download_count":279531,"project":"stix2-patterns"},{"download_count":279376,"project":"h3ronpy"},{"download_count":279367,"project":"pandas-ta"},{"download_count":279306,"project":"mypy-boto3-codestar-notifications"},{"download_count":279296,"project":"drf-jwt"},{"download_count":279151,"project":"mypy-boto3-autoscaling-plans"},{"download_count":279093,"project":"mypy-boto3-cognito-sync"},{"download_count":279064,"project":"mock-serial"},{"download_count":279058,"project":"mypy-boto3-network-firewall"},{"download_count":279013,"project":"google-cloud-private-ca"},{"download_count":278963,"project":"stackprinter"},{"download_count":278954,"project":"rtry"},{"download_count":278691,"project":"langchain-pinecone"},{"download_count":278660,"project":"cpplint"},{"download_count":278658,"project":"mypy-boto3-macie2"},{"download_count":278614,"project":"mypy-boto3-sso-admin"},{"download_count":278571,"project":"dbt-clickhouse"},{"download_count":278532,"project":"packed"},{"download_count":278500,"project":"wheel-filename"},{"download_count":278479,"project":"mypy-boto3-iotsitewise"},{"download_count":278408,"project":"mypy-boto3-resource-groups"},{"download_count":278388,"project":"mypy-boto3-codeguru-reviewer"},{"download_count":278376,"project":"django-elasticsearch-dsl"},{"download_count":278306,"project":"pytmc"},{"download_count":278239,"project":"mypy-boto3-codestar-connections"},{"download_count":278202,"project":"mypy-boto3-clouddirectory"},{"download_count":278154,"project":"spacy-transformers"},{"download_count":278057,"project":"linode-metadata"},{"download_count":278005,"project":"mypy-boto3-robomaker"},{"download_count":277966,"project":"mypy-boto3-codeguruprofiler"},{"download_count":277959,"project":"mypy-boto3-cloud9"},{"download_count":277952,"project":"typeapi"},{"download_count":277799,"project":"apache-airflow-providers-hashicorp"},{"download_count":277414,"project":"abqpy"},{"download_count":277413,"project":"delta-sharing"},{"download_count":277373,"project":"langchain-postgres"},{"download_count":277293,"project":"jmp"},{"download_count":277278,"project":"together"},{"download_count":277179,"project":"sphinx-data-viewer"},{"download_count":277117,"project":"mypy-boto3-ivs-realtime"},{"download_count":276989,"project":"pytest-pylint"},{"download_count":276983,"project":"python-binance"},{"download_count":276875,"project":"neptune"},{"download_count":276766,"project":"httpstan"},{"download_count":276766,"project":"amundsen-common"},{"download_count":276724,"project":"inform"},{"download_count":276586,"project":"pip-install-test"},{"download_count":276450,"project":"lifetimes"},{"download_count":276289,"project":"mypy-boto3-ivs"},{"download_count":276183,"project":"faust"},{"download_count":276034,"project":"sqlalchemy-continuum"},{"download_count":275905,"project":"galois"},{"download_count":275893,"project":"xraylib"},{"download_count":275873,"project":"django-hijack"},{"download_count":275812,"project":"certipy"},{"download_count":275697,"project":"pyscipopt"},{"download_count":275565,"project":"rejson"},{"download_count":275496,"project":"pulumi-tls"},{"download_count":275306,"project":"pyro-ppl"},{"download_count":275278,"project":"opentelemetry-instrumentation-pymemcache"},{"download_count":275162,"project":"bert-score"},{"download_count":275101,"project":"captum"},{"download_count":274996,"project":"reverse-geocoder"},{"download_count":274880,"project":"pylint-gitlab"},{"download_count":274870,"project":"serpent"},{"download_count":274795,"project":"aws-cdk-aws-cloudwatch"},{"download_count":274670,"project":"cssmin"},{"download_count":274639,"project":"pymarshaler"},{"download_count":274586,"project":"nr-date"},{"download_count":274502,"project":"futurist"},{"download_count":274496,"project":"django-htmx"},{"download_count":274430,"project":"runtests"},{"download_count":274289,"project":"toml-sort"},{"download_count":274249,"project":"deepface"},{"download_count":273964,"project":"pyreadstat"},{"download_count":273831,"project":"django-autocomplete-light"},{"download_count":273768,"project":"pylogbeat"},{"download_count":273624,"project":"stream-inflate"},{"download_count":273401,"project":"willow"},{"download_count":273313,"project":"tailer"},{"download_count":273248,"project":"django-recaptcha"},{"download_count":272841,"project":"versionfinder"},{"download_count":272792,"project":"py-consul"},{"download_count":272709,"project":"robinhood-aiokafka"},{"download_count":272506,"project":"webauthn"},{"download_count":272460,"project":"mypy-boto3-braket"},{"download_count":272328,"project":"tf-models-nightly"},{"download_count":272321,"project":"oslash"},{"download_count":272280,"project":"feature-engine"},{"download_count":272213,"project":"tm1py"},{"download_count":271987,"project":"osmnx"},{"download_count":271974,"project":"tinybird-cli"},{"download_count":271783,"project":"mwtypes"},{"download_count":271736,"project":"backports-strenum"},{"download_count":271474,"project":"sparkaid"},{"download_count":271457,"project":"happi"},{"download_count":271395,"project":"pcdsutils"},{"download_count":271392,"project":"sphinx-needs"},{"download_count":271368,"project":"callee"},{"download_count":270999,"project":"pcdsdevices"},{"download_count":270916,"project":"pytest-parametrization"},{"download_count":270894,"project":"mypy-boto3-amp"},{"download_count":270889,"project":"py-bip39-bindings"},{"download_count":270882,"project":"py-algorand-sdk"},{"download_count":270871,"project":"qtpyinheritance"},{"download_count":270549,"project":"segmentation-models-pytorch"},{"download_count":270528,"project":"mypy-boto3-devops-guru"},{"download_count":270494,"project":"pcdscalc"},{"download_count":270395,"project":"dagster-celery-k8s"},{"download_count":270391,"project":"mobly"},{"download_count":270366,"project":"lightpath"},{"download_count":270357,"project":"mypy-boto3-iotwireless"},{"download_count":270351,"project":"mypy-boto3-greengrassv2"},{"download_count":270294,"project":"polars-lts-cpu"},{"download_count":270090,"project":"nestedtext"},{"download_count":269939,"project":"nncf"},{"download_count":269898,"project":"canopen"},{"download_count":269839,"project":"tortoise-orm"},{"download_count":269656,"project":"mypy-boto3-wellarchitected"},{"download_count":269572,"project":"mypy-boto3-sagemaker-featurestore-runtime"},{"download_count":269565,"project":"python-schema-registry-client"},{"download_count":269565,"project":"cityhash"},{"download_count":269398,"project":"mypy-boto3-amplifybackend"},{"download_count":269386,"project":"super-collections"},{"download_count":269367,"project":"mypy-boto3-lookoutvision"},{"download_count":269340,"project":"mypy-boto3-customer-profiles"},{"download_count":269300,"project":"geojson-pydantic"},{"download_count":269277,"project":"cmsis-pack-manager"},{"download_count":269257,"project":"markdown-to-json"},{"download_count":269123,"project":"mypy-boto3-iotfleethub"},{"download_count":269051,"project":"autoray"},{"download_count":268981,"project":"mypy-boto3-healthlake"},{"download_count":268968,"project":"mypy-boto3-databrew"},{"download_count":268926,"project":"mypy-boto3-iotdeviceadvisor"},{"download_count":268824,"project":"mypy-boto3-appintegrations"},{"download_count":268773,"project":"opentracing-utils"},{"download_count":268744,"project":"lingua-language-detector"},{"download_count":268658,"project":"mypy-boto3-sagemaker-edge"},{"download_count":268614,"project":"jsonable"},{"download_count":268449,"project":"shillelagh"},{"download_count":268406,"project":"more-click"},{"download_count":268384,"project":"aws-cdk-aws-lambda"},{"download_count":268383,"project":"mypy-boto3-s3outposts"},{"download_count":268325,"project":"ipaddr"},{"download_count":268302,"project":"launchable"},{"download_count":268288,"project":"py-ed25519-zebra-bindings"},{"download_count":268227,"project":"mmengine"},{"download_count":268197,"project":"mypy-boto3-auditmanager"},{"download_count":268179,"project":"mdxpy"},{"download_count":268132,"project":"aliyun-python-sdk-ecs"},{"download_count":268042,"project":"secure-smtplib"},{"download_count":268042,"project":"amazon-textract-response-parser"},{"download_count":267999,"project":"py-markdown-table"},{"download_count":267990,"project":"aws-cdk-aws-logs"},{"download_count":267952,"project":"warcio"},{"download_count":267917,"project":"mypy-boto3-servicecatalog-appregistry"},{"download_count":267911,"project":"mypy-boto3-lexv2-runtime"},{"download_count":267869,"project":"mypy-boto3-lexv2-models"},{"download_count":267840,"project":"pytest-mpl"},{"download_count":267735,"project":"kedro-telemetry"},{"download_count":267712,"project":"os-client-config"},{"download_count":267615,"project":"mypy-boto3-connect-contact-lens"},{"download_count":267364,"project":"autologging"},{"download_count":267236,"project":"sanic-ext"},{"download_count":266814,"project":"qpd"},{"download_count":266710,"project":"cvss"},{"download_count":266613,"project":"pyjson5"},{"download_count":266353,"project":"simplekml"},{"download_count":266300,"project":"mapclassify"},{"download_count":266036,"project":"pact-python"},{"download_count":265738,"project":"easy-thumbnails"},{"download_count":265590,"project":"nbimporter"},{"download_count":265508,"project":"mypy-boto3-mgn"},{"download_count":265363,"project":"types-pkg-resources"},{"download_count":265353,"project":"zmq"},{"download_count":265329,"project":"docstr-coverage"},{"download_count":265260,"project":"aws-cdk-aws-s3-assets"},{"download_count":265188,"project":"deb-pkg-tools"},{"download_count":265182,"project":"flake8-return"},{"download_count":265174,"project":"parametrize-from-file"},{"download_count":265165,"project":"mypy-boto3-fis"},{"download_count":265161,"project":"files-com"},{"download_count":265155,"project":"types-fpdf2"},{"download_count":265049,"project":"inline-snapshot"},{"download_count":265045,"project":"username"},{"download_count":265000,"project":"google-api"},{"download_count":264968,"project":"replicate"},{"download_count":264914,"project":"sty"},{"download_count":264843,"project":"filesplit"},{"download_count":264806,"project":"tf-nightly"},{"download_count":264626,"project":"mariadb"},{"download_count":264490,"project":"ttp-templates"},{"download_count":264259,"project":"kaggle"},{"download_count":264245,"project":"mypy-boto3-lookoutmetrics"},{"download_count":264053,"project":"tidyexc"},{"download_count":264013,"project":"mypy-boto3-lookoutequipment"},{"download_count":263805,"project":"ailever"},{"download_count":263784,"project":"storops"},{"download_count":263460,"project":"mypy-boto3-ssm-incidents"},{"download_count":263379,"project":"elasticquery"},{"download_count":263286,"project":"mypy-boto3-finspace-data"},{"download_count":263266,"project":"tensorflow-decision-forests"},{"download_count":263222,"project":"traits"},{"download_count":263195,"project":"treelite-runtime"},{"download_count":263181,"project":"jinxed"},{"download_count":263179,"project":"mypy-boto3-finspace"},{"download_count":263109,"project":"chess"},{"download_count":263094,"project":"crewai-tools"},{"download_count":263032,"project":"rio-cogeo"},{"download_count":262964,"project":"panda3d"},{"download_count":262952,"project":"instructorembedding"},{"download_count":262935,"project":"spirack"},{"download_count":262844,"project":"mypy-boto3-apprunner"},{"download_count":262650,"project":"tensorly"},{"download_count":262572,"project":"aws-cdk-aws-ecr"},{"download_count":262552,"project":"esp-idf-nvs-partition-gen"},{"download_count":262516,"project":"lazy-model"},{"download_count":262428,"project":"lalsuite"},{"download_count":262362,"project":"wavefront-cli"},{"download_count":262224,"project":"feather-format"},{"download_count":262200,"project":"aws-cdk-aws-ssm"},{"download_count":262199,"project":"ccard"},{"download_count":262064,"project":"azure-iot-device"},{"download_count":262048,"project":"mypy-boto3-ssm-contacts"},{"download_count":262033,"project":"pamela"},{"download_count":261933,"project":"pytest-wake"},{"download_count":261825,"project":"vector-quantize-pytorch"},{"download_count":261706,"project":"django-templated-mail"},{"download_count":261675,"project":"dataflows-tabulator"},{"download_count":261613,"project":"pyocd"},{"download_count":261569,"project":"retryz"},{"download_count":261558,"project":"python-jwt"},{"download_count":261447,"project":"pyqtwebengine-qt5"},{"download_count":261426,"project":"python-redmine"},{"download_count":261368,"project":"pytest-doctestplus"},{"download_count":261358,"project":"mypy-boto3-applicationcostprofiler"},{"download_count":261267,"project":"types-google-cloud-ndb"},{"download_count":261198,"project":"slicerator"},{"download_count":261144,"project":"autogluon-timeseries"},{"download_count":261122,"project":"virtualenvwrapper"},{"download_count":261118,"project":"dramatiq"},{"download_count":261093,"project":"gcloud-aio-pubsub"},{"download_count":261090,"project":"django-admin-autocomplete-filter"},{"download_count":261069,"project":"substrate-interface"},{"download_count":260993,"project":"openexr"},{"download_count":260984,"project":"cachez"},{"download_count":260906,"project":"mypy-boto3-appconfigdata"},{"download_count":260881,"project":"mypy-boto3-grafana"},{"download_count":260799,"project":"untangle"},{"download_count":260781,"project":"flask-principal"},{"download_count":260731,"project":"splink"},{"download_count":260710,"project":"pyroscope-io"},{"download_count":260650,"project":"mypy-boto3-bedrock-agent-runtime"},{"download_count":260613,"project":"whichcraft"},{"download_count":260529,"project":"sklearn-crfsuite"},{"download_count":260509,"project":"types-maxminddb"},{"download_count":260471,"project":"mypy-boto3-proton"},{"download_count":260430,"project":"scrubadub"},{"download_count":260404,"project":"marshmallow3-annotations"},{"download_count":260300,"project":"mypy-boto3-bedrock-agent"},{"download_count":260105,"project":"ytsaurus-client"},{"download_count":260036,"project":"drf-writable-nested"},{"download_count":259969,"project":"djangorestframework-xml"},{"download_count":259929,"project":"fastexcel"},{"download_count":259832,"project":"abstra"},{"download_count":259668,"project":"mypy-boto3-inspector2"},{"download_count":259667,"project":"stanza"},{"download_count":259662,"project":"times"},{"download_count":259662,"project":"mypy-boto3-redshift-serverless"},{"download_count":259644,"project":"mailchimp-transactional"},{"download_count":259597,"project":"allennlp-pvt-nightly"},{"download_count":259518,"project":"mypy-boto3-account"},{"download_count":259478,"project":"in-place"},{"download_count":259277,"project":"google-cloud-ndb"},{"download_count":259141,"project":"opensearch-dsl"},{"download_count":259051,"project":"mypy-boto3-memorydb"},{"download_count":258876,"project":"sphinxcontrib-drawio"},{"download_count":258874,"project":"streamlit-extras"},{"download_count":258758,"project":"pyarrow-stubs"},{"download_count":258733,"project":"vintage"},{"download_count":258352,"project":"beanie"},{"download_count":258089,"project":"pwlf"},{"download_count":258067,"project":"mypy-boto3-route53-recovery-control-config"},{"download_count":258042,"project":"mypy-boto3-chime-sdk-messaging"},{"download_count":258037,"project":"mypy-boto3-snow-device-management"},{"download_count":257996,"project":"stix2"},{"download_count":257941,"project":"first"},{"download_count":257862,"project":"equinox"},{"download_count":257802,"project":"ahocorapy"},{"download_count":257784,"project":"mypy-boto3-chime-sdk-identity"},{"download_count":257753,"project":"pyjwkest"},{"download_count":257679,"project":"mypy-boto3-cloudcontrol"},{"download_count":257568,"project":"mypy-boto3-keyspaces"},{"download_count":257517,"project":"huaweicloudsdkdns"},{"download_count":257444,"project":"insightface"},{"download_count":257332,"project":"zxcvbn"},{"download_count":257293,"project":"sliceline"},{"download_count":257220,"project":"pycobertura"},{"download_count":257147,"project":"mypy-boto3-wisdom"},{"download_count":257096,"project":"ipy"},{"download_count":257096,"project":"mypy-boto3-route53-recovery-cluster"},{"download_count":257001,"project":"mypy-boto3-route53-recovery-readiness"},{"download_count":256950,"project":"mypy-boto3-kafkaconnect"},{"download_count":256767,"project":"pyiso8583"},{"download_count":256710,"project":"mypy-boto3-voice-id"},{"download_count":256646,"project":"oic"},{"download_count":256643,"project":"mcap-protobuf-support"},{"download_count":256629,"project":"bech32"},{"download_count":256566,"project":"mypy-boto3-omics"},{"download_count":256438,"project":"pydantic-factories"},{"download_count":256418,"project":"xmltojson"},{"download_count":256336,"project":"aiodogstatsd"},{"download_count":256317,"project":"rospkg"},{"download_count":256303,"project":"mypy-boto3-workspaces-web"},{"download_count":256158,"project":"django-modelcluster"},{"download_count":256132,"project":"pyinotify"},{"download_count":256010,"project":"flask-accepts"},{"download_count":255993,"project":"ibm-secrets-manager-sdk"},{"download_count":255865,"project":"mypy-boto3-iotfleetwise"},{"download_count":255855,"project":"mypy-boto3-cleanrooms"},{"download_count":255843,"project":"mypy-boto3-opensearchserverless"},{"download_count":255767,"project":"aiodocker"},{"download_count":255733,"project":"airflow-dbt"},{"download_count":255685,"project":"jinjanator"},{"download_count":255666,"project":"argparse2"},{"download_count":255507,"project":"jinjanator-plugins"},{"download_count":255464,"project":"mypy-boto3-panorama"},{"download_count":255358,"project":"mypy-boto3-verifiedpermissions"},{"download_count":255309,"project":"mypy-boto3-resiliencehub"},{"download_count":255288,"project":"unleashclient"},{"download_count":255270,"project":"zlib-ng"},{"download_count":255209,"project":"mypy-boto3-ivschat"},{"download_count":255183,"project":"mypy-boto3-chime-sdk-media-pipelines"},{"download_count":255158,"project":"apache-libcloud"},{"download_count":255095,"project":"mypy-boto3-chime-sdk-meetings"},{"download_count":255012,"project":"mypy-boto3-amplifyuibuilder"},{"download_count":255008,"project":"mypy-boto3-evidently"},{"download_count":254910,"project":"mypy-boto3-controltower"},{"download_count":254817,"project":"pyttsx3"},{"download_count":254770,"project":"mypy-boto3-drs"},{"download_count":254744,"project":"recordclass"},{"download_count":254720,"project":"pytest-reportlog"},{"download_count":254667,"project":"ytsaurus-yson"},{"download_count":254658,"project":"mypy-boto3-backup-gateway"},{"download_count":254618,"project":"mypy-boto3-qbusiness"},{"download_count":254562,"project":"dragnet"},{"download_count":254484,"project":"mypy-boto3-migrationhubstrategy"},{"download_count":254457,"project":"mypy-boto3-iottwinmaker"},{"download_count":254453,"project":"mypy-boto3-billingconductor"},{"download_count":254438,"project":"stream-unzip"},{"download_count":254430,"project":"mypy-boto3-migration-hub-refactor-spaces"},{"download_count":254368,"project":"postmarker"},{"download_count":254361,"project":"mypy-boto3-datazone"},{"download_count":254336,"project":"mypy-boto3-mediapackagev2"},{"download_count":254260,"project":"mypy-boto3-rbin"},{"download_count":254212,"project":"xlwings"},{"download_count":254206,"project":"mypy-boto3-m2"},{"download_count":254169,"project":"bluetooth-adapters"},{"download_count":254051,"project":"mypy-boto3-internetmonitor"},{"download_count":254039,"project":"mypy-boto3-payment-cryptography"},{"download_count":254006,"project":"autogluon-multimodal"},{"download_count":253928,"project":"mypy-boto3-b2bi"},{"download_count":253897,"project":"mypy-boto3-pipes"},{"download_count":253810,"project":"mypy-boto3-docdb-elastic"},{"download_count":253792,"project":"mypy-boto3-rum"},{"download_count":253776,"project":"mkdocs-section-index"},{"download_count":253774,"project":"mypy-boto3-payment-cryptography-data"},{"download_count":253722,"project":"sqlakeyset"},{"download_count":253665,"project":"mypy-boto3-osis"},{"download_count":253655,"project":"jsonschema-rs"},{"download_count":253646,"project":"mypy-boto3-chime-sdk-voice"},{"download_count":253582,"project":"pyro-api"},{"download_count":253573,"project":"mypy-boto3-resource-explorer-2"},{"download_count":253453,"project":"mypy-boto3-support-app"},{"download_count":253402,"project":"mypy-boto3-ssm-sap"},{"download_count":253391,"project":"mypy-boto3-connectcases"},{"download_count":253356,"project":"alibabacloud-credentials"},{"download_count":253348,"project":"mypy-boto3-securitylake"},{"download_count":253346,"project":"mypy-boto3-workspaces-thin-client"},{"download_count":253292,"project":"mypy-boto3-cleanroomsml"},{"download_count":253287,"project":"mypy-boto3-connectcampaigns"},{"download_count":253269,"project":"mypy-boto3-simspaceweaver"},{"download_count":253261,"project":"mypy-boto3-supplychain"},{"download_count":253204,"project":"mypy-boto3-timestream-influxdb"},{"download_count":253020,"project":"mypy-boto3-taxsettings"},{"download_count":253014,"project":"opentelemetry-instrumentation-cassandra"},{"download_count":253003,"project":"mypy-boto3-sagemaker-metrics"},{"download_count":252990,"project":"mypy-boto3-vpc-lattice"},{"download_count":252962,"project":"mypy-boto3-tnb"},{"download_count":252932,"project":"docusign-esign"},{"download_count":252884,"project":"mypy-boto3-license-manager-user-subscriptions"},{"download_count":252851,"project":"sqlalchemy-mixins"},{"download_count":252844,"project":"flutils"},{"download_count":252843,"project":"mypy-boto3-rolesanywhere"},{"download_count":252777,"project":"mypy-boto3-arc-zonal-shift"},{"download_count":252766,"project":"opentelemetry-instrumentation-remoulade"},{"download_count":252724,"project":"mypy-boto3-migrationhuborchestrator"},{"download_count":252712,"project":"pypika-tortoise"},{"download_count":252706,"project":"mypy-boto3-qapps"},{"download_count":252701,"project":"mypy-boto3-neptune-graph"},{"download_count":252684,"project":"mypy-boto3-codecatalyst"},{"download_count":252631,"project":"exifread"},{"download_count":252591,"project":"mypy-boto3-medical-imaging"},{"download_count":252567,"project":"mypy-boto3-application-signals"},{"download_count":252537,"project":"mypy-boto3-cloudtrail-data"},{"download_count":252527,"project":"mypy-boto3-appfabric"},{"download_count":252446,"project":"mypy-boto3-launch-wizard"},{"download_count":252423,"project":"mypy-boto3-trustedadvisor"},{"download_count":252399,"project":"mypy-boto3-kinesis-video-webrtc-storage"},{"download_count":252362,"project":"mypy-boto3-codeguru-security"},{"download_count":252350,"project":"mypy-boto3-privatenetworks"},{"download_count":252342,"project":"mypy-boto3-cost-optimization-hub"},{"download_count":252309,"project":"mypy-boto3-chatbot"},{"download_count":252278,"project":"mypy-boto3-mailmanager"},{"download_count":252263,"project":"mypy-boto3-kendra-ranking"},{"download_count":252233,"project":"mypy-boto3-bcm-data-exports"},{"download_count":252230,"project":"pyodps"},{"download_count":252223,"project":"mypy-boto3-qconnect"},{"download_count":252218,"project":"mypy-boto3-controlcatalog"},{"download_count":252176,"project":"mypy-boto3-entityresolution"},{"download_count":252159,"project":"mypy-boto3-deadline"},{"download_count":252132,"project":"mypy-boto3-repostspace"},{"download_count":252117,"project":"mypy-boto3-oam"},{"download_count":252092,"project":"mypy-boto3-sagemaker-geospatial"},{"download_count":252031,"project":"a-bigelow-cdk-eventbridge-partner-processors"},{"download_count":251944,"project":"django-test-migrations"},{"download_count":251920,"project":"mypy-boto3-artifact"},{"download_count":251912,"project":"robotframework-retryfailed"},{"download_count":251889,"project":"mypy-boto3-managedblockchain-query"},{"download_count":251847,"project":"wrapt-timeout-decorator"},{"download_count":251828,"project":"pyliquibase"},{"download_count":251796,"project":"mypy-boto3-eks-auth"},{"download_count":251778,"project":"mypy-boto3-cloudfront-keyvaluestore"},{"download_count":251762,"project":"mypy-boto3-license-manager-linux-subscriptions"},{"download_count":251679,"project":"mypy-boto3-codeconnections"},{"download_count":251646,"project":"mypy-boto3-freetier"},{"download_count":251607,"project":"mypy-boto3-apptest"},{"download_count":251591,"project":"mypy-boto3-marketplace-agreement"},{"download_count":251559,"project":"catboost-dev"},{"download_count":251463,"project":"mypy-boto3-pca-connector-ad"},{"download_count":251462,"project":"pysnooper"},{"download_count":251454,"project":"google-cloud-common"},{"download_count":251423,"project":"mypy-boto3-marketplace-deployment"},{"download_count":251396,"project":"beautifulsoup"},{"download_count":251194,"project":"mypy-boto3-inspector-scan"},{"download_count":251099,"project":"apify-client"},{"download_count":251001,"project":"mypy-boto3-networkmonitor"},{"download_count":250972,"project":"robotframework-appiumlibrary"},{"download_count":250956,"project":"mypy-boto3-route53profiles"},{"download_count":250895,"project":"pytest-reportportal"},{"download_count":250880,"project":"jc"},{"download_count":250866,"project":"google-cloud-filestore"},{"download_count":250748,"project":"mypy-boto3-pca-connector-scep"},{"download_count":250704,"project":"mypy-boto3-ssm-quicksetup"},{"download_count":250685,"project":"namedentities"},{"download_count":250674,"project":"watchdog-gevent"},{"download_count":250432,"project":"langchain-ollama"},{"download_count":250424,"project":"mypy-boto3-pcs"},{"download_count":250246,"project":"cdk8s"},{"download_count":250226,"project":"stumpy"},{"download_count":250204,"project":"django-allow-cidr"},{"download_count":250152,"project":"pyftdi"},{"download_count":250134,"project":"google-cloud-profiler"},{"download_count":250085,"project":"mypy-boto3-marketplace-reporting"},{"download_count":249878,"project":"aws-cdk-aws-applicationautoscaling"},{"download_count":249864,"project":"alibabacloud-tea-openapi"},{"download_count":249795,"project":"arxiv"},{"download_count":249789,"project":"aioesphomeapi"},{"download_count":249705,"project":"jsonnet"},{"download_count":249671,"project":"circus"},{"download_count":249631,"project":"types-lxml"},{"download_count":249604,"project":"mypy-boto3-ds-data"},{"download_count":249458,"project":"apache-airflow-providers-apache-livy"},{"download_count":249154,"project":"cfgrib"},{"download_count":248712,"project":"h2o"},{"download_count":248679,"project":"litestar"},{"download_count":248556,"project":"sphinx-bootstrap-theme"},{"download_count":248498,"project":"duo-client"},{"download_count":248487,"project":"robotframework-excellib"},{"download_count":248424,"project":"aws-cdk-aws-sqs"},{"download_count":248385,"project":"json-schema-for-humans"},{"download_count":248324,"project":"mo-future"},{"download_count":248193,"project":"urllib3-mock"},{"download_count":248157,"project":"pytorch-ignite"},{"download_count":248156,"project":"aws-cdk-aws-logs-destinations"},{"download_count":248065,"project":"lhotse"},{"download_count":247958,"project":"macresources"},{"download_count":247954,"project":"pyutilib"},{"download_count":247896,"project":"fastapi-cache2"},{"download_count":247765,"project":"databricks-utils"},{"download_count":247723,"project":"pytest-spark"},{"download_count":247714,"project":"nbdime"},{"download_count":247530,"project":"apache-airflow-providers-presto"},{"download_count":247220,"project":"reedsolo"},{"download_count":247040,"project":"aws-cdk-aws-ecr-assets"},{"download_count":246893,"project":"bingads"},{"download_count":246890,"project":"wordninja"},{"download_count":246764,"project":"gspread-pandas"},{"download_count":246601,"project":"django-admin-sortable2"},{"download_count":246487,"project":"comet-maths"},{"download_count":246327,"project":"bigquery-schema-generator"},{"download_count":246218,"project":"sagemaker-experiments"},{"download_count":246143,"project":"alibabacloud-tea-util"},{"download_count":246133,"project":"python-status"},{"download_count":246044,"project":"easydev"},{"download_count":246037,"project":"yagmail"},{"download_count":245880,"project":"punpy"},{"download_count":245713,"project":"bindep"},{"download_count":245584,"project":"arelle-release"},{"download_count":245503,"project":"canmatrix"},{"download_count":245455,"project":"roslibpy"},{"download_count":245280,"project":"openapi-codec"},{"download_count":245192,"project":"lilcom"},{"download_count":245019,"project":"pymc3"},{"download_count":244819,"project":"konlpy"},{"download_count":244586,"project":"pydoe2"},{"download_count":244586,"project":"pyobjc-framework-quartz"},{"download_count":244314,"project":"djoser"},{"download_count":244286,"project":"anycrc"},{"download_count":244265,"project":"types-passlib"},{"download_count":244171,"project":"pymel"},{"download_count":244054,"project":"dragonfly-schema"},{"download_count":243991,"project":"joblibspark"},{"download_count":243920,"project":"cybox"},{"download_count":243888,"project":"ci-info"},{"download_count":243650,"project":"syne-tune"},{"download_count":243413,"project":"rules"},{"download_count":243374,"project":"aws-cdk-aws-sns"},{"download_count":243308,"project":"pytest-timestamper"},{"download_count":242893,"project":"mixbox"},{"download_count":242893,"project":"aws-cdk-aws-efs"},{"download_count":242606,"project":"azure-messaging-webpubsubservice"},{"download_count":242244,"project":"amundsen-rds"},{"download_count":242240,"project":"stix"},{"download_count":242236,"project":"azure-cognitiveservices-vision-computervision"},{"download_count":242205,"project":"etelemetry"},{"download_count":242186,"project":"humiolib"},{"download_count":242051,"project":"websocket"},{"download_count":241994,"project":"pypi-simple"},{"download_count":241992,"project":"mitmproxy-rs"},{"download_count":241963,"project":"adtk"},{"download_count":241890,"project":"biscuit-python"},{"download_count":241821,"project":"alibabacloud-openapi-util"},{"download_count":241784,"project":"gptcache"},{"download_count":241717,"project":"rcon"},{"download_count":241629,"project":"pyicu"},{"download_count":241619,"project":"pykml"},{"download_count":241538,"project":"python-logstash-async"},{"download_count":241471,"project":"businesstimedelta"},{"download_count":241290,"project":"testrail-api"},{"download_count":241262,"project":"patchwork"},{"download_count":241161,"project":"kmodes"},{"download_count":240822,"project":"warlock"},{"download_count":240717,"project":"py-manga"},{"download_count":240685,"project":"unitypy"},{"download_count":240444,"project":"aiotools"},{"download_count":240412,"project":"jax-cuda12-plugin"},{"download_count":240362,"project":"better-exceptions"},{"download_count":240343,"project":"bleak-retry-connector"},{"download_count":240303,"project":"assemblyai"},{"download_count":240265,"project":"setuptools-download"},{"download_count":240264,"project":"yeelight"},{"download_count":240260,"project":"tinsel"},{"download_count":240236,"project":"pypubsub"},{"download_count":240199,"project":"hahomematic"},{"download_count":240147,"project":"pytest-freezer"},{"download_count":240083,"project":"python-markdown-math"},{"download_count":239997,"project":"pandas-schema"},{"download_count":239925,"project":"dead-hosts-launcher"},{"download_count":239858,"project":"calver"},{"download_count":239720,"project":"hdrpy"},{"download_count":239672,"project":"newick"},{"download_count":239641,"project":"amplpy"},{"download_count":239611,"project":"gitignore-parser"},{"download_count":239572,"project":"aws-cdk-aws-certificatemanager"},{"download_count":239506,"project":"aws-cdk-aws-secretsmanager"},{"download_count":239471,"project":"nameof"},{"download_count":239347,"project":"aiomoex"},{"download_count":239342,"project":"dh-utils"},{"download_count":239275,"project":"cdk-gitlab-runner"},{"download_count":239237,"project":"pygal"},{"download_count":238827,"project":"arize-phoenix-evals"},{"download_count":238782,"project":"tdda"},{"download_count":238494,"project":"pyxll"},{"download_count":238430,"project":"pysqlite3"},{"download_count":238208,"project":"types-enum34"},{"download_count":238092,"project":"zigpy-zigate"},{"download_count":238079,"project":"rpm"},{"download_count":238019,"project":"bump-my-version"},{"download_count":237763,"project":"datarobot"},{"download_count":237669,"project":"pyutils-hep"},{"download_count":237544,"project":"patchy"},{"download_count":237411,"project":"pytest-remotedata"},{"download_count":237329,"project":"zope-sqlalchemy"},{"download_count":237277,"project":"tapipy"},{"download_count":237276,"project":"bidsschematools"},{"download_count":236910,"project":"labelbox"},{"download_count":236794,"project":"google-cloud-functions"},{"download_count":236620,"project":"tavern"},{"download_count":236413,"project":"disposable-email-domains"},{"download_count":236375,"project":"flake8-use-fstring"},{"download_count":236361,"project":"generic-iterative-stemmer"},{"download_count":236316,"project":"python-quickbooks"},{"download_count":236216,"project":"llama-cpp-python"},{"download_count":236100,"project":"types-aiobotocore-elbv2"},{"download_count":235965,"project":"alchemy-mock"},{"download_count":235902,"project":"sox"},{"download_count":235815,"project":"saxonche"},{"download_count":235773,"project":"databricks-vectorsearch"},{"download_count":235718,"project":"pyarmor-cli-core"},{"download_count":235647,"project":"pglast"},{"download_count":235643,"project":"qcodes-contrib-drivers"},{"download_count":235541,"project":"fsd"},{"download_count":235523,"project":"htmltools"},{"download_count":235415,"project":"teamhack-nmap"},{"download_count":235360,"project":"logger"},{"download_count":235312,"project":"timedelta"},{"download_count":235239,"project":"async-interrupt"},{"download_count":235121,"project":"langserve"},{"download_count":234791,"project":"jupyter-server-mathjax"},{"download_count":234747,"project":"aiooui"},{"download_count":234653,"project":"link"},{"download_count":234645,"project":"pystac-client"},{"download_count":234597,"project":"python-glanceclient"},{"download_count":234560,"project":"aimmo"},{"download_count":234510,"project":"llamaindex-py-client"},{"download_count":234451,"project":"deepgram-sdk"},{"download_count":234400,"project":"textsearch"},{"download_count":234352,"project":"timing-asgi"},{"download_count":234295,"project":"ipyleaflet"},{"download_count":234264,"project":"conllu"},{"download_count":234039,"project":"alibabacloud-gateway-spi"},{"download_count":233824,"project":"svix"},{"download_count":233709,"project":"django-dirtyfields"},{"download_count":233670,"project":"jax-cuda12-pjrt"},{"download_count":233639,"project":"alchemlyb"},{"download_count":233614,"project":"aws-cdk-aws-autoscaling-common"},{"download_count":233473,"project":"ipwhois"},{"download_count":233429,"project":"pyspark-test"},{"download_count":233427,"project":"pyramid-tm"},{"download_count":233361,"project":"twofish"},{"download_count":233042,"project":"pure-pcapy3"},{"download_count":232992,"project":"aws-cdk-aws-codeguruprofiler"},{"download_count":232951,"project":"great-tables"},{"download_count":232934,"project":"l18n"},{"download_count":232888,"project":"aws-cdk-aws-route53"},{"download_count":232858,"project":"ast-grep-cli"},{"download_count":232835,"project":"mwclient"},{"download_count":232787,"project":"aws-cdk-assets"},{"download_count":232483,"project":"propka"},{"download_count":232424,"project":"google-cloud-certificate-manager"},{"download_count":232310,"project":"honeybee-radiance-folder"},{"download_count":232294,"project":"alibabacloud-endpoint-util"},{"download_count":232293,"project":"alibabacloud-tea-xml"},{"download_count":232285,"project":"airflow-provider-fivetran-async"},{"download_count":232266,"project":"honeybee-radiance-command"},{"download_count":232018,"project":"pandas-read-xml"},{"download_count":231917,"project":"optparse-pretty"},{"download_count":231895,"project":"mmcif-pdbx"},{"download_count":231705,"project":"springserve"},{"download_count":231573,"project":"datetype"},{"download_count":231512,"project":"python-debian"},{"download_count":231432,"project":"impacket"},{"download_count":231311,"project":"adbc-driver-manager"},{"download_count":231262,"project":"sphinx-mdinclude"},{"download_count":231177,"project":"aiohttp-jinja2"},{"download_count":231137,"project":"observable"},{"download_count":231084,"project":"sortedcollections"},{"download_count":230999,"project":"libify"},{"download_count":230948,"project":"markdown-inline-graphviz-extension"},{"download_count":230935,"project":"yasoo"},{"download_count":230868,"project":"sphinxcontrib-apidoc"},{"download_count":230778,"project":"cons"},{"download_count":230675,"project":"cdk-aurora-globaldatabase"},{"download_count":230534,"project":"higlass-schema"},{"download_count":230519,"project":"pafy"},{"download_count":230419,"project":"stdiomask"},{"download_count":230277,"project":"etuples"},{"download_count":230184,"project":"bluetooth-data-tools"},{"download_count":230116,"project":"ceja"},{"download_count":230107,"project":"pdb2pqr"},{"download_count":230051,"project":"openapi-pydantic"},{"download_count":230047,"project":"servir"},{"download_count":229951,"project":"tsfresh"},{"download_count":229943,"project":"aws-cdk-aws-cloudformation"},{"download_count":229933,"project":"pytorch"},{"download_count":229881,"project":"logical-unification"},{"download_count":229776,"project":"brewer2mpl"},{"download_count":229479,"project":"readability-lxml"},{"download_count":229288,"project":"aiven-client"},{"download_count":229079,"project":"pyvo"},{"download_count":228990,"project":"ggplot"},{"download_count":228938,"project":"bqplot"},{"download_count":228878,"project":"pyeapi"},{"download_count":228821,"project":"requests-ntlm3"},{"download_count":228807,"project":"habluetooth"},{"download_count":228676,"project":"kestra"},{"download_count":228601,"project":"argparse-helper"},{"download_count":228587,"project":"logging-formatter-anticrlf"},{"download_count":228405,"project":"iteration-utilities"},{"download_count":228392,"project":"config-dir"},{"download_count":228391,"project":"pyzipcode"},{"download_count":228349,"project":"aws-cdk-custom-resources"},{"download_count":228297,"project":"args"},{"download_count":228189,"project":"rq-scheduler"},{"download_count":228146,"project":"findiff"},{"download_count":228011,"project":"contractions"},{"download_count":227963,"project":"depthai"},{"download_count":227847,"project":"langchain-mistralai"},{"download_count":227769,"project":"pyroma"},{"download_count":227715,"project":"defcon"},{"download_count":227592,"project":"cmake-format"},{"download_count":227560,"project":"trustme"},{"download_count":227523,"project":"google-compute-engine"},{"download_count":227515,"project":"tkmacosx"},{"download_count":227491,"project":"segtok"},{"download_count":227276,"project":"posix-ipc"},{"download_count":227264,"project":"dask-cuda"},{"download_count":227163,"project":"opentelemetry-instrumentation-psycopg"},{"download_count":227121,"project":"gpytorch"},{"download_count":226974,"project":"azureml-fsspec"},{"download_count":226968,"project":"pyaml-env"},{"download_count":226956,"project":"case-class"},{"download_count":226882,"project":"minikanren"},{"download_count":226869,"project":"tqdm-loggable"},{"download_count":226857,"project":"curies"},{"download_count":226828,"project":"types-backports"},{"download_count":226813,"project":"solc-select"},{"download_count":226718,"project":"llama-index-vector-stores-postgres"},{"download_count":226709,"project":"lbt-dragonfly"},{"download_count":226701,"project":"aws-cdk-aws-elasticloadbalancingv2"},{"download_count":226598,"project":"apache-airflow-providers-grpc"},{"download_count":226336,"project":"zeo"},{"download_count":226282,"project":"deprecat"},{"download_count":226070,"project":"flake8-blind-except"},{"download_count":226033,"project":"auditwheel"},{"download_count":225928,"project":"python-statemachine"},{"download_count":225889,"project":"liccheck"},{"download_count":225855,"project":"invisible-watermark"},{"download_count":225840,"project":"plan-tools"},{"download_count":225656,"project":"opencensus-proto"},{"download_count":225581,"project":"cdk-events-notify"},{"download_count":225420,"project":"unidic"},{"download_count":225392,"project":"opentelemetry-instrumentation-aiohttp-server"},{"download_count":225253,"project":"flask-restplus"},{"download_count":224996,"project":"hypothesis-jsonschema"},{"download_count":224982,"project":"mxnet-mkl"},{"download_count":224882,"project":"mo-dots"},{"download_count":224765,"project":"sinethesizer"},{"download_count":224755,"project":"types-aiobotocore-acm"},{"download_count":224720,"project":"pdm-pep517"},{"download_count":224595,"project":"cdktf-cdktf-provider-aws"},{"download_count":224538,"project":"pgspecial"},{"download_count":224335,"project":"django-classy-tags"},{"download_count":224283,"project":"telepath"},{"download_count":224058,"project":"types-aiobotocore-iam"},{"download_count":223713,"project":"pytest-incremental"},{"download_count":223697,"project":"remote-pdb"},{"download_count":223685,"project":"actions-toolkit"},{"download_count":223619,"project":"types-aiobotocore-route53"},{"download_count":223492,"project":"pydynamodb"},{"download_count":223486,"project":"ipylab"},{"download_count":223219,"project":"flake8-logging-format"},{"download_count":223215,"project":"browserstack-local"},{"download_count":223194,"project":"skqulacs"},{"download_count":223136,"project":"nipype"},{"download_count":223047,"project":"python-vagrant"},{"download_count":222890,"project":"flet"},{"download_count":222867,"project":"astronomer-providers"},{"download_count":222851,"project":"fauxfactory"},{"download_count":222793,"project":"icalevents"},{"download_count":222680,"project":"twython"},{"download_count":222646,"project":"pgsanity"},{"download_count":222640,"project":"typed-argument-parser"},{"download_count":222588,"project":"bigdl-nano"},{"download_count":222492,"project":"django-solo"},{"download_count":222304,"project":"datarecorder"},{"download_count":222269,"project":"tickforge-client"},{"download_count":222229,"project":"pyteomics"},{"download_count":222205,"project":"usb-devices"},{"download_count":222165,"project":"hausdorff"},{"download_count":221693,"project":"favicon"},{"download_count":221665,"project":"atlassian-jwt-auth"},{"download_count":221584,"project":"lapx"},{"download_count":221521,"project":"esprima"},{"download_count":221445,"project":"emr-notebooks-magics"},{"download_count":221433,"project":"daal"},{"download_count":221393,"project":"pylsl"},{"download_count":221375,"project":"presto-client"},{"download_count":221250,"project":"envparse"},{"download_count":221197,"project":"arize-phoenix-otel"},{"download_count":221080,"project":"maison"},{"download_count":221040,"project":"fugue-sql-antlr"},{"download_count":220988,"project":"serverless-wsgi"},{"download_count":220866,"project":"downloadkit"},{"download_count":220564,"project":"prefect-dbt"},{"download_count":220519,"project":"pycosat"},{"download_count":220467,"project":"aioice"},{"download_count":220370,"project":"baby-steps"},{"download_count":220263,"project":"mergepythonclient"},{"download_count":220257,"project":"widdy"},{"download_count":220194,"project":"praat-parselmouth"},{"download_count":220186,"project":"basicauth"},{"download_count":219988,"project":"multi-model-server"},{"download_count":219971,"project":"bids-validator"},{"download_count":219940,"project":"cybrid-api-organization-python"},{"download_count":219934,"project":"pycron"},{"download_count":219918,"project":"mo-imports"},{"download_count":219897,"project":"fortifyapi"},{"download_count":219830,"project":"json2xml"},{"download_count":219763,"project":"piccolo"},{"download_count":219602,"project":"algokit-utils"},{"download_count":219581,"project":"motifcluster"},{"download_count":219473,"project":"keras-nlp"},{"download_count":219434,"project":"emails"},{"download_count":219337,"project":"aws-cdk-aws-codestarnotifications"},{"download_count":219197,"project":"prowler"},{"download_count":219157,"project":"fast-query-parsers"},{"download_count":219095,"project":"nacos-sdk-python"},{"download_count":219086,"project":"airflow-provider-great-expectations"},{"download_count":218667,"project":"efficientnet-pytorch"},{"download_count":218552,"project":"aws-cdk-aws-ecs"},{"download_count":218360,"project":"mypy-boto3-nimble"},{"download_count":218341,"project":"mkdocs-mermaid2-plugin"},{"download_count":218334,"project":"apache-airflow-providers-samba"},{"download_count":218216,"project":"pyfcm"},{"download_count":218189,"project":"selenium-stealth"},{"download_count":218171,"project":"wakeonlan"},{"download_count":217984,"project":"scanpy"},{"download_count":217922,"project":"mechanize"},{"download_count":217886,"project":"aws-cdk-aws-sam"},{"download_count":217826,"project":"python-hosts"},{"download_count":217772,"project":"slipcover"},{"download_count":217771,"project":"testscenarios"},{"download_count":217707,"project":"smbus2"},{"download_count":217706,"project":"aws-cdk-aws-cognito"},{"download_count":217560,"project":"pylibsrtp"},{"download_count":217386,"project":"ovld"},{"download_count":217326,"project":"growthbook"},{"download_count":217270,"project":"represent"},{"download_count":217168,"project":"pook"},{"download_count":216925,"project":"cybrid-api-id-python"},{"download_count":216903,"project":"xml-python"},{"download_count":216898,"project":"csscompressor"},{"download_count":216641,"project":"handpick"},{"download_count":216634,"project":"async-stripe"},{"download_count":216563,"project":"pygrib"},{"download_count":216519,"project":"rotary-embedding-torch"},{"download_count":216433,"project":"allpairspy"},{"download_count":216397,"project":"brazilnum"},{"download_count":216275,"project":"scylla-driver"},{"download_count":216249,"project":"torchsummary"},{"download_count":216164,"project":"wtforms-json"},{"download_count":216113,"project":"valid8"},{"download_count":216084,"project":"aws-cdk-aws-stepfunctions"},{"download_count":215899,"project":"apysc"},{"download_count":215835,"project":"azure-cognitiveservices-knowledge-qnamaker"},{"download_count":215820,"project":"clearml-agent"},{"download_count":215535,"project":"bumpver"},{"download_count":215440,"project":"fairlearn"},{"download_count":215427,"project":"aws-cdk-aws-signer"},{"download_count":215412,"project":"astroquery"},{"download_count":215411,"project":"tdparser"},{"download_count":215233,"project":"pytest-codspeed"},{"download_count":215160,"project":"py3rijndael"},{"download_count":214950,"project":"price-parser"},{"download_count":214909,"project":"theano-pymc"},{"download_count":214895,"project":"iden"},{"download_count":214880,"project":"records"},{"download_count":214836,"project":"mdformat-tables"},{"download_count":214816,"project":"dagster-datadog"},{"download_count":214763,"project":"jurigged"},{"download_count":214582,"project":"swimbundle-utils"},{"download_count":214576,"project":"gggdtparser"},{"download_count":214481,"project":"scikit-learn-intelex"},{"download_count":214448,"project":"graphene-sqlalchemy"},{"download_count":214379,"project":"azure-ai-language-questionanswering"},{"download_count":214305,"project":"pyfields"},{"download_count":214167,"project":"autofaiss"},{"download_count":214120,"project":"aws-cdk-aws-sns-subscriptions"},{"download_count":214081,"project":"rosbags"},{"download_count":214074,"project":"simpleparse"},{"download_count":213986,"project":"azure-ai-language-conversations"},{"download_count":213845,"project":"cloup"},{"download_count":213753,"project":"spotpy"},{"download_count":213733,"project":"nicegui"},{"download_count":213704,"project":"pygresql"},{"download_count":213361,"project":"uart-devices"},{"download_count":213356,"project":"niltype"},{"download_count":213196,"project":"pytest-black"},{"download_count":213189,"project":"ursina"},{"download_count":213166,"project":"cloudsearch"},{"download_count":213118,"project":"rlpycairo"},{"download_count":213118,"project":"sockio"},{"download_count":212982,"project":"cpuset-py3"},{"download_count":212933,"project":"pycoingecko"},{"download_count":212906,"project":"tavily-python"},{"download_count":212894,"project":"htmlmin2"},{"download_count":212793,"project":"cdifflib"},{"download_count":212783,"project":"embedding-reader"},{"download_count":212730,"project":"unicode-slugify"},{"download_count":212721,"project":"sunshine-conversations-client"},{"download_count":212716,"project":"dspy-ai"},{"download_count":212660,"project":"ip2location"},{"download_count":212658,"project":"pymap3d"},{"download_count":212604,"project":"robotframework-databaselibrary"},{"download_count":212426,"project":"django-pgtrigger"},{"download_count":212412,"project":"serialio"},{"download_count":212374,"project":"swapper"},{"download_count":212305,"project":"json-ref-dict"},{"download_count":212292,"project":"html2image"},{"download_count":212282,"project":"pytest-timeouts"},{"download_count":212120,"project":"robotframework-tidy"},{"download_count":212020,"project":"connio"},{"download_count":211985,"project":"covdefaults"},{"download_count":211570,"project":"mohawk"},{"download_count":211464,"project":"crossplane"},{"download_count":211388,"project":"doc-warden"},{"download_count":211275,"project":"nbval"},{"download_count":211146,"project":"aws-cdk-aws-apigateway"},{"download_count":211059,"project":"colorist"},{"download_count":210923,"project":"certifi-linux"},{"download_count":210899,"project":"streamlit-image-coordinates"},{"download_count":210839,"project":"phpserialize"},{"download_count":210814,"project":"linear-operator"},{"download_count":210793,"project":"ecpy"},{"download_count":210690,"project":"multiprocessing"},{"download_count":210687,"project":"aws-cdk-aws-kinesis"},{"download_count":210560,"project":"pykerberos"},{"download_count":210477,"project":"lm-eval"},{"download_count":210453,"project":"linetools"},{"download_count":210411,"project":"better-profanity"},{"download_count":210361,"project":"cybrid-api-bank-python"},{"download_count":210295,"project":"linear-tsv"},{"download_count":210282,"project":"geoip2-tools"},{"download_count":210276,"project":"yaml-config"},{"download_count":210128,"project":"httpagentparser"},{"download_count":210124,"project":"yamlfix"},{"download_count":210067,"project":"streamlit-card"},{"download_count":210063,"project":"google-benchmark"},{"download_count":210049,"project":"flachtex"},{"download_count":210024,"project":"pymonet"},{"download_count":210004,"project":"kcli"},{"download_count":209827,"project":"pot"},{"download_count":209818,"project":"neo4j-driver"},{"download_count":209770,"project":"hvplot"},{"download_count":209586,"project":"robotframework-sshlibrary"},{"download_count":209514,"project":"pybids"},{"download_count":209438,"project":"cdk-certbot-dns-route53"},{"download_count":209362,"project":"snowflake-telemetry-python"},{"download_count":209299,"project":"pyplugs"},{"download_count":209196,"project":"opacus"},{"download_count":209191,"project":"qdarkstyle"},{"download_count":209175,"project":"hass-nabucasa"},{"download_count":209035,"project":"fuzzysearch"},{"download_count":208815,"project":"boruta"},{"download_count":208691,"project":"django-permissionedforms"},{"download_count":208665,"project":"stanfordcorenlp"},{"download_count":208661,"project":"fbprophet"},{"download_count":208580,"project":"airflow-mcd"},{"download_count":208478,"project":"smllib"},{"download_count":208436,"project":"py-meta-utils"},{"download_count":208362,"project":"async-exit-stack"},{"download_count":208343,"project":"abacusai"},{"download_count":208175,"project":"aws-cdk-aws-autoscaling"},{"download_count":207906,"project":"clarifai"},{"download_count":207891,"project":"agate-sql"},{"download_count":207886,"project":"linetable"},{"download_count":207806,"project":"sagemaker-data-insights"},{"download_count":207800,"project":"certbot-dns-route53"},{"download_count":207748,"project":"pydocumentdb"},{"download_count":207745,"project":"stempeg"},{"download_count":207737,"project":"littlefs-python"},{"download_count":207728,"project":"usaddress-scourgify"},{"download_count":207621,"project":"musdb"},{"download_count":207618,"project":"grpc-requests"},{"download_count":207617,"project":"st-annotated-text"},{"download_count":207595,"project":"base64io"},{"download_count":207552,"project":"ddapm-test-agent"},{"download_count":207289,"project":"xbbg"},{"download_count":207168,"project":"flask-unittest"},{"download_count":206836,"project":"restfly"},{"download_count":206813,"project":"esptool"},{"download_count":206733,"project":"dukpy"},{"download_count":206681,"project":"museval"},{"download_count":206664,"project":"pybreaker"},{"download_count":206657,"project":"lazr-uri"},{"download_count":206637,"project":"keybert"},{"download_count":206632,"project":"cupy-cuda11x"},{"download_count":206567,"project":"x-transformers"},{"download_count":206518,"project":"julia"},{"download_count":206498,"project":"docdata"},{"download_count":206378,"project":"openqa-client"},{"download_count":206294,"project":"acryl-datahub-classify"},{"download_count":206130,"project":"textract"},{"download_count":206122,"project":"css-inline"},{"download_count":206106,"project":"jaeger-client"},{"download_count":205964,"project":"ics"},{"download_count":205690,"project":"flake8-expression-complexity"},{"download_count":205669,"project":"meross-iot"},{"download_count":205644,"project":"sccache"},{"download_count":205529,"project":"esp-idf-kconfig"},{"download_count":205459,"project":"coralogix-logger"},{"download_count":205441,"project":"assemblyline-core"},{"download_count":205440,"project":"saspy"},{"download_count":205316,"project":"demjson3"},{"download_count":205213,"project":"optimizely-sdk"},{"download_count":205166,"project":"actfast"},{"download_count":205099,"project":"scanf"},{"download_count":205095,"project":"m2r2"},{"download_count":204857,"project":"docx"},{"download_count":204661,"project":"healpix"},{"download_count":204635,"project":"cachebox"},{"download_count":204362,"project":"vininfo"},{"download_count":204316,"project":"panda3d-simplepbr"},{"download_count":204275,"project":"lintrunner"},{"download_count":204234,"project":"aliyun-python-sdk-rds"},{"download_count":204127,"project":"pywebpush"},{"download_count":204053,"project":"markdownlit"},{"download_count":204012,"project":"aws-cdk-aws-elasticloadbalancing"},{"download_count":203928,"project":"lcov-cobertura"},{"download_count":203823,"project":"panda3d-gltf"},{"download_count":203587,"project":"crispy-bootstrap4"},{"download_count":203479,"project":"tensorflow-model-analysis"},{"download_count":203445,"project":"zipcodes"},{"download_count":203361,"project":"prefect-snowflake"},{"download_count":203306,"project":"pyecharts"},{"download_count":202775,"project":"pysimplevalidate"},{"download_count":202759,"project":"dagster-azure"},{"download_count":202725,"project":"livekit-api"},{"download_count":202643,"project":"aws-cdk-aws-route53-targets"},{"download_count":202639,"project":"pdblp"},{"download_count":202636,"project":"mwtextextractor"},{"download_count":202626,"project":"airtable"},{"download_count":202617,"project":"pyinputplus"},{"download_count":202551,"project":"mkdocs-minify-plugin"},{"download_count":202524,"project":"trcli"},{"download_count":202509,"project":"threadloop"},{"download_count":202320,"project":"megatron-core"},{"download_count":202297,"project":"kuzu"},{"download_count":202273,"project":"justbases"},{"download_count":202203,"project":"mdformat-frontmatter"},{"download_count":202051,"project":"namedlist"},{"download_count":201985,"project":"pymcubes"},{"download_count":201916,"project":"pandavro"},{"download_count":201862,"project":"ds2"},{"download_count":201744,"project":"agate-excel"},{"download_count":201728,"project":"pyexcelerate"},{"download_count":201715,"project":"apache-airflow-providers-apache-pinot"},{"download_count":201678,"project":"vabene"},{"download_count":201660,"project":"streamlit-embedcode"},{"download_count":201601,"project":"zcbor"},{"download_count":201555,"project":"hl7"},{"download_count":201511,"project":"metricspaces"},{"download_count":201478,"project":"qpsolvers"},{"download_count":201380,"project":"bluetooth-auto-recovery"},{"download_count":201362,"project":"pytest-filter-subpackage"},{"download_count":201220,"project":"rstcheck-core"},{"download_count":201152,"project":"autowrapt"},{"download_count":201065,"project":"flpc"},{"download_count":201061,"project":"tensorrt"},{"download_count":200993,"project":"pgcli"},{"download_count":200952,"project":"django-webtest"},{"download_count":200928,"project":"streamlit-toggle-switch"},{"download_count":200921,"project":"pymonetdb"},{"download_count":200907,"project":"paypalrestsdk"},{"download_count":200863,"project":"dbnd"},{"download_count":200844,"project":"lexid"},{"download_count":200807,"project":"pyzabbix"},{"download_count":200740,"project":"mmdet"},{"download_count":200704,"project":"htbuilder"},{"download_count":200604,"project":"flask-debugtoolbar"},{"download_count":200589,"project":"blinker-herald"},{"download_count":200516,"project":"libhoney"},{"download_count":200511,"project":"model-archiver"},{"download_count":200468,"project":"jaro-winkler"},{"download_count":200430,"project":"girth"},{"download_count":200245,"project":"snakes"},{"download_count":200173,"project":"hl7apy"},{"download_count":200128,"project":"azure-iot-hub"},{"download_count":200126,"project":"assemblyline-ui"},{"download_count":200007,"project":"implicit"},{"download_count":199931,"project":"aws-cdk-aws-cloudfront"},{"download_count":199853,"project":"django-deprecate-fields"},{"download_count":199846,"project":"aws-cdk-aws-servicediscovery"},{"download_count":199752,"project":"ical"},{"download_count":199612,"project":"streamlit-camera-input-live"},{"download_count":199586,"project":"streamlit-faker"},{"download_count":199578,"project":"airflow-provider-fivetran"},{"download_count":199516,"project":"image"},{"download_count":199485,"project":"cyclonedx-bom"},{"download_count":199350,"project":"pytest-mock-resources"},{"download_count":199314,"project":"granian"},{"download_count":199300,"project":"django-autoslug"},{"download_count":199240,"project":"llama-index-embeddings-huggingface"},{"download_count":199146,"project":"pyresidfp"},{"download_count":199146,"project":"yamlloader"},{"download_count":199095,"project":"livekit-protocol"},{"download_count":199063,"project":"slackweb"},{"download_count":198946,"project":"flet-core"},{"download_count":198930,"project":"pyxnat"},{"download_count":198794,"project":"django-admin-list-filter-dropdown"},{"download_count":198787,"project":"simple-rest-client"},{"download_count":198743,"project":"aqtinstall"},{"download_count":198716,"project":"onepasswordconnectsdk"},{"download_count":198707,"project":"django-crum"},{"download_count":198646,"project":"pinterest-api-sdk"},{"download_count":198608,"project":"pinterest-generated-client"},{"download_count":198590,"project":"aws-cdk-aws-autoscaling-hooktargets"},{"download_count":198584,"project":"conda-package-streaming"},{"download_count":198554,"project":"compress-pickle"},{"download_count":198527,"project":"filechunkio"},{"download_count":198461,"project":"pip-upgrader"},{"download_count":198312,"project":"pyinquirer"},{"download_count":198271,"project":"streamlit-vertical-slider"},{"download_count":198203,"project":"securesystemslib"},{"download_count":198096,"project":"rocksdict"},{"download_count":198027,"project":"az-cli"},{"download_count":197862,"project":"aws-cdk-aws-codecommit"},{"download_count":197856,"project":"blowfish"},{"download_count":197855,"project":"ops"},{"download_count":197855,"project":"delorean"},{"download_count":197800,"project":"aws-cdk-aws-codebuild"},{"download_count":197573,"project":"types-emoji"},{"download_count":197569,"project":"mapz"},{"download_count":197471,"project":"ormar"},{"download_count":197379,"project":"scrapfly-sdk"},{"download_count":197368,"project":"toolium"},{"download_count":197272,"project":"ptable"},{"download_count":197259,"project":"django-linear-migrations"},{"download_count":197084,"project":"econml"},{"download_count":197046,"project":"flt"},{"download_count":196859,"project":"drawille"},{"download_count":196809,"project":"business-duration"},{"download_count":196744,"project":"python-sat"},{"download_count":196677,"project":"flet-runtime"},{"download_count":196547,"project":"para"},{"download_count":196440,"project":"pylint-pytest"},{"download_count":196395,"project":"eli5"},{"download_count":196372,"project":"bapy"},{"download_count":196311,"project":"axiom-py"},{"download_count":196279,"project":"visualdl"},{"download_count":196213,"project":"slackbot"},{"download_count":196117,"project":"btsocket"},{"download_count":195997,"project":"asn1ate"},{"download_count":195932,"project":"soda-core-duckdb"},{"download_count":195609,"project":"rasa"},{"download_count":195560,"project":"fabric3"},{"download_count":195366,"project":"gravis"},{"download_count":195259,"project":"aiounittest"},{"download_count":195080,"project":"httpx-oauth"},{"download_count":194951,"project":"validator-collection"},{"download_count":194880,"project":"crhelper"},{"download_count":194819,"project":"torch-fidelity"},{"download_count":194760,"project":"oslo-concurrency"},{"download_count":194720,"project":"monai"},{"download_count":194719,"project":"azure-eventhub-checkpointstoreblob"},{"download_count":194626,"project":"agate-dbf"},{"download_count":194606,"project":"dbt"},{"download_count":194601,"project":"django-imagekit"},{"download_count":194498,"project":"mwcli"},{"download_count":194391,"project":"kitchen"},{"download_count":194390,"project":"bioframe"},{"download_count":194183,"project":"mwxml"},{"download_count":194011,"project":"gaussiancl"},{"download_count":193987,"project":"kubernetes-stubs"},{"download_count":193982,"project":"apify-shared"},{"download_count":193930,"project":"arize"},{"download_count":193908,"project":"sqlvalidator"},{"download_count":193892,"project":"daal4py"},{"download_count":193871,"project":"tkinterdnd2"},{"download_count":193693,"project":"flake8-cognitive-complexity"},{"download_count":193554,"project":"aikif"},{"download_count":193455,"project":"hierarchical-conf"},{"download_count":193425,"project":"aws-cdk-aws-dynamodb"},{"download_count":193422,"project":"findlibs"},{"download_count":193298,"project":"vllm-flash-attn"},{"download_count":193255,"project":"iterative-ensemble-smoother"},{"download_count":193243,"project":"nemo-toolkit"},{"download_count":193065,"project":"dol"},{"download_count":192951,"project":"tonyg-rfc3339"},{"download_count":192738,"project":"django-grappelli"},{"download_count":192731,"project":"hydra-zen"},{"download_count":192700,"project":"pyobjc-framework-applicationservices"},{"download_count":192680,"project":"sklearn2pmml"},{"download_count":192656,"project":"snitun"},{"download_count":192591,"project":"cognitive-complexity"},{"download_count":192382,"project":"apache-airflow-providers-microsoft-winrm"},{"download_count":192377,"project":"django-bootstrap5"},{"download_count":192289,"project":"pyobjc"},{"download_count":192228,"project":"pyobjc-framework-coretext"},{"download_count":192070,"project":"django-sekizai"},{"download_count":191941,"project":"email-to"},{"download_count":191870,"project":"acryl-pyhive"},{"download_count":191827,"project":"emojis"},{"download_count":191814,"project":"airtable-python-wrapper"},{"download_count":191805,"project":"asn1tools"},{"download_count":191767,"project":"requests-gssapi"},{"download_count":191759,"project":"unidic-lite"},{"download_count":191740,"project":"mixer"},{"download_count":191689,"project":"kazurator"},{"download_count":191684,"project":"wemake-python-styleguide"},{"download_count":191520,"project":"breadability"},{"download_count":191463,"project":"azureml-train-automl"},{"download_count":191324,"project":"fab-classic"},{"download_count":191290,"project":"pybit"},{"download_count":191274,"project":"id"},{"download_count":191261,"project":"higher"},{"download_count":191174,"project":"targ"},{"download_count":191127,"project":"cloudscale-sdk"},{"download_count":191111,"project":"pyglm"},{"download_count":190960,"project":"sphinxcontrib-svg2pdfconverter"},{"download_count":190838,"project":"cloudant"},{"download_count":190807,"project":"graphql-server-core"},{"download_count":190765,"project":"pyspark-stubs"},{"download_count":190647,"project":"flask-pydantic"},{"download_count":190599,"project":"indexed"},{"download_count":190598,"project":"python-irodsclient"},{"download_count":190376,"project":"aioconsole"},{"download_count":190316,"project":"nosexcover"},{"download_count":190294,"project":"repath"},{"download_count":190251,"project":"drgn"},{"download_count":190228,"project":"fast-depends"},{"download_count":190145,"project":"abstract-ai"},{"download_count":190018,"project":"llama-index-embeddings-bedrock"},{"download_count":190015,"project":"pycrdt"},{"download_count":189974,"project":"assemblyline"},{"download_count":189933,"project":"pilkit"},{"download_count":189812,"project":"junit-xml-2"},{"download_count":189811,"project":"mtmlib"},{"download_count":189791,"project":"ftputil"},{"download_count":189745,"project":"requests-unixsocket2"},{"download_count":189708,"project":"pyhpke"},{"download_count":189696,"project":"python-documentcloud"},{"download_count":189657,"project":"djangosaml2"},{"download_count":189470,"project":"cysignals"},{"download_count":189465,"project":"rerun-sdk"},{"download_count":189416,"project":"sqlalchemy-pytds"},{"download_count":189338,"project":"unsloth-zoo"},{"download_count":189334,"project":"hyper"},{"download_count":189308,"project":"bencode2"},{"download_count":189276,"project":"mux-python"},{"download_count":189150,"project":"fastembed"},{"download_count":189136,"project":"sphinxcontrib-confluencebuilder"},{"download_count":189122,"project":"robocorp-browser"},{"download_count":189030,"project":"abcli"},{"download_count":189017,"project":"aws-cdk-aws-acmpca"},{"download_count":188953,"project":"yaql"},{"download_count":188864,"project":"azure-schemaregistry-avroencoder"},{"download_count":188845,"project":"assemblyline-service-server"},{"download_count":188832,"project":"inscriptis"},{"download_count":188698,"project":"ale-py"},{"download_count":188696,"project":"pygad"},{"download_count":188647,"project":"typesystem"},{"download_count":188572,"project":"collate-sqllineage"},{"download_count":188527,"project":"dvc-s3"},{"download_count":188499,"project":"setuptools-odoo"},{"download_count":188349,"project":"spotdl"},{"download_count":188197,"project":"aiotieba"},{"download_count":188062,"project":"databricks-labs-blueprint"},{"download_count":188062,"project":"gcloud-rest-auth"},{"download_count":188026,"project":"django-sendgrid-v5"},{"download_count":187930,"project":"mmtf-python"},{"download_count":187781,"project":"ghostscript"},{"download_count":187771,"project":"beam-nuggets"},{"download_count":187752,"project":"dall-e"},{"download_count":187707,"project":"single-version"},{"download_count":187651,"project":"mdformat-gfm"},{"download_count":187641,"project":"pycolab"},{"download_count":187597,"project":"wiremock"},{"download_count":187555,"project":"mtmai"},{"download_count":187554,"project":"compynator"},{"download_count":187418,"project":"realesrgan"},{"download_count":187394,"project":"typos"},{"download_count":187348,"project":"taskipy"},{"download_count":187334,"project":"siphon"},{"download_count":187177,"project":"aider-chat"},{"download_count":187125,"project":"crazy-thursday"},{"download_count":186838,"project":"arraykit"},{"download_count":186782,"project":"aliyun-python-sdk-core-v3"},{"download_count":186746,"project":"gorilla"},{"download_count":186606,"project":"evilunit"},{"download_count":186511,"project":"flake8-mutable"},{"download_count":186442,"project":"schemathesis"},{"download_count":186392,"project":"pybel"},{"download_count":186381,"project":"robotframework-datadriver"},{"download_count":186300,"project":"langchainplus-sdk"},{"download_count":186237,"project":"types-sqlalchemy"},{"download_count":186080,"project":"imgtool"},{"download_count":186076,"project":"clvm-tools"},{"download_count":186044,"project":"python-libsbml"},{"download_count":186012,"project":"ziglang"},{"download_count":185883,"project":"google-cloud-billing"},{"download_count":185872,"project":"aioextensions"},{"download_count":185843,"project":"django-lifecycle"},{"download_count":185725,"project":"facebook-wda"},{"download_count":185719,"project":"clvm"},{"download_count":185630,"project":"django-cte"},{"download_count":185620,"project":"listcrunch"},{"download_count":185605,"project":"meraki"},{"download_count":185555,"project":"pygount"},{"download_count":185521,"project":"pyexecjs"},{"download_count":185517,"project":"py-dateutil"},{"download_count":185487,"project":"django-cacheops"},{"download_count":185463,"project":"djangorestframework-gis"},{"download_count":185422,"project":"django-yaa-settings"},{"download_count":185253,"project":"pypylon"},{"download_count":185115,"project":"advertools"},{"download_count":185096,"project":"cg"},{"download_count":185066,"project":"pyrealsense2"},{"download_count":185017,"project":"gkeepapi"},{"download_count":184825,"project":"gradio-rangeslider"},{"download_count":184751,"project":"django-cryptography"},{"download_count":184666,"project":"class-registry"},{"download_count":184630,"project":"mailchimp3"},{"download_count":184600,"project":"cobra"},{"download_count":184248,"project":"httpx-auth"},{"download_count":184232,"project":"wait-for"},{"download_count":184229,"project":"pyro4"},{"download_count":184226,"project":"pytest-pretty"},{"download_count":184156,"project":"opentelemetry-resourcedetector-kubernetes"},{"download_count":184029,"project":"django-sortedm2m"},{"download_count":184014,"project":"moz-sql-parser"},{"download_count":183986,"project":"msgpack-types"},{"download_count":183937,"project":"django-rest-knox"},{"download_count":183827,"project":"cwcwidth"},{"download_count":183727,"project":"mne"},{"download_count":183588,"project":"kaldi-io"},{"download_count":183533,"project":"workadays"},{"download_count":183463,"project":"fuzzy"},{"download_count":183450,"project":"prefect-kubernetes"},{"download_count":183416,"project":"pretrainedmodels"},{"download_count":183374,"project":"dspy"},{"download_count":183372,"project":"kiwipiepy"},{"download_count":183336,"project":"torch-tb-profiler"},{"download_count":183244,"project":"cpe"},{"download_count":183188,"project":"django-nose"},{"download_count":183187,"project":"python-helpscout-v2"},{"download_count":183142,"project":"javalang"},{"download_count":183063,"project":"bertopic"},{"download_count":183024,"project":"mysql-python"},{"download_count":182971,"project":"pykcs11"},{"download_count":182971,"project":"fslpy"},{"download_count":182906,"project":"flake8-noqa"},{"download_count":182785,"project":"pytest-shard"},{"download_count":182757,"project":"pedalboard"},{"download_count":182754,"project":"pypugjs"},{"download_count":182695,"project":"bel-resources"},{"download_count":182660,"project":"aggdraw"},{"download_count":182636,"project":"adafruit-blinka"},{"download_count":182622,"project":"mip"},{"download_count":182614,"project":"runez"},{"download_count":182609,"project":"xenon"},{"download_count":182566,"project":"st-theme"},{"download_count":182544,"project":"jupyterlab-git"},{"download_count":182468,"project":"cwrap"},{"download_count":182350,"project":"tcmlib"},{"download_count":182287,"project":"opentelemetry-resourcedetector-docker"},{"download_count":182284,"project":"py3langid"},{"download_count":182279,"project":"apache-airflow-providers-exasol"},{"download_count":182229,"project":"llama-index-vector-stores-azureaisearch"},{"download_count":182224,"project":"multisplitby"},{"download_count":182221,"project":"pytest-structlog"},{"download_count":182177,"project":"google-oauth2-tool"},{"download_count":182125,"project":"flake8-functions"},{"download_count":182093,"project":"starlite"},{"download_count":182036,"project":"html-sanitizer"},{"download_count":181843,"project":"snaptime"},{"download_count":181818,"project":"kedro-viz"},{"download_count":181803,"project":"measurement"},{"download_count":181727,"project":"flask-gravatar"},{"download_count":181677,"project":"inotify-simple"},{"download_count":181657,"project":"xmltodict3"},{"download_count":181624,"project":"jeedomdaemon"},{"download_count":181572,"project":"local-attention"},{"download_count":181546,"project":"tryingsnake"},{"download_count":181530,"project":"assemblyline-v4-service"},{"download_count":181474,"project":"openinference-instrumentation-openai"},{"download_count":181450,"project":"humps"},{"download_count":181417,"project":"py-expression-eval"},{"download_count":181346,"project":"prefect-dask"},{"download_count":181321,"project":"ta"},{"download_count":181246,"project":"cdk-secret-manager-wrapper-layer"},{"download_count":181076,"project":"azure-mgmt-automation"},{"download_count":181059,"project":"pylint-junit"},{"download_count":180957,"project":"tf-models-official"},{"download_count":180865,"project":"cdsapi"},{"download_count":180844,"project":"tushare"},{"download_count":180822,"project":"grain-nightly"},{"download_count":180732,"project":"loky"},{"download_count":180725,"project":"rpmfile"},{"download_count":180513,"project":"fastnumbers"},{"download_count":180385,"project":"aws-cdk-aws-globalaccelerator"},{"download_count":180244,"project":"iniparse"},{"download_count":180173,"project":"geffnet"},{"download_count":180062,"project":"pingouin"},{"download_count":180050,"project":"numpyro"},{"download_count":179971,"project":"google-cloud-bigquery-reservation"},{"download_count":179788,"project":"unicode"},{"download_count":179718,"project":"django-bulk-update"},{"download_count":179644,"project":"os-sys"},{"download_count":179622,"project":"neobolt"},{"download_count":179583,"project":"coredis"},{"download_count":179571,"project":"radish-bdd"},{"download_count":179567,"project":"ssh2-python"},{"download_count":179548,"project":"inference-gpu"},{"download_count":179540,"project":"sanelogging"},{"download_count":179514,"project":"curtsies"},{"download_count":179428,"project":"dash-mantine-components"},{"download_count":179227,"project":"terraform-compliance"},{"download_count":179135,"project":"basictracer"},{"download_count":179132,"project":"salt-lint"},{"download_count":179103,"project":"dbldatagen"},{"download_count":178963,"project":"pureport-python"},{"download_count":178925,"project":"tag-expressions"},{"download_count":178878,"project":"lusid-sdk"},{"download_count":178841,"project":"pybluez"},{"download_count":178814,"project":"pixelmatch"},{"download_count":178768,"project":"libpysal"},{"download_count":178735,"project":"cfnresponse"},{"download_count":178689,"project":"hsms"},{"download_count":178508,"project":"fst-pso"},{"download_count":178432,"project":"kagglehub"},{"download_count":178359,"project":"iterators"},{"download_count":178251,"project":"soundcloud-v2"},{"download_count":178177,"project":"apache-airflow-providers-apprise"},{"download_count":178167,"project":"cacheout"},{"download_count":178055,"project":"dbf"},{"download_count":178009,"project":"sphinx-inline-tabs"},{"download_count":177873,"project":"systemd-python"},{"download_count":177731,"project":"columnar"},{"download_count":177648,"project":"pygdbmi"},{"download_count":177415,"project":"requests-ratelimiter"},{"download_count":177395,"project":"bigquery"},{"download_count":177345,"project":"flask-graphql"},{"download_count":177250,"project":"py-mini-racer"},{"download_count":177234,"project":"csvkit"},{"download_count":177233,"project":"azure-functions-durable"},{"download_count":177210,"project":"configcat-client"},{"download_count":177173,"project":"tuf"},{"download_count":176913,"project":"bincopy"},{"download_count":176827,"project":"ais-dom"},{"download_count":176776,"project":"google-cloud-notebooks"},{"download_count":176748,"project":"mtmtrain"},{"download_count":176635,"project":"retry-requests"},{"download_count":176629,"project":"assemblyline-service-client"},{"download_count":176589,"project":"airflow-dbt-python"},{"download_count":176545,"project":"motmetrics"},{"download_count":176540,"project":"syncedlyrics"},{"download_count":176530,"project":"red-black-tree-mod"},{"download_count":176419,"project":"pycountry-convert"},{"download_count":176386,"project":"hier-config"},{"download_count":176338,"project":"s3m"},{"download_count":176304,"project":"pyatlan"},{"download_count":176269,"project":"adjust-precision-for-schema"},{"download_count":176237,"project":"miniful"},{"download_count":176193,"project":"mr-proper"},{"download_count":176077,"project":"devicecheck"},{"download_count":176009,"project":"libarchive"},{"download_count":175874,"project":"apache-airflow-providers-asana"},{"download_count":175781,"project":"cads-api-client"},{"download_count":175750,"project":"pytest-watcher"},{"download_count":175741,"project":"aiocsv"},{"download_count":175719,"project":"sigstore"},{"download_count":175701,"project":"sphinxcontrib-datatemplates"},{"download_count":175571,"project":"tox-py"},{"download_count":175561,"project":"types-defusedxml"},{"download_count":175495,"project":"pyobjc-framework-systemconfiguration"},{"download_count":175471,"project":"django-sslserver"},{"download_count":175447,"project":"pydantic-openapi-schema"},{"download_count":175429,"project":"hunspell"},{"download_count":175396,"project":"unsloth"},{"download_count":175333,"project":"nglview"},{"download_count":175314,"project":"validate-docbr"},{"download_count":175301,"project":"opentelemetry-exporter-gcp-monitoring"},{"download_count":175265,"project":"openvisus"},{"download_count":175248,"project":"paypalhttp"},{"download_count":175149,"project":"acachecontrol"},{"download_count":175121,"project":"jupyter-book"},{"download_count":175088,"project":"pdoc3"},{"download_count":175075,"project":"imgkit"},{"download_count":174992,"project":"pyperform"},{"download_count":174917,"project":"pytoml"},{"download_count":174910,"project":"faststream"},{"download_count":174726,"project":"django-types"},{"download_count":174714,"project":"antsibull-changelog"},{"download_count":174662,"project":"sphinx-external-toc"},{"download_count":174538,"project":"sagemaker-feature-store-pyspark-3-1"},{"download_count":174514,"project":"pysimplegui"},{"download_count":174508,"project":"python-heatclient"},{"download_count":174402,"project":"venv-pack"},{"download_count":174169,"project":"aliyun-python-sdk-alidns"},{"download_count":174067,"project":"django-mathfilters"},{"download_count":174030,"project":"e2b"},{"download_count":173926,"project":"vowpalwabbit"},{"download_count":173865,"project":"nemo-text-processing"},{"download_count":173861,"project":"pyheif"},{"download_count":173739,"project":"pytenable"},{"download_count":173562,"project":"interrogate"},{"download_count":173537,"project":"apache-airflow-providers-telegram"},{"download_count":173422,"project":"openinference-instrumentation-llama-index"},{"download_count":173378,"project":"edx-enterprise"},{"download_count":173362,"project":"text-generation"},{"download_count":173254,"project":"jsonrpcclient"},{"download_count":173192,"project":"jbxapi"},{"download_count":172963,"project":"cloudml-hypertune"},{"download_count":172917,"project":"openapi-python-client"},{"download_count":172796,"project":"dlib"},{"download_count":172739,"project":"okta-jwt-verifier"},{"download_count":172648,"project":"ropt"},{"download_count":172580,"project":"apache-airflow-providers-influxdb"},{"download_count":172358,"project":"azure-ai-textanalytics"},{"download_count":172328,"project":"cityseer"},{"download_count":172293,"project":"drf-extra-fields"},{"download_count":172236,"project":"jsonify"},{"download_count":172160,"project":"python-neutronclient"},{"download_count":172151,"project":"facebook-sdk"},{"download_count":172142,"project":"abstract-singleton"},{"download_count":172105,"project":"apache-superset"},{"download_count":172076,"project":"teradata"},{"download_count":172072,"project":"schemachange"},{"download_count":172039,"project":"botorch"},{"download_count":172029,"project":"typer-slim"},{"download_count":171932,"project":"opennsfw2"},{"download_count":171914,"project":"trufflehog"},{"download_count":171781,"project":"pytest-csv"},{"download_count":171737,"project":"pgzip"},{"download_count":171711,"project":"amazon-textract-caller"},{"download_count":171544,"project":"flake8-class-attributes-order"},{"download_count":171478,"project":"acquire"},{"download_count":171403,"project":"fhirclient"},{"download_count":171354,"project":"lbt-honeybee"},{"download_count":171307,"project":"mailchecker"},{"download_count":171219,"project":"elabjournal"},{"download_count":171174,"project":"swiglpk"},{"download_count":171111,"project":"pytorch-ranger"},{"download_count":171073,"project":"django-annoying"},{"download_count":171051,"project":"ff3"},{"download_count":171029,"project":"rigelcore"},{"download_count":170908,"project":"apache-airflow-providers-facebook"},{"download_count":170769,"project":"qsharp"},{"download_count":170734,"project":"cgroupspy"},{"download_count":170650,"project":"mode-streaming"},{"download_count":170649,"project":"rigel-hpl"},{"download_count":170623,"project":"botbuilder-schema"},{"download_count":170547,"project":"jpholiday"},{"download_count":170417,"project":"conda-package-handling"},{"download_count":170389,"project":"target-jsonl"},{"download_count":170380,"project":"kolo"},{"download_count":170351,"project":"pydeps"},{"download_count":170307,"project":"tensorrt-cu12"},{"download_count":170276,"project":"pulumi-kubernetes"},{"download_count":170272,"project":"logging-json"},{"download_count":170248,"project":"vpype"},{"download_count":170215,"project":"pip-autoremove"},{"download_count":170186,"project":"ipyevents"},{"download_count":170168,"project":"robotframework-faker"},{"download_count":170068,"project":"aws"},{"download_count":170067,"project":"owlrl"},{"download_count":170063,"project":"torch-optimizer"},{"download_count":170059,"project":"dagster-prometheus"},{"download_count":170016,"project":"scikit-survival"},{"download_count":169970,"project":"pyobjc-framework-libdispatch"},{"download_count":169935,"project":"hachoir"},{"download_count":169928,"project":"chia-base"},{"download_count":169908,"project":"urnparse"},{"download_count":169858,"project":"json-logic"},{"download_count":169833,"project":"timeflux"},{"download_count":169797,"project":"juju"},{"download_count":169736,"project":"pygelf"},{"download_count":169699,"project":"chialisp-loader"},{"download_count":169676,"project":"sparkdantic"},{"download_count":169656,"project":"pydantic-avro"},{"download_count":169643,"project":"chialisp-builder"},{"download_count":169618,"project":"runtime-builder"},{"download_count":169589,"project":"chialisp-puzzles"},{"download_count":169572,"project":"linopy"},{"download_count":169555,"project":"pnoise"},{"download_count":169554,"project":"chialisp-stdlib"},{"download_count":169516,"project":"onnxslim"},{"download_count":169367,"project":"reno"},{"download_count":169203,"project":"sagemaker-datawrangler"},{"download_count":169090,"project":"mlflow-watsonml"},{"download_count":169048,"project":"mkdocs-exclude"},{"download_count":169036,"project":"timg"},{"download_count":168936,"project":"firecrawl-py"},{"download_count":168823,"project":"vsketch"},{"download_count":168774,"project":"interpret-community"},{"download_count":168697,"project":"breakword"},{"download_count":168492,"project":"crytic-compile"},{"download_count":168433,"project":"tensordict-nightly"},{"download_count":168383,"project":"py3dmol"},{"download_count":168338,"project":"spark-expectations"},{"download_count":168282,"project":"flask-bootstrap"},{"download_count":168179,"project":"sqlmesh"},{"download_count":168059,"project":"auto-gpt-plugin-template"},{"download_count":168003,"project":"treetable"},{"download_count":167876,"project":"fs-sshfs"},{"download_count":167874,"project":"pyobjc-framework-coreservices"},{"download_count":167772,"project":"pytdigest"},{"download_count":167704,"project":"slack-webhook"},{"download_count":167700,"project":"music-tag"},{"download_count":167511,"project":"pycocoevalcap"},{"download_count":167411,"project":"ncls"},{"download_count":167367,"project":"apache-airflow-providers-openai"},{"download_count":167353,"project":"spaces"},{"download_count":167315,"project":"pyunpack"},{"download_count":167308,"project":"chainlit"},{"download_count":167246,"project":"hexdump"},{"download_count":167112,"project":"typer-cli"},{"download_count":167099,"project":"bpython"},{"download_count":166920,"project":"nerfacc"},{"download_count":166847,"project":"flake8-pytest-style"},{"download_count":166826,"project":"easypost"},{"download_count":166773,"project":"cdk-lambda-layer-curl"},{"download_count":166643,"project":"fastremap"},{"download_count":166586,"project":"nevergrad"},{"download_count":166561,"project":"yapps"},{"download_count":166549,"project":"locust-plugins"},{"download_count":166521,"project":"clevercsv"},{"download_count":166415,"project":"salesforce-fuelsdk"},{"download_count":166222,"project":"mo-logs"},{"download_count":166147,"project":"keyrings-cryptfile"},{"download_count":166045,"project":"ocrmypdf"},{"download_count":165965,"project":"methoddispatch"},{"download_count":165851,"project":"snakebite-py3"},{"download_count":165832,"project":"qh3"},{"download_count":165799,"project":"emmet-core"},{"download_count":165785,"project":"azure-messaging-webpubsubclient"},{"download_count":165740,"project":"ib3"},{"download_count":165670,"project":"django-nine"},{"download_count":165616,"project":"mo-kwargs"},{"download_count":165472,"project":"netapp-ontap"},{"download_count":165450,"project":"pangu"},{"download_count":165434,"project":"macaddress"},{"download_count":165320,"project":"pyaescrypt"},{"download_count":165296,"project":"tensorflow-data-validation"},{"download_count":165251,"project":"bcdoc"},{"download_count":165160,"project":"botframework-connector"},{"download_count":165084,"project":"purecloudplatformclientv2"},{"download_count":165079,"project":"pygltflib"},{"download_count":165036,"project":"arcade"},{"download_count":164901,"project":"pystaticconfiguration"},{"download_count":164840,"project":"opengraph-py3"},{"download_count":164808,"project":"tendo"},{"download_count":164719,"project":"pyobjc-framework-coreaudio"},{"download_count":164640,"project":"types-pycurl"},{"download_count":164632,"project":"google-cloud-appengine-admin"},{"download_count":164615,"project":"cnvrg"},{"download_count":164609,"project":"cloudsmith-cli"},{"download_count":164579,"project":"paypal-checkout-serversdk"},{"download_count":164578,"project":"raiutils"},{"download_count":164510,"project":"nvidia-nvimgcodec-cu12"},{"download_count":164356,"project":"ggshield"},{"download_count":164353,"project":"mkdocs-jupyter"},{"download_count":164347,"project":"monthdelta"},{"download_count":164171,"project":"hatch-nodejs-version"},{"download_count":164131,"project":"psd-tools"},{"download_count":164026,"project":"ocviapy"},{"download_count":163952,"project":"ml-wrappers"},{"download_count":163898,"project":"openvpn-status"},{"download_count":163785,"project":"pydot-ng"},{"download_count":163759,"project":"promptflow-tracing"},{"download_count":163755,"project":"dawg-python"},{"download_count":163698,"project":"textile"},{"download_count":163667,"project":"types-pywin32"},{"download_count":163661,"project":"py-vapid"},{"download_count":163581,"project":"a9x-webstatistics"},{"download_count":163512,"project":"krippendorff"},{"download_count":163480,"project":"types-geoip2"},{"download_count":163369,"project":"click-pathlib"},{"download_count":163362,"project":"qiskit-terra"},{"download_count":163335,"project":"pyobjc-framework-corebluetooth"},{"download_count":163325,"project":"databricks-labs-lsql"},{"download_count":163323,"project":"conda-forge-metadata"},{"download_count":163297,"project":"datasette"},{"download_count":163287,"project":"pylebedev"},{"download_count":163215,"project":"colorlover"},{"download_count":163211,"project":"pypsexec"},{"download_count":163186,"project":"django-ordered-model"},{"download_count":163168,"project":"py-healthcheck"},{"download_count":163154,"project":"djangoql"},{"download_count":163122,"project":"lob"},{"download_count":163073,"project":"pyclean"},{"download_count":162950,"project":"sagemaker-training"},{"download_count":162944,"project":"jina"},{"download_count":162930,"project":"dagster-pagerduty"},{"download_count":162903,"project":"dtlpymetrics"},{"download_count":162813,"project":"pinocchio"},{"download_count":162756,"project":"datetimerange"},{"download_count":162741,"project":"pytkdocs"},{"download_count":162665,"project":"gpy"},{"download_count":162556,"project":"django-loginas"},{"download_count":162517,"project":"abstract-solcatcher"},{"download_count":162383,"project":"pyobjc-framework-launchservices"},{"download_count":162363,"project":"speedtest-cli"},{"download_count":162357,"project":"solara"},{"download_count":162348,"project":"pysnow"},{"download_count":162309,"project":"pytest-mongodb"},{"download_count":162247,"project":"openai-messages-token-helper"},{"download_count":162228,"project":"pytest-testrail"},{"download_count":162178,"project":"wslink"},{"download_count":162151,"project":"pytutils"},{"download_count":162110,"project":"pyranges"},{"download_count":162075,"project":"anyjson"},{"download_count":162053,"project":"aiocontextvars"},{"download_count":161946,"project":"aliyun-python-sdk-cdn"},{"download_count":161895,"project":"encodec"},{"download_count":161808,"project":"fixturefilehandler"},{"download_count":161774,"project":"langgraph-checkpoint-postgres"},{"download_count":161734,"project":"types-babel"},{"download_count":161689,"project":"pypcap"},{"download_count":161655,"project":"oauth2-client"},{"download_count":161506,"project":"pytest-md"},{"download_count":161297,"project":"promptflow-devkit"},{"download_count":161277,"project":"gradio-imageslider"},{"download_count":161257,"project":"poppler-utils"},{"download_count":161207,"project":"fixture"},{"download_count":161180,"project":"mssql-django"},{"download_count":161139,"project":"aimrocks"},{"download_count":161138,"project":"promptflow-core"},{"download_count":161077,"project":"blacken-docs"},{"download_count":160958,"project":"union"},{"download_count":160952,"project":"meilisearch"},{"download_count":160947,"project":"sphinx-thebe"},{"download_count":160887,"project":"django-split-settings"},{"download_count":160820,"project":"classify-imports"},{"download_count":160820,"project":"django-hosts"},{"download_count":160798,"project":"django-better-admin-arrayfield"},{"download_count":160696,"project":"datasketches"},{"download_count":160669,"project":"runpod"},{"download_count":160667,"project":"nplusone"},{"download_count":160662,"project":"ga4gh-testbed-lib"},{"download_count":160605,"project":"japanize-matplotlib"},{"download_count":160580,"project":"pyobjc-framework-addressbook"},{"download_count":160532,"project":"randomname"},{"download_count":160508,"project":"pytest-helpers-namespace"},{"download_count":160457,"project":"azure-ai-inference"},{"download_count":160390,"project":"prefect-azure"},{"download_count":160301,"project":"dtw-python"},{"download_count":160298,"project":"pyobjc-framework-exceptionhandling"},{"download_count":160207,"project":"python3-ldap"},{"download_count":160195,"project":"numpy-indexed"},{"download_count":160192,"project":"flask-misaka"},{"download_count":160191,"project":"nvtx"},{"download_count":160111,"project":"awsiotpythonsdk"},{"download_count":160110,"project":"pypinyin-dict"},{"download_count":160095,"project":"pyobjc-framework-cfnetwork"},{"download_count":160008,"project":"sorted-nearest"},{"download_count":159992,"project":"http-ece"},{"download_count":159971,"project":"fissix"},{"download_count":159938,"project":"aws-cdk-aws-batch"},{"download_count":159873,"project":"django-bootstrap4"},{"download_count":159868,"project":"xtgeoviz"},{"download_count":159859,"project":"types-typed-ast"},{"download_count":159798,"project":"pymysqllock"},{"download_count":159774,"project":"earthengine-api"},{"download_count":159727,"project":"cirq"},{"download_count":159586,"project":"mediapy"},{"download_count":159490,"project":"graphene-file-upload"},{"download_count":159479,"project":"badapted"},{"download_count":159400,"project":"pyobjc-framework-security"},{"download_count":159388,"project":"grafana-client"},{"download_count":159320,"project":"twarc"},{"download_count":159288,"project":"test-results-parser"},{"download_count":159274,"project":"intel-cmplr-lib-ur"},{"download_count":159172,"project":"autogluon-vision"},{"download_count":159114,"project":"pymavlink"},{"download_count":159066,"project":"dragonfly2"},{"download_count":159034,"project":"aliyun-python-sdk-cms"},{"download_count":158981,"project":"sshkeyboard"},{"download_count":158871,"project":"olefileio-pl"},{"download_count":158802,"project":"pyobjc-framework-automator"},{"download_count":158770,"project":"aws-lambda-context"},{"download_count":158752,"project":"python-chess"},{"download_count":158709,"project":"aliyun-python-sdk-slb"},{"download_count":158702,"project":"robotframework-selenium2library"},{"download_count":158691,"project":"commonregex"},{"download_count":158666,"project":"aliyundrive-webdav"},{"download_count":158606,"project":"llama-index-embeddings-langchain"},{"download_count":158566,"project":"vanna"},{"download_count":158558,"project":"pystemmer"},{"download_count":158382,"project":"nordpool"},{"download_count":158328,"project":"resdata"},{"download_count":158228,"project":"validated-dc"},{"download_count":158207,"project":"pyobjc-framework-fsevents"},{"download_count":158170,"project":"nfoursid"},{"download_count":158163,"project":"petastorm"},{"download_count":158103,"project":"datashader"},{"download_count":158005,"project":"api4jenkins"},{"download_count":157933,"project":"autogluon-text"},{"download_count":157870,"project":"pottery"},{"download_count":157796,"project":"django-admin-interface"},{"download_count":157726,"project":"bamboolib"},{"download_count":157671,"project":"icmplib"},{"download_count":157547,"project":"pyobjc-framework-applescriptkit"},{"download_count":157538,"project":"seedir"},{"download_count":157494,"project":"flask-bootstrap4"},{"download_count":157451,"project":"mjml-python"},{"download_count":157321,"project":"parallel-ssh"},{"download_count":157214,"project":"pyobjc-framework-coredata"},{"download_count":157196,"project":"aws-cdk-aws-redshift-alpha"},{"download_count":157050,"project":"qiskit-ibm-runtime"},{"download_count":157047,"project":"cdk-ecr-deployment"},{"download_count":157017,"project":"apache-airflow-providers-cloudant"},{"download_count":156973,"project":"botbuilder-core"},{"download_count":156910,"project":"crc"},{"download_count":156820,"project":"requests-credssp"},{"download_count":156819,"project":"pangres"},{"download_count":156804,"project":"django-safedelete"},{"download_count":156799,"project":"pysnyk"},{"download_count":156744,"project":"googleauthentication"},{"download_count":156727,"project":"schema-salad"},{"download_count":156632,"project":"pyobjc-framework-coremedia"},{"download_count":156604,"project":"punch-py"},{"download_count":156430,"project":"django-vite"},{"download_count":156359,"project":"hkdf"},{"download_count":156191,"project":"glocaltokens"},{"download_count":156189,"project":"lorem-text"},{"download_count":156162,"project":"types-jmespath"},{"download_count":156103,"project":"pyobjc-framework-osakit"},{"download_count":156060,"project":"dagster-snowflake-pandas"},{"download_count":156003,"project":"hypothesis-graphql"},{"download_count":155969,"project":"cosmospy-protobuf"},{"download_count":155827,"project":"fastapi-better-logger"},{"download_count":155797,"project":"sigstore-protobuf-specs"},{"download_count":155769,"project":"dash-ag-grid"},{"download_count":155756,"project":"pyobjc-framework-diskarbitration"},{"download_count":155752,"project":"pddlgym"},{"download_count":155701,"project":"airflow-provider-hightouch"},{"download_count":155685,"project":"rocketchat-api"},{"download_count":155684,"project":"python-levenshtein-wheels"},{"download_count":155613,"project":"curated-tokenizers"},{"download_count":155609,"project":"apache-airflow-providers-jira"},{"download_count":155603,"project":"zoomus"},{"download_count":155540,"project":"psycopg2-pool"},{"download_count":155512,"project":"pyuwsgi"},{"download_count":155493,"project":"paramz"},{"download_count":155487,"project":"lpc-checksum"},{"download_count":155462,"project":"google-cloud-datacatalog-lineage"},{"download_count":155352,"project":"sphinx-markdown-tables"},{"download_count":155324,"project":"pylint-exit"},{"download_count":155231,"project":"legacy-api-wrap"},{"download_count":155224,"project":"tabpfn"},{"download_count":155207,"project":"sample-helper-aws-appconfig"},{"download_count":155182,"project":"libsast"},{"download_count":155181,"project":"envd"},{"download_count":155168,"project":"choreographer"},{"download_count":155157,"project":"cirq-google"},{"download_count":155089,"project":"dearpygui"},{"download_count":155033,"project":"hcloud"},{"download_count":154979,"project":"tf-slim"},{"download_count":154966,"project":"coqpit"},{"download_count":154961,"project":"colorhash"},{"download_count":154736,"project":"yorm"},{"download_count":154723,"project":"aspy-yaml"},{"download_count":154712,"project":"pyobjc-framework-discrecording"},{"download_count":154676,"project":"pyobjc-framework-coreaudiokit"},{"download_count":154674,"project":"protoc-gen-validate"},{"download_count":154344,"project":"apache-airflow-providers-apache-cassandra"},{"download_count":154279,"project":"progressbar33"},{"download_count":154277,"project":"python-statsd"},{"download_count":154238,"project":"user-agent"},{"download_count":154217,"project":"pyjq"},{"download_count":154209,"project":"fatamorgana"},{"download_count":154187,"project":"argparse-manpage"},{"download_count":154175,"project":"pyobjc-framework-installerplugins"},{"download_count":154162,"project":"pyobjc-framework-preferencepanes"},{"download_count":154147,"project":"pyobjc-framework-latentsemanticmapping"},{"download_count":154069,"project":"git-filter-repo"},{"download_count":154068,"project":"pyobjc-framework-webkit"},{"download_count":154022,"project":"pysodium"},{"download_count":153988,"project":"pyscreenshot"},{"download_count":153932,"project":"pulumi-gcp"},{"download_count":153897,"project":"tuspy"},{"download_count":153885,"project":"python-digitalocean"},{"download_count":153885,"project":"cron-validator"},{"download_count":153846,"project":"r7insight-python"},{"download_count":153767,"project":"pyviews"},{"download_count":153755,"project":"dagster-databricks"},{"download_count":153749,"project":"tf-keras-nightly"},{"download_count":153745,"project":"rodi"},{"download_count":153719,"project":"flex"},{"download_count":153619,"project":"fitz"},{"download_count":153614,"project":"optlang"},{"download_count":153602,"project":"speedtest"},{"download_count":153470,"project":"pywatchman"},{"download_count":153462,"project":"pdf2docx"},{"download_count":153357,"project":"sphinx-jupyterbook-latex"},{"download_count":153328,"project":"jupyter-latex-envs"},{"download_count":153318,"project":"proxy-py"},{"download_count":153223,"project":"bloom-filter2"},{"download_count":153216,"project":"django-revproxy"},{"download_count":153156,"project":"mozprocess"},{"download_count":153000,"project":"django-elasticsearch-dsl-drf"},{"download_count":152976,"project":"pytapo"},{"download_count":152918,"project":"sqloxide"},{"download_count":152870,"project":"axe-selenium-python"},{"download_count":152822,"project":"python-openid"},{"download_count":152817,"project":"voila"},{"download_count":152777,"project":"json-tricks"},{"download_count":152760,"project":"apache-airflow-providers-alibaba"},{"download_count":152649,"project":"sumologic-sdk"},{"download_count":152601,"project":"flexget"},{"download_count":152598,"project":"faust-streaming"},{"download_count":152594,"project":"pyobjc-framework-dvdplayback"},{"download_count":152584,"project":"eth-tester"},{"download_count":152571,"project":"pyobjc-framework-discrecordingui"},{"download_count":152544,"project":"benchling-api-client"},{"download_count":152514,"project":"dynamixel-sdk"},{"download_count":152440,"project":"genshi"},{"download_count":152401,"project":"pynliner"},{"download_count":152348,"project":"pytest-cpp"},{"download_count":152298,"project":"shiny"},{"download_count":152269,"project":"dynamicprompts"},{"download_count":152201,"project":"depinfo"},{"download_count":152179,"project":"pyobjc-framework-avfoundation"},{"download_count":152088,"project":"python-terraform"},{"download_count":152081,"project":"scann"},{"download_count":152068,"project":"mat4py"},{"download_count":152024,"project":"datetime-quarter"},{"download_count":151993,"project":"sphinx-multitoc-numbering"},{"download_count":151985,"project":"unlzw3"},{"download_count":151943,"project":"optuna-integration"},{"download_count":151931,"project":"password-strength"},{"download_count":151836,"project":"cdktf-cdktf-provider-newrelic"},{"download_count":151827,"project":"threaded"},{"download_count":151792,"project":"cornice"},{"download_count":151786,"project":"types-toposort"},{"download_count":151780,"project":"pyartifactory"},{"download_count":151659,"project":"psqlpy"},{"download_count":151620,"project":"sweeps"},{"download_count":151603,"project":"imodels"},{"download_count":151598,"project":"artifactory"},{"download_count":151582,"project":"django-rosetta"},{"download_count":151581,"project":"asgi-tools"},{"download_count":151571,"project":"pyobjc-framework-screensaver"},{"download_count":151556,"project":"alibabacloud-dingtalk"},{"download_count":151552,"project":"sklearn-pandas"},{"download_count":151533,"project":"pyexcel-xlsx"},{"download_count":151524,"project":"streamlit-folium"},{"download_count":151509,"project":"pyobjc-framework-syncservices"},{"download_count":151444,"project":"bullet"},{"download_count":151437,"project":"scout-apm"},{"download_count":151376,"project":"pytest-insta"},{"download_count":151334,"project":"enum-tools"},{"download_count":151271,"project":"sure"},{"download_count":151252,"project":"openvino-dev"},{"download_count":151220,"project":"markdown-include"},{"download_count":151177,"project":"sseclient"},{"download_count":151177,"project":"pyobjc-framework-coreml"},{"download_count":151164,"project":"pypeg2"},{"download_count":151160,"project":"mozfile"},{"download_count":151128,"project":"alien"},{"download_count":151047,"project":"robotframework-debuglibrary"},{"download_count":150984,"project":"databricks-test"},{"download_count":150937,"project":"torchcrepe"},{"download_count":150891,"project":"ruamel-base"},{"download_count":150877,"project":"pytubefix"},{"download_count":150777,"project":"aiosonos"},{"download_count":150679,"project":"pyobjc-framework-spritekit"},{"download_count":150634,"project":"django-pipeline"},{"download_count":150570,"project":"qcg-pilotjob"},{"download_count":150503,"project":"asyncpg-stubs"},{"download_count":150499,"project":"marrow-util"},{"download_count":150491,"project":"pystoi"},{"download_count":150474,"project":"resend"},{"download_count":150345,"project":"python-gdcm"},{"download_count":150321,"project":"libipld"},{"download_count":150310,"project":"cdk-common"},{"download_count":150272,"project":"meshtastic"},{"download_count":150263,"project":"osfclient"},{"download_count":150243,"project":"openunmix"},{"download_count":150123,"project":"grizz"},{"download_count":150087,"project":"astro-sdk-python"},{"download_count":150031,"project":"sigstore-rekor-types"},{"download_count":149985,"project":"py-cord"},{"download_count":149969,"project":"ai-flow-nightly"},{"download_count":149905,"project":"pims"},{"download_count":149828,"project":"shot-scraper"},{"download_count":149781,"project":"flake8-formatter-junit-xml"},{"download_count":149672,"project":"esdbclient"},{"download_count":149658,"project":"dbnd-spark"},{"download_count":149618,"project":"exponent-server-sdk"},{"download_count":149613,"project":"sagemaker-inference"},{"download_count":149574,"project":"python-magic-bin"},{"download_count":149499,"project":"marrow-mailer"},{"download_count":149492,"project":"pycdlib"},{"download_count":149478,"project":"clu"},{"download_count":149417,"project":"msg-parser"},{"download_count":149370,"project":"case-converter"},{"download_count":149322,"project":"django-rest-passwordreset"},{"download_count":149311,"project":"django-sesame"},{"download_count":149289,"project":"pydes"},{"download_count":149230,"project":"pybboxes"},{"download_count":149230,"project":"rapidocr-onnxruntime"},{"download_count":149181,"project":"pyobjc-framework-corewlan"},{"download_count":149167,"project":"sahi"},{"download_count":149132,"project":"pypeln"},{"download_count":149109,"project":"hdmf"},{"download_count":149064,"project":"pyobjc-framework-avkit"},{"download_count":149060,"project":"packaging-legacy"},{"download_count":149057,"project":"pyobjc-framework-searchkit"},{"download_count":149021,"project":"symspellpy"},{"download_count":149015,"project":"ipcqueue"},{"download_count":148985,"project":"apache-airflow-providers-apache-flink"},{"download_count":148969,"project":"perpetual"},{"download_count":148942,"project":"contexttimer"},{"download_count":148913,"project":"types-factory-boy"},{"download_count":148824,"project":"pyobjc-framework-notificationcenter"},{"download_count":148788,"project":"streamlit-option-menu"},{"download_count":148741,"project":"dbstream"},{"download_count":148678,"project":"pyobjc-framework-multipeerconnectivity"},{"download_count":148594,"project":"awslogs"},{"download_count":148552,"project":"sshfs"},{"download_count":148549,"project":"opentelemetry-propagator-ot-trace"},{"download_count":148454,"project":"no-manylinux"},{"download_count":148443,"project":"apache-airflow-providers-zendesk"},{"download_count":148424,"project":"aliyun-python-sdk-cs"},{"download_count":148334,"project":"ngram"},{"download_count":148305,"project":"hsaudiotag3k"},{"download_count":148301,"project":"botframework-streaming"},{"download_count":148301,"project":"pykdtree"},{"download_count":148285,"project":"objectpath"},{"download_count":148211,"project":"pyobjc-framework-servicemanagement"},{"download_count":148175,"project":"attrs-mate"},{"download_count":147987,"project":"skorch"},{"download_count":147974,"project":"pyqt5-tools"},{"download_count":147960,"project":"setfit"},{"download_count":147959,"project":"schedulefree"},{"download_count":147937,"project":"llama-index-vector-stores-milvus"},{"download_count":147841,"project":"tts"},{"download_count":147760,"project":"curated-transformers"},{"download_count":147759,"project":"tls-client"},{"download_count":147751,"project":"pyobjc-framework-corelocation"},{"download_count":147738,"project":"apache-airflow-providers-discord"},{"download_count":147571,"project":"spacy-curated-transformers"},{"download_count":147564,"project":"control"},{"download_count":147555,"project":"pyobjc-framework-coremediaio"},{"download_count":147512,"project":"django-rest-auth"},{"download_count":147475,"project":"colour-science"},{"download_count":147425,"project":"fontbakery"},{"download_count":147322,"project":"fuc"},{"download_count":147316,"project":"vonage"},{"download_count":147199,"project":"sphinx-comments"},{"download_count":147188,"project":"mosek"},{"download_count":147177,"project":"quantconnect-stubs"},{"download_count":147159,"project":"face-recognition"},{"download_count":147144,"project":"pyobjc-framework-vision"},{"download_count":147116,"project":"captcha"},{"download_count":147105,"project":"ur-rtde"},{"download_count":147038,"project":"flake8-json"},{"download_count":147020,"project":"pyobjc-framework-accounts"},{"download_count":146970,"project":"hype-html"},{"download_count":146914,"project":"pyobjc-framework-eventkit"},{"download_count":146906,"project":"cycode"},{"download_count":146880,"project":"llama-index-postprocessor-cohere-rerank"},{"download_count":146862,"project":"fastapi-azure-auth"},{"download_count":146853,"project":"prince"},{"download_count":146842,"project":"pyobjc-framework-securityinterface"},{"download_count":146803,"project":"pydevicetree"},{"download_count":146724,"project":"pyobjc-framework-colorsync"},{"download_count":146711,"project":"pyobjc-framework-contacts"},{"download_count":146641,"project":"pyobjc-framework-network"},{"download_count":146628,"project":"pyobjc-framework-applescriptobjc"},{"download_count":146540,"project":"pysingleton"},{"download_count":146527,"project":"linearmodels"},{"download_count":146523,"project":"badx12"},{"download_count":146518,"project":"llama-index-llms-langchain"},{"download_count":146513,"project":"multiping"},{"download_count":146505,"project":"reg"},{"download_count":146500,"project":"mssql-cli"},{"download_count":146463,"project":"pyobjc-framework-photos"},{"download_count":146457,"project":"pytest-reporter"},{"download_count":146423,"project":"flake8-annotations-complexity"},{"download_count":146399,"project":"pyobjc-framework-netfs"},{"download_count":146380,"project":"glpk"},{"download_count":146347,"project":"pypsa"},{"download_count":146296,"project":"pyobjc-framework-findersync"},{"download_count":146194,"project":"starlette-testclient"},{"download_count":146071,"project":"traceback-with-variables"},{"download_count":146053,"project":"testbook"},{"download_count":146041,"project":"unionai-actor"},{"download_count":146031,"project":"collective-checkdocs"},{"download_count":146013,"project":"pandasai"},{"download_count":146001,"project":"apache-airflow-providers-neo4j"},{"download_count":145964,"project":"cython-bbox"},{"download_count":145944,"project":"phidata"},{"download_count":145916,"project":"azureml-contrib-services"},{"download_count":145746,"project":"telegraph"},{"download_count":145663,"project":"pyobjc-framework-imagecapturecore"},{"download_count":145652,"project":"mozinfo"},{"download_count":145633,"project":"deep-merge"},{"download_count":145572,"project":"pyobjc-framework-scenekit"},{"download_count":145561,"project":"pyobjc-framework-mapkit"},{"download_count":145458,"project":"aiohttp-middlewares"},{"download_count":145448,"project":"flake8-literal"},{"download_count":145395,"project":"pyobjc-framework-gamecenter"},{"download_count":145388,"project":"meutils"},{"download_count":145385,"project":"pyworld"},{"download_count":145352,"project":"pyobjc-framework-storekit"},{"download_count":145344,"project":"pyobjc-framework-naturallanguage"},{"download_count":145323,"project":"tflite-runtime-nightly"},{"download_count":145282,"project":"pyobjc-framework-intents"},{"download_count":145272,"project":"pyuca"},{"download_count":145219,"project":"fairseq"},{"download_count":145212,"project":"pyobjc-framework-networkextension"},{"download_count":145197,"project":"pyobjc-framework-cryptotokenkit"},{"download_count":145188,"project":"pyobjc-framework-contactsui"},{"download_count":145172,"project":"pyobjc-framework-photosui"},{"download_count":145160,"project":"pyobjc-framework-safariservices"},{"download_count":145147,"project":"sanic-testing"},{"download_count":145133,"project":"pyobjc-framework-gamekit"},{"download_count":145131,"project":"airbyte-protocol-models-pdv2"},{"download_count":145100,"project":"pyobjc-framework-modelio"},{"download_count":145087,"project":"sweetener"},{"download_count":145079,"project":"rels"},{"download_count":145042,"project":"stringbender"},{"download_count":144992,"project":"pyobjc-framework-corespotlight"},{"download_count":144889,"project":"python-mecab-ko"},{"download_count":144885,"project":"pyobjc-framework-localauthentication"},{"download_count":144819,"project":"pyobjc-framework-gameplaykit"},{"download_count":144769,"project":"voyageai"},{"download_count":144763,"project":"pyobjc-framework-externalaccessory"},{"download_count":144718,"project":"openvds"},{"download_count":144653,"project":"mcrcon"},{"download_count":144605,"project":"pyodata"},{"download_count":144599,"project":"pyobjc-framework-securityfoundation"},{"download_count":144586,"project":"orb-billing"},{"download_count":144573,"project":"jupyter-leaflet"},{"download_count":144559,"project":"pybind11-stubgen"},{"download_count":144513,"project":"ipyfilechooser"},{"download_count":144473,"project":"cirq-ionq"},{"download_count":144381,"project":"pyrender"},{"download_count":144367,"project":"pymupdf4llm"},{"download_count":144353,"project":"icu"},{"download_count":144321,"project":"bag"},{"download_count":144315,"project":"uptime"},{"download_count":144299,"project":"tabulator"},{"download_count":144299,"project":"hookery"},{"download_count":144279,"project":"django-browser-reload"},{"download_count":144084,"project":"uharfbuzz"},{"download_count":144058,"project":"jose"},{"download_count":144014,"project":"pyobjc-framework-mediatoolbox"},{"download_count":143990,"project":"flytekitplugins-ray"},{"download_count":143969,"project":"pyobjc-framework-opendirectory"},{"download_count":143924,"project":"pyobjc-framework-scriptingbridge"},{"download_count":143879,"project":"loess"},{"download_count":143836,"project":"pyobjc-framework-gamecontroller"},{"download_count":143811,"project":"flytekitplugins-envd"},{"download_count":143800,"project":"pyobjc-framework-videotoolbox"},{"download_count":143791,"project":"pytest-test-groups"},{"download_count":143763,"project":"selenium-page-factory"},{"download_count":143704,"project":"apiflask"},{"download_count":143687,"project":"sfsimodels"},{"download_count":143651,"project":"iminuit"},{"download_count":143529,"project":"spur"},{"download_count":143517,"project":"wxpython"},{"download_count":143511,"project":"boilerpy3"},{"download_count":143491,"project":"bpyutils"},{"download_count":143459,"project":"exrex"},{"download_count":143395,"project":"pyobjc-framework-social"},{"download_count":143365,"project":"pyhdfe"},{"download_count":143332,"project":"pytest-describe"},{"download_count":143326,"project":"apache-airflow-providers-apache-drill"},{"download_count":143321,"project":"singlestoredb"},{"download_count":143314,"project":"pyobjc-framework-usernotifications"},{"download_count":143198,"project":"plotbin"},{"download_count":143196,"project":"pyuegc"},{"download_count":143185,"project":"rtoml"},{"download_count":143159,"project":"taming-transformers"},{"download_count":143076,"project":"marrow-interface"},{"download_count":143009,"project":"blackfire"},{"download_count":142944,"project":"bentoml"},{"download_count":142861,"project":"pyobjc-framework-mediaplayer"},{"download_count":142858,"project":"pyobjc-framework-medialibrary"},{"download_count":142856,"project":"meltanolabs-target-snowflake"},{"download_count":142840,"project":"pyobjc-framework-dictionaryservices"},{"download_count":142823,"project":"datetime-truncate"},{"download_count":142811,"project":"pyobjc-framework-cloudkit"},{"download_count":142805,"project":"airflow-clickhouse-plugin"},{"download_count":142786,"project":"pyobjc-framework-mediaaccessibility"},{"download_count":142786,"project":"pyobjc-framework-instantmessage"},{"download_count":142774,"project":"pyobjc-framework-iosurface"},{"download_count":142763,"project":"dacktool"},{"download_count":142751,"project":"hiyapyco"},{"download_count":142740,"project":"azure-mgmt-databricks"},{"download_count":142739,"project":"pyobjc-framework-ituneslibrary"},{"download_count":142714,"project":"aceye"},{"download_count":142556,"project":"power-grid-model"},{"download_count":142472,"project":"tskit"},{"download_count":142386,"project":"razorpay"},{"download_count":142380,"project":"pysnmpcrypto"},{"download_count":142343,"project":"plugp100"},{"download_count":142338,"project":"mondrian"},{"download_count":142305,"project":"aiohttp-fast-url-dispatcher"},{"download_count":142290,"project":"print-color"},{"download_count":142266,"project":"django-jsonform"},{"download_count":142260,"project":"drug-named-entity-recognition"},{"download_count":142217,"project":"lion-pytorch"},{"download_count":142180,"project":"html5lib-modern"},{"download_count":142144,"project":"roffio"},{"download_count":142141,"project":"ebooklib"},{"download_count":142089,"project":"geode-background"},{"download_count":142070,"project":"pypandoc-binary"},{"download_count":142064,"project":"phonetics"},{"download_count":142038,"project":"trufflehog3"},{"download_count":142033,"project":"aiojobs"},{"download_count":142026,"project":"pyobjc-framework-businesschat"},{"download_count":141993,"project":"firebolt-sdk"},{"download_count":141869,"project":"types-aiobotocore-sns"},{"download_count":141836,"project":"g2pkk"},{"download_count":141793,"project":"pyobjc-framework-adsupport"},{"download_count":141767,"project":"pyobjc-framework-inputmethodkit"},{"download_count":141703,"project":"pyobjc-framework-videosubscriberaccount"},{"download_count":141596,"project":"xdis"},{"download_count":141584,"project":"moment"},{"download_count":141435,"project":"pytest-markdown-docs"},{"download_count":141419,"project":"postgres"},{"download_count":141391,"project":"pypi-timemachine"},{"download_count":141348,"project":"veracode-api-signing"},{"download_count":141346,"project":"seeq"},{"download_count":141288,"project":"mtcnn"},{"download_count":141226,"project":"rtp"},{"download_count":141192,"project":"python-nmap"},{"download_count":141123,"project":"robyn"},{"download_count":141060,"project":"ssh-python"},{"download_count":141052,"project":"pyppeteer2"},{"download_count":140943,"project":"mrjob"},{"download_count":140858,"project":"whistle"},{"download_count":140760,"project":"pybind11-global"},{"download_count":140759,"project":"flask-flatpages"},{"download_count":140721,"project":"flake8-tuple"},{"download_count":140682,"project":"dash-daq"},{"download_count":140664,"project":"mozterm"},{"download_count":140635,"project":"lockattrs"},{"download_count":140609,"project":"pytest-embedded"},{"download_count":140584,"project":"pyldavis"},{"download_count":140580,"project":"minify-html"},{"download_count":140541,"project":"pscript"},{"download_count":140512,"project":"chromedriver-binary"},{"download_count":140508,"project":"langkit"},{"download_count":140449,"project":"pysparkip"},{"download_count":140443,"project":"randomwords"},{"download_count":140400,"project":"telegram"},{"download_count":140357,"project":"django-haystack"},{"download_count":140314,"project":"epics-pypdb"},{"download_count":140269,"project":"edit-distance"},{"download_count":140187,"project":"cwltool"},{"download_count":140093,"project":"sparkpost"},{"download_count":140079,"project":"pyresample"},{"download_count":140044,"project":"salesforce-api"},{"download_count":139927,"project":"config-formatter"},{"download_count":139909,"project":"ascvd"},{"download_count":139899,"project":"apache-airflow-providers-microsoft-psrp"},{"download_count":139877,"project":"colorspacious"},{"download_count":139827,"project":"pyfftw"},{"download_count":139820,"project":"salesforce-cdp-connector"},{"download_count":139809,"project":"pyre-check"},{"download_count":139736,"project":"dedupe"},{"download_count":139702,"project":"donfig"},{"download_count":139697,"project":"spacy-alignments"},{"download_count":139664,"project":"google-gax"},{"download_count":139657,"project":"foxglove-schemas-protobuf"},{"download_count":139645,"project":"colormath"},{"download_count":139620,"project":"kylinpy"},{"download_count":139538,"project":"simpleruleengine"},{"download_count":139450,"project":"pynwb"},{"download_count":139346,"project":"contextily"},{"download_count":139272,"project":"sqlacodegen"},{"download_count":139249,"project":"mongomock-motor"},{"download_count":139220,"project":"oslo-messaging"},{"download_count":139197,"project":"pyobjc-framework-collaboration"},{"download_count":139179,"project":"pypcd4"},{"download_count":139165,"project":"nvidia-nvjpeg-cu12"},{"download_count":139158,"project":"pansi"},{"download_count":139095,"project":"cloud-volume"},{"download_count":139093,"project":"basemap"},{"download_count":139017,"project":"python-i18n"},{"download_count":138924,"project":"pyobjc-framework-calendarstore"},{"download_count":138923,"project":"adbutils"},{"download_count":138905,"project":"rapids-dependency-file-generator"},{"download_count":138818,"project":"angr"},{"download_count":138795,"project":"syllapy"},{"download_count":138770,"project":"aiotask-context"},{"download_count":138768,"project":"types-reportlab"},{"download_count":138752,"project":"zappa"},{"download_count":138723,"project":"hatch-cython"},{"download_count":138723,"project":"wassima"},{"download_count":138719,"project":"esp-idf-monitor"},{"download_count":138638,"project":"rockset"},{"download_count":138593,"project":"pytest-embedded-serial"},{"download_count":138547,"project":"sudachidict-full"},{"download_count":138535,"project":"tfa-nightly"},{"download_count":138486,"project":"visdom"},{"download_count":138398,"project":"apache-airflow-providers-teradata"},{"download_count":138323,"project":"paradime-io"},{"download_count":138318,"project":"dracopy"},{"download_count":138311,"project":"amazon-textract-textractor"},{"download_count":138305,"project":"flask-mongoengine"},{"download_count":138291,"project":"pip-with-requires-python"},{"download_count":138227,"project":"django-dbbackup"},{"download_count":138197,"project":"luhn"},{"download_count":138158,"project":"swagger-ui-py"},{"download_count":138155,"project":"edge-tts"},{"download_count":138151,"project":"apache-airflow-providers-openfaas"},{"download_count":138117,"project":"cirq-aqt"},{"download_count":138088,"project":"ruff-lsp"},{"download_count":138042,"project":"owslib"},{"download_count":138003,"project":"cirq-rigetti"},{"download_count":137941,"project":"dataengine"},{"download_count":137774,"project":"pydlt"},{"download_count":137773,"project":"collectfast"},{"download_count":137768,"project":"lap"},{"download_count":137685,"project":"www-authenticate"},{"download_count":137640,"project":"pymobiledetect"},{"download_count":137609,"project":"msprime"},{"download_count":137562,"project":"arcticdb"},{"download_count":137561,"project":"pymongocrypt"},{"download_count":137541,"project":"drf-standardized-errors"},{"download_count":137412,"project":"adafruit-platformdetect"},{"download_count":137360,"project":"dlint"},{"download_count":137311,"project":"nvidia-nvjpeg2k-cu12"},{"download_count":137303,"project":"atlasclient"},{"download_count":137262,"project":"splinter"},{"download_count":137238,"project":"py-money"},{"download_count":137191,"project":"azure-ai-contentsafety"},{"download_count":137143,"project":"flake8-use-pathlib"},{"download_count":137097,"project":"dataclass-csv"},{"download_count":136975,"project":"mink"},{"download_count":136879,"project":"proto-google-cloud-datastore-v1"},{"download_count":136802,"project":"ecmwflibs"},{"download_count":136796,"project":"cmreshandler"},{"download_count":136780,"project":"stream-zip"},{"download_count":136746,"project":"grep-ast"},{"download_count":136714,"project":"pluginlib"},{"download_count":136673,"project":"pytest-embedded-serial-esp"},{"download_count":136479,"project":"pytest-embedded-idf"},{"download_count":136448,"project":"atomic-bomb-engine"},{"download_count":136351,"project":"ncnn"},{"download_count":136321,"project":"django-crontab"},{"download_count":136236,"project":"cirq-web"},{"download_count":136232,"project":"pydivert"},{"download_count":136204,"project":"lusid-sdk-preview"},{"download_count":136188,"project":"func-argparse"},{"download_count":136126,"project":"angreal"},{"download_count":136110,"project":"pulumi-random"},{"download_count":136026,"project":"laces"},{"download_count":135981,"project":"surpyval"},{"download_count":135947,"project":"texterrors"},{"download_count":135931,"project":"django-rest-polymorphic"},{"download_count":135927,"project":"oslo-db"},{"download_count":135923,"project":"logfire"},{"download_count":135922,"project":"pygtail"},{"download_count":135920,"project":"pygeoif"},{"download_count":135902,"project":"c2cciutils"},{"download_count":135891,"project":"aiohttp-zlib-ng"},{"download_count":135874,"project":"pgmpy"},{"download_count":135859,"project":"arq"},{"download_count":135748,"project":"htpasswd"},{"download_count":135745,"project":"kml2geojson"},{"download_count":135740,"project":"cogapp"},{"download_count":135732,"project":"google-events"},{"download_count":135678,"project":"waiter"},{"download_count":135580,"project":"ai-edge-litert-nightly"},{"download_count":135568,"project":"django-postgres-extra"},{"download_count":135555,"project":"antsibull-docs-parser"},{"download_count":135181,"project":"hubspot"},{"download_count":135165,"project":"augmax"},{"download_count":135161,"project":"aeppl-nightly"},{"download_count":135104,"project":"transformers-stream-generator"},{"download_count":135058,"project":"dash-extensions"},{"download_count":135030,"project":"cdo-sdk-python"},{"download_count":134999,"project":"range-key-dict"},{"download_count":134955,"project":"english"},{"download_count":134898,"project":"azureml"},{"download_count":134894,"project":"pybullet"},{"download_count":134874,"project":"pyap"},{"download_count":134844,"project":"expiring-dict"},{"download_count":134807,"project":"aioblescan"},{"download_count":134796,"project":"devpi-common"},{"download_count":134773,"project":"numpy-stl"},{"download_count":134741,"project":"databricksapi"},{"download_count":134710,"project":"clamd"},{"download_count":134616,"project":"resfo"},{"download_count":134522,"project":"dagstermill"},{"download_count":134493,"project":"pytest-regressions"},{"download_count":134475,"project":"otel-extensions"},{"download_count":134433,"project":"gekko"},{"download_count":134394,"project":"smartypants"},{"download_count":134367,"project":"mycdp"},{"download_count":134339,"project":"vonage-jwt"},{"download_count":134327,"project":"pytest-embedded-qemu"},{"download_count":134177,"project":"apache-airflow-providers-yandex"},{"download_count":134139,"project":"pymsalruntime"},{"download_count":134123,"project":"setupmeta"},{"download_count":134102,"project":"dataclass-type-validator"},{"download_count":134084,"project":"cnvrgv2"},{"download_count":134074,"project":"scikit-rf"},{"download_count":134073,"project":"interchange"},{"download_count":134055,"project":"demes"},{"download_count":134029,"project":"datawrapper"},{"download_count":134004,"project":"trame"},{"download_count":133911,"project":"fs-azureblob"},{"download_count":133908,"project":"airflow-code-editor"},{"download_count":133866,"project":"pysra"},{"download_count":133864,"project":"reacton"},{"download_count":133840,"project":"oslo-policy"},{"download_count":133835,"project":"powersimdata"},{"download_count":133649,"project":"jarowinkler"},{"download_count":133572,"project":"asr-evaluation"},{"download_count":133552,"project":"dane"},{"download_count":133386,"project":"mkdocs-git-authors-plugin"},{"download_count":133383,"project":"whylabs-textstat"},{"download_count":133265,"project":"py-machineid"},{"download_count":133263,"project":"connected-components-3d"},{"download_count":133238,"project":"types-pysftp"},{"download_count":133228,"project":"ghome-foyer-api"},{"download_count":133223,"project":"web-py"},{"download_count":133180,"project":"django-dotenv"},{"download_count":133166,"project":"geode-common"},{"download_count":133137,"project":"linuxpy"},{"download_count":133105,"project":"pytest-cover"},{"download_count":133071,"project":"pulumi-oci"},{"download_count":133066,"project":"khanaa"},{"download_count":133048,"project":"savepagenow"},{"download_count":133025,"project":"deltachat"},{"download_count":133021,"project":"fal-client"},{"download_count":132986,"project":"apache-airflow-providers-apache-hdfs"},{"download_count":132967,"project":"pyfaidx"},{"download_count":132955,"project":"dj-stripe"},{"download_count":132952,"project":"c7n-mailer"},{"download_count":132898,"project":"weakrefmethod"},{"download_count":132835,"project":"apispec-oneofschema"},{"download_count":132718,"project":"disba"},{"download_count":132675,"project":"cirq-pasqal"},{"download_count":132653,"project":"sphinx-intl"},{"download_count":132618,"project":"redis-om"},{"download_count":132587,"project":"levanter"},{"download_count":132464,"project":"pyclickup"},{"download_count":132386,"project":"placebo"},{"download_count":132360,"project":"mosaicml-streaming"},{"download_count":132344,"project":"pytiled-parser"},{"download_count":132288,"project":"pytest-tinybird"},{"download_count":132213,"project":"django-sass-processor"},{"download_count":132158,"project":"asciimatics"},{"download_count":132153,"project":"forbiddenfruit"},{"download_count":132147,"project":"pip-compile-multi"},{"download_count":132014,"project":"testix"},{"download_count":131951,"project":"autovizwidget"},{"download_count":131899,"project":"fs-gcsfs"},{"download_count":131890,"project":"pulpcore-client"},{"download_count":131889,"project":"editdistpy"},{"download_count":131847,"project":"pytest-redis"},{"download_count":131829,"project":"pygitguardian"},{"download_count":131826,"project":"jump-consistent-hash"},{"download_count":131766,"project":"kaldi-python-io"},{"download_count":131743,"project":"mysql-connector-python-rf"},{"download_count":131694,"project":"bnunicodenormalizer"},{"download_count":131693,"project":"flask-cloudflared"},{"download_count":131644,"project":"mlserver-mlflow"},{"download_count":131565,"project":"duplocloud-client"},{"download_count":131559,"project":"hug"},{"download_count":131551,"project":"py2neo-history"},{"download_count":131547,"project":"ipytree"},{"download_count":131512,"project":"wells"},{"download_count":131453,"project":"types-click-spinner"},{"download_count":131438,"project":"onnx-graphsurgeon"},{"download_count":131438,"project":"sas7bdat"},{"download_count":131410,"project":"jupyter-dash"},{"download_count":131389,"project":"secweb"},{"download_count":131305,"project":"python-bitcoinlib"},{"download_count":131272,"project":"fuzzyfinder"},{"download_count":131218,"project":"gplearn"},{"download_count":131166,"project":"throttler"},{"download_count":131140,"project":"jax-jumpy"},{"download_count":131135,"project":"cdk-serverless-clamscan"},{"download_count":131129,"project":"loadimg"},{"download_count":131088,"project":"setoptconf"},{"download_count":131074,"project":"dirhash"},{"download_count":131055,"project":"allennlp"},{"download_count":131044,"project":"pyone"},{"download_count":131027,"project":"ipadic"},{"download_count":130992,"project":"trogon"},{"download_count":130986,"project":"tinynetrc"},{"download_count":130978,"project":"pyop"},{"download_count":130934,"project":"ldap"},{"download_count":130920,"project":"pdb-attach"},{"download_count":130836,"project":"fastwarc"},{"download_count":130779,"project":"customerio"},{"download_count":130709,"project":"aws-cdk-aws-kinesisfirehose-destinations-alpha"},{"download_count":130656,"project":"pytest-shutil"},{"download_count":130643,"project":"bed-reader"},{"download_count":130573,"project":"ropt-dakota"},{"download_count":130535,"project":"devpi-client"},{"download_count":130513,"project":"srt"},{"download_count":130479,"project":"hail"},{"download_count":130459,"project":"darts"},{"download_count":130418,"project":"jh2"},{"download_count":130303,"project":"openmetadata-ingestion"},{"download_count":130296,"project":"python-magnumclient"},{"download_count":130282,"project":"str2bool"},{"download_count":130219,"project":"pyjavaproperties3"},{"download_count":130146,"project":"betacal"},{"download_count":130133,"project":"pytest-lazy-fixtures"},{"download_count":130125,"project":"nuitka"},{"download_count":130118,"project":"zi-api-auth-client"},{"download_count":129981,"project":"telnetlib3"},{"download_count":129937,"project":"zhinst-timing-models"},{"download_count":129928,"project":"pystrata"},{"download_count":129841,"project":"lumigo-core"},{"download_count":129815,"project":"bio-grumpy"},{"download_count":129648,"project":"vbuild"},{"download_count":129523,"project":"cachier"},{"download_count":129475,"project":"django-pandas"},{"download_count":129442,"project":"tgi"},{"download_count":129393,"project":"httpsig"},{"download_count":129386,"project":"elasticsearch5"},{"download_count":129345,"project":"xvfbwrapper"},{"download_count":129182,"project":"sphinxcontrib-redoc"},{"download_count":129156,"project":"snakemake"},{"download_count":129093,"project":"wired"},{"download_count":129059,"project":"styleframe"},{"download_count":129010,"project":"abess"},{"download_count":129002,"project":"pi"},{"download_count":128983,"project":"oslo-service"},{"download_count":128935,"project":"openpyxl-stubs"},{"download_count":128882,"project":"cypari2"},{"download_count":128874,"project":"intake"},{"download_count":128846,"project":"pytest-coverage"},{"download_count":128831,"project":"yolov5"},{"download_count":128802,"project":"pyrad"},{"download_count":128711,"project":"chacha20poly1305-reuseable"},{"download_count":128650,"project":"apngasm-python"},{"download_count":128648,"project":"molotov"},{"download_count":128580,"project":"cocotb"},{"download_count":128547,"project":"flake8-todo"},{"download_count":128527,"project":"pdfreader"},{"download_count":128498,"project":"pyzed"},{"download_count":128493,"project":"amazon-braket-sdk"},{"download_count":128413,"project":"twisted-iocpsupport"},{"download_count":128295,"project":"rasterstats"},{"download_count":128259,"project":"paragami"},{"download_count":128225,"project":"rsconnect-python"},{"download_count":128143,"project":"django-cache-memoize"},{"download_count":128139,"project":"stochopy"},{"download_count":128139,"project":"translators"},{"download_count":128006,"project":"verlib2"},{"download_count":127985,"project":"unionmeta-byoc"},{"download_count":127962,"project":"types-aws-xray-sdk"},{"download_count":127941,"project":"bigdl-chronos"},{"download_count":127867,"project":"aws-cdk-aws-fsx"},{"download_count":127796,"project":"airportsdata"},{"download_count":127789,"project":"python-math"},{"download_count":127780,"project":"scantree"},{"download_count":127697,"project":"usercloudssdk"},{"download_count":127687,"project":"colpali-engine"},{"download_count":127682,"project":"aws-packages"},{"download_count":127628,"project":"pytest-slack"},{"download_count":127617,"project":"jaraco-logging"},{"download_count":127374,"project":"datadiff"},{"download_count":127287,"project":"aws-cdk-aws-neptune-alpha"},{"download_count":127260,"project":"aws-cdk-aws-kinesisfirehose-alpha"},{"download_count":127224,"project":"soda-core-bigquery"},{"download_count":127218,"project":"python-must"},{"download_count":127171,"project":"tkintermapview"},{"download_count":127126,"project":"python-mecab-ko-dic"},{"download_count":127125,"project":"trio-typing"},{"download_count":127014,"project":"rethinkdb"},{"download_count":126998,"project":"types-mysqlclient"},{"download_count":126986,"project":"percy"},{"download_count":126982,"project":"zhinst-core"},{"download_count":126951,"project":"hdijupyterutils"},{"download_count":126909,"project":"streamlit-authenticator"},{"download_count":126890,"project":"django-utils-six"},{"download_count":126868,"project":"tensorflow-macos"},{"download_count":126864,"project":"flatpack"},{"download_count":126856,"project":"pytest-logger"},{"download_count":126783,"project":"pytest-reraise"},{"download_count":126710,"project":"gluoncv"},{"download_count":126608,"project":"pyproject-toml"},{"download_count":126587,"project":"umf"},{"download_count":126572,"project":"copulas"},{"download_count":126463,"project":"django-simple-captcha"},{"download_count":126437,"project":"edk2-pytool-library"},{"download_count":126406,"project":"oschmod"},{"download_count":126367,"project":"datastreampy"},{"download_count":126310,"project":"pylas"},{"download_count":126246,"project":"sagemaker-scikit-learn-extension"},{"download_count":126239,"project":"cruft"},{"download_count":126199,"project":"basedpyright"},{"download_count":126097,"project":"accelerator-toolbox"},{"download_count":126069,"project":"pytest-grpc"},{"download_count":126042,"project":"bangla"},{"download_count":126020,"project":"mteb"},{"download_count":125908,"project":"docplex"},{"download_count":125862,"project":"opencensus-ext-flask"},{"download_count":125809,"project":"islpy"},{"download_count":125799,"project":"typesense"},{"download_count":125785,"project":"vermin"},{"download_count":125784,"project":"conda"},{"download_count":125777,"project":"domaintools-api"},{"download_count":125760,"project":"sanic-cors"},{"download_count":125668,"project":"climb"},{"download_count":125409,"project":"git-pylint-commit-hook"},{"download_count":125406,"project":"findimports"},{"download_count":125294,"project":"apache-airflow-providers-apache-kylin"},{"download_count":125262,"project":"openseespy"},{"download_count":125255,"project":"libtmux"},{"download_count":125211,"project":"opendatasets"},{"download_count":125093,"project":"html-to-json"},{"download_count":125084,"project":"docling"},{"download_count":125063,"project":"homebase"},{"download_count":125031,"project":"onnxoptimizer"},{"download_count":124998,"project":"ghastoolkit"},{"download_count":124983,"project":"sarif-tools"},{"download_count":124886,"project":"apache-airflow-providers-dingding"},{"download_count":124886,"project":"censys"},{"download_count":124852,"project":"nvgpu"},{"download_count":124825,"project":"zodb3"},{"download_count":124747,"project":"email"},{"download_count":124728,"project":"phx-class-registry"},{"download_count":124683,"project":"pylibiio"},{"download_count":124676,"project":"django-bootstrap3"},{"download_count":124640,"project":"alphafold3-pytorch"},{"download_count":124617,"project":"auto-py-to-exe"},{"download_count":124561,"project":"ochre"},{"download_count":124400,"project":"tbxi"},{"download_count":124359,"project":"sdcclient"},{"download_count":124340,"project":"unsync"},{"download_count":124300,"project":"ipinfo"},{"download_count":124269,"project":"ops-scenario"},{"download_count":124236,"project":"prefect-slack"},{"download_count":124230,"project":"gcloud-aio-datastore"},{"download_count":124176,"project":"yt"},{"download_count":124160,"project":"streamlit-antd-components"},{"download_count":124008,"project":"hangul-romanize"},{"download_count":124003,"project":"transparent-background"},{"download_count":124000,"project":"taskcluster"},{"download_count":123946,"project":"pytest-explicit"},{"download_count":123941,"project":"clip-anytorch"},{"download_count":123667,"project":"apache-airflow-providers-apache-pig"},{"download_count":123628,"project":"azureml-contrib-notebook"},{"download_count":123619,"project":"plexapi"},{"download_count":123597,"project":"accelerator"},{"download_count":123530,"project":"avalara"},{"download_count":123484,"project":"frontend"},{"download_count":123484,"project":"oslo-middleware"},{"download_count":123480,"project":"irc"},{"download_count":123465,"project":"pycld2"},{"download_count":123425,"project":"css-html-js-minify"},{"download_count":123424,"project":"hyundai-kia-connect-api"},{"download_count":123417,"project":"pyad"},{"download_count":123349,"project":"apache-airflow-providers-apache-impala"},{"download_count":123263,"project":"pycln"},{"download_count":123249,"project":"boto3-stubs-full"},{"download_count":123230,"project":"rook"},{"download_count":123217,"project":"apache-airflow-providers-singularity"},{"download_count":122835,"project":"pwntools"},{"download_count":122763,"project":"frida-tools"},{"download_count":122755,"project":"mkdocs-d2-plugin"},{"download_count":122705,"project":"rfc8785"},{"download_count":122638,"project":"unavailable-object"},{"download_count":122604,"project":"dash-auth"},{"download_count":122590,"project":"uwsgitop"},{"download_count":122538,"project":"bioutils"},{"download_count":122518,"project":"urllib3-future"},{"download_count":122517,"project":"aind-data-schema"},{"download_count":122494,"project":"tencentcloud-sdk-python-common"},{"download_count":122488,"project":"codecov-cli"},{"download_count":122478,"project":"asyncio-atexit"},{"download_count":122470,"project":"aioregistry"},{"download_count":122464,"project":"django-tenants"},{"download_count":122416,"project":"ydb-dbapi"},{"download_count":122228,"project":"docx2pdf"},{"download_count":122203,"project":"apache-airflow-providers-segment"},{"download_count":122171,"project":"htag"},{"download_count":122121,"project":"rush"},{"download_count":122092,"project":"flask-cognito"},{"download_count":122051,"project":"pystyle"},{"download_count":122031,"project":"pyyml"},{"download_count":122015,"project":"yake"},{"download_count":122013,"project":"django-sequences"},{"download_count":121954,"project":"django-parler"},{"download_count":121907,"project":"sexpdata"},{"download_count":121885,"project":"cloud-files"},{"download_count":121873,"project":"flake8-unused-arguments"},{"download_count":121867,"project":"mmcv"},{"download_count":121861,"project":"pynetdicom"},{"download_count":121855,"project":"playsound"},{"download_count":121846,"project":"types-aiobotocore-secretsmanager"},{"download_count":121807,"project":"djangorestframework-recursive"},{"download_count":121778,"project":"databricks-sql"},{"download_count":121749,"project":"datashape"},{"download_count":121712,"project":"pytest-arraydiff"},{"download_count":121669,"project":"colored-traceback"},{"download_count":121619,"project":"colcon-core"},{"download_count":121606,"project":"aspy-refactor-imports"},{"download_count":121591,"project":"obsarray"},{"download_count":121580,"project":"fqfa"},{"download_count":121529,"project":"bytechomp"},{"download_count":121513,"project":"flake8-fixme"},{"download_count":121449,"project":"paver"},{"download_count":121431,"project":"pandas-td"},{"download_count":121368,"project":"ownercredit"},{"download_count":121341,"project":"apache-airflow-providers-qdrant"},{"download_count":121300,"project":"check-wheel-contents"},{"download_count":121253,"project":"logtail-python"},{"download_count":121230,"project":"gruut-ipa"},{"download_count":121217,"project":"token-bucket"},{"download_count":121191,"project":"flake8-no-implicit-concat"},{"download_count":121173,"project":"cyvcf2"},{"download_count":121108,"project":"autotrain-advanced"},{"download_count":121004,"project":"pyangbind"},{"download_count":120983,"project":"openqasm3"},{"download_count":120913,"project":"pysml"},{"download_count":120838,"project":"mt-940"},{"download_count":120823,"project":"django-encrypted-model-fields"},{"download_count":120809,"project":"pytest-tornasync"},{"download_count":120780,"project":"peewee-migrate"},{"download_count":120754,"project":"bowler"},{"download_count":120716,"project":"opencensus-ext-stackdriver"},{"download_count":120679,"project":"arro3-compute"},{"download_count":120627,"project":"trufflehogregexes"},{"download_count":120583,"project":"interpret"},{"download_count":120447,"project":"ewah-bool-utils"},{"download_count":120444,"project":"vaex-core"},{"download_count":120388,"project":"minijinja"},{"download_count":120275,"project":"fifolock"},{"download_count":120270,"project":"hive-metastore-client"},{"download_count":120269,"project":"asdf"},{"download_count":120265,"project":"compressed-segmentation"},{"download_count":120253,"project":"arro3-core"},{"download_count":120251,"project":"lmdeploy"},{"download_count":120233,"project":"gamma-pytools"},{"download_count":120220,"project":"appdirs-stubs"},{"download_count":120205,"project":"asyncmock"},{"download_count":120176,"project":"pyts"},{"download_count":120175,"project":"dataframe-image"},{"download_count":120157,"project":"shimmy"},{"download_count":120156,"project":"pyadi-iio"},{"download_count":120128,"project":"grnhse-api"},{"download_count":120094,"project":"sagemaker-pyspark"},{"download_count":120080,"project":"tinybird-cdk"},{"download_count":120030,"project":"gpio"},{"download_count":119981,"project":"pyjokes"},{"download_count":119970,"project":"pipe"},{"download_count":119929,"project":"honeycomb-opentelemetry"},{"download_count":119929,"project":"aws-cdk-aws-imagebuilder"},{"download_count":119926,"project":"eciespy"},{"download_count":119758,"project":"azure-databricks-api"},{"download_count":119681,"project":"uptrace"},{"download_count":119647,"project":"rookiepy"},{"download_count":119604,"project":"getschema"},{"download_count":119601,"project":"burr"},{"download_count":119597,"project":"doublemetaphone"},{"download_count":119592,"project":"vl-convert-python"},{"download_count":119568,"project":"youtokentome"},{"download_count":119562,"project":"oslo-cache"},{"download_count":119432,"project":"pytest-json"},{"download_count":119431,"project":"chromedriver-py"},{"download_count":119424,"project":"python-periphery"},{"download_count":119404,"project":"subprocess-run"},{"download_count":119399,"project":"google-cloud-alloydb"},{"download_count":119352,"project":"portage"},{"download_count":119343,"project":"asyncua"},{"download_count":119338,"project":"spacy-pkuseg"},{"download_count":119338,"project":"types-qrcode"},{"download_count":119317,"project":"aioodbc"},{"download_count":119315,"project":"shodan"},{"download_count":119255,"project":"rio-tiler"},{"download_count":119237,"project":"scim2-filter-parser"},{"download_count":119216,"project":"scikit-surprise"},{"download_count":119210,"project":"jaraco-stream"},{"download_count":119061,"project":"wmill-pg"},{"download_count":118964,"project":"llama-index-llms-watsonx"},{"download_count":118936,"project":"pythonpsi"},{"download_count":118871,"project":"pyhs2"},{"download_count":118859,"project":"fastapi-sso"},{"download_count":118828,"project":"strawberry-graphql-django"},{"download_count":118821,"project":"zxing-cpp"},{"download_count":118798,"project":"sphinxemoji"},{"download_count":118796,"project":"argostranslate"},{"download_count":118795,"project":"datasetsforecast"},{"download_count":118785,"project":"azure-mgmt-kubernetesconfiguration"},{"download_count":118757,"project":"keystonemiddleware"},{"download_count":118745,"project":"python-lzf"},{"download_count":118742,"project":"environ"},{"download_count":118734,"project":"ipapy"},{"download_count":118692,"project":"panphon"},{"download_count":118606,"project":"dsnparse"},{"download_count":118578,"project":"onnx2tf"},{"download_count":118523,"project":"lseg-data"},{"download_count":118514,"project":"samsungtvws"},{"download_count":118496,"project":"dtaidistance"},{"download_count":118458,"project":"deflate"},{"download_count":118446,"project":"koheesio"},{"download_count":118416,"project":"zip-files"},{"download_count":118348,"project":"afeng-py-tools"},{"download_count":118273,"project":"pygwalker"},{"download_count":118250,"project":"dragonfly-energy"},{"download_count":118164,"project":"google-cloud-retail"},{"download_count":118090,"project":"jupyterlab-lsp"},{"download_count":118088,"project":"arro3-io"},{"download_count":118066,"project":"gcloud-aio-taskqueue"},{"download_count":118042,"project":"clickhouse-pool"},{"download_count":118036,"project":"unpaddedbase64"},{"download_count":118032,"project":"promptflow"},{"download_count":118020,"project":"llama-index-llms-ibm"},{"download_count":117943,"project":"django-htmlmin"},{"download_count":117936,"project":"mpire"},{"download_count":117910,"project":"ppscore"},{"download_count":117754,"project":"playwright-stealth"},{"download_count":117749,"project":"llama-index-embeddings-ibm"},{"download_count":117672,"project":"prodigyopt"},{"download_count":117663,"project":"django-activity-stream"},{"download_count":117662,"project":"aspidites"},{"download_count":117585,"project":"snscrape"},{"download_count":117582,"project":"flake8-pie"},{"download_count":117570,"project":"aesara"},{"download_count":117570,"project":"aws-sso-lib"},{"download_count":117522,"project":"dumb-init"},{"download_count":117520,"project":"tensorflow-io-nightly"},{"download_count":117499,"project":"ttkbootstrap"},{"download_count":117496,"project":"dapr"},{"download_count":117482,"project":"sklearndf"},{"download_count":117462,"project":"apache-airflow-providers-arangodb"},{"download_count":117444,"project":"dtreeviz"},{"download_count":117436,"project":"reuters-style"},{"download_count":117403,"project":"ipsos-credibility-interval"},{"download_count":117391,"project":"creosote"},{"download_count":117386,"project":"pyqt-builder"},{"download_count":117352,"project":"atcf-data-parser"},{"download_count":117293,"project":"gcloud-rest-datastore"},{"download_count":117269,"project":"flake8-requirements"},{"download_count":117209,"project":"pytest-fixture-config"},{"download_count":117199,"project":"gruut-lang-en"},{"download_count":117197,"project":"mplcursors"},{"download_count":117187,"project":"runstats"},{"download_count":117174,"project":"deepchem"},{"download_count":117136,"project":"finbourne-access-sdk"},{"download_count":117035,"project":"yt-dlp-youtube-accesstoken"},{"download_count":117014,"project":"pyscf"},{"download_count":116968,"project":"rawpy"},{"download_count":116925,"project":"django-admin-inline-paginator"},{"download_count":116890,"project":"brainstem"},{"download_count":116858,"project":"style"},{"download_count":116737,"project":"simple-tornado"},{"download_count":116693,"project":"onnx-simplifier"},{"download_count":116666,"project":"einx"},{"download_count":116664,"project":"aws-wsgi"},{"download_count":116660,"project":"wsaccel"},{"download_count":116631,"project":"milvus"},{"download_count":116618,"project":"anymarkup-core"},{"download_count":116581,"project":"django-upgrade"},{"download_count":116561,"project":"pybaseconv"},{"download_count":116538,"project":"aspose-cells"},{"download_count":116504,"project":"pygrok"},{"download_count":116481,"project":"openseespylinux"},{"download_count":116478,"project":"mosaicml-cli"},{"download_count":116453,"project":"contentful"},{"download_count":116398,"project":"softlayer"},{"download_count":116386,"project":"mda-xdrlib"},{"download_count":116379,"project":"paddle"},{"download_count":116357,"project":"tap-gladly"},{"download_count":116356,"project":"mdanalysis"},{"download_count":116310,"project":"dxpy"},{"download_count":116309,"project":"aichar"},{"download_count":116296,"project":"tap-aftership"},{"download_count":116284,"project":"fillpdf"},{"download_count":116273,"project":"gruut"},{"download_count":116216,"project":"tiledb"},{"download_count":116180,"project":"redo"},{"download_count":116170,"project":"rwlock"},{"download_count":116108,"project":"ropgadget"},{"download_count":116072,"project":"pysigma"},{"download_count":116063,"project":"azure-communication-sms"},{"download_count":116062,"project":"squarify"},{"download_count":116002,"project":"django-permissions-policy"},{"download_count":115997,"project":"trame-client"},{"download_count":115996,"project":"autoprotocol"},{"download_count":115996,"project":"markovify"},{"download_count":115917,"project":"boddle"},{"download_count":115895,"project":"lastversion"},{"download_count":115892,"project":"lookml"},{"download_count":115806,"project":"ipython-sql"},{"download_count":115741,"project":"ansible-vault"},{"download_count":115725,"project":"aws-cdk-aws-kinesisanalytics-flink-alpha"},{"download_count":115707,"project":"pytest-md-report"},{"download_count":115698,"project":"gcloud-rest-bigquery"},{"download_count":115605,"project":"logstash-formatter"},{"download_count":115537,"project":"types-pyrfc3339"},{"download_count":115522,"project":"dbt-trino"},{"download_count":115516,"project":"cel-python"},{"download_count":115512,"project":"sparse-dot-topn"},{"download_count":115469,"project":"ai21"},{"download_count":115463,"project":"get-video-properties"},{"download_count":115265,"project":"jaxopt"},{"download_count":115264,"project":"flask-openapi3"},{"download_count":115264,"project":"uuid-shortener-py"},{"download_count":115181,"project":"trie"},{"download_count":115127,"project":"apache-airflow-providers-opensearch"},{"download_count":115116,"project":"ara"},{"download_count":115082,"project":"sqladmin"},{"download_count":115062,"project":"fastapi-restful"},{"download_count":115057,"project":"keyphrase-vectorizers"},{"download_count":114976,"project":"pypyr"},{"download_count":114938,"project":"yeref"},{"download_count":114919,"project":"serialize"},{"download_count":114821,"project":"laspy"},{"download_count":114775,"project":"impall"},{"download_count":114743,"project":"dynamic-yaml"},{"download_count":114736,"project":"loralib"},{"download_count":114726,"project":"anymarkup"},{"download_count":114668,"project":"osprofiler"},{"download_count":114638,"project":"pytest-cache"},{"download_count":114587,"project":"flask-log-request-id"},{"download_count":114555,"project":"benchling-sdk"},{"download_count":114547,"project":"dbus-python"},{"download_count":114543,"project":"exitstatus"},{"download_count":114532,"project":"honeycomb-beeline"},{"download_count":114507,"project":"hyperleaup"},{"download_count":114498,"project":"iterfzf"},{"download_count":114497,"project":"mypy-baseline"},{"download_count":114395,"project":"pytextrank"},{"download_count":114342,"project":"rebound"},{"download_count":114342,"project":"compel"},{"download_count":114269,"project":"scholarly"},{"download_count":114240,"project":"recurly"}]} diff --git a/trim.py b/trim.py new file mode 100644 index 0000000..272c86b --- /dev/null +++ b/trim.py @@ -0,0 +1,34 @@ +""" +Take an input JSON file and keep only the first LIMIT rows +of the "rows" array in the JSON file. +""" + +from __future__ import annotations + +import argparse +import json + + +def trim_json(input_file: str, limit: int) -> None: + with open(input_file) as f: + data = json.load(f) + data["rows"] = data["rows"][:limit] + print(json.dumps(data, indent=0)) + + +if __name__ == "__main__": + parser = argparse.ArgumentParser() + parser.add_argument( + "--json", + type=str, + default="top-pypi-packages-30-days-all.json", + help="The input JSON file to trim", + ) + parser.add_argument( + "--limit", + type=int, + default=8000, + help="How many rows to keep", + ) + args = parser.parse_args() + trim_json(args.json, args.limit)