Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2024-03 follow-up #1309

Closed
11 tasks done
stonebig opened this issue Apr 10, 2024 · 10 comments
Closed
11 tasks done

Release 2024-03 follow-up #1309

stonebig opened this issue Apr 10, 2024 · 10 comments

Comments

@stonebig
Copy link
Contributor

stonebig commented Apr 10, 2024

release date: mid-june

wanted:

  • Jupyterlab-4.2.1+ (seems it will be on time nearly on time)
  • a free-threading [experimental] WinPython:
    • goal is keep developers moving forward also on windows,
    • usability hope is 25% slower only single-thread, 3x faster on a 4 cpu
  • simplify, clean-up, and debug WinPython internals
  • numba-0.60.0
  • preparing for "the great Scientific Python Apocalypse" (next cycle):
  • DELAYED:
    • python-3.13.0b3 (b2 only), about 7% faster single-thread, JIT & free-threding remain experimental
    • full cleanups to welcome numpy-2

focus:

  • simplification of build and maintenance:
    • cleanup in the pre-pip aera code, now outdated
    • faster building: reduce package list, final size + pip progressing in speed New resolver takes 1-2 hours to install a large requirements file pypa/pip#12314
    • remove qtconsole icon
    • re-add powershell icon
    • less code to carry-on: drop no more used Qt code (since the drop of Qt ControlPanel), cx_freeze outdated helpers, ...
    • Python needs for a build is down to WinPythondot + flit + packaging (but requires WinPython-3.8+)
  • follow packaging summit, consider hash checking
  • free-threading test:
  • update examples on import _xxsubinterpreters as _interpreters, and free_threading
  • llm: AI agents and the 7b models, whispers made easy coming to town ?
  • fighting the fat: polars for example is growing in size by 50% per year (now twice bigger than pandas-2)

exploration:

  • jupyterlite more
  • llm and generative AI: whisper.cpp
  • replacing torch per jax[cpu] would shrink WinPython by 100Mo (or not increase per 200 More) ?

Direction:

  • speed-debt reduction:
    • latest python 3.13 facts, 3.14 seems the place where jit/free-threads/multi-interpreters will be available in full glory ...
    • easier multi-thread python 3.13 'free-threading' progress
    • faster data analysis: numpy-2, pandas-3, scikit-learn integrating polars
  • llvm local small equivalent to ggerganov/whisper.cpp
  • ubiquity:
@stonebig
Copy link
Contributor Author

stonebig commented Apr 10, 2024

audit-trail:

  • post-rc: add a 32bit wheel because some people are still in need and Steve Dower said it won't die soon
  • ISSUE: the "WinPython Terminal" icon doesn't include WinPython environnement because defaulted per Microsoft to Powershell now... so, use powershell direct method
  • INFRASTRUCTURE, tweak wppm :
    • as fast as pip list (pip inspect bypassed in the common case)
    • display emoji on packages Descriptions (if wppm -lsa -v)
  • duckdb-0.10,2
  • altair-5.3.0
  • bokeh-3.4.1
  • scikit_learn-1.4.2
  • pandas-2.2.2
  • networkx-3.3
  • statsmodels-0.14.2
  • polars-0.20.22
  • pyarrow-16.0.0
  • NEW: adbc_driver_manager
  • SIMPLIFY: remove dead pip search in wppm.get_official_description
  • WWw NEWS: duckdb is knocking at pyodide door : Add duckdb to packages pyodide/pyodide#4684
  • UNTOUCHED: disthelpers.py is maybe usefull for cx_freeze and py2exe, that may be still used by some
  • SIMPLIFY: no more use of 'pip inspect' in piptree

b1 (2024-04-28)

  • WWw NEWS: noticing Polars is now a little faster than DuckDB https://pola.rs/posts/benchmarks/
  • SIMPLIFY: remove utils.exec_run_cmd in wppm (requiring by so Python 3.8+ to build)
  • SIMPLIFY BUILD: Python Requirement reduced to WinPythonDot (Python3.8+) + flit + packaging (no more pywin32)
  • REDUCE maintained code: remove Qt usage inside WinPython package : vendored QtPy, qthelpers, wpcp.bat
  • REDUCE maintained code: remove un-maintained disthelpers.py
  • SIMPLIFY: remove wpcp entry point
  • tqdm-4.66.4
  • SIMPLIFY: simple logic to use packages.ini in piptree
  • SIMPLIFY: remove dead code in wppm
  • SIMPLIFY: move the rest of packages.ini logic from wppm into piptree
  • SIMPLIFY: remove dead code from utils : ".exe" Python packages are no more
  • jupyterlab-4.1.8
  • WWw NEWS: patches for free-threading now redirected to Python-3.14 (we may not see a free threading 3.13 so ?)
  • WWw NEWS: one package went smaller , a too rare event : pyzmq-26
  • FAIL: python-3.13.0b1 is broken for non-english windows .... that is what betas are for
  • sqlite_bro-0.13.0 , to fix to PEP 667 as implemented in Python-3.13.0b1
  • WWw NEWS: Apple M4 Ipad-Pro M4 AI oriented announcement ?
  • MONKEY-PATCHED: a working python-3.13.0b1 (use _os.mkdir(file) in lib/temppfile.py, from @zooba doctor)

b2 (2024-05-11)

  • check use internally only python -m pip for 3.13 better compatibility
  • Free-thread experiment:
    - pip doesn't create the pip.exe shortcut for 'normal' nor 'free-threading' Python-3.13.0b1 yet.
    - Speed is as follow: 60% slower on 1 thread, on par at 2 threads, 40% faster at 4 threads.
    - not sure worth a build till pip-24.1 is out and compatible with free-threading + idle kindly accept to start
    - seems a python-3.13.0b2 retry
  • build a WinPython-freethreading (couldn't resist):
    - python -m pip works (for non binary packages)
    - wppm -ls works
    - FAIL: idle doesn't start and doesn't want to explain itself
    - FAIL: sqlite-bro pytest fails but is a little more explicit , posted to cpython (seems tkinter)

b2 (2024-05-12: Free-threading build complement Winpython64-3.13.0.0freeb1.exe)

  • WWw NEWS: soon we may have both JIT & free-threading to bang our heads on
  • SIMPLIFY: remove architecture control (32/64) around packages (and do_script)
  • SIMPLIFY: remove version control (cp37, cp38...) around packages (and do_script)
  • SIMPLIFY: remove useless control logic around Packages in wppm and utils (as pip or flit do it all)
  • simplify readme: distutils is outdated
  • python-langage-summit (may 15th)
  • FREE-threading build flight domain exploration: add ok packages
    • ptpython in 3.13 dot versions (better than missing REPL for Windows), parso-0.8.4 (for python-3.13 compat)
    • aiosqlite
    • black
    • flit
    • sympy
    • ipython (with a Lib_pyrepl\pager.py typo below corrected)
  • interpreters_pep_734-0.1.0 (at last)
  • interpreters_pep_734 examples:
    • basic_executing.py
    • basic_threading.py
    • how-many-interpreters.py
    • test_parallel_run.py
  • jupyterlab-4.2.0 + Notebook-7.2.0
  • pyperf-2.7.0
  • temporary patch 3.13.0b1 python-3.13.0b1.amd64\Lib_pyrepl\pager.py", line 38, for Ipython help to work
  • pip-24.1b1 for free-threading build
  • msvc_runtime-14.38.33135-cp313-cp313t-win_amd64.whl (the free-threading)
  • TRIED cython-3.1.0a0 for free-threading (can cythonize but apparently result is not yet compatible though)
  • TRIED mypyc for free-threading not yet compatible (breaks at mypyc step)
  • replace hatch per hatchling, to not get uv crease
  • a b1b release for python-3.13.0b1

b3 (2024-05-20: jupyterlab-4.2, and interpreters_pep_734 for python-3.13 )

  • SIMPLIFY: replace complex DATA_PATH infrastructure per a OneLiner
  • jupyterlab-4.2.1
  • consider switching icon from ptpython to ipython (less helping on docstring, but way more popular, until REPL comes
  • use "." as any package or extra, in wppm. as an example:
    - wppm -p .[.] -l0 gives all extra possible to download a package
    - wppm -r .[.] -l0 gives all extra ways to need a package
  • bug: wppm -r dask[array] -l3 , wppm -r dask[dataframe] -l3
  • python-3.13.0b2:
    - new REPL is there:
    - we can recall previous multi-line command per up-arrow,
    - F1 calls pydoc
    - F2 browses session history
    - F3 copy/past of blocks
    - .... IDLE has still a docstrings advantage
    - .... ipython or ptpython still way better, because of docstrings
    - remove tempfile patch
    - remove pip install workaround
    - fix for cython seems b3 ?
  • python-3.12.4
  • python-3.13.0b2
  • DO NOT remove ptpython, modern REPL on Python-3.13 as missing code completion
  • decision to remove packages is rather at this stage

b4 (2024-06-09)

  • pip-24.1 free-threading compatible
  • get a working syntax example of channels or queues of pep_734
  • ipydatagrid ? (not very popular)

rc (2024-06-15)

  • numpy-2 requires torch-2.3.0 requires mkl and that makes a huge 380Mo combination ... too huge
  • python-3.13.0b3 is now june 25th ...
  • re-check free-threading build performance:
    • mypyc and cython compatible with free-threading
    • be shall bring deferred reference couting, and so a huge speed-up
    • happyness shall be at 4 cpus running 3x faster than standard, but was 1.7x in b1)

@stonebig stonebig pinned this issue Apr 15, 2024
@stonebig
Copy link
Contributor Author

stonebig commented Apr 28, 2024

WinPython 2024-03 b1 (2024-04-28)

Changes from WinPython 2024-02 :

  • Infrastructure:
    • remove Qtconsole icon, re-add powershell icon
    • remove use of 'pip inspect' to analyse packages (a great simplification)
  • New Packages:
    • adbc_driver_manager
  • Upgraded Packages:
    • scikit_learn-1.4.2, statsmodels-0.14.2, networks-3.3
    • duckdb-0.10.2, polars-0.20.22, pandas-2.2.2
    • altair-5.3.0, bokeh-3.4.1
    • pyarrow-16.0.0
  • Removed Packages:
    • lz4

Areas of particular interest for testers:

  • QtConsole in less
  • stability

Next build:

  • continue on infrastructure simplification
  • work to cope with numpy-2 and torch-2.3 [mkl] problem

binaries at:

MD5 SHA-1 SHA-256 Binary Size blake2b-256
4434b081c0545dcd07edac4aacd58d0b 71d845575d97976fe1c8e9443c1e1fb252adcd32 28cafa5c7f89cc87861038ce310f64eaedd52cf2b487b0af111c3cb47e59c274 Winpython64-3.12.3.1dotb1.exe 24 187 298 Bytes f0933d858b8cec247ef91cca7187947370fde28c43c757b18807a950152ea2f8
45eca94fddc092f377ad4d74d32df7b0 dd621e0b9df15ef951ddf8ecf2a44ee6528edc47 92e9855be7c98f3f8196c91bdbe236558442009bc5704e754cded22a5f6de8dc Winpython64-3.12.3.1b1.exe 895 513 379 Bytes e3fe5dfe474f8098012e8324889589f71c01dda6e3cf26ae8cbd2db47f75cee6

WinPython 3.12.3.1

The following packages are included in WinPython-64bit v3.12.3.1 b1.

Tools

Name Version Description
Nodejs v20.12.2 a JavaScript runtime built on Chrome's V8 JavaScript engine
npmjs 10.5.0 a package manager for JavaScript
Pandoc 3.1.9 a universal document converter

Python packages

Name Version Description
Python 3.12.3 Python programming language with standard library
about_time 4.2.1 Easily measure timing and throughput of code blocks, with beautiful human friendly representations.
absl_py 2.0.0 Abseil Python Common Libraries, see github.com/abseil/abseil-py.
accelerate 0.28.0 Accelerate
adbc_driver_manager 0.11.0
adodbapi 2.6.1.3 A pure Python package implementing PEP 249 DB-API using Microsoft ADO.
affine 2.3.1 Matrices describing affine transformation of the plane.
aiofiles 23.2.1 File support for asyncio.
aiohttp 3.9.3 Async http client/server framework (asyncio)
aiosignal 1.3.1 aiosignal: a list of registered asynchronous callbacks
aiosqlite 0.20.0 asyncio bridge to the standard sqlite3 module
alabaster 0.7.13 A configurable sidebar-enabled Sphinx theme
alembic 1.12.1 A database migration tool for SQLAlchemy.
alive_progress 3.1.5 A new kind of Progress Bar, with real-time throughput, ETA, and very cool animations!
altair 5.3.0 Altair: A declarative statistical visualization library for Python.
altair_data_server 0.4.1 A background data server for Altair charts.
altair_transform 0.2.0 A python engine for evaluating Altair transforms.
aniso8601 9.0.1 A library for parsing ISO 8601 strings.
annotated_types 0.6.0 Reusable constraint types to use with typing.Annotated
ansi2html 1.9.1 Convert text with ANSI color codes to HTML or to LaTeX
anyio 4.3.0 High level compatibility layer for multiple asynchronous event loop implementations
anywidget 0.7.1 custom jupyter widgets made easy
appdirs 1.4.4 A small Python module for determining appropriate platform-specific dirs, e.g. a "user data dir".
argon2_cffi 23.1.0 The secure Argon2 password hashing algorithm.
argon2_cffi_bindings 21.2.0 Low-level CFFI bindings for Argon2
array_api_compat 1.4.1 A wrapper around NumPy and other array libraries to make them compatible with the Array API standard
arrow 1.2.2 Better dates & times for Python
asciitree 0.3.3 Draws ASCII trees.
asgi_csrf 0.9 ASGI middleware for protecting against CSRF attacks
asgiref 3.7.2 ASGI specs, helper code, and adapters
asn1crypto 1.5.1 Fast ASN.1 parser and serializer with definitions for private keys, public keys, certificates, CRL, OCSP, CMS, PKCS#3, PKCS#7, PKCS#8, PKCS#12, PKCS#5, X.509 and TSP
asteval 0.9.31 Safe, minimalistic evaluator of python expression using ast module
astroid 3.1.0 An abstract syntax tree for Python with inference support.
astropy 5.3.4 Community-developed python astronomy tools
asttokens 2.4.1 Annotate AST trees with source code positions
async_lru 2.0.4 Simple LRU cache for asyncio
async_timeout 4.0.3 Timeout context manager for asyncio programs
atomicwrites 1.4.0 Atomic file writes.
attrs 23.2.0 Classes Without Boilerplate
autograd 1.6.2 Efficiently computes derivatives of numpy code.
autopep8 2.0.4 A tool that automatically formats Python code to conform to the PEP 8 style guide
azure_core 1.29.5 Microsoft Azure Core Library for Python
azure_cosmos 4.5.1 Microsoft Azure Cosmos Client Library for Python
azure_identity 1.15.0 Microsoft Azure Identity Library for Python
babel 2.13.1 Internationalization utilities
baresql 0.8.0 playing SQL directly on Python datas
bcrypt 4.0.1 Modern password hashing for your software and your servers
beautifulsoup4 4.12.2 Screen-scraping library
binaryornot 0.4.4 Ultra-lightweight pure Python package to check if a file is binary or text.
black 24.2.0 The uncompromising code formatter.
bleach 6.0.0 An easy safelist-based HTML-sanitizing tool.
blinker 1.7.0 Fast, simple object-to-object and broadcast signaling
bokeh 3.4.1 Interactive plots and applications in the browser from Python
botorch 0.9.5 Bayesian Optimization in PyTorch
branca 0.6.0 Generate complex HTML+JS pages with Python
brewer2mpl 1.4.1 Connect colorbrewer2.org color maps to Python and matplotlib
brotli 1.1.0 Python bindings for the Brotli compression library
build 1.1.1 A simple, correct Python build frontend
cachelib 0.10.2 A collection of cache libraries in the same API interface.
cachetools 5.3.1 Extensible memoizing collections and decorators
certifi 2023.11.17 Python package for providing Mozilla's CA Bundle.
cffi 1.16.0 Foreign Function Interface for Python calling C code.
cftime 1.6.3 Time-handling functionality from netcdf4-python
chardet 5.2.0 Universal encoding detector for Python 2 and 3
charset_normalizer 3.2.0 The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet.
clarabel 0.7.1 Clarabel Conic Interior Point Solver for Rust / Python
click 8.1.7 Composable command line interface toolkit
click_default_group 1.2.4 Extends click.Group to invoke a command without explicit subcommand name
click_plugins 1.1.1 An extension module for click to enable registering CLI commands via setuptools entry-points.
cligj 0.7.2 Click params for commmand line interfaces to GeoJSON
cloudpickle 3.0.0 Extended pickling support for Python objects
clr_loader 0.2.6 Generic pure Python loader for .NET runtimes
clrmagic 0.0.1a2 IPython cell magic to use .NET languages
cma 3.2.2 CMA-ES, Covariance Matrix Adaptation Evolution Strategy for non-linear numerical optimization in Python
colorama 0.4.6 Cross-platform colored terminal text.
colorcet 3.0.1 Collection of perceptually uniform colormaps
colorlog 6.8.2 Add colours to the output of Python's logging module.
comm 0.1.4 Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc.
contourpy 1.2.1 Python library for calculating contours of 2D quadrilateral grids
cookiecutter 2.3.0 A command-line utility that creates projects from project templates, e.g. creating a Python package project from a Python package project template.
coverage 7.3.2 Code coverage measurement for Python
cryptography 41.0.5 cryptography is a package which provides cryptographic recipes and primitives to Python developers.
cvxopt 1.3.2 Convex optimization package
cvxpy 1.5.0 A domain-specific language for modeling convex optimization problems in Python.
cycler 0.12.1 Composable style cycles
cython 3.0.10 The Cython compiler for writing C extensions for the Python language.
cytoolz 0.12.3 Cython implementation of Toolz: High performance functional utilities
dash 2.14.1 A Python framework for building reactive web-apps. Developed by Plotly.
dash_core_components 2.0.0 Core component suite for Dash
dash_html_components 2.0.0 Vanilla HTML components for Dash
dash_table 5.0.0 Dash table
dask 2024.3.1 Parallel PyData with Task Scheduling
dask_expr 1.0.5
dask_image 2023.8.1 Distributed image processing
dataclasses_json 0.6.4 Easily serialize dataclasses to and from JSON
datasette 0.64.5 A tool for exploring and publishing data
datasette_graphql 2.2 Datasette plugin providing an automatic GraphQL API for your SQLite databases
datashader 0.16.0 Data visualization toolchain based on aggregating into a grid
db.py 0.5.4b1 a db package that doesn't suck
deap 1.4.1 Distributed Evolutionary Algorithms in Python
debugpy 1.8.0 An implementation of the Debug Adapter Protocol for Python
decorator 4.4.2 Decorators for Humans
defusedxml 0.7.1 XML bomb protection for Python stdlib modules
deprecated 1.2.13 Python @deprecated decorator to deprecate old python classes, functions or methods.
deprecation 2.1.0 A library to handle automated deprecations
diff_match_patch 20200713 Repackaging of Google's Diff Match and Patch libraries. Offers robust algorithms to perform the operations required for synchronizing plain text.
dill 0.3.7 serialize all of python
dirty_cat 0.4.1 Machine learning with dirty categories.
distlib 0.3.6 Distribution utilities
distributed 2024.3.1 Distributed scheduler for Dask
distro 1.8.0 Distro - an OS platform information API
django 5.0.3 A high-level Python web framework that encourages rapid development and clean, pragmatic design.
dnspython 2.4.2 DNS toolkit
docopt 0.6.2 Pythonic argument parser, that will make you smile
docstring_to_markdown 0.13 On the fly conversion of Python docstrings to markdown
docutils 0.20.1 Docutils -- Python Documentation Utilities
duckdb 0.10.2 DuckDB embedded database
ecos 2.0.13 This is the Python package for ECOS: Embedded Cone Solver. See Github page for more information.
editables 0.3 Editable installations
emcee 3.1.4 The Python ensemble sampling toolkit for MCMC
entrypoints 0.4 Discover and load entry points from installed packages.
et_xmlfile 1.1.0 An implementation of lxml.xmlfile for the standard library
executing 2.0.1 Get the currently executing AST node of a frame, and other information
fast_histogram 0.12 Fast simple 1D and 2D histograms
fastapi 0.109.1 FastAPI framework, high performance, easy to learn, fast to code, ready for production
fasteners 0.18 A python package that provides useful locks.
fastjsonschema 2.18.0 Fastest Python implementation of JSON schema
feather_format 0.4.1 Simple wrapper library to the Apache Arrow-based Feather File Format
filelock 3.12.4 A platform independent file lock.
filterpy 1.4.5 Kalman filtering and optimal estimation library
fiona 1.9.5 Fiona reads and writes spatial data files
flake8 7.0.0 the modular source code checker: pep8, pyflakes and co
flask 3.0.2 A simple framework for building complex web applications.
flask_mail 0.9.1 Flask extension for sending email
flask_session 0.5.0 Adds server-side session support to your Flask application
flask_sqlalchemy 3.0.5 Adds SQLAlchemy support to your Flask application.
flit 3.9.0 A simple packaging tool for simple packages.
flit_core 3.9.0 Distribution-building parts of Flit. See flit package for more information
folium 0.14.0 Make beautiful maps with Leaflet.js & Python
fonttools 4.50.0 Tools to manipulate font files
formlayout 1.2.1a1 The most easy way to create Qt form dialogs and widgets with Python
fqdn 1.5.1 Validates fully-qualified domain names against RFC 1123, so that they are acceptable to modern bowsers
frozenlist 1.4.1 A list-like structure which implements collections.abc.MutableSequence
fsspec 2024.3.1 File-system specification
future 0.18.2 Clean single-source support for Python 3 and 2
fuzzywuzzy 0.18.0 Fuzzy string matching in python
gdal 3.7.3 GDAL: Geospatial Data Abstraction Library
geographiclib 2.0 The geodesic routines from GeographicLib
geopandas 0.14.0 Geographic pandas extensions
geopy 2.4.0 Python Geocoding Toolbox
gitdb 4.0.10 Git Object Database
gitpython 3.1.32 Python Git Library
gpytorch 1.11 An implementation of Gaussian Processes in Pytorch
grapheme 0.6.0 Unicode grapheme helpers
graphene 3.3 GraphQL Framework for Python
graphql_core 3.2.3 GraphQL implementation for Python, a port of GraphQL.js, the JavaScript reference implementation for GraphQL.
graphql_relay 3.2.0 Relay library for graphql-core-next
greenlet 3.0.3 Lightweight in-process concurrent programming
guidata 3.4.1 Automatic graphical user interfaces generation for easy dataset editing and display
h11 0.14.0 A pure-Python, bring-your-own-I/O implementation of HTTP/1.1
h2 4.1.0 HTTP/2 State-Machine based protocol implementation
h5py 3.10.0 Read and write HDF5 files from Python
hatch 1.9.3 Modern, extensible Python project management
hatchling 1.21.1 Modern, extensible Python build backend
highspy 1.7.1.dev1 Python interface to HiGHS
holoviews 1.18.3 Stop plotting your data - annotate your data and let it visualize itself.
hpack 4.0.0 Pure-Python HPACK header compression
html5lib 1.1 HTML parser based on the WHATWG HTML specification
httpcore 1.0.5 A minimal low-level HTTP client.
httpie 3.2.2 HTTPie - a CLI, cURL-like tool for humans.
httpx 0.27.0 The next generation HTTP client.
huggingface_hub 0.21.4 Client library to download and publish models, datasets and other repos on the huggingface.co hub
hupper 1.12 Integrated process monitor for developing and reloading daemons.
hvplot 0.9.2 A high-level plotting API for the PyData ecosystem built on HoloViews.
hypercorn 0.16.0 A ASGI Server based on Hyper libraries and inspired by Gunicorn.
hyperframe 6.0.1 HTTP/2 framing layer for Python
hyperlink 21.0.0 A featureful, immutable, and correct URL for Python.
hypothesis 6.99.13 A library for property-based testing
idna 3.4 Internationalized Domain Names in Applications (IDNA)
imageio 2.33.1 Library for reading and writing a wide range of image, video, scientific, and volumetric data formats.
imageio_ffmpeg 0.4.8 FFMPEG wrapper for Python
imagesize 1.4.1 Getting image size from png/jpeg/jpeg2000/gif file
imbalanced_learn 0.12.2 Toolbox for imbalanced dataset in machine learning.
importlib_metadata 6.8.0 Read metadata from Python packages
inflection 0.5.1 A port of Ruby on Rails inflector to Python
iniconfig 2.0.0 iniconfig: brain-dead simple config-ini parsing
intervaltree 3.0.2 Editable interval tree data structure for Python 2 and 3
ipycanvas 0.13.1 Interactive widgets library exposing the browser's Canvas API
ipykernel 6.29.4 IPython Kernel for Jupyter
ipyleaflet 0.18.2 A Jupyter widget for dynamic Leaflet maps
ipympl 0.9.3 Matplotlib Jupyter Extension
ipython 8.22.2 IPython: Productive Interactive Computing
ipython_genutils 0.2.0 Vestigial utilities from IPython
ipython_sql 0.5.0 RDBMS access via IPython
ipywidgets 8.1.2 IPython HTML widgets for Jupyter
isoduration 20.11.0 Operations with ISO 8601 durations
isort 5.13.2 A Python utility / library to sort Python imports.
itsdangerous 2.1.2 Various helpers to pass data to untrusted environments and back.
janus 1.0.0 Mixed sync-async queue to interoperate between asyncio tasks and classic threads
jaraco.classes 3.3.0 Utility functions for Python class constructs
jaxtyping 0.2.22 Type annotations and runtime checking for shape and dtype of JAX arrays, and PyTrees.
jedi 0.19.1 An autocompletion tool for Python that can be used for text editors.
jellyfish 1.0.3 a library for doing approximate and phonetic matching of strings.
jinja2 3.1.2 A small but fast and easy to use stand-alone template engine written in pure python.
joblib 1.3.2 Lightweight pipelining: using Python functions as pipeline jobs.
json5 0.9.14 A Python implementation of the JSON5 data format.
jsonpatch 1.33 Apply JSON-Patches (RFC 6902)
jsonpointer 2.4 Identify specific nodes in a JSON document (RFC 6901)
jsonschema 4.19.2 An implementation of JSON Schema validation for Python
jsonschema_specifications 2023.12.1 The JSON Schema meta-schemas and vocabularies, exposed as a Registry
julia 0.6.2 Julia/Python bridge with IPython support.
jupyter 1.0.0 Jupyter metapackage. Install all the Jupyter components in one go.
jupyter_bokeh 3.0.7 A Jupyter extension for rendering Bokeh content.
jupyter_client 8.6.0 Jupyter protocol implementation and client libraries
jupyter_console 6.6.3 Jupyter terminal console
jupyter_core 5.5.0 Jupyter core package. A base package on which Jupyter projects rely.
jupyter_events 0.9.0 Jupyter Event System library
jupyter_lsp 2.2.4 Multi-Language Server WebSocket proxy for Jupyter Notebook/Lab server
jupyter_packaging 0.12.3 Jupyter Packaging Utilities
jupyter_server 2.12.5 The Jupyter Server
jupyter_server_mathjax 0.2.6 MathJax resources as a Jupyter Server Extension.
jupyter_server_terminals 0.4.4 A Jupyter Server Extension Providing Terminals.
jupyter_sphinx 0.4.0 Jupyter Sphinx Extensions
jupyterlab 4.1.5 The JupyterLab notebook server extension.
jupyterlab_pygments 0.2.2 Pygments theme
jupyterlab_server 2.25.4 JupyterLab Server
jupyterlab_widgets 3.0.10 JupyterLab extension providing HTML widgets
keras 3.1.1 Deep Learning for humans
keyring 24.3.1 Store and access your passwords safely.
kiwisolver 1.4.5 A fast implementation of the Cassowary constraint solver
kornia 0.7.1 Open Source Differentiable Computer Vision Library for PyTorch
langchain 0.1.13 Building applications with LLMs through composability
langchain_community 0.0.29
langchain_core 0.1.35
langchain_text_splitters 0.0.1
langsmith 0.1.33 Client library to connect to the LangSmith LLM Tracing and Evaluation Platform.
lazy_loader 0.4 lazy_loader
lightning 2.2.1 The Deep Learning framework to train, deploy, and ship AI products Lightning fast.
lightning_utilities 0.10.0 PyTorch Lightning Sample project.
linear_operator 0.5.1 A linear operator implementation, primarily designed for finite-dimensional positive definite operators (i.e. kernel matrices).
linkify_it_py 2.0.2 Links recognition library with FULL unicode support.
llvmlite 0.42.0 lightweight wrapper around basic LLVM functionality
lmfit 1.0.3 Least-Squares Minimization with Bounds and Constraints
locket 1.0.0 File-based locks for Python for Linux and Windows
loky 3.4.0 A robust implementation of concurrent.futures.ProcessPoolExecutor
lxml 5.1.0 Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API.
mako 1.2.0 A super-fast templating language that borrows the best ideas from the existing templating languages.
markdown 3.5.1 Python implementation of Markdown.
markdown_it_py 2.2.0 Python port of markdown-it. Markdown parsing, done right!
markupsafe 2.1.1 Safely add untrusted strings to HTML/XML markup.
marshmallow 3.20.2 A lightweight library for converting complex datatypes to and from native Python datatypes.
matplotlib 3.8.3 Python plotting package
matplotlib_inline 0.1.6 Inline Matplotlib backend for Jupyter
maturin 1.5.1 Build and publish crates with pyo3, rust-cpython and cffi bindings as well as rust binaries as python packages
mccabe 0.7.0 McCabe checker, plugin for flake8
mdit_py_plugins 0.3.5 Collection of plugins for markdown-it-py
mdurl 0.1.2 Markdown URL utilities
mercantile 1.2.1 Web mercator XYZ tile utilities
mergedeep 1.3.4 A deep merge function for 🐍.
missingno 0.5.1 Missing data visualization module for Python.
mistune 2.0.5 The fastest markdown parser in pure Python
mizani 0.9.2 Scales for Python
ml_dtypes 0.4.0
mlxtend 0.22.0 Machine Learning Library Extensions
more_itertools 10.2.0 More routines for operating on iterables, beyond itertools
moviepy 1.0.3 Video editing with Python
mpl_scatter_density 0.7 Matplotlib helpers to make density scatter plots
mpld3 0.5.8 D3 Viewer for Matplotlib
mpmath 1.3.0 Python library for arbitrary-precision floating-point arithmetic
msal 1.24.1 The Microsoft Authentication Library (MSAL) for Python library enables your app to access the Microsoft Cloud by supporting authentication of users with Microsoft Azure Active Directory accounts (AAD) and Microsoft Accounts (MSA) using industry standard OAuth2 and OpenID Connect.
msal_extensions 1.0.0 Microsoft Authentication Library extensions (MSAL EX) provides a persistence API that can save your data on disk, encrypted on Windows, macOS and Linux. Concurrent data access will be coordinated by a file lock mechanism.
msgpack 1.0.4 MessagePack (de)serializer.
msvc_runtime 14.38.33135 Install the Microsoft™ Visual C++™ runtime DLLs to the sys.prefix and Scripts directories
multidict 6.0.5 multidict implementation
multipledispatch 1.0.0 Multiple dispatch
mutagen 1.46.0 read and write audio tags for many formats
mypy 1.9.0 Optional static typing for Python
mypy_extensions 1.0.0 Experimental type system extensions for programs checked with the mypy typechecker.
mysql_connector_python 8.0.21 MySQL driver written in Python
namex 0.0.7 A simple utility to separate the implementation of your Python package and its public API surface.
nbclient 0.10.0 A client library for executing notebooks. Formally nbconvert's ExecutePreprocessor.
nbconvert 7.16.1 Converting Jupyter Notebooks
nbdime 4.0.1 Diff and merge of Jupyter Notebooks
nbformat 5.10.3 The Jupyter Notebook format
nbval 0.9.6 A py.test plugin to validate Jupyter notebooks
nest_asyncio 1.6.0 Patch asyncio to allow nested event loops
netcdf4 1.6.5 Provides an object-oriented python interface to the netCDF version 4 library.
networkx 3.3 Python package for creating and manipulating graphs and networks
nltk 3.8.1 Natural Language Toolkit
notebook 7.1.2 A web-based notebook environment for interactive computing
notebook_shim 0.2.3 A shim layer for notebook traits and config
ntlm_auth 1.5.0 Creates NTLM authentication structures
numba 0.59.1 compiling Python code using LLVM
numcodecs 0.12.1 A Python package providing buffer compression and transformation codecs for use in data storage and communication applications.
numexpr 2.10.0 Fast numerical expression evaluator for NumPy
numpy 1.26.4 NumPy is the fundamental package for array computing with Python.
numpydoc 1.6.0 Sphinx extension to support docstrings in Numpy format
openai 1.14.3 Python client library for the OpenAI API
opencv_python 4.9.0.80 Wrapper package for OpenCV python bindings.
openpyxl 3.1.2 A Python library to read/write Excel 2010 xlsx/xlsm files
opt_einsum 3.3.0 Optimizing numpys einsum function
optree 0.11.0
optuna 3.6.1 A hyperparameter optimization framework
orjson 3.9.15 Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy
ortools 9.8.3296 Google OR-Tools python libraries and modules
outcome 1.3.0.post0 Capture the outcome of Python function calls.
overrides 7.7.0 A decorator to automatically detect mismatch when overriding a method.
packaging 23.2 Core utilities for Python packages
pandas 2.2.2 Powerful data structures for data analysis, time series, and statistics
pandocfilters 1.5.0 Utilities for writing pandoc filters in python
panel 1.4.1 A high level app and dashboarding solution for Python.
papermill 2.5.1a1 Parametrize and run Jupyter and nteract Notebooks
param 2.1.0 Declarative Python programming using Parameters.
paramiko 2.8.0 SSH2 protocol library
parso 0.8.3 A Python Parser
partd 1.4.0 Appendable key-value storage
pathspec 0.11.0 Utility library for gitignore style pattern matching of file paths.
patsy 0.5.6 A Python package for describing statistical models and for building design matrices.
pdfrw 0.4.post2 PDF file reader/writer library
pep8 1.7.1 Python style guide checker
pexpect 4.8.0 Pexpect allows easy control of interactive console applications.
pg8000 1.23.0 PostgreSQL interface library
pickleshare 0.7.5 Tiny 'shelve'-like database with concurrency support
pillow 10.3.0 Python Imaging Library (Fork)
pims 0.6.1 Python Image Sequence
pint 0.23 Physical quantities module
pip 24.0 The PyPA recommended tool for installing Python packages.
pkginfo 1.9.6 Query metadatdata from sdists / bdists / installed packages.
platformdirs 3.8.1 A small Python module for determining appropriate platform-specific dirs, e.g. a "user data dir".
plotly 5.20.0 An open-source, interactive graphing library for Python
plotnine 0.12.4 A grammar of graphics for python
plotpy 2.3.0 Plotpy is a library which results from merge of guidata and guiqwt.
pluggy 1.0.0 plugin and hook calling mechanisms for python
ply 3.11 Python Lex & Yacc
pmdarima 2.0.4 Python's forecast::auto.arima equivalent
polars 0.20.22 Blazingly fast DataFrame library
portalocker 2.7.0 Wraps the portalocker recipe for easy usage
portpicker 1.5.0 A library to choose unique available network ports.
ppci 0.5.9 A compiler for ARM, X86, MSP430, xtensa and more implemented in pure Python
prettytable 3.3.0 A simple Python library for easily displaying tabular data in a visually appealing ASCII table format.
priority 2.0.0 A pure-Python implementation of the HTTP/2 priority tree
proglog 0.1.10 Log and progress bar manager for console, notebooks, web...
prometheus_client 0.18.0 Python client for the Prometheus monitoring system.
prompt_toolkit 3.0.43 Library for building powerful interactive command lines in Python
protobuf 4.25.1 Protocol Buffers
psutil 5.9.5 Cross-platform lib for process and system monitoring in Python.
psygnal 0.9.5 Fast python callback/event system modeled after Qt Signals
ptpython 3.0.26 Python REPL build on top of prompt_toolkit
ptyprocess 0.7.0 Run a subprocess in a pseudo terminal
pulp 2.6.0 PuLP is an LP modeler written in python. PuLP can generate MPS or LP files and call GLPK, COIN CLP/CBC, CPLEX, and GUROBI to solve linear problems.
pure_eval 0.2.2 Safely evaluate AST nodes without side effects
pyaml 20.4.0 PyYAML-based module to produce pretty and readable YAML-serialized data
pyarrow 16.0.0 Python library for Apache Arrow
pyaudio 0.2.14 Bindings for PortAudio v19, the cross-platform audio input/output stream library.
pybars3 0.9.7 Handlebars.js templating for Python 3 and 2
pybind11 2.12.0 Seamless operability between C++11 and Python
pycodestyle 2.11.1 Python style guide checker
pycosat 0.6.6 bindings to picosat (a SAT solver)
pycparser 2.21 C parser in Python
pycryptodomex 3.18.0 Cryptographic library for Python
pyct 0.4.8 python package common tasks for users (e.g. copy examples, fetch data, ...)
pydantic 2.6.4 Data validation and settings management using python 3.6 type hinting
pydantic_core 2.16.3
pydeck 0.8.0 Widget for deck.gl maps
pydocstyle 6.3.0 Python docstring style checker
pydub 0.25.1 Manipulate audio with an simple and easy high level interface
pyepsg 0.4.0 Easy access to the EPSG database via http epsg.io/
pyerfa 2.0.1.1 Python bindings for ERFA
pyflakes 3.2.0 passive checker of Python programs
pygad 3.2.0 PyGAD: A Python 3 Library for Building the Genetic Algorithm and Training Machine Learning Algoithms (Keras & PyTorch).
pygame 2.5.2 Python Game Development
pygments 2.16.1 Pygments is a syntax highlighting package written in Python.
pyjwt 2.4.0 JSON Web Token implementation in Python
pylint 3.1.0 python code static checker
pylint_venv 3.0.3 pylint-venv provides a Pylint init-hook to use the same Pylint installation with different virtual environments.
pyls_spyder 0.4.0 Spyder extensions for the python-language-server
pymeta3 0.5.1 Pattern-matching language based on OMeta for Python 3 and 2
pymongo 4.5.0 Python driver for MongoDB
pymoo 0.6.1.1 Multi-Objective Optimization in Python
pympler 1.0.1 A development tool to measure, monitor and analyze the memory behavior of Python objects.
pynacl 1.5.0 Python binding to the Networking and Cryptography (NaCl) library
pynndescent 0.5.11 Nearest Neighbor Descent
pyodbc 5.0.1 DB API Module for ODBC
pyomo 6.7.0 Pyomo: Python Optimization Modeling Objects
pyopengl 3.1.7 Standard OpenGL bindings for Python
pypandoc 1.5 Thin wrapper for pandoc.
pyparsing 3.0.9 Python parsing module
pypdf 3.15.2 A pure-python PDF library capable of splitting, merging, cropping, and transforming PDF files
pypng 0.20220715.0 Pure Python library for saving and loading PNG images
pyproj 3.6.1 Python interface to PROJ (cartographic projections and coordinate transformations library)
pyproject_hooks 1.0.0 Wrappers to call pyproject.toml-based build backend hooks.
pyqt5 5.15.10 Python bindings for the Qt cross platform application toolkit
pyqt5_qt5 5.15.2 The subset of a Qt installation needed by PyQt5.
pyqt5_sip 12.13.0 The sip module support for PyQt5
pyqtgraph 0.13.4 Scientific Graphics and GUI Library for Python
pyqtwebengine 5.15.6 Python bindings for the Qt WebEngine framework
pyqtwebengine_qt5 5.15.2 The subset of a Qt installation needed by PyQtWebEngine.
pyro_api 0.1.2 Generic API for dispatch to Pyro backends.
pyro_ppl 1.8.4 A Python library for probabilistic modeling and inference
pyserial 3.5 Python Serial Port Extension
pysimplegui 4.60.4 Python GUIs for Humans.
pysocks 1.7.1 A Python SOCKS client module. See https github.com/Anorov/PySocks for more information.
pystache 0.5.4 Mustache for Python
pytest 7.4.2 pytest: simple powerful testing with Python
python_barcode 0.15.1 Create standard barcodes with Python. No external modules needed. (optional Pillow support included).
python_dateutil 2.8.2 Extensions to the standard Python datetime module
python_dotenv 1.0.0 Add .env support to your django/flask apps in development and deployments
python_json_logger 2.0.7 A python library adding a json log formatter
python_lsp_black 2.0.0 Black plugin for the Python LSP Server
python_lsp_jsonrpc 1.1.2 JSON RPC 2.0 server library
python_lsp_server 1.11.0 Python Language Server for the Language Server Protocol
python_multipart 0.0.5 A streaming multipart parser for Python
python_slugify 6.1.2 A Python Slugify application that handles Unicode
pythonnet 3.0.3 .Net and Mono integration for Python
pythonqwt 0.12.1 Qt plotting widgets for Python
pytoolconfig 1.2.4 Python tool configuration
pytorch_lightning 2.2.1 PyTorch Lightning is the lightweight PyTorch wrapper for ML researchers. Scale your models. Write less boilerplate.
pytz 2023.3 World timezone definitions, modern and historical
pytz_deprecation_shim 0.1.0.post0 Shims to make deprecation of pytz easier
pyviz_comms 3.0.2 Bidirectional communication for the PyViz ecosystem.
pywin32 306 Python for Window Extensions
pywin32_ctypes 0.2.2 A (partial) reimplementation of pywin32 that is pure python (uses ctypes/cffi)
pywinpty 2.0.12 Python bindings for the winpty library
pywinusb 0.4.2 A package that simplifies USB/HID communications on windows
pyyaml 6.0.1 YAML parser and emitter for Python
pyzmq 25.1.2 Python bindings for 0MQ
qdarkstyle 3.2 The most complete dark stylesheet for Python and Qt applications
qpsolvers 4.3.0 Quadratic programming solvers in Python with a unified API
qrcode 7.4.2 QR Code image generator
qstylizer 0.2.2 Stylesheet Generator for PyQt{4-5}/PySide{1-2}
qtawesome 1.3.1 FontAwesome icons in PyQt and PySide applications
qtconsole 5.5.1 Jupyter Qt console
qtpy 2.4.1 Provides an abstraction layer on top of the various Qt bindings (PyQt5, PyQt4 and PySide) and additional custom QWidgets.
quantecon 0.5.3 QuantEcon is a package to support all forms of quantitative economic modelling.
quart 0.19.4 A Python ASGI web microframework with the same API as Flask
rapidfuzz 3.5.2 rapid fuzzy string matching
rasterio 1.3.9 Fast and direct raster I/O for use with Numpy and SciPy
readme_renderer 35.0 readme_renderer is a library for rendering "readme" descriptions for Warehouse
redis 4.3.1 Python client for Redis key-value store
referencing 0.31.1 JSON Referencing + Python
regex 2023.10.3 Alternative regular expression module, to replace re.
reportlab 4.0.4 The Reportlab Toolkit
requests 2.31.0 Python HTTP for Humans.
requests_ntlm 1.1.0 This package allows for HTTP NTLM authentication using the requests library.
requests_toolbelt 0.10.1 A utility belt for advanced users of python-requests
retrying 1.3.4 Retrying
rfc3339_validator 0.1.4 A pure python RFC3339 validator
rfc3986 2.0.0 Validating URI References per RFC 3986
rfc3986_validator 0.1.1 Pure python rfc3986 validator
rich 13.7.1 Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal
rope 1.12.0 a python refactoring library...
rpds_py 0.13.2 Python bindings to Rust's persistent data structures (rpds)
rtree 1.1.0 R-Tree spatial index for Python GIS
rx 3.1.1 Reactive Extensions (Rx) for Python
safetensors 0.4.2 Fast and Safe Tensor serialization
scikit_image 0.23.2 Image processing routines for SciPy
scikit_learn 1.4.2 A set of python modules for machine learning and data mining
scikit_optimize 0.10.1 Sequential model-based optimization toolbox.
scipy 1.13.0 SciPy: Scientific Library for Python
scramp 1.4.1 An implementation of the SCRAM protocol.
scs 3.2.4.post1 scs: splitting conic solver
seaborn 0.13.2 seaborn: statistical data visualization
send2trash 1.8.2 Send file to trash natively under Mac OS X, Windows and Linux.
setuptools 69.2.0 Easily download, build, install, upgrade, and uninstall Python packages
shapely 2.0.4 Geometric objects, predicates, and operations
shellingham 1.5.0.post1 Tool to Detect Surrounding Shell
simplegeneric 0.8.1 Simple generic functions (similar to Python's own len(), pickle.dump(), etc.)
simplejson 3.17.6 Simple, fast, extensible JSON encoder/decoder for Python
simpy 4.0.1 Event discrete, process based simulation for Python.
six 1.16.0 Python 2 and 3 compatibility utilities
slicerator 1.1.0 A lazy-loading, fancy-sliceable iterable.
smmap 5.0.0 A pure Python implementation of a sliding window memory map manager
snakeviz 2.1.0 A web-based viewer for Python profiler output
sniffio 1.3.0 Sniff out which async library your code is running under
snowballstemmer 2.2.0 This package provides 26 stemmers for 25 languages generated from Snowball algorithms.
snuggs 1.4.7 Snuggs are s-expressions for Numpy
sortedcontainers 2.4.0 Sorted Containers -- Sorted List, Sorted Dict, Sorted Set
sounddevice 0.4.6 Play and Record Sound with Python
soupsieve 2.3.2.post1 A modern CSS selector implementation for Beautiful Soup.
sphinx 7.2.6 Tool for generating documentation which uses reStructuredText as its markup language
sphinx_rtd_theme 2.0.0 Read the Docs theme for Sphinx
sphinxcontrib_applehelp 1.0.2 sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books
sphinxcontrib_devhelp 1.0.2 sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document.
sphinxcontrib_htmlhelp 2.0.0 sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files
sphinxcontrib_jquery 4.1 Extension to include jQuery on newer Sphinx releases
sphinxcontrib_jsmath 1.0.1 A sphinx extension which renders display math in HTML via JavaScript
sphinxcontrib_qthelp 1.0.3 sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document.
sphinxcontrib_serializinghtml 1.1.9 sphinxcontrib-serializinghtml is a sphinx extension which outputs "serialized" HTML files (json and pickle).
spyder 5.5.4 The Scientific Python Development Environment
spyder_kernels 2.5.1 Jupyter kernels for Spyder's console
sqlalchemy 2.0.28 Database Abstraction Library
sqlite_bro 0.12.2 a graphic SQLite Client in 1 Python file
sqlite_fts4 1.0.3 Python functions for working with SQLite FTS4 search
sqlite_utils 3.36 CLI tool and Python utility functions for manipulating SQLite databases
sqlparse 0.4.3 Non-validating SQL parser
sspyrs 0.3 Lightweight interface for SSRS reports to python
stack_data 0.6.1 Extract data from python stack frames and tracebacks for informative displays
starlette 0.35.1 The little ASGI library that shines.
statsmodels 0.14.2 Statistical computations and models for Python
streamlit 1.32.2 The fastest way to build data apps in Python
streamz 0.6.3 Streams
supersmoother 0.4 Python implementation of Friedman's Supersmoother
swifter 1.3.4 A package which efficiently applies any function to a pandas dataframe or series in the fastest available manner
sympy 1.12 Computer algebra system (CAS) in Python
tabulate 0.9.0 Pretty-print tabular data
tbats 1.1.0 BATS and TBATS for time series forecasting
tblib 1.7.0 Traceback serialization library.
tenacity 8.1.0 Retry code until it succeeds
terminado 0.17.0 Terminals served to xterm.js using Tornado websockets
text_unidecode 1.3 The most basic Text::Unidecode port
textdistance 4.5.0 Compute distance between the two texts.
threadpoolctl 3.1.0 threadpoolctl
three_merge 0.1.1 Simple library for merging two strings with respect to a base one
tifffile 2023.7.18 Read and write TIFF(r) files
tinycss2 1.1.1 tinycss2
tokenizers 0.15.1 Fast and Customizable Tokenizers
toml 0.10.2 Python Library for Tom's Obvious, Minimal Language
tomli 2.0.1 A lil' TOML parser
tomli_w 1.0.0 A lil' TOML writer
tomlkit 0.12.3 Style preserving TOML library
toolz 0.12.0 List processing tools and functional utilities
torch 2.2.2 Tensors and Dynamic neural networks in Python with strong GPU acceleration
torchaudio 2.2.2 An audio package for PyTorch
torchmetrics 1.3.2 PyTorch native Metrics
torchvision 0.17.2 image and video datasets and models for torch deep learning
tornado 6.4 Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.
tqdm 4.65.0 Fast, Extensible Progress Meter
traitlets 5.14.1 Traitlets Python config system
traittypes 0.2.1 Scipy trait types
transformers 4.38.2 State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow
trio 0.25.0 A friendly Python library for async concurrency and I/O
trove_classifiers 2023.2.20 Canonical source for classifiers on PyPI (pypi.org).
twine 4.0.1 Collection of utilities for publishing packages on PyPI
typeguard 2.13.3 Run-time type checker for Python
typing_extensions 4.9.0 Backported and Experimental Type Hints for Python 3.5+
typing_inspect 0.8.0 Runtime inspection utilities for typing module.
tzdata 2022.7 Provider of IANA time zone data
tzlocal 4.2 tzinfo object for the local timezone
uc_micro_py 1.0.1 Micro subset of unicode data files for linkify-it-py projects.
ujson 5.8.0 Ultra fast JSON encoder and decoder for Python
umap_learn 0.5.1 Uniform Manifold Approximation and Projection
uncertainties 3.1.7 Transparent calculations with uncertainties on the quantities involved (aka error propagation); fast calculation of derivatives
uri_template 1.2.0 RFC 6570 URI Template Processor
urllib3 2.0.3 HTTP library with thread-safe connection pooling, file post, and more.
userpath 1.8.0 Cross-platform tool for adding locations to the user PATH
uvicorn 0.26.0 The lightning-fast ASGI server.
vega_datasets 0.9.0 A Python package for offline access to Vega datasets
virtualenv 20.23.0 Virtual Python Environment builder
waitress 2.1.2 Waitress WSGI server
wasmer 1.1.0 Python extension to run WebAssembly binaries
wasmer_compiler_cranelift 1.1.0 The Cranelift compiler for the wasmer package (to compile WebAssembly module)
wasmer_compiler_singlepass 1.1.0 Python extension to run WebAssembly binaries
watchdog 2.2.0 Filesystem events monitoring
wcwidth 0.2.9 Measures number of Terminal column cells of wide-character codes
webcolors 1.12 A library for working with color names and color values formats defined by HTML and CSS.
webencodings 0.5.1 Character encoding aliases for legacy web content
websocket_client 1.6.4 WebSocket client for Python. hybi13 is supported.
websockets 12.0 An implementation of the WebSocket Protocol (RFC 6455 & 7692)
werkzeug 3.0.1 The comprehensive WSGI web application library.
whatthepatch 1.0.2 A patch parsing and application library.
wheel 0.43.0 A built-package format for Python
widgetsnbextension 4.0.10 IPython HTML widgets for Jupyter
winpython 7.6.20240427 WinPython distribution tools, including WPPM
wordcloud 1.9.3 A little word cloud generator
wrapt 1.14.1 Module for decorators, wrappers and monkey patching.
wsproto 1.2.0 WebSockets state-machine based protocol implementation
xarray 2024.2.0 N-D labeled arrays and datasets in Python
xlsxwriter 3.1.9 A Python module for creating Excel XLSX files.
xlwings 0.24.7 Make Excel fly: Interact with Excel from Python and vice versa.
xmltodict 0.13.0 Makes working with XML feel like you are working with JSON
xyzservices 2023.10.1 Source of XYZ tiles providers
yapf 0.40.1 A formatter for Python code.
yarl 1.7.2 Yet another URL library
yt_dlp 2023.7.6 A youtube-dl fork with additional features and patches
zarr 2.16.1 An implementation of chunked, compressed, N-dimensional arrays for Python.
zict 3.0.0 Mutable mapping tools
zipp 3.17.0 Backport of pathlib-compatible object wrapper for zip files
zstandard 0.22.0 Zstandard bindings for Python

History of changes for WinPython-64bit 3.12.3.1

The following changes were made to WinPython-64bit distribution since version 3.12.3.0.

Python packages

New packages:

Upgraded packages:

  • accelerate 0.23.0 → 0.28.0 (Accelerate)

  • altair 5.2.0 → 5.3.0 (Altair: A declarative statistical visualization library for Python.)

  • bokeh 3.4.0 → 3.4.1 (Interactive plots and applications in the browser from Python)

  • contourpy 1.2.0 → 1.2.1 (Python library for calculating contours of 2D quadrilateral grids)

  • dask 2023.10.1 → 2024.3.1 (Parallel PyData with Task Scheduling)

  • dataclasses_json 0.5.7 → 0.6.4 (Easily serialize dataclasses to and from JSON)

  • distributed 2023.10.1 → 2024.3.1 (Distributed scheduler for Dask)

  • django 4.2.5 → 5.0.3 (A high-level Python web framework that encourages rapid development and clean, pragmatic design.)

  • duckdb 0.10.1 → 0.10.2 (DuckDB embedded database)

  • fonttools 4.44.0 → 4.50.0 (Tools to manipulate font files)

  • fsspec 2023.9.2 → 2024.3.1 (File-system specification)

  • hypercorn 0.14.4 → 0.16.0 (A ASGI Server based on Hyper libraries and inspired by Gunicorn.)

  • hypothesis 6.87.1 → 6.99.13 (A library for property-based testing)

  • imageio 2.31.1 → 2.33.1 (Library for reading and writing a wide range of image, video, scientific, and volumetric data formats.)

  • isort 5.12.0 → 5.13.2 (A Python utility / library to sort Python imports.)

  • jsonschema_specifications 2023.7.1 → 2023.12.1 (The JSON Schema meta-schemas and vocabularies, exposed as a Registry)

  • jupyter_lsp 2.2.0 → 2.2.4 (Multi-Language Server WebSocket proxy for Jupyter Notebook/Lab server)

  • keyring 24.2.0 → 24.3.1 (Store and access your passwords safely.)

  • lazy_loader 0.3 → 0.4 (lazy_loader)

  • marshmallow 3.12.1 → 3.20.2 (A lightweight library for converting complex datatypes to and from native Python datatypes.)

  • ml_dtypes 0.3.2 → 0.4.0 ()

  • more_itertools 9.0.0 → 10.2.0 (More routines for operating on iterables, beyond itertools)

  • nest_asyncio 1.5.6 → 1.6.0 (Patch asyncio to allow nested event loops)

  • networkx 3.2.1 → 3.3 (Python package for creating and manipulating graphs and networks)

  • numexpr 2.8.7 → 2.10.0 (Fast numerical expression evaluator for NumPy)

  • numpydoc 1.3 → 1.6.0 (Sphinx extension to support docstrings in Numpy format)

  • pandas 2.2.1 → 2.2.2 (Powerful data structures for data analysis, time series, and statistics)

  • pillow 10.2.0 → 10.3.0 (Python Imaging Library (Fork))

  • pint 0.19.2 → 0.23 (Physical quantities module)

  • polars 0.20.17 → 0.20.22 (Blazingly fast DataFrame library)

  • pyarrow 14.0.1 → 16.0.0 (Python library for Apache Arrow)

  • referencing 0.30.2 → 0.31.1 (JSON Referencing + Python)

  • scikit_image 0.22.0 → 0.23.2 (Image processing routines for SciPy)

  • scikit_learn 1.4.1.post1 → 1.4.2 (A set of python modules for machine learning and data mining)

  • scipy 1.12.0 → 1.13.0 (SciPy: Scientific Library for Python)

  • shapely 2.0.1 → 2.0.4 (Geometric objects, predicates, and operations)

  • statsmodels 0.14.1 → 0.14.2 (Statistical computations and models for Python)

  • winpython 7.5.20240410 → 7.6.20240427 (WinPython distribution tools, including WPPM)

Removed packages:

  • db_py 0.5.4b1 (a db package that doesn't suck)

  • jaraco_classes 3.3.0 (Utility functions for Python class constructs)

  • lz4 4.3.3 (LZ4 Bindings for Python)

  • marshmallow_enum 1.5.1 (Enum field for Marshmallow)


@stonebig
Copy link
Contributor Author

stonebig commented May 1, 2024

WinPython 2024-03 b2 (2024-05-11)

Changes from WinPython 2024-03 b1 :

  • Infrastructure:
    • smaller codebase to maintain: remove lot of dead internal code,
    • Build requirement on Python is reduced to a WinPythondot 3.8+ , augmented per flit + packaging
    • Python-3.13.0b1, required patching lib\tempfile.py line 384 with '_os.mkdir(file)', to get pip usable on Windows
  • New Packages:
  • Upgraded Packages:
    • sqlite_bro-0.13.0: made compatible with Python-3.13.0b1 version of PEP 667
    • polars-0.20.25
  • Removed Packages:

Areas of particular interest for testers:

  • the only python-3.13.0b1 on windows with pip installed and working out-of-the-box
  • WinPython stable so far after the big clean-up
  • to use pip-24.0 on Python-3.13, the mode "python -m pip" shall be used , as pip.exe shortcut is missing

Next build:

  • a little more preventive WinPython internals clean-up around 'package()'

binaries at:

MD5 SHA-1 SHA-256 Binary Size blake2b-256
684e42db6f5de672640a3034d4beba46 dc15760c9821bbfb42c63ebed17458df65fe1360 df6227df6569ec140b67593178c2bd96432ee1223cd0ec7b15c8d7d034eb47ec Winpython64-3.13.0.0dotb1.exe 24 533 475 Bytes eca2fafb59c7c65c7c7b42a078aec76603e0d30dab60a9d4f7fae7019058c491
7b85e0450226417e14378fcc40cfec71 5d1242ce61088166728935f023bc6db1ecdb8ed5 76eedaf277d0b74c94386f8a85e73cb5164d444934c4aa08f69850899d581699 Winpython64-3.12.3.1dotb2.exe 24 073 360 Bytes ff011fa43848c280910a4d48a0f16bac99bf0baab024743fe89180cb607b7121
5d1a64f0bc9a02e8d8f8ddcd719321cd fa3d64030fa398e2c607a0a8886f7090e9158a21 cec0aa8dba982081750380ae42c3987ac672121c8f5cf1805ea7934562f27e6f Winpython64-3.12.3.1b2.exe 906 281 001 Bytes 01ae6f9aa7cd351b6b046bea97d10c7783a86d05f6c93601333a9e416a1ad202

WinPython 3.12.3.1

The following packages are included in WinPython-64bit v3.12.3.1 b2.

Tools

Name Version Description
Nodejs v20.12.2 a JavaScript runtime built on Chrome's V8 JavaScript engine
npmjs 10.5.0 a package manager for JavaScript
Pandoc 3.1.9 a universal document converter

Python packages

Name Version Description
Python 3.12.3 Python programming language with standard library
about_time 4.2.1 Easily measure timing and throughput of code blocks, with beautiful human friendly representations.
absl_py 2.0.0 Abseil Python Common Libraries, see https://github.com/abseil/abseil-py.
accelerate 0.28.0 Accelerate
adbc_driver_manager 0.11.0 A generic entrypoint for ADBC drivers.
adodbapi 2.6.1.3 A pure Python package implementing PEP 249 DB-API using Microsoft ADO.
affine 2.3.1 Matrices describing affine transformation of the plane.
aiofiles 23.2.1 File support for asyncio.
aiohttp 3.9.3 Async http client/server framework (asyncio)
aiosignal 1.3.1 aiosignal: a list of registered asynchronous callbacks
aiosqlite 0.20.0 asyncio bridge to the standard sqlite3 module
alabaster 0.7.16 A light, configurable Sphinx theme
alembic 1.13.1 A database migration tool for SQLAlchemy.
alive_progress 3.1.5 A new kind of Progress Bar, with real-time throughput, ETA, and very cool animations!
altair 5.3.0 Vega-Altair: A declarative statistical visualization library for Python.
altair_data_server 0.4.1 A background data server for Altair charts.
altair_transform 0.2.0 A python engine for evaluating Altair transforms.
aniso8601 9.0.1 A library for parsing ISO 8601 strings.
annotated_types 0.6.0 Reusable constraint types to use with typing.Annotated
anyio 4.3.0 High level compatibility layer for multiple asynchronous event loop implementations
anywidget 0.9.3 custom jupyter widgets made easy
appdirs 1.4.4 A small Python module for determining appropriate platform-specific dirs, e.g. a "user data dir".
argon2_cffi 23.1.0 Argon2 for Python
argon2_cffi_bindings 21.2.0 Low-level CFFI bindings for Argon2
array_api_compat 1.6 A wrapper around NumPy and other array libraries to make them compatible with the Array API standard
arrow 1.2.2 Better dates & times for Python
asciitree 0.3.3 Draws ASCII trees.
asgi_csrf 0.9 ASGI middleware for protecting against CSRF attacks
asgiref 3.8.1 ASGI specs, helper code, and adapters
asn1crypto 1.5.1 Fast ASN.1 parser and serializer with definitions for private keys, public keys, certificates, CRL, OCSP, CMS, PKCS#3, PKCS#7, PKCS#8, PKCS#12, PKCS#5, X.509 and TSP
asteval 0.9.31 Safe, minimalistic evaluator of python expression using ast module
astroid 3.1.0 An abstract syntax tree for Python with inference support.
astropy 5.3.4 Astronomy and astrophysics core library
asttokens 2.4.1 Annotate AST trees with source code positions
async_lru 2.0.4 Simple LRU cache for asyncio
async_timeout 4.0.3 Timeout context manager for asyncio programs
atomicwrites 1.4.0 Atomic file writes.
attrs 23.2.0 Classes Without Boilerplate
autograd 1.6.2 Efficiently computes derivatives of numpy code.
autopep8 2.0.4 A tool that automatically formats Python code to conform to the PEP 8 style guide
azure_core 1.30.1 Microsoft Azure Core Library for Python
azure_cosmos 4.6.0 Microsoft Azure Cosmos Client Library for Python
azure_identity 1.16.0 Microsoft Azure Identity Library for Python
babel 2.13.1 Internationalization utilities
baresql 0.8.0 playing SQL directly on Python datas
bcrypt 4.0.1 Modern password hashing for your software and your servers
beautifulsoup4 4.12.2 Screen-scraping library
binaryornot 0.4.4 Ultra-lightweight pure Python package to check if a file is binary or text.
black 24.4.2 The uncompromising code formatter.
bleach 6.0.0 An easy safelist-based HTML-sanitizing tool.
blinker 1.7.0 Fast, simple object-to-object and broadcast signaling
bokeh 3.4.1 Interactive plots and applications in the browser from Python
botorch 0.9.5 Bayesian Optimization in PyTorch
branca 0.6.0 Generate complex HTML+JS pages with Python
brewer2mpl 1.4.1 Connect colorbrewer2.org color maps to Python and matplotlib
brotli 1.1.0 Python bindings for the Brotli compression library
build 1.1.1 A simple, correct Python build frontend
cachelib 0.10.2 A collection of cache libraries in the same API interface.
cachetools 5.3.1 Extensible memoizing collections and decorators
cartopy 0.23.0 A Python library for cartographic visualizations with Matplotlib
certifi 2023.11.17 Python package for providing Mozilla's CA Bundle.
cffi 1.16.0 Foreign Function Interface for Python calling C code.
cftime 1.6.3 Time-handling functionality from netcdf4-python
chardet 5.2.0 Universal encoding detector for Python 3
charset_normalizer 3.2.0 The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet.
clarabel 0.7.1 Clarabel Conic Interior Point Solver for Rust / Python
click 8.1.7 Composable command line interface toolkit
click_default_group 1.2.4 click_default_group
click_plugins 1.1.1 An extension module for click to enable registering CLI commands via setuptools entry-points.
cligj 0.7.2 Click params for commmand line interfaces to GeoJSON
cloudpickle 3.0.0 Pickler class to extend the standard pickle.Pickler functionality
clr_loader 0.2.6 Generic pure Python loader for .NET runtimes
clrmagic 0.0.1a2 IPython cell magic to use .NET languages
cma 3.2.2 CMA-ES, Covariance Matrix Adaptation Evolution Strategy for non-linear numerical optimization in Python
colorama 0.4.6 Cross-platform colored terminal text.
colorcet 3.0.1 Collection of perceptually uniform colormaps
colorlog 6.8.2 Add colours to the output of Python's logging module.
comm 0.1.4 Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc.
contourpy 1.2.1 Python library for calculating contours of 2D quadrilateral grids
cookiecutter 2.3.0 A command-line utility that creates projects from project templates, e.g. creating a Python package project from a Python package project template.
coverage 7.3.2 Code coverage measurement for Python
cryptography 41.0.5 cryptography is a package which provides cryptographic recipes and primitives to Python developers.
cvxopt 1.3.2 Convex optimization package
cvxpy 1.5.0 A domain-specific language for modeling convex optimization problems in Python.
cycler 0.12.1 Composable style cycles
cython 3.0.10 The Cython compiler for writing C extensions in the Python language.
cytoolz 0.12.3 Cython implementation of Toolz: High performance functional utilities
dash 2.16.1 A Python framework for building reactive web-apps. Developed by Plotly.
dash_core_components 2.0.0 Core component suite for Dash
dash_html_components 2.0.0 Vanilla HTML components for Dash
dash_table 5.0.0 Dash table
dask 2024.3.1 Parallel PyData with Task Scheduling
dask_expr 1.0.5 High Level Expressions for Dask
dask_image 2023.8.1 Distributed image processing
dataclasses_json 0.6.4 Easily serialize dataclasses to and from JSON.
datasette 0.64.6 An open source multi-tool for exploring and publishing data
datasette_graphql 2.2 Datasette plugin providing an automatic GraphQL API for your SQLite databases
datashader 0.16.1 Data visualization toolchain based on aggregating into a grid
db_py 0.5.4b1 a db package that doesn't suck
deap 1.4.1 Distributed Evolutionary Algorithms in Python
debugpy 1.8.0 An implementation of the Debug Adapter Protocol for Python
decorator 4.4.2 Decorators for Humans
defusedxml 0.7.1 XML bomb protection for Python stdlib modules
deprecated 1.2.13 Python @deprecated decorator to deprecate old python classes, functions or methods.
deprecation 2.1.0 A library to handle automated deprecations
diff_match_patch 20200713 Repackaging of Google's Diff Match and Patch libraries. Offers robust algorithms to perform the operations required for synchronizing plain text.
dill 0.3.7 serialize all of Python
dirty_cat 0.4.1 Machine learning with dirty categories.
distlib 0.3.6 Distribution utilities
distributed 2024.3.1 Distributed scheduler for Dask
distro 1.8.0 Distro - an OS platform information API
django 5.0.3 A high-level Python web framework that encourages rapid development and clean, pragmatic design.
dnspython 2.4.2 DNS toolkit
docopt 0.6.2 Pythonic argument parser, that will make you smile
docstring_to_markdown 0.13 On the fly conversion of Python docstrings to markdown
docutils 0.20.1 Docutils -- Python Documentation Utilities
duckdb 0.10.2 DuckDB in-process database
ecos 2.0.13 This is the Python package for ECOS: Embedded Cone Solver. See Github page for more information.
editables 0.3 Editable installations
emcee 3.1.4 The Python ensemble sampling toolkit for MCMC
entrypoints 0.4 Discover and load entry points from installed packages.
et_xmlfile 1.1.0 An implementation of lxml.xmlfile for the standard library
executing 2.0.1 Get the currently executing AST node of a frame, and other information
fast_histogram 0.12 Fast simple 1D and 2D histograms
fastapi 0.109.1 FastAPI framework, high performance, easy to learn, fast to code, ready for production
fasteners 0.18 A python package that provides useful locks
fastjsonschema 2.18.0 Fastest Python implementation of JSON schema
feather_format 0.4.1 Simple wrapper library to the Apache Arrow-based Feather File Format
filelock 3.12.4 A platform independent file lock.
filterpy 1.4.5 Kalman filtering and optimal estimation library
fiona 1.9.5 Fiona reads and writes spatial data files
flake8 7.0.0 the modular source code checker: pep8 pyflakes and co
flask 3.0.2 A simple framework for building complex web applications.
flask_mail 0.9.1 Flask extension for sending email
flask_session 0.5.0 Server-side session support for Flask
flask_sqlalchemy 3.0.5 Add SQLAlchemy support to your Flask application.
flit 3.9.0 A simple packaging tool for simple packages.
flit_core 3.9.0 Distribution-building parts of Flit. See flit package for more information
folium 0.14.0 Make beautiful maps with Leaflet.js & Python
fonttools 4.50.0 Tools to manipulate font files
formlayout 1.2.1a1 The most easy way to create Qt form dialogs and widgets with Python
fqdn 1.5.1 Validates fully-qualified domain names against RFC 1123, so that they are acceptable to modern bowsers
frozenlist 1.4.1 A list-like structure which implements collections.abc.MutableSequence
fsspec 2024.3.1 File-system specification
future 0.18.2 Clean single-source support for Python 3 and 2
fuzzywuzzy 0.18.0 Fuzzy string matching in python
gdal 3.7.3 GDAL: Geospatial Data Abstraction Library
geographiclib 2.0 The geodesic routines from GeographicLib
geopandas 0.14.0 Geographic pandas extensions
geopy 2.4.0 Python Geocoding Toolbox
gitdb 4.0.10 Git Object Database
gitpython 3.1.32 GitPython is a Python library used to interact with Git repositories
gpytorch 1.11 An implementation of Gaussian Processes in Pytorch
grapheme 0.6.0 Unicode grapheme helpers
graphene 3.3 GraphQL Framework for Python
graphql_core 3.2.3 GraphQL implementation for Python, a port of GraphQL.js, the JavaScript reference implementation for GraphQL.
graphql_relay 3.2.0 Relay library for graphql-core
greenlet 3.0.3 Lightweight in-process concurrent programming
guidata 3.4.1 Automatic GUI generation for easy dataset editing and display
h11 0.14.0 A pure-Python, bring-your-own-I/O implementation of HTTP/1.1
h2 4.1.0 HTTP/2 State-Machine based protocol implementation
h5py 3.10.0 Read and write HDF5 files from Python
hatch 1.9.3 Modern, extensible Python project management
hatchling 1.21.1 Modern, extensible Python build backend
highspy 1.7.1.dev1 A thin set of pybind11 wrappers to HiGHS
holoviews 1.18.3 Stop plotting your data - annotate your data and let it visualize itself.
hpack 4.0.0 Pure-Python HPACK header compression
html5lib 1.1 HTML parser based on the WHATWG HTML specification
httpcore 1.0.5 A minimal low-level HTTP client.
httpie 3.2.2 HTTPie: modern, user-friendly command-line HTTP client for the API era.
httpx 0.27.0 The next generation HTTP client.
huggingface_hub 0.21.4 Client library to download and publish models, datasets and other repos on the huggingface.co hub
hupper 1.12 Integrated process monitor for developing and reloading daemons.
hvplot 0.9.2 A high-level plotting API for the PyData ecosystem built on HoloViews.
hypercorn 0.16.0 A ASGI Server based on Hyper libraries and inspired by Gunicorn
hyperframe 6.0.1 HTTP/2 framing layer for Python
hyperlink 21.0.0 A featureful, immutable, and correct URL for Python.
hypothesis 6.99.13 A library for property-based testing
idna 3.4 Internationalized Domain Names in Applications (IDNA)
imageio 2.33.1 Library for reading and writing a wide range of image, video, scientific, and volumetric data formats.
imageio_ffmpeg 0.4.8 FFMPEG wrapper for Python
imagesize 1.4.1 Getting image size from png/jpeg/jpeg2000/gif file
imbalanced_learn 0.12.2 Toolbox for imbalanced dataset in machine learning.
importlib_metadata 6.8.0 Read metadata from Python packages
inflection 0.5.1 A port of Ruby on Rails inflector to Python
iniconfig 2.0.0 brain-dead simple config-ini parsing
intervaltree 3.0.2 Editable interval tree data structure for Python 2 and 3
ipycanvas 0.13.1 Interactive widgets library exposing the browser's Canvas API
ipykernel 6.29.4 IPython Kernel for Jupyter
ipyleaflet 0.18.2 A Jupyter widget for dynamic Leaflet maps
ipympl 0.9.3 Matplotlib Jupyter Extension
ipython 8.22.2 IPython: Productive Interactive Computing
ipython_genutils 0.2.0 Vestigial utilities from IPython
ipython_sql 0.5.0 RDBMS access via IPython
ipywidgets 8.1.2 Jupyter interactive widgets
isoduration 20.11.0 Operations with ISO 8601 durations
isort 5.13.2 A Python utility / library to sort Python imports.
itsdangerous 2.1.2 Safely pass data to untrusted environments and back.
janus 1.0.0 Mixed sync-async queue to interoperate between asyncio tasks and classic threads
jaraco_classes 3.3.0 Utility functions for Python class constructs
jaxtyping 0.2.22 Type annotations and runtime checking for shape and dtype of JAX arrays, and PyTrees.
jedi 0.19.1 An autocompletion tool for Python that can be used for text editors.
jellyfish 1.0.3 Approximate and phonetic matching of strings.
jinja2 3.1.2 A very fast and expressive template engine.
joblib 1.3.2 Lightweight pipelining with Python functions
json5 0.9.14 A Python implementation of the JSON5 data format.
jsonpatch 1.33 Apply JSON-Patches (RFC 6902)
jsonpointer 2.4 Identify specific nodes in a JSON document (RFC 6901)
jsonschema 4.19.2 An implementation of JSON Schema validation for Python
jsonschema_specifications 2023.12.1 The JSON Schema meta-schemas and vocabularies, exposed as a Registry
julia 0.6.2 Julia/Python bridge with IPython support.
jupyter 1.0.0 Jupyter metapackage. Install all the Jupyter components in one go.
jupyter_bokeh 3.0.7 A Jupyter extension for rendering Bokeh content.
jupyter_client 8.6.0 Jupyter protocol implementation and client libraries
jupyter_console 6.6.3 Jupyter terminal console
jupyter_core 5.5.0 Jupyter core package. A base package on which Jupyter projects rely.
jupyter_events 0.9.0 Jupyter Event System library
jupyter_lsp 2.2.4 Multi-Language Server WebSocket proxy for Jupyter Notebook/Lab server
jupyter_packaging 0.12.3 Jupyter Packaging Utilities.
jupyter_server 2.12.5 The backend—i.e. core services, APIs, and REST endpoints—to Jupyter web applications.
jupyter_server_mathjax 0.2.6 MathJax resources as a Jupyter Server Extension.
jupyter_server_terminals 0.4.4 A Jupyter Server Extension Providing Terminals.
jupyter_sphinx 0.4.0 Jupyter Sphinx Extensions
jupyterlab 4.1.5 JupyterLab computational environment
jupyterlab_pygments 0.2.2 Pygments theme using JupyterLab CSS variables
jupyterlab_server 2.25.4 A set of server components for JupyterLab and JupyterLab like applications.
jupyterlab_widgets 3.0.10 Jupyter interactive widgets for JupyterLab
keras 3.1.1 Multi-backend Keras.
keyring 24.3.1 Store and access your passwords safely.
kiwisolver 1.4.5 A fast implementation of the Cassowary constraint solver
kornia 0.7.1 Open Source Differentiable Computer Vision Library for PyTorch
langchain 0.1.13 Building applications with LLMs through composability
langchain_community 0.0.29 Community contributed LangChain integrations.
langchain_core 0.1.35 Building applications with LLMs through composability
langchain_text_splitters 0.0.1 LangChain text splitting utilities
langsmith 0.1.33 Client library to connect to the LangSmith LLM Tracing and Evaluation Platform.
lazy_loader 0.4 Makes it easy to load subpackages and functions on demand.
lightning 2.2.1 The Deep Learning framework to train, deploy, and ship AI products Lightning fast.
lightning_utilities 0.10.0 PyTorch Lightning Sample project.
linear_operator 0.5.1 A linear operator implementation, primarily designed for finite-dimensional positive definite operators (i.e. kernel matrices).
linkify_it_py 2.0.2 Links recognition library with FULL unicode support.
llvmlite 0.42.0 lightweight wrapper around basic LLVM functionality
lmfit 1.0.3 Least-Squares Minimization with Bounds and Constraints
locket 1.0.0 File-based locks for Python on Linux and Windows
loky 3.4.0 A robust implementation of concurrent.futures.ProcessPoolExecutor
lxml 5.1.0 Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API.
mako 1.2.0 A super-fast templating language that borrows the best ideas from the existing templating languages.
markdown 3.5.1 Python implementation of John Gruber's Markdown.
markdown_it_py 2.2.0 Python port of markdown-it. Markdown parsing, done right!
markupsafe 2.1.1 Safely add untrusted strings to HTML/XML markup.
marshmallow 3.20.2 A lightweight library for converting complex datatypes to and from native Python datatypes.
matplotlib 3.8.3 Python plotting package
matplotlib_inline 0.1.6 Inline Matplotlib backend for Jupyter
maturin 1.5.1 Build and publish crates with pyo3, rust-cpython and cffi bindings as well as rust binaries as python packages
mccabe 0.7.0 McCabe checker, plugin for flake8
mdit_py_plugins 0.3.5 Collection of plugins for markdown-it-py
mdurl 0.1.2 Markdown URL utilities
mercantile 1.2.1 Web mercator XYZ tile utilities
mergedeep 1.3.4 A deep merge function for 🐍.
missingno 0.5.1 Missing data visualization module for Python.
mistune 2.0.5 A sane Markdown parser with useful plugins and renderers
mizani 0.9.2 Scales for Python
ml_dtypes 0.4.0 stand-alone implementation of several NumPy dtype extensions used in machine learning libraries
mlxtend 0.22.0 Machine Learning Library Extensions
more_itertools 10.2.0 More routines for operating on iterables, beyond itertools
moviepy 1.0.3 Video editing with Python
mpl_scatter_density 0.7 Matplotlib helpers to make density scatter plots
mpld3 0.5.8 D3 Viewer for Matplotlib
mpmath 1.3.0 Python library for arbitrary-precision floating-point arithmetic
msal 1.24.1 The Microsoft Authentication Library (MSAL) for Python library
msal_extensions 1.0.0 Microsoft Authentication Library extensions (MSAL EX) provides a persistence API that can save your data on disk, encrypted on Windows, macOS and Linux. Concurrent data access will be coordinated by a file lock mechanism.
msgpack 1.0.4 MessagePack serializer
msvc_runtime 14.38.33135 Install the Microsoft™ Visual C++™ runtime DLLs to the sys.prefix and Scripts directories
multidict 6.0.5 multidict implementation
multipledispatch 1.0.0 Multiple dispatch
mutagen 1.46.0 read and write audio tags for many formats
mypy 1.9.0 Optional static typing for Python
mypy_extensions 1.0.0 Type system extensions for programs checked with the mypy type checker.
mysql_connector_python 8.0.21 MySQL driver written in Python
namex 0.0.7 A simple utility to separate the implementation of your Python package and its public API surface.
nbclient 0.10.0 A client library for executing notebooks. Formerly nbconvert's ExecutePreprocessor.
nbconvert 7.16.1 Converting Jupyter Notebooks (.ipynb files) to other formats. Output formats include asciidoc, html, latex, markdown, pdf, py, rst, script. nbconvert can be used both as a Python library (import nbconvert) or as a command line tool (invoked as jupyter nbconvert ...).
nbdime 4.0.1 Diff and merge of Jupyter Notebooks
nbformat 5.10.3 The Jupyter Notebook format
nbval 0.9.6 A py.test plugin to validate Jupyter notebooks
nest_asyncio 1.6.0 Patch asyncio to allow nested event loops
netcdf4 1.6.5 Provides an object-oriented python interface to the netCDF version 4 library
networkx 3.3 Python package for creating and manipulating graphs and networks
nltk 3.8.1 Natural Language Toolkit
notebook 7.1.2 Jupyter Notebook - A web-based notebook environment for interactive computing
notebook_shim 0.2.3 A shim layer for notebook traits and config
ntlm_auth 1.5.0 Creates NTLM authentication structures
numba 0.59.1 compiling Python code using LLVM
numcodecs 0.12.1 A Python package providing buffer compression and transformation codecs for use in data storage and communication applications.
numexpr 2.10.0 Fast numerical expression evaluator for NumPy
numpy 1.26.4 Fundamental package for array computing in Python
numpydoc 1.6.0 Sphinx extension to support docstrings in Numpy format
openai 1.14.3 The official Python library for the openai API
opencv_python 4.9.0.80 Wrapper package for OpenCV python bindings.
openpyxl 3.1.2 A Python library to read/write Excel 2010 xlsx/xlsm files
opt_einsum 3.3.0 Optimizing numpys einsum function
optree 0.11.0 Optimized PyTree Utilities.
optuna 3.6.1 A hyperparameter optimization framework
orjson 3.9.15 Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy
ortools 9.8.3296 Google OR-Tools python libraries and modules
outcome 1.3.0.post0 Capture the outcome of Python function calls.
overrides 7.7.0 A decorator to automatically detect mismatch when overriding a method.
packaging 23.2 Core utilities for Python packages
pandas 2.2.2 Powerful data structures for data analysis, time series, and statistics
pandocfilters 1.5.0 Utilities for writing pandoc filters in python
panel 1.4.1 The powerful data exploration & web app framework for Python.
papermill 2.5.1a1 Parameterize and run Jupyter and nteract Notebooks
param 2.1.0 Make your Python code clearer and more reliable by declaring Parameters.
paramiko 2.8.0 SSH2 protocol library
parso 0.8.3 A Python Parser
partd 1.4.0 Appendable key-value storage
pathspec 0.11.0 Utility library for gitignore style pattern matching of file paths.
patsy 0.5.6 A Python package for describing statistical models and for building design matrices.
pdfrw 0.4.post2 PDF file reader/writer library
pep8 1.7.1 Python style guide checker
pexpect 4.8.0 Pexpect allows easy control of interactive console applications.
pg8000 1.23.0 PostgreSQL interface library
pickleshare 0.7.5 Tiny 'shelve'-like database with concurrency support
pillow 10.3.0 Python Imaging Library (Fork)
pims 0.6.1 Python Image Sequence
pint 0.23 Physical quantities module
pip 24.0 The PyPA recommended tool for installing Python packages.
pkginfo 1.9.6 Query metadata from sdists / bdists / installed packages.
platformdirs 3.8.1 A small Python package for determining appropriate platform-specific dirs, e.g. a "user data dir".
plotly 5.20.0 An open-source, interactive data visualization library for Python
plotnine 0.12.4 A Grammar of Graphics for Python
plotpy 2.3.0 Curve and image plotting tools for Python/Qt applications
pluggy 1.0.0 plugin and hook calling mechanisms for python
ply 3.11 Python Lex & Yacc
pmdarima 2.0.4 Python's forecast::auto.arima equivalent
polars 0.20.25 Blazingly fast DataFrame library
portalocker 2.7.0 Wraps the portalocker recipe for easy usage
portpicker 1.5.0 A library to choose unique available network ports.
ppci 0.5.9 A compiler for ARM, X86, MSP430, xtensa and more implemented in pure Python
prettytable 3.3.0 A simple Python library for easily displaying tabular data in a visually appealing ASCII table format
priority 2.0.0 A pure-Python implementation of the HTTP/2 priority tree
proglog 0.1.10 Log and progress bar manager for console, notebooks, web...
prometheus_client 0.18.0 Python client for the Prometheus monitoring system.
prompt_toolkit 3.0.43 Library for building powerful interactive command lines in Python
protobuf 4.25.1 Protocol Buffers
psutil 5.9.5 Cross-platform lib for process and system monitoring in Python.
psygnal 0.9.5 Fast python callback/event system modeled after Qt Signals
ptpython 3.0.26 Python REPL build on top of prompt_toolkit
ptyprocess 0.7.0 Run a subprocess in a pseudo terminal
pulp 2.6.0 PuLP is an LP modeler written in python. PuLP can generate MPS or LP files and call GLPK, COIN CLP/CBC, CPLEX, and GUROBI to solve linear problems.
pure_eval 0.2.2 Safely evaluate AST nodes without side effects
pyaml 20.4.0 PyYAML-based module to produce pretty and readable YAML-serialized data
pyarrow 16.0.0 Python library for Apache Arrow
pyaudio 0.2.14 Cross-platform audio I/O with PortAudio
pybars3 0.9.7 Handlebars.js templating for Python 3 and 2
pybind11 2.12.0 Seamless operability between C++11 and Python
pycodestyle 2.11.1 Python style guide checker
pycosat 0.6.6 bindings to picosat (a SAT solver)
pycparser 2.21 C parser in Python
pycryptodomex 3.18.0 Cryptographic library for Python
pyct 0.4.8 Python package common tasks for users (e.g. copy examples, fetch data, ...)
pydantic 2.6.4 Data validation using Python type hints
pydantic_core 2.16.3 Core functionality for Pydantic validation and serialization
pydeck 0.8.0 Widget for deck.gl maps
pydocstyle 6.3.0 Python docstring style checker
pydub 0.25.1 Manipulate audio with an simple and easy high level interface
pyepsg 0.4.0 Easy access to the EPSG database via http://epsg.io/
pyerfa 2.0.1.1 Python bindings for ERFA
pyflakes 3.2.0 passive checker of Python programs
pygad 3.2.0 PyGAD: A Python Library for Building the Genetic Algorithm and Training Machine Learning Algoithms (Keras & PyTorch).
pygame 2.5.2 Python Game Development
pygments 2.16.1 Pygments is a syntax highlighting package written in Python.
pyjwt 2.4.0 JSON Web Token implementation in Python
pylint 3.1.0 python code static checker
pylint_venv 3.0.3 pylint-venv provides a Pylint init-hook to use the same Pylint installation with different virtual environments.
pyls_spyder 0.4.0 Spyder extensions for the python-lsp-server
pymeta3 0.5.1 Pattern-matching language based on OMeta for Python 3 and 2
pymongo 4.5.0 Python driver for MongoDB http://www.mongodb.org
pymoo 0.6.1.1 Multi-Objective Optimization in Python
pympler 1.0.1 A development tool to measure, monitor and analyze the memory behavior of Python objects.
pynacl 1.5.0 Python binding to the Networking and Cryptography (NaCl) library
pynndescent 0.5.11 Nearest Neighbor Descent
pyodbc 5.0.1 DB API module for ODBC
pyomo 6.7.0 Pyomo: Python Optimization Modeling Objects
pyopengl 3.1.7 Standard OpenGL bindings for Python
pypandoc 1.5 Thin wrapper for pandoc.
pyparsing 3.0.9 pyparsing module - Classes and methods to define and execute parsing grammars
pypdf 3.15.2 A pure-python PDF library capable of splitting, merging, cropping, and transforming PDF files
pypng 0.20220715.0 Pure Python library for saving and loading PNG images
pyproj 3.6.1 Python interface to PROJ (cartographic projections and coordinate transformations library)
pyproject_hooks 1.0.0 Wrappers to call pyproject.toml-based build backend hooks.
pyqt5 5.15.10 Python bindings for the Qt cross platform application toolkit
pyqt5_qt5 5.15.2 The subset of a Qt installation needed by PyQt5.
pyqt5_sip 12.13.0 The sip module support for PyQt5
pyqtgraph 0.13.4 Scientific Graphics and GUI Library for Python
pyqtwebengine 5.15.6 Python bindings for the Qt WebEngine framework
pyqtwebengine_qt5 5.15.2 The subset of a Qt installation needed by PyQtWebEngine.
pyro_api 0.1.2 Generic API for dispatch to Pyro backends.
pyro_ppl 1.8.4 A Python library for probabilistic modeling and inference
pyserial 3.5 Python Serial Port Extension
pyshp 2.3.1 Pure Python read/write support for ESRI Shapefile format
pysimplegui 4.60.4 Python GUIs for Humans. Launched in 2018. It's 2022 & PySimpleGUI is an ACTIVE & supported project. Super-simple to create custom GUI's. 325+ Demo programs & Cookbook for rapid start. Extensive documentation. Main docs at www.PySimpleGUI.org. Fun & your success are the focus. Examples using Machine Learning (GUI, OpenCV Integration), Rainmeter Style Desktop Widgets, Matplotlib + Pyplot, PIL support, add GUI to command line scripts, PDF & Image Viewers. Great for beginners & advanced GUI programmers.
pysocks 1.7.1 A Python SOCKS client module. See https://github.com/Anorov/PySocks for more information.
pystache 0.5.4 Mustache for Python
pytest 7.4.2 pytest: simple powerful testing with Python
python_barcode 0.15.1 Create standard barcodes with Python. No external modules needed. (optional Pillow support included).
python_dateutil 2.8.2 Extensions to the standard Python datetime module
python_dotenv 1.0.0 Read key-value pairs from a .env file and set them as environment variables
python_json_logger 2.0.7 A python library adding a json log formatter
python_lsp_black 2.0.0 Black plugin for the Python LSP Server
python_lsp_jsonrpc 1.1.2 JSON RPC 2.0 server library
python_lsp_server 1.11.0 Python Language Server for the Language Server Protocol
python_multipart 0.0.5 A streaming multipart parser for Python
python_slugify 6.1.2 A Python slugify application that also handles Unicode
pythonnet 3.0.3 .NET and Mono integration for Python
pythonqwt 0.12.1 Qt plotting widgets for Python
pytoolconfig 1.2.4 Python tool configuration
pytorch_lightning 2.2.1 PyTorch Lightning is the lightweight PyTorch wrapper for ML researchers. Scale your models. Write less boilerplate.
pytz 2023.3 World timezone definitions, modern and historical
pytz_deprecation_shim 0.1.0.post0 Shims to make deprecation of pytz easier
pyviz_comms 3.0.2 A JupyterLab extension for rendering HoloViz content.
pywin32 306 Python for Window Extensions
pywin32_ctypes 0.2.2 A (partial) reimplementation of pywin32 using ctypes/cffi
pywinpty 2.0.12 Pseudo terminal support for Windows from Python.
pywinusb 0.4.2 A package that simplifies USB/HID communications on windows
pyyaml 6.0.1 YAML parser and emitter for Python
pyzmq 25.1.2 Python bindings for 0MQ
qdarkstyle 3.2 The most complete dark/light style sheet for C++/Python and Qt applications
qpsolvers 4.3.0 Quadratic programming solvers in Python with a unified API.
qrcode 7.4.2 QR Code image generator
qstylizer 0.2.2 Stylesheet Generator for PyQt{4-5}/PySide{1-2}
qtawesome 1.3.1 FontAwesome icons in PyQt and PySide applications
qtconsole 5.5.1 Jupyter Qt console
qtpy 2.4.1 Provides an abstraction layer on top of the various Qt bindings (PyQt5/6 and PySide2/6).
quantecon 0.5.3 Import the main names to top level.
quart 0.19.4 A Python ASGI web microframework with the same API as Flask
rapidfuzz 3.5.2 rapid fuzzy string matching
rasterio 1.3.9 Fast and direct raster I/O for use with Numpy and SciPy
readme_renderer 35.0 readme_renderer is a library for rendering "readme" descriptions for Warehouse
redis 4.3.1 Python client for Redis database and key-value store
referencing 0.31.1 JSON Referencing + Python
regex 2023.10.3 Alternative regular expression module, to replace re.
reportlab 4.0.4 The Reportlab Toolkit
requests 2.31.0 Python HTTP for Humans.
requests_ntlm 1.1.0 This package allows for HTTP NTLM authentication using the requests library.
requests_toolbelt 0.10.1 A utility belt for advanced users of python-requests
retrying 1.3.4 Retrying
rfc3339_validator 0.1.4 A pure python RFC3339 validator
rfc3986 2.0.0 Validating URI References per RFC 3986
rfc3986_validator 0.1.1 Pure python rfc3986 validator
rich 13.7.1 Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal
rope 1.12.0 a python refactoring library...
rpds_py 0.13.2 Python bindings to Rust's persistent data structures (rpds)
rtree 1.1.0 R-Tree spatial index for Python GIS
rx 3.1.1 Reactive Extensions (Rx) for Python
safetensors 0.4.2 Fast and Safe Tensor serialization
scikit_image 0.23.2 Image processing in Python
scikit_learn 1.4.2 A set of python modules for machine learning and data mining
scikit_optimize 0.10.1 Sequential model-based optimization toolbox.
scipy 1.13.0 Fundamental algorithms for scientific computing in Python
scramp 1.4.1 An implementation of the SCRAM protocol.
scs 3.2.4.post1 Splitting conic solver
seaborn 0.13.2 Statistical data visualization
send2trash 1.8.2 Send file to trash natively under Mac OS X, Windows and Linux
setuptools 69.2.0 Easily download, build, install, upgrade, and uninstall Python packages
shapely 2.0.4 Manipulation and analysis of geometric objects
shellingham 1.5.0.post1 Tool to Detect Surrounding Shell
simplegeneric 0.8.1 Simple generic functions (similar to Python's own len(), pickle.dump(), etc.)
simplejson 3.17.6 Simple, fast, extensible JSON encoder/decoder for Python
simpy 4.0.1 Event discrete, process based simulation for Python.
six 1.16.0 Python 2 and 3 compatibility utilities
slicerator 1.1.0 A lazy-loading, fancy-sliceable iterable.
smmap 5.0.0 A pure Python implementation of a sliding window memory map manager
snakeviz 2.1.0 A web-based viewer for Python profiler output
sniffio 1.3.0 Sniff out which async library your code is running under
snowballstemmer 2.2.0 This package provides 29 stemmers for 28 languages generated from Snowball algorithms.
snuggs 1.4.7 Snuggs are s-expressions for Numpy
sortedcontainers 2.4.0 Sorted Containers -- Sorted List, Sorted Dict, Sorted Set
sounddevice 0.4.6 Play and Record Sound with Python
soupsieve 2.3.2.post1 A modern CSS selector implementation for Beautiful Soup.
sphinx 7.2.6 Python documentation generator
sphinx_rtd_theme 2.0.0 Read the Docs theme for Sphinx
sphinxcontrib_applehelp 1.0.2 sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books
sphinxcontrib_devhelp 1.0.2 sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document.
sphinxcontrib_htmlhelp 2.0.0 sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files
sphinxcontrib_jquery 4.1 Extension to include jQuery on newer Sphinx releases
sphinxcontrib_jsmath 1.0.1 A sphinx extension which renders display math in HTML via JavaScript
sphinxcontrib_qthelp 1.0.3 sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document.
sphinxcontrib_serializinghtml 1.1.9 sphinxcontrib-serializinghtml is a sphinx extension which outputs "serialized" HTML files (json and pickle)
spyder 5.5.4 The Scientific Python Development Environment
spyder_kernels 2.5.1 Jupyter kernels for Spyder's console
sqlalchemy 2.0.28 Database Abstraction Library
sqlite_bro 0.13.1 a graphic SQLite Client in 1 Python file
sqlite_fts4 1.0.3 Python functions for working with SQLite FTS4 search
sqlite_utils 3.36 CLI tool and Python library for manipulating SQLite databases
sqlparse 0.4.3 A non-validating SQL parser.
sspyrs 0.3 Lightweight interface for SSRS reports to python
stack_data 0.6.1 Extract data from python stack frames and tracebacks for informative displays
starlette 0.35.1 The little ASGI library that shines.
statsmodels 0.14.2 Statistical computations and models for Python
streamlit 1.32.2 A faster way to build and share data apps
streamz 0.6.3 Streams
supersmoother 0.4 Python implementation of Friedman's Supersmoother
swifter 1.3.4 A package which efficiently applies any function to a pandas dataframe or series in the fastest available manner
sympy 1.12 Computer algebra system (CAS) in Python
tabulate 0.9.0 Pretty-print tabular data
tbats 1.1.0 BATS and TBATS for time series forecasting
tblib 1.7.0 Traceback serialization library.
tenacity 8.1.0 Retry code until it succeeds
terminado 0.17.0 Tornado websocket backend for the Xterm.js Javascript terminal emulator library.
text_unidecode 1.3 The most basic Text::Unidecode port
textdistance 4.5.0 Compute distance between the two texts.
threadpoolctl 3.1.0 threadpoolctl
three_merge 0.1.1 Simple library for merging two strings with respect to a base one
tifffile 2023.7.18 Read and write TIFF files
tinycss2 1.1.1 A tiny CSS parser
tokenizers 0.15.1 Fast and Customizable Tokenizers
toml 0.10.2 Python Library for Tom's Obvious, Minimal Language
tomli 2.0.1 A lil' TOML parser
tomli_w 1.0.0 A lil' TOML writer
tomlkit 0.12.3 Style preserving TOML library
toolz 0.12.0 List processing tools and functional utilities
torch 2.2.2 Tensors and Dynamic neural networks in Python with strong GPU acceleration
torchaudio 2.2.2 An audio package for PyTorch
torchmetrics 1.3.2 PyTorch native Metrics
torchvision 0.17.2 image and video datasets and models for torch deep learning
tornado 6.4 Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.
tqdm 4.66.4 Fast, Extensible Progress Meter
traitlets 5.14.1 Traitlets Python configuration system
traittypes 0.2.1 Scipy trait types
transformers 4.38.2 State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow
trio 0.25.0 A friendly Python library for async concurrency and I/O
trove_classifiers 2023.2.20 Canonical source for classifiers on PyPI (pypi.org).
twine 4.0.1 Collection of utilities for publishing packages on PyPI
typeguard 2.13.3 Run-time type checker for Python
typing_extensions 4.9.0 Backported and Experimental Type Hints for Python 3.8+
typing_inspect 0.8.0 Runtime inspection utilities for typing module.
tzdata 2022.7 Provider of IANA time zone data
tzlocal 4.2 tzinfo object for the local timezone
uc_micro_py 1.0.1 Micro subset of unicode data files for linkify-it-py projects.
ujson 5.8.0 Ultra fast JSON encoder and decoder for Python
umap_learn 0.5.1 Uniform Manifold Approximation and Projection
uncertainties 3.1.7 Transparent calculations with uncertainties on the quantities involved (aka error propagation); fast calculation of derivatives
uri_template 1.2.0 RFC 6570 URI Template Processor
urllib3 2.0.3 HTTP library with thread-safe connection pooling, file post, and more.
userpath 1.8.0 Cross-platform tool for adding locations to the user PATH
uvicorn 0.26.0 The lightning-fast ASGI server.
vega_datasets 0.9.0 A Python package for offline access to Vega datasets
virtualenv 20.23.0 Virtual Python Environment builder
waitress 2.1.2 Waitress WSGI server
wasmer 1.1.0 Python extension to run WebAssembly binaries
wasmer_compiler_cranelift 1.1.0 Python extension to run WebAssembly binaries
wasmer_compiler_singlepass 1.1.0 Python extension to run WebAssembly binaries
watchdog 2.2.0 Filesystem events monitoring
wcwidth 0.2.9 Measures the displayed width of unicode strings in a terminal
webcolors 1.12 A library for working with color names and color values formats defined by HTML and CSS.
webencodings 0.5.1 Character encoding aliases for legacy web content
websocket_client 1.6.4 WebSocket client for Python with low level API options
websockets 12.0 An implementation of the WebSocket Protocol (RFC 6455 & 7692)
werkzeug 3.0.1 The comprehensive WSGI web application library.
whatthepatch 1.0.2 A patch parsing and application library.
wheel 0.43.0 A built-package format for Python
widgetsnbextension 4.0.10 Jupyter interactive widgets for Jupyter Notebook
winpython 8.0.20240501 WinPython distribution tools, including WPPM
wordcloud 1.9.3 A little word cloud generator
wrapt 1.14.1 Module for decorators, wrappers and monkey patching.
wsproto 1.2.0 WebSockets state-machine based protocol implementation
xarray 2024.2.0 N-D labeled arrays and datasets in Python
xlsxwriter 3.1.9 A Python module for creating Excel XLSX files.
xlwings 0.24.7 Make Excel fly: Interact with Excel from Python and vice versa.
xmltodict 0.13.0 Makes working with XML feel like you are working with JSON
xyzservices 2023.10.1 Source of XYZ tiles providers
yapf 0.40.1 A formatter for Python code.
yarl 1.7.2 Yet another URL library
yt_dlp 2023.7.6 A youtube-dl fork with additional features and patches
zarr 2.16.1 An implementation of chunked, compressed, N-dimensional arrays for Python
zict 3.0.0 Mutable mapping tools
zipp 3.17.0 Backport of pathlib-compatible object wrapper for zip files
zstandard 0.22.0 Zstandard bindings for Python

History of changes for WinPython-64bit 3.12.3.1

The following changes were made to WinPython-64bit distribution since version 3.12.3.0.

Python packages

New packages:

  • adbc_driver_manager 0.11.0 (A generic entrypoint for ADBC drivers.)

  • cartopy 0.23.0 (A Python library for cartographic visualizations with Matplotlib)

  • dask_expr 1.0.5 (High Level Expressions for Dask )

  • pyshp 2.3.1 (Pure Python read/write support for ESRI Shapefile format)

Upgraded packages:

  • accelerate 0.23.0 → 0.28.0 (Accelerate)

  • alabaster 0.7.13 → 0.7.16 (A light, configurable Sphinx theme)

  • alembic 1.12.1 → 1.13.1 (A database migration tool for SQLAlchemy.)

  • altair 5.2.0 → 5.3.0 (Vega-Altair: A declarative statistical visualization library for Python.)

  • anywidget 0.7.1 → 0.9.3 (custom jupyter widgets made easy)

  • array_api_compat 1.4.1 → 1.6 (A wrapper around NumPy and other array libraries to make them compatible with the Array API standard)

  • asgiref 3.7.2 → 3.8.1 (ASGI specs, helper code, and adapters)

  • azure_core 1.29.5 → 1.30.1 (Microsoft Azure Core Library for Python)

  • azure_cosmos 4.5.1 → 4.6.0 (Microsoft Azure Cosmos Client Library for Python)

  • azure_identity 1.15.0 → 1.16.0 (Microsoft Azure Identity Library for Python)

  • black 24.2.0 → 24.4.2 (The uncompromising code formatter.)

  • bokeh 3.4.0 → 3.4.1 (Interactive plots and applications in the browser from Python)

  • contourpy 1.2.0 → 1.2.1 (Python library for calculating contours of 2D quadrilateral grids)

  • dash 2.14.1 → 2.16.1 (A Python framework for building reactive web-apps. Developed by Plotly.)

  • dask 2023.10.1 → 2024.3.1 (Parallel PyData with Task Scheduling)

  • dataclasses_json 0.5.7 → 0.6.4 (Easily serialize dataclasses to and from JSON.)

  • datasette 0.64.5 → 0.64.6 (An open source multi-tool for exploring and publishing data)

  • datashader 0.16.0 → 0.16.1 (Data visualization toolchain based on aggregating into a grid)

  • distributed 2023.10.1 → 2024.3.1 (Distributed scheduler for Dask)

  • django 4.2.5 → 5.0.3 (A high-level Python web framework that encourages rapid development and clean, pragmatic design.)

  • duckdb 0.10.1 → 0.10.2 (DuckDB in-process database)

  • fonttools 4.44.0 → 4.50.0 (Tools to manipulate font files)

  • fsspec 2023.9.2 → 2024.3.1 (File-system specification)

  • hypercorn 0.14.4 → 0.16.0 (A ASGI Server based on Hyper libraries and inspired by Gunicorn)

  • hypothesis 6.87.1 → 6.99.13 (A library for property-based testing)

  • imageio 2.31.1 → 2.33.1 (Library for reading and writing a wide range of image, video, scientific, and volumetric data formats.)

  • isort 5.12.0 → 5.13.2 (A Python utility / library to sort Python imports.)

  • jsonschema_specifications 2023.7.1 → 2023.12.1 (The JSON Schema meta-schemas and vocabularies, exposed as a Registry)

  • jupyter_lsp 2.2.0 → 2.2.4 (Multi-Language Server WebSocket proxy for Jupyter Notebook/Lab server)

  • keyring 24.2.0 → 24.3.1 (Store and access your passwords safely.)

  • lazy_loader 0.3 → 0.4 (Makes it easy to load subpackages and functions on demand.)

  • marshmallow 3.12.1 → 3.20.2 (A lightweight library for converting complex datatypes to and from native Python datatypes.)

  • ml_dtypes 0.3.2 → 0.4.0 (stand-alone implementation of several NumPy dtype extensions used in machine learning libraries)

  • more_itertools 9.0.0 → 10.2.0 (More routines for operating on iterables, beyond itertools)

  • nest_asyncio 1.5.6 → 1.6.0 (Patch asyncio to allow nested event loops)

  • networkx 3.2.1 → 3.3 (Python package for creating and manipulating graphs and networks)

  • numexpr 2.8.7 → 2.10.0 (Fast numerical expression evaluator for NumPy)

  • numpydoc 1.3 → 1.6.0 (Sphinx extension to support docstrings in Numpy format)

  • pandas 2.2.1 → 2.2.2 (Powerful data structures for data analysis, time series, and statistics)

  • pillow 10.2.0 → 10.3.0 (Python Imaging Library (Fork))

  • pint 0.19.2 → 0.23 (Physical quantities module)

  • polars 0.20.17 → 0.20.25 (Blazingly fast DataFrame library)

  • pyarrow 14.0.1 → 16.0.0 (Python library for Apache Arrow)

  • referencing 0.30.2 → 0.31.1 (JSON Referencing + Python)

  • scikit_image 0.22.0 → 0.23.2 (Image processing in Python)

  • scikit_learn 1.4.1.post1 → 1.4.2 (A set of python modules for machine learning and data mining)

  • scipy 1.12.0 → 1.13.0 (Fundamental algorithms for scientific computing in Python)

  • shapely 2.0.1 → 2.0.4 (Manipulation and analysis of geometric objects)

  • sqlite_bro 0.12.2 → 0.13.1 (a graphic SQLite Client in 1 Python file)

  • statsmodels 0.14.1 → 0.14.2 (Statistical computations and models for Python)

  • tqdm 4.65.0 → 4.66.4 (Fast, Extensible Progress Meter)

  • winpython 7.5.20240410 → 8.0.20240501 (WinPython distribution tools, including WPPM)

Removed packages:

  • ansi2html 1.9.1 (Convert text with ANSI color codes to HTML or to LaTeX)

  • lz4 4.3.3 (LZ4 Bindings for Python)

  • marshmallow_enum 1.5.1 (Enum field for Marshmallow)

@stonebig
Copy link
Contributor Author

stonebig commented May 12, 2024

WinPython 2024-03 b2 (2024-05-12: Free-treading complement)

Changes from WinPython 2024-03 b2 :

  • Infrastructure:
    • ensure we use only "python -m pip", as currently pip deosn't create the shortcut "pip.exe", only "pip3.exe"
    • movepython.exe as python_classic.exe, and pythonw.exe as pythonw_classic.exe
    • copy python-3.13t.exe as python.exe, and pythonw3.13t.exe as pythonw.exe
  • New Packages:
  • Upgraded Packages:
    • pytest-8.2.0
  • Removed Packages:

Areas of particular interest for testers:

Next build:

  • a little more preventive WinPython internals clean-up around 'package()'

binary at:

MD5 SHA-1 SHA-256 Binary Size blake2b-256
52e0b7137abca88b273a0683c0e0fa10 3912941f7632ffbe65021f92e8bad4e61f89af84 b54be116335cb6d9f8ae7dd65bc0ad2c9fbc3fdb63e4447eb571757021754cd6 Winpython64-3.13.0.0freeb1.exe 25 762 116 Bytes 7df72e1743a91091293aa559154dfc86c521447dc7fbe964621f97f033f2fbfb

WinPython 3.13.0.0free

The following packages are included in WinPython-64bit v3.13.0.0free b1.

Tools

Name Version Description

Python packages

Name Version Description
Python 3.13.0 Python programming language with standard library
build 1.1.1 A simple, correct Python build frontend
colorama 0.4.6 Cross-platform colored terminal text.
iniconfig 2.0.0 brain-dead simple config-ini parsing
packaging 23.2 Core utilities for Python packages
pip 24.0 The PyPA recommended tool for installing Python packages.
pluggy 1.5.0 plugin and hook calling mechanisms for python
pyproject_hooks 1.0.0 Wrappers to call pyproject.toml-based build backend hooks.
pytest 8.2.0 pytest: simple powerful testing with Python
setuptools 69.2.0 Easily download, build, install, upgrade, and uninstall Python packages
sqlite_bro 0.13.1 a graphic SQLite Client in 1 Python file
wheel 0.43.0 A built-package format for Python
winpython 8.0.20240512 WinPython distribution tools, including WPPM

@stonebig
Copy link
Contributor Author

stonebig commented May 12, 2024

Free-threading doesn't include yet the weak reference counting, so current interest is to fix crashes, via your crash reports up to cpython.

progress since b1 on free_threading:

  • interpreters_pep_734, examples mostly corrected
  • ptpython makes suddenly a sweat REPL in "WinPython Interpreter.exe" icon , as IDLE (tkinter) is not working
  • adding pyperf-2.7.0
  • a typo fix in python-3.13.0b1 for ipython to work on "help(len)"

@stonebig
Copy link
Contributor Author

stonebig commented May 19, 2024

WinPython 2024-03 b3 (2024-05-20: Jupyterlab-4.2, interpreters_pep_734)

Changes from WinPython 2024-03 b2 :

  • Infrastructure:
    • python-3.13.0b1 typo-patch so that ipython works better
    • examples of sub-interpreters use (via interpreters_pep_734 package )
    • pip-24.1b1 for python-3.13.0b1
  • New Packages:
    • interpreters_pep_734 for Python-3.13, with notebook examples mostly corrected
    • pyperf for Python-3.13.0 free-threading
    • ptpython and ipython added to Winpython-3.13.0.0Free, for a better IDLE-Less experience
  • Upgraded Packages:
    • parso-0.8.4 (early compat with Python-3.13)
    • jupyterlab-4.2.0, Notebook-7.2.0
    • ipython-8.24.0
  • Removed Packages:

Areas of particular interest for testers:

  • python-3.13.0b1 :
    • discover interpreters_pep_734 with examples
    • "free-theading": participate to the Windows User bug hunting
    • unfortunately cython-3.1.0a0 and mypyc are not working yet for free-threading
  • playing with Jupyterlab-4.2.0

Next build:

  • continue exploration of free-threading and sub-interpreters
  • more WinPython internals clean-up

binary at:

MD5 SHA-1 SHA-256 Binary Size blake2b-256
bc7fb5d9a3a41d43666de4d9072a56c9 be9ccc2814b66de81bc0329b24375e75aefe3a7e 41d488b1bd1f85987fb3a0bb07a6f87aadd7faa82e7d8068973f921c807a9623 Winpython64-3.12.3.1dotb3.exe 24 090 625 Bytes ab42ae1a954f730d9c9cdceef6a14606930ddeca7b6bf988c565e8c90eff8e32
6487784282e2489aab324d382e5b29c4 b5df4930351fe09600b2887f14496bacb1e9a8f0 24a6cdd9d7e902d1e05f78895569356baedaa407f64af437bf30754c6fdb4129 Winpython64-3.12.3.1b3.exe 906 287 241 Bytes 55ff2aff6fab0f6669887aef9534628ec14f42acc0bb45e3679266db481ba338
f42121ce147b271f4df2573e488815b9 d1151a1a6052a57a27f60cfe9809d1601010ca9b 5688575b28d2c7960e3c47d2dca1275042eeeb1664f589a4f1b992a8b2210004 Winpython64-3.13.0.0dotb1b.exe 24 560 859 Bytes c55bc29f38eec5b07e57551ed93617768dc39290bdddb47df78eb2b2233168cb
36926bbf950094457203cec6e0e60625 7f9ecf84fd8e7f531ba62b02f7f850647c61d7e1 bb51d54ce34cafa62357338e07d8bae8443315b04bb803a372acb6cb69dbe625 Winpython64-3.13.0.0freeb1b.exe 29 906 873 Bytes b3f54c3c351420ca9a0405f4d054ce021cb49fad2b153c1f2e71c476a87db4dd

WinPython 3.12.3.1

The following packages are included in WinPython-64bit v3.12.3.1 b3.

Tools

Name Version Description
Nodejs v20.12.2 a JavaScript runtime built on Chrome's V8 JavaScript engine
npmjs 10.5.0 a package manager for JavaScript
Pandoc 3.1.9 a universal document converter

Python packages

Name Version Description
Python 3.12.3 Python programming language with standard library
about_time 4.2.1 Easily measure timing and throughput of code blocks, with beautiful human friendly representations.
absl_py 2.0.0 Abseil Python Common Libraries, see https://github.com/abseil/abseil-py.
accelerate 0.28.0 Accelerate
adbc_driver_manager 0.11.0 A generic entrypoint for ADBC drivers.
adodbapi 2.6.1.3 A pure Python package implementing PEP 249 DB-API using Microsoft ADO.
affine 2.3.1 Matrices describing affine transformation of the plane.
aiofiles 23.2.1 File support for asyncio.
aiohttp 3.9.3 Async http client/server framework (asyncio)
aiosignal 1.3.1 aiosignal: a list of registered asynchronous callbacks
aiosqlite 0.20.0 asyncio bridge to the standard sqlite3 module
alabaster 0.7.16 A light, configurable Sphinx theme
alembic 1.13.1 A database migration tool for SQLAlchemy.
alive_progress 3.1.5 A new kind of Progress Bar, with real-time throughput, ETA, and very cool animations!
altair 5.3.0 Vega-Altair: A declarative statistical visualization library for Python.
altair_data_server 0.4.1 A background data server for Altair charts.
altair_transform 0.2.0 A python engine for evaluating Altair transforms.
aniso8601 9.0.1 A library for parsing ISO 8601 strings.
annotated_types 0.6.0 Reusable constraint types to use with typing.Annotated
anyio 4.3.0 High level compatibility layer for multiple asynchronous event loop implementations
anywidget 0.9.3 custom jupyter widgets made easy
appdirs 1.4.4 A small Python module for determining appropriate platform-specific dirs, e.g. a "user data dir".
argon2_cffi 23.1.0 Argon2 for Python
argon2_cffi_bindings 21.2.0 Low-level CFFI bindings for Argon2
array_api_compat 1.6 A wrapper around NumPy and other array libraries to make them compatible with the Array API standard
arrow 1.2.2 Better dates & times for Python
asciitree 0.3.3 Draws ASCII trees.
asgi_csrf 0.9 ASGI middleware for protecting against CSRF attacks
asgiref 3.8.1 ASGI specs, helper code, and adapters
asn1crypto 1.5.1 Fast ASN.1 parser and serializer with definitions for private keys, public keys, certificates, CRL, OCSP, CMS, PKCS#3, PKCS#7, PKCS#8, PKCS#12, PKCS#5, X.509 and TSP
asteval 0.9.31 Safe, minimalistic evaluator of python expression using ast module
astroid 3.1.0 An abstract syntax tree for Python with inference support.
astropy 5.3.4 Astronomy and astrophysics core library
asttokens 2.4.1 Annotate AST trees with source code positions
async_lru 2.0.4 Simple LRU cache for asyncio
async_timeout 4.0.3 Timeout context manager for asyncio programs
atomicwrites 1.4.0 Atomic file writes.
attrs 23.2.0 Classes Without Boilerplate
autograd 1.6.2 Efficiently computes derivatives of numpy code.
autopep8 2.0.4 A tool that automatically formats Python code to conform to the PEP 8 style guide
azure_core 1.30.1 Microsoft Azure Core Library for Python
azure_cosmos 4.6.0 Microsoft Azure Cosmos Client Library for Python
azure_identity 1.16.0 Microsoft Azure Identity Library for Python
babel 2.13.1 Internationalization utilities
baresql 0.8.0 playing SQL directly on Python datas
bcrypt 4.0.1 Modern password hashing for your software and your servers
beautifulsoup4 4.12.2 Screen-scraping library
binaryornot 0.4.4 Ultra-lightweight pure Python package to check if a file is binary or text.
black 24.4.2 The uncompromising code formatter.
bleach 6.0.0 An easy safelist-based HTML-sanitizing tool.
blinker 1.7.0 Fast, simple object-to-object and broadcast signaling
bokeh 3.4.1 Interactive plots and applications in the browser from Python
botorch 0.9.5 Bayesian Optimization in PyTorch
branca 0.6.0 Generate complex HTML+JS pages with Python
brewer2mpl 1.4.1 Connect colorbrewer2.org color maps to Python and matplotlib
brotli 1.1.0 Python bindings for the Brotli compression library
build 1.2.1 A simple, correct Python build frontend
cachelib 0.10.2 A collection of cache libraries in the same API interface.
cachetools 5.3.1 Extensible memoizing collections and decorators
cartopy 0.23.0 A Python library for cartographic visualizations with Matplotlib
certifi 2023.11.17 Python package for providing Mozilla's CA Bundle.
cffi 1.16.0 Foreign Function Interface for Python calling C code.
cftime 1.6.3 Time-handling functionality from netcdf4-python
chardet 5.2.0 Universal encoding detector for Python 3
charset_normalizer 3.2.0 The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet.
clarabel 0.7.1 Clarabel Conic Interior Point Solver for Rust / Python
click 8.1.7 Composable command line interface toolkit
click_default_group 1.2.4 click_default_group
click_plugins 1.1.1 An extension module for click to enable registering CLI commands via setuptools entry-points.
cligj 0.7.2 Click params for commmand line interfaces to GeoJSON
cloudpickle 3.0.0 Pickler class to extend the standard pickle.Pickler functionality
clr_loader 0.2.6 Generic pure Python loader for .NET runtimes
clrmagic 0.0.1a2 IPython cell magic to use .NET languages
cma 3.2.2 CMA-ES, Covariance Matrix Adaptation Evolution Strategy for non-linear numerical optimization in Python
colorama 0.4.6 Cross-platform colored terminal text.
colorcet 3.0.1 Collection of perceptually uniform colormaps
colorlog 6.8.2 Add colours to the output of Python's logging module.
comm 0.1.4 Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc.
contourpy 1.2.1 Python library for calculating contours of 2D quadrilateral grids
cookiecutter 2.3.0 A command-line utility that creates projects from project templates, e.g. creating a Python package project from a Python package project template.
coverage 7.3.2 Code coverage measurement for Python
cryptography 41.0.5 cryptography is a package which provides cryptographic recipes and primitives to Python developers.
cvxopt 1.3.2 Convex optimization package
cvxpy 1.5.0 A domain-specific language for modeling convex optimization problems in Python.
cycler 0.12.1 Composable style cycles
cython 3.0.10 The Cython compiler for writing C extensions in the Python language.
cytoolz 0.12.3 Cython implementation of Toolz: High performance functional utilities
dash 2.16.1 A Python framework for building reactive web-apps. Developed by Plotly.
dash_core_components 2.0.0 Core component suite for Dash
dash_html_components 2.0.0 Vanilla HTML components for Dash
dash_table 5.0.0 Dash table
dask 2024.3.1 Parallel PyData with Task Scheduling
dask_expr 1.0.5 High Level Expressions for Dask
dask_image 2023.8.1 Distributed image processing
dataclasses_json 0.6.4 Easily serialize dataclasses to and from JSON.
datasette 0.64.6 An open source multi-tool for exploring and publishing data
datasette_graphql 2.2 Datasette plugin providing an automatic GraphQL API for your SQLite databases
datashader 0.16.1 Data visualization toolchain based on aggregating into a grid
db_py 0.5.4b1 a db package that doesn't suck
deap 1.4.1 Distributed Evolutionary Algorithms in Python
debugpy 1.8.0 An implementation of the Debug Adapter Protocol for Python
decorator 4.4.2 Decorators for Humans
defusedxml 0.7.1 XML bomb protection for Python stdlib modules
deprecated 1.2.13 Python @deprecated decorator to deprecate old python classes, functions or methods.
deprecation 2.1.0 A library to handle automated deprecations
diff_match_patch 20200713 Repackaging of Google's Diff Match and Patch libraries. Offers robust algorithms to perform the operations required for synchronizing plain text.
dill 0.3.7 serialize all of Python
dirty_cat 0.4.1 Machine learning with dirty categories.
distlib 0.3.6 Distribution utilities
distributed 2024.3.1 Distributed scheduler for Dask
distro 1.8.0 Distro - an OS platform information API
django 5.0.3 A high-level Python web framework that encourages rapid development and clean, pragmatic design.
dnspython 2.4.2 DNS toolkit
docopt 0.6.2 Pythonic argument parser, that will make you smile
docstring_to_markdown 0.13 On the fly conversion of Python docstrings to markdown
docutils 0.20.1 Docutils -- Python Documentation Utilities
duckdb 0.10.2 DuckDB in-process database
ecos 2.0.13 This is the Python package for ECOS: Embedded Cone Solver. See Github page for more information.
editables 0.3 Editable installations
emcee 3.1.4 The Python ensemble sampling toolkit for MCMC
entrypoints 0.4 Discover and load entry points from installed packages.
et_xmlfile 1.1.0 An implementation of lxml.xmlfile for the standard library
executing 2.0.1 Get the currently executing AST node of a frame, and other information
fast_histogram 0.12 Fast simple 1D and 2D histograms
fastapi 0.109.1 FastAPI framework, high performance, easy to learn, fast to code, ready for production
fasteners 0.18 A python package that provides useful locks
fastjsonschema 2.18.0 Fastest Python implementation of JSON schema
feather_format 0.4.1 Simple wrapper library to the Apache Arrow-based Feather File Format
filelock 3.12.4 A platform independent file lock.
filterpy 1.4.5 Kalman filtering and optimal estimation library
fiona 1.9.5 Fiona reads and writes spatial data files
flake8 7.0.0 the modular source code checker: pep8 pyflakes and co
flask 3.0.2 A simple framework for building complex web applications.
flask_mail 0.9.1 Flask extension for sending email
flask_session 0.5.0 Server-side session support for Flask
flask_sqlalchemy 3.0.5 Add SQLAlchemy support to your Flask application.
flit 3.9.0 A simple packaging tool for simple packages.
flit_core 3.9.0 Distribution-building parts of Flit. See flit package for more information
folium 0.14.0 Make beautiful maps with Leaflet.js & Python
fonttools 4.50.0 Tools to manipulate font files
formlayout 1.2.1a1 The most easy way to create Qt form dialogs and widgets with Python
fqdn 1.5.1 Validates fully-qualified domain names against RFC 1123, so that they are acceptable to modern bowsers
frozenlist 1.4.1 A list-like structure which implements collections.abc.MutableSequence
fsspec 2024.3.1 File-system specification
future 0.18.2 Clean single-source support for Python 3 and 2
fuzzywuzzy 0.18.0 Fuzzy string matching in python
gdal 3.7.3 GDAL: Geospatial Data Abstraction Library
geographiclib 2.0 The geodesic routines from GeographicLib
geopandas 0.14.0 Geographic pandas extensions
geopy 2.4.0 Python Geocoding Toolbox
gitdb 4.0.10 Git Object Database
gitpython 3.1.32 GitPython is a Python library used to interact with Git repositories
gpytorch 1.11 An implementation of Gaussian Processes in Pytorch
grapheme 0.6.0 Unicode grapheme helpers
graphene 3.3 GraphQL Framework for Python
graphql_core 3.2.3 GraphQL implementation for Python, a port of GraphQL.js, the JavaScript reference implementation for GraphQL.
graphql_relay 3.2.0 Relay library for graphql-core
greenlet 3.0.3 Lightweight in-process concurrent programming
guidata 3.4.1 Automatic GUI generation for easy dataset editing and display
h11 0.14.0 A pure-Python, bring-your-own-I/O implementation of HTTP/1.1
h2 4.1.0 HTTP/2 State-Machine based protocol implementation
h5py 3.10.0 Read and write HDF5 files from Python
hatchling 1.21.1 Modern, extensible Python build backend
highspy 1.7.1.dev1 A thin set of pybind11 wrappers to HiGHS
holoviews 1.18.3 Stop plotting your data - annotate your data and let it visualize itself.
hpack 4.0.0 Pure-Python HPACK header compression
html5lib 1.1 HTML parser based on the WHATWG HTML specification
httpcore 1.0.5 A minimal low-level HTTP client.
httpie 3.2.2 HTTPie: modern, user-friendly command-line HTTP client for the API era.
httpx 0.27.0 The next generation HTTP client.
huggingface_hub 0.21.4 Client library to download and publish models, datasets and other repos on the huggingface.co hub
hupper 1.12 Integrated process monitor for developing and reloading daemons.
hvplot 0.9.2 A high-level plotting API for the PyData ecosystem built on HoloViews.
hypercorn 0.16.0 A ASGI Server based on Hyper libraries and inspired by Gunicorn
hyperframe 6.0.1 HTTP/2 framing layer for Python
hypothesis 6.99.13 A library for property-based testing
idna 3.4 Internationalized Domain Names in Applications (IDNA)
imageio 2.33.1 Library for reading and writing a wide range of image, video, scientific, and volumetric data formats.
imageio_ffmpeg 0.4.8 FFMPEG wrapper for Python
imagesize 1.4.1 Getting image size from png/jpeg/jpeg2000/gif file
imbalanced_learn 0.12.2 Toolbox for imbalanced dataset in machine learning.
importlib_metadata 6.8.0 Read metadata from Python packages
inflection 0.5.1 A port of Ruby on Rails inflector to Python
iniconfig 2.0.0 brain-dead simple config-ini parsing
intervaltree 3.0.2 Editable interval tree data structure for Python 2 and 3
ipycanvas 0.13.1 Interactive widgets library exposing the browser's Canvas API
ipykernel 6.29.4 IPython Kernel for Jupyter
ipyleaflet 0.18.2 A Jupyter widget for dynamic Leaflet maps
ipympl 0.9.3 Matplotlib Jupyter Extension
ipython 8.24.0 IPython: Productive Interactive Computing
ipython_genutils 0.2.0 Vestigial utilities from IPython
ipython_sql 0.5.0 RDBMS access via IPython
ipywidgets 8.1.2 Jupyter interactive widgets
isoduration 20.11.0 Operations with ISO 8601 durations
isort 5.13.2 A Python utility / library to sort Python imports.
itsdangerous 2.1.2 Safely pass data to untrusted environments and back.
janus 1.0.0 Mixed sync-async queue to interoperate between asyncio tasks and classic threads
jaraco_classes 3.3.0 Utility functions for Python class constructs
jaxtyping 0.2.22 Type annotations and runtime checking for shape and dtype of JAX arrays, and PyTrees.
jedi 0.19.1 An autocompletion tool for Python that can be used for text editors.
jellyfish 1.0.3 Approximate and phonetic matching of strings.
jinja2 3.1.2 A very fast and expressive template engine.
joblib 1.3.2 Lightweight pipelining with Python functions
json5 0.9.14 A Python implementation of the JSON5 data format.
jsonpatch 1.33 Apply JSON-Patches (RFC 6902)
jsonpointer 2.4 Identify specific nodes in a JSON document (RFC 6901)
jsonschema 4.19.2 An implementation of JSON Schema validation for Python
jsonschema_specifications 2023.12.1 The JSON Schema meta-schemas and vocabularies, exposed as a Registry
julia 0.6.2 Julia/Python bridge with IPython support.
jupyter 1.0.0 Jupyter metapackage. Install all the Jupyter components in one go.
jupyter_bokeh 3.0.7 A Jupyter extension for rendering Bokeh content.
jupyter_client 8.6.0 Jupyter protocol implementation and client libraries
jupyter_console 6.6.3 Jupyter terminal console
jupyter_core 5.5.0 Jupyter core package. A base package on which Jupyter projects rely.
jupyter_events 0.9.0 Jupyter Event System library
jupyter_lsp 2.2.4 Multi-Language Server WebSocket proxy for Jupyter Notebook/Lab server
jupyter_packaging 0.12.3 Jupyter Packaging Utilities.
jupyter_server 2.12.5 The backend—i.e. core services, APIs, and REST endpoints—to Jupyter web applications.
jupyter_server_mathjax 0.2.6 MathJax resources as a Jupyter Server Extension.
jupyter_server_terminals 0.4.4 A Jupyter Server Extension Providing Terminals.
jupyter_sphinx 0.4.0 Jupyter Sphinx Extensions
jupyterlab 4.2.0 JupyterLab computational environment
jupyterlab_pygments 0.2.2 Pygments theme using JupyterLab CSS variables
jupyterlab_server 2.27.1 A set of server components for JupyterLab and JupyterLab like applications.
jupyterlab_widgets 3.0.10 Jupyter interactive widgets for JupyterLab
keras 3.1.1 Multi-backend Keras.
keyring 24.3.1 Store and access your passwords safely.
kiwisolver 1.4.5 A fast implementation of the Cassowary constraint solver
kornia 0.7.1 Open Source Differentiable Computer Vision Library for PyTorch
langchain 0.1.13 Building applications with LLMs through composability
langchain_community 0.0.29 Community contributed LangChain integrations.
langchain_core 0.1.35 Building applications with LLMs through composability
langchain_text_splitters 0.0.1 LangChain text splitting utilities
langsmith 0.1.33 Client library to connect to the LangSmith LLM Tracing and Evaluation Platform.
lazy_loader 0.4 Makes it easy to load subpackages and functions on demand.
lightning 2.2.1 The Deep Learning framework to train, deploy, and ship AI products Lightning fast.
lightning_utilities 0.10.0 PyTorch Lightning Sample project.
linear_operator 0.5.1 A linear operator implementation, primarily designed for finite-dimensional positive definite operators (i.e. kernel matrices).
linkify_it_py 2.0.2 Links recognition library with FULL unicode support.
llvmlite 0.42.0 lightweight wrapper around basic LLVM functionality
lmfit 1.0.3 Least-Squares Minimization with Bounds and Constraints
locket 1.0.0 File-based locks for Python on Linux and Windows
loky 3.4.0 A robust implementation of concurrent.futures.ProcessPoolExecutor
lxml 5.1.0 Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API.
mako 1.2.0 A super-fast templating language that borrows the best ideas from the existing templating languages.
markdown 3.5.1 Python implementation of John Gruber's Markdown.
markdown_it_py 2.2.0 Python port of markdown-it. Markdown parsing, done right!
markupsafe 2.1.1 Safely add untrusted strings to HTML/XML markup.
marshmallow 3.20.2 A lightweight library for converting complex datatypes to and from native Python datatypes.
matplotlib 3.8.3 Python plotting package
matplotlib_inline 0.1.6 Inline Matplotlib backend for Jupyter
maturin 1.5.1 Build and publish crates with pyo3, rust-cpython and cffi bindings as well as rust binaries as python packages
mccabe 0.7.0 McCabe checker, plugin for flake8
mdit_py_plugins 0.3.5 Collection of plugins for markdown-it-py
mdurl 0.1.2 Markdown URL utilities
mercantile 1.2.1 Web mercator XYZ tile utilities
mergedeep 1.3.4 A deep merge function for 🐍.
missingno 0.5.1 Missing data visualization module for Python.
mistune 2.0.5 A sane Markdown parser with useful plugins and renderers
mizani 0.9.2 Scales for Python
ml_dtypes 0.4.0 stand-alone implementation of several NumPy dtype extensions used in machine learning libraries
mlxtend 0.22.0 Machine Learning Library Extensions
more_itertools 10.2.0 More routines for operating on iterables, beyond itertools
moviepy 1.0.3 Video editing with Python
mpl_scatter_density 0.7 Matplotlib helpers to make density scatter plots
mpld3 0.5.8 D3 Viewer for Matplotlib
mpmath 1.3.0 Python library for arbitrary-precision floating-point arithmetic
msal 1.24.1 The Microsoft Authentication Library (MSAL) for Python library
msal_extensions 1.0.0 Microsoft Authentication Library extensions (MSAL EX) provides a persistence API that can save your data on disk, encrypted on Windows, macOS and Linux. Concurrent data access will be coordinated by a file lock mechanism.
msgpack 1.0.4 MessagePack serializer
msvc_runtime 14.38.33135 Install the Microsoft™ Visual C++™ runtime DLLs to the sys.prefix and Scripts directories
multidict 6.0.5 multidict implementation
multipledispatch 1.0.0 Multiple dispatch
mutagen 1.46.0 read and write audio tags for many formats
mypy 1.9.0 Optional static typing for Python
mypy_extensions 1.0.0 Type system extensions for programs checked with the mypy type checker.
mysql_connector_python 8.0.21 MySQL driver written in Python
namex 0.0.7 A simple utility to separate the implementation of your Python package and its public API surface.
nbclient 0.10.0 A client library for executing notebooks. Formerly nbconvert's ExecutePreprocessor.
nbconvert 7.16.1 Converting Jupyter Notebooks (.ipynb files) to other formats. Output formats include asciidoc, html, latex, markdown, pdf, py, rst, script. nbconvert can be used both as a Python library (import nbconvert) or as a command line tool (invoked as jupyter nbconvert ...).
nbdime 4.0.1 Diff and merge of Jupyter Notebooks
nbformat 5.10.3 The Jupyter Notebook format
nbval 0.9.6 A py.test plugin to validate Jupyter notebooks
nest_asyncio 1.6.0 Patch asyncio to allow nested event loops
netcdf4 1.6.5 Provides an object-oriented python interface to the netCDF version 4 library
networkx 3.3 Python package for creating and manipulating graphs and networks
nltk 3.8.1 Natural Language Toolkit
notebook 7.2.0 Jupyter Notebook - A web-based notebook environment for interactive computing
notebook_shim 0.2.3 A shim layer for notebook traits and config
ntlm_auth 1.5.0 Creates NTLM authentication structures
numba 0.59.1 compiling Python code using LLVM
numcodecs 0.12.1 A Python package providing buffer compression and transformation codecs for use in data storage and communication applications.
numexpr 2.10.0 Fast numerical expression evaluator for NumPy
numpy 1.26.4 Fundamental package for array computing in Python
numpydoc 1.6.0 Sphinx extension to support docstrings in Numpy format
openai 1.14.3 The official Python library for the openai API
opencv_python 4.9.0.80 Wrapper package for OpenCV python bindings.
openpyxl 3.1.2 A Python library to read/write Excel 2010 xlsx/xlsm files
opt_einsum 3.3.0 Optimizing numpys einsum function
optree 0.11.0 Optimized PyTree Utilities.
optuna 3.6.1 A hyperparameter optimization framework
orjson 3.9.15 Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy
ortools 9.8.3296 Google OR-Tools python libraries and modules
outcome 1.3.0.post0 Capture the outcome of Python function calls.
overrides 7.7.0 A decorator to automatically detect mismatch when overriding a method.
packaging 23.2 Core utilities for Python packages
pandas 2.2.2 Powerful data structures for data analysis, time series, and statistics
pandocfilters 1.5.0 Utilities for writing pandoc filters in python
panel 1.4.1 The powerful data exploration & web app framework for Python.
papermill 2.5.1a1 Parameterize and run Jupyter and nteract Notebooks
param 2.1.0 Make your Python code clearer and more reliable by declaring Parameters.
paramiko 2.8.0 SSH2 protocol library
parso 0.8.4 A Python Parser
partd 1.4.0 Appendable key-value storage
pathspec 0.11.0 Utility library for gitignore style pattern matching of file paths.
patsy 0.5.6 A Python package for describing statistical models and for building design matrices.
pdfrw 0.4.post2 PDF file reader/writer library
pep8 1.7.1 Python style guide checker
pexpect 4.8.0 Pexpect allows easy control of interactive console applications.
pg8000 1.23.0 PostgreSQL interface library
pickleshare 0.7.5 Tiny 'shelve'-like database with concurrency support
pillow 10.3.0 Python Imaging Library (Fork)
pims 0.6.1 Python Image Sequence
pint 0.23 Physical quantities module
pip 24.0 The PyPA recommended tool for installing Python packages.
pkginfo 1.9.6 Query metadata from sdists / bdists / installed packages.
platformdirs 3.8.1 A small Python package for determining appropriate platform-specific dirs, e.g. a "user data dir".
plotly 5.20.0 An open-source, interactive data visualization library for Python
plotnine 0.12.4 A Grammar of Graphics for Python
plotpy 2.3.0 Curve and image plotting tools for Python/Qt applications
pluggy 1.5.0 plugin and hook calling mechanisms for python
ply 3.11 Python Lex & Yacc
pmdarima 2.0.4 Python's forecast::auto.arima equivalent
polars 0.20.25 Blazingly fast DataFrame library
portalocker 2.7.0 Wraps the portalocker recipe for easy usage
portpicker 1.5.0 A library to choose unique available network ports.
ppci 0.5.9 A compiler for ARM, X86, MSP430, xtensa and more implemented in pure Python
prettytable 3.3.0 A simple Python library for easily displaying tabular data in a visually appealing ASCII table format
priority 2.0.0 A pure-Python implementation of the HTTP/2 priority tree
proglog 0.1.10 Log and progress bar manager for console, notebooks, web...
prometheus_client 0.18.0 Python client for the Prometheus monitoring system.
prompt_toolkit 3.0.43 Library for building powerful interactive command lines in Python
protobuf 4.25.1 Protocol Buffers
psutil 5.9.5 Cross-platform lib for process and system monitoring in Python.
psygnal 0.9.5 Fast python callback/event system modeled after Qt Signals
ptpython 3.0.26 Python REPL build on top of prompt_toolkit
ptyprocess 0.7.0 Run a subprocess in a pseudo terminal
pulp 2.6.0 PuLP is an LP modeler written in python. PuLP can generate MPS or LP files and call GLPK, COIN CLP/CBC, CPLEX, and GUROBI to solve linear problems.
pure_eval 0.2.2 Safely evaluate AST nodes without side effects
pyaml 20.4.0 PyYAML-based module to produce pretty and readable YAML-serialized data
pyarrow 16.0.0 Python library for Apache Arrow
pyaudio 0.2.14 Cross-platform audio I/O with PortAudio
pybars3 0.9.7 Handlebars.js templating for Python 3 and 2
pybind11 2.12.0 Seamless operability between C++11 and Python
pycodestyle 2.11.1 Python style guide checker
pycosat 0.6.6 bindings to picosat (a SAT solver)
pycparser 2.21 C parser in Python
pycryptodomex 3.18.0 Cryptographic library for Python
pyct 0.4.8 Python package common tasks for users (e.g. copy examples, fetch data, ...)
pydantic 2.6.4 Data validation using Python type hints
pydantic_core 2.16.3 Core functionality for Pydantic validation and serialization
pydeck 0.8.0 Widget for deck.gl maps
pydocstyle 6.3.0 Python docstring style checker
pydub 0.25.1 Manipulate audio with an simple and easy high level interface
pyepsg 0.4.0 Easy access to the EPSG database via http://epsg.io/
pyerfa 2.0.1.1 Python bindings for ERFA
pyflakes 3.2.0 passive checker of Python programs
pygad 3.2.0 PyGAD: A Python Library for Building the Genetic Algorithm and Training Machine Learning Algoithms (Keras & PyTorch).
pygame 2.5.2 Python Game Development
pygments 2.17.2 Pygments is a syntax highlighting package written in Python.
pyjwt 2.4.0 JSON Web Token implementation in Python
pylint 3.1.0 python code static checker
pylint_venv 3.0.3 pylint-venv provides a Pylint init-hook to use the same Pylint installation with different virtual environments.
pyls_spyder 0.4.0 Spyder extensions for the python-lsp-server
pymeta3 0.5.1 Pattern-matching language based on OMeta for Python 3 and 2
pymongo 4.5.0 Python driver for MongoDB http://www.mongodb.org
pymoo 0.6.1.1 Multi-Objective Optimization in Python
pympler 1.0.1 A development tool to measure, monitor and analyze the memory behavior of Python objects.
pynacl 1.5.0 Python binding to the Networking and Cryptography (NaCl) library
pynndescent 0.5.11 Nearest Neighbor Descent
pyodbc 5.0.1 DB API module for ODBC
pyomo 6.7.0 Pyomo: Python Optimization Modeling Objects
pyopengl 3.1.7 Standard OpenGL bindings for Python
pypandoc 1.5 Thin wrapper for pandoc.
pyparsing 3.0.9 pyparsing module - Classes and methods to define and execute parsing grammars
pypdf 3.15.2 A pure-python PDF library capable of splitting, merging, cropping, and transforming PDF files
pypng 0.20220715.0 Pure Python library for saving and loading PNG images
pyproj 3.6.1 Python interface to PROJ (cartographic projections and coordinate transformations library)
pyproject_hooks 1.0.0 Wrappers to call pyproject.toml-based build backend hooks.
pyqt5 5.15.10 Python bindings for the Qt cross platform application toolkit
pyqt5_qt5 5.15.2 The subset of a Qt installation needed by PyQt5.
pyqt5_sip 12.13.0 The sip module support for PyQt5
pyqtgraph 0.13.4 Scientific Graphics and GUI Library for Python
pyqtwebengine 5.15.6 Python bindings for the Qt WebEngine framework
pyqtwebengine_qt5 5.15.2 The subset of a Qt installation needed by PyQtWebEngine.
pyro_api 0.1.2 Generic API for dispatch to Pyro backends.
pyro_ppl 1.8.4 A Python library for probabilistic modeling and inference
pyserial 3.5 Python Serial Port Extension
pyshp 2.3.1 Pure Python read/write support for ESRI Shapefile format
pysimplegui 4.60.4 Python GUIs for Humans. Launched in 2018. It's 2022 & PySimpleGUI is an ACTIVE & supported project. Super-simple to create custom GUI's. 325+ Demo programs & Cookbook for rapid start. Extensive documentation. Main docs at www.PySimpleGUI.org. Fun & your success are the focus. Examples using Machine Learning (GUI, OpenCV Integration), Rainmeter Style Desktop Widgets, Matplotlib + Pyplot, PIL support, add GUI to command line scripts, PDF & Image Viewers. Great for beginners & advanced GUI programmers.
pysocks 1.7.1 A Python SOCKS client module. See https://github.com/Anorov/PySocks for more information.
pystache 0.5.4 Mustache for Python
pytest 8.2.0 pytest: simple powerful testing with Python
python_barcode 0.15.1 Create standard barcodes with Python. No external modules needed. (optional Pillow support included).
python_dateutil 2.8.2 Extensions to the standard Python datetime module
python_dotenv 1.0.0 Read key-value pairs from a .env file and set them as environment variables
python_json_logger 2.0.7 A python library adding a json log formatter
python_lsp_black 2.0.0 Black plugin for the Python LSP Server
python_lsp_jsonrpc 1.1.2 JSON RPC 2.0 server library
python_lsp_server 1.11.0 Python Language Server for the Language Server Protocol
python_multipart 0.0.5 A streaming multipart parser for Python
python_slugify 6.1.2 A Python slugify application that also handles Unicode
pythonnet 3.0.3 .NET and Mono integration for Python
pythonqwt 0.12.1 Qt plotting widgets for Python
pytoolconfig 1.2.4 Python tool configuration
pytorch_lightning 2.2.1 PyTorch Lightning is the lightweight PyTorch wrapper for ML researchers. Scale your models. Write less boilerplate.
pytz 2023.3 World timezone definitions, modern and historical
pytz_deprecation_shim 0.1.0.post0 Shims to make deprecation of pytz easier
pyviz_comms 3.0.2 A JupyterLab extension for rendering HoloViz content.
pywin32 306 Python for Window Extensions
pywin32_ctypes 0.2.2 A (partial) reimplementation of pywin32 using ctypes/cffi
pywinpty 2.0.12 Pseudo terminal support for Windows from Python.
pywinusb 0.4.2 A package that simplifies USB/HID communications on windows
pyyaml 6.0.1 YAML parser and emitter for Python
pyzmq 25.1.2 Python bindings for 0MQ
qdarkstyle 3.2 The most complete dark/light style sheet for C++/Python and Qt applications
qpsolvers 4.3.0 Quadratic programming solvers in Python with a unified API.
qrcode 7.4.2 QR Code image generator
qstylizer 0.2.2 Stylesheet Generator for PyQt{4-5}/PySide{1-2}
qtawesome 1.3.1 FontAwesome icons in PyQt and PySide applications
qtconsole 5.5.1 Jupyter Qt console
qtpy 2.4.1 Provides an abstraction layer on top of the various Qt bindings (PyQt5/6 and PySide2/6).
quantecon 0.5.3 Import the main names to top level.
quart 0.19.4 A Python ASGI web microframework with the same API as Flask
rapidfuzz 3.5.2 rapid fuzzy string matching
rasterio 1.3.9 Fast and direct raster I/O for use with Numpy and SciPy
readme_renderer 35.0 readme_renderer is a library for rendering "readme" descriptions for Warehouse
redis 4.3.1 Python client for Redis database and key-value store
referencing 0.31.1 JSON Referencing + Python
regex 2023.10.3 Alternative regular expression module, to replace re.
reportlab 4.0.4 The Reportlab Toolkit
requests 2.31.0 Python HTTP for Humans.
requests_ntlm 1.1.0 This package allows for HTTP NTLM authentication using the requests library.
requests_toolbelt 0.10.1 A utility belt for advanced users of python-requests
retrying 1.3.4 Retrying
rfc3339_validator 0.1.4 A pure python RFC3339 validator
rfc3986 2.0.0 Validating URI References per RFC 3986
rfc3986_validator 0.1.1 Pure python rfc3986 validator
rich 13.7.1 Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal
rope 1.12.0 a python refactoring library...
rpds_py 0.13.2 Python bindings to Rust's persistent data structures (rpds)
rtree 1.1.0 R-Tree spatial index for Python GIS
rx 3.1.1 Reactive Extensions (Rx) for Python
safetensors 0.4.2 Fast and Safe Tensor serialization
scikit_image 0.23.2 Image processing in Python
scikit_learn 1.4.2 A set of python modules for machine learning and data mining
scikit_optimize 0.10.1 Sequential model-based optimization toolbox.
scipy 1.13.0 Fundamental algorithms for scientific computing in Python
scramp 1.4.1 An implementation of the SCRAM protocol.
scs 3.2.4.post1 Splitting conic solver
seaborn 0.13.2 Statistical data visualization
send2trash 1.8.2 Send file to trash natively under Mac OS X, Windows and Linux
setuptools 69.5.1 Easily download, build, install, upgrade, and uninstall Python packages
shapely 2.0.4 Manipulation and analysis of geometric objects
simplegeneric 0.8.1 Simple generic functions (similar to Python's own len(), pickle.dump(), etc.)
simplejson 3.17.6 Simple, fast, extensible JSON encoder/decoder for Python
simpy 4.0.1 Event discrete, process based simulation for Python.
six 1.16.0 Python 2 and 3 compatibility utilities
slicerator 1.1.0 A lazy-loading, fancy-sliceable iterable.
smmap 5.0.0 A pure Python implementation of a sliding window memory map manager
snakeviz 2.1.0 A web-based viewer for Python profiler output
sniffio 1.3.0 Sniff out which async library your code is running under
snowballstemmer 2.2.0 This package provides 29 stemmers for 28 languages generated from Snowball algorithms.
snuggs 1.4.7 Snuggs are s-expressions for Numpy
sortedcontainers 2.4.0 Sorted Containers -- Sorted List, Sorted Dict, Sorted Set
sounddevice 0.4.6 Play and Record Sound with Python
soupsieve 2.3.2.post1 A modern CSS selector implementation for Beautiful Soup.
sphinx 7.2.6 Python documentation generator
sphinx_rtd_theme 2.0.0 Read the Docs theme for Sphinx
sphinxcontrib_applehelp 1.0.2 sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books
sphinxcontrib_devhelp 1.0.2 sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document.
sphinxcontrib_htmlhelp 2.0.0 sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files
sphinxcontrib_jquery 4.1 Extension to include jQuery on newer Sphinx releases
sphinxcontrib_jsmath 1.0.1 A sphinx extension which renders display math in HTML via JavaScript
sphinxcontrib_qthelp 1.0.3 sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document.
sphinxcontrib_serializinghtml 1.1.9 sphinxcontrib-serializinghtml is a sphinx extension which outputs "serialized" HTML files (json and pickle)
spyder 5.5.4 The Scientific Python Development Environment
spyder_kernels 2.5.1 Jupyter kernels for Spyder's console
sqlalchemy 2.0.28 Database Abstraction Library
sqlite_bro 0.13.1 a graphic SQLite Client in 1 Python file
sqlite_fts4 1.0.3 Python functions for working with SQLite FTS4 search
sqlite_utils 3.36 CLI tool and Python library for manipulating SQLite databases
sqlparse 0.4.3 A non-validating SQL parser.
sspyrs 0.3 Lightweight interface for SSRS reports to python
stack_data 0.6.3 Extract data from python stack frames and tracebacks for informative displays
starlette 0.35.1 The little ASGI library that shines.
statsmodels 0.14.2 Statistical computations and models for Python
streamlit 1.32.2 A faster way to build and share data apps
streamz 0.6.3 Streams
supersmoother 0.4 Python implementation of Friedman's Supersmoother
swifter 1.3.4 A package which efficiently applies any function to a pandas dataframe or series in the fastest available manner
sympy 1.12 Computer algebra system (CAS) in Python
tabulate 0.9.0 Pretty-print tabular data
tbats 1.1.0 BATS and TBATS for time series forecasting
tblib 1.7.0 Traceback serialization library.
tenacity 8.1.0 Retry code until it succeeds
terminado 0.17.0 Tornado websocket backend for the Xterm.js Javascript terminal emulator library.
text_unidecode 1.3 The most basic Text::Unidecode port
textdistance 4.5.0 Compute distance between the two texts.
threadpoolctl 3.1.0 threadpoolctl
three_merge 0.1.1 Simple library for merging two strings with respect to a base one
tifffile 2023.7.18 Read and write TIFF files
tinycss2 1.1.1 A tiny CSS parser
tokenizers 0.15.1 Fast and Customizable Tokenizers
toml 0.10.2 Python Library for Tom's Obvious, Minimal Language
tomli 2.0.1 A lil' TOML parser
tomli_w 1.0.0 A lil' TOML writer
tomlkit 0.12.3 Style preserving TOML library
toolz 0.12.0 List processing tools and functional utilities
torch 2.2.2 Tensors and Dynamic neural networks in Python with strong GPU acceleration
torchaudio 2.2.2 An audio package for PyTorch
torchmetrics 1.3.2 PyTorch native Metrics
torchvision 0.17.2 image and video datasets and models for torch deep learning
tornado 6.4 Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.
tqdm 4.66.4 Fast, Extensible Progress Meter
traitlets 5.14.1 Traitlets Python configuration system
traittypes 0.2.1 Scipy trait types
transformers 4.38.2 State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow
trio 0.25.0 A friendly Python library for async concurrency and I/O
trove_classifiers 2023.2.20 Canonical source for classifiers on PyPI (pypi.org).
twine 4.0.1 Collection of utilities for publishing packages on PyPI
typeguard 2.13.3 Run-time type checker for Python
typing_extensions 4.9.0 Backported and Experimental Type Hints for Python 3.8+
typing_inspect 0.8.0 Runtime inspection utilities for typing module.
tzdata 2022.7 Provider of IANA time zone data
tzlocal 4.2 tzinfo object for the local timezone
uc_micro_py 1.0.1 Micro subset of unicode data files for linkify-it-py projects.
ujson 5.8.0 Ultra fast JSON encoder and decoder for Python
umap_learn 0.5.1 Uniform Manifold Approximation and Projection
uncertainties 3.1.7 Transparent calculations with uncertainties on the quantities involved (aka error propagation); fast calculation of derivatives
uri_template 1.2.0 RFC 6570 URI Template Processor
urllib3 2.0.3 HTTP library with thread-safe connection pooling, file post, and more.
uvicorn 0.26.0 The lightning-fast ASGI server.
vega_datasets 0.9.0 A Python package for offline access to Vega datasets
virtualenv 20.23.0 Virtual Python Environment builder
waitress 2.1.2 Waitress WSGI server
wasmer 1.1.0 Python extension to run WebAssembly binaries
wasmer_compiler_cranelift 1.1.0 Python extension to run WebAssembly binaries
wasmer_compiler_singlepass 1.1.0 Python extension to run WebAssembly binaries
watchdog 2.2.0 Filesystem events monitoring
wcwidth 0.2.13 Measures the displayed width of unicode strings in a terminal
webcolors 1.12 A library for working with color names and color values formats defined by HTML and CSS.
webencodings 0.5.1 Character encoding aliases for legacy web content
websocket_client 1.6.4 WebSocket client for Python with low level API options
websockets 12.0 An implementation of the WebSocket Protocol (RFC 6455 & 7692)
werkzeug 3.0.1 The comprehensive WSGI web application library.
whatthepatch 1.0.2 A patch parsing and application library.
wheel 0.43.0 A built-package format for Python
widgetsnbextension 4.0.10 Jupyter interactive widgets for Jupyter Notebook
winpython 8.0.20240514 WinPython distribution tools, including WPPM
wordcloud 1.9.3 A little word cloud generator
wrapt 1.14.1 Module for decorators, wrappers and monkey patching.
wsproto 1.2.0 WebSockets state-machine based protocol implementation
xarray 2024.2.0 N-D labeled arrays and datasets in Python
xlsxwriter 3.1.9 A Python module for creating Excel XLSX files.
xlwings 0.24.7 Make Excel fly: Interact with Excel from Python and vice versa.
xmltodict 0.13.0 Makes working with XML feel like you are working with JSON
xyzservices 2023.10.1 Source of XYZ tiles providers
yapf 0.40.1 A formatter for Python code.
yarl 1.7.2 Yet another URL library
yt_dlp 2023.7.6 A youtube-dl fork with additional features and patches
zarr 2.16.1 An implementation of chunked, compressed, N-dimensional arrays for Python
zict 3.0.0 Mutable mapping tools
zipp 3.17.0 Backport of pathlib-compatible object wrapper for zip files
zstandard 0.22.0 Zstandard bindings for Python

WinPython 3.13.0.0free

The following packages are included in WinPython-64bit v3.13.0.0free b1b.

Tools

Name Version Description

Python packages

Name Version Description
Python 3.13.0 Python programming language with standard library
appdirs 1.4.4 A small Python module for determining appropriate platform-specific dirs, e.g. a "user data dir".
asttokens 2.4.1 Annotate AST trees with source code positions
build 1.2.1 A simple, correct Python build frontend
colorama 0.4.6 Cross-platform colored terminal text.
decorator 5.1.1 Decorators for Humans
executing 2.0.1 Get the currently executing AST node of a frame, and other information
interpreters_pep_734 0.1.0 Use this module to try out multiple interpreters and a per-interpreter GIL in Python 3.13+. Do not use this for anything important yet.
ipython 8.24.0 IPython: Productive Interactive Computing
jedi 0.19.1 An autocompletion tool for Python that can be used for text editors.
matplotlib_inline 0.1.6 Inline Matplotlib backend for Jupyter
packaging 24.0 Core utilities for Python packages
parso 0.8.4 A Python Parser
pip 24.1b1 The PyPA recommended tool for installing Python packages.
prompt_toolkit 3.0.43 Library for building powerful interactive command lines in Python
ptpython 3.0.26 Python REPL build on top of prompt_toolkit
pure_eval 0.2.2 Safely evaluate AST nodes without side effects
pygments 2.17.2 Pygments is a syntax highlighting package written in Python.
pyproject_hooks 1.0.0 Wrappers to call pyproject.toml-based build backend hooks.
setuptools 69.5.1 Easily download, build, install, upgrade, and uninstall Python packages
six 1.16.0 Python 2 and 3 compatibility utilities
sqlite_bro 0.13.1 a graphic SQLite Client in 1 Python file
stack_data 0.6.3 Extract data from python stack frames and tracebacks for informative displays
traitlets 5.14.1 Traitlets Python configuration system
wcwidth 0.2.13 Measures the displayed width of unicode strings in a terminal
wheel 0.43.0 A built-package format for Python
winpython 8.0.20240514 WinPython distribution tools, including WPPM

@stonebig
Copy link
Contributor Author

stonebig commented Jun 9, 2024

WinPython 2024-03 b4 (2024-06-09:)

Changes from WinPython 2024-03 b2 :

  • Infrastructure:
    • python-3.13.0b2
  • New Packages:
  • Upgraded Packages:
    • jupyterlab-4.2.1, panel-1.4.4, papermill-2.6.0, pyzmq-26.0.3
    • polars-0.20.31, matplotlib-3.9.0
    • openai-1.30.1, keras-3.3.3,
    • ortools-9.10.4067 (missed)
    • duckdb-1.0.0
  • Removed Packages:
    • brewer2mpl, highspy, jupyter_packaging
    • loky, nbval, pygad, pyopengl
    • scikit_optimize, snakeviz, supersmoother

Areas of particular interest for testers:

  • python-3.13.0b2 :
    • removed patches over b1
    • unfortunately cython-3.1.0a0 seems still not working yet for free-threading, may be a lasting problem
  • removed packages
  • overall stability

Next build: rc

  • last fix-up

binary at:

MD5 SHA-1 SHA-256 Binary Size blake2b-256
b0adde15270416ff4c41d201a31315bc ead263413337ad092bb5ed69672f3927207f8c08 8c8d838195882248f75e80ae7a39f11aab9d34040ad142f94c7aef595c43230f Winpython64-3.12.4.1dotb4.exe 24 142 015 Bytes 7a64014e7791671694e58e226d4c5a3401fa50dfbb830c4cd6f4720e16e92cf8
26d42679cd6e43f9a87ee1db0ca4a889 24c800e5bfccdd0fb0fa7577f7e9886e1dfc5bc1 d9879e1ec5ba4b466748fe208acdb362266a4445ba2b4a66157621510fb7aef2 Winpython64-3.12.4.1b4.exe 894 302 434 Bytes e961314f18651651b0609c7af074640303692e4482c83e45f0b3078ee973adef
2970cf052c059c1c82315e3cbefbd88e 949d8c2ef780724fe3226a31b18ec7041ed4fd19 d4195d318d285b15232b4e1026c241b8c0e0d0b13812cceeb6cb307f1f40fc9f Winpython64-3.13.0.0dotb2.exe 24 418 083 Bytes 2fb532e610e11c8128da31d354ad403ca8cdc29bbedb11cfd2effa6234d248d1
21f6cb6710083e47a74f4ae46b53490d df9d2695aaa6ea22c66e717cb8ec2989ef886d59 e163034089ad4d43f45adc89347e80961b0d20abbdbc2139a2ec88ad7b557e43 Winpython64-3.13.0.0freeb2.exe 32 658 444 Bytes 1a5773c22859f1b3e77b309aa4183ab8d7ddbf0dc4f452f2d7c84de08326d05f

WinPython 3.12.4.1

The following packages are included in WinPython-64bit v3.12.4.1 b4.

Tools

Name Version Description
Nodejs v20.12.2 a JavaScript runtime built on Chrome's V8 JavaScript engine
npmjs 10.5.0 a package manager for JavaScript
Pandoc 3.1.9 a universal document converter

Python packages

Name Version Description
Python 3.12.4 Python programming language with standard library
about_time 4.2.1 Easily measure timing and throughput of code blocks, with beautiful human friendly representations.
absl_py 2.0.0 Abseil Python Common Libraries, see https://github.com/abseil/abseil-py.
accelerate 0.28.0 Accelerate
adbc_driver_manager 0.11.0 A generic entrypoint for ADBC drivers.
adodbapi 2.6.1.3 A pure Python package implementing PEP 249 DB-API using Microsoft ADO.
affine 2.3.1 Matrices describing affine transformation of the plane.
aiofiles 23.2.1 File support for asyncio.
aiohttp 3.9.3 Async http client/server framework (asyncio)
aiosignal 1.3.1 aiosignal: a list of registered asynchronous callbacks
aiosqlite 0.20.0 asyncio bridge to the standard sqlite3 module
alabaster 0.7.16 A light, configurable Sphinx theme
alembic 1.13.1 A database migration tool for SQLAlchemy.
alive_progress 3.1.5 A new kind of Progress Bar, with real-time throughput, ETA, and very cool animations!
altair 5.3.0 Vega-Altair: A declarative statistical visualization library for Python.
altair_data_server 0.4.1 A background data server for Altair charts.
altair_transform 0.2.0 A python engine for evaluating Altair transforms.
aniso8601 9.0.1 A library for parsing ISO 8601 strings.
annotated_types 0.6.0 Reusable constraint types to use with typing.Annotated
anyio 4.3.0 High level compatibility layer for multiple asynchronous event loop implementations
anywidget 0.9.3 custom jupyter widgets made easy
appdirs 1.4.4 A small Python module for determining appropriate platform-specific dirs, e.g. a "user data dir".
argon2_cffi 23.1.0 Argon2 for Python
argon2_cffi_bindings 21.2.0 Low-level CFFI bindings for Argon2
array_api_compat 1.6 A wrapper around NumPy and other array libraries to make them compatible with the Array API standard
arrow 1.2.2 Better dates & times for Python
asgi_csrf 0.9 ASGI middleware for protecting against CSRF attacks
asgiref 3.8.1 ASGI specs, helper code, and adapters
asn1crypto 1.5.1 Fast ASN.1 parser and serializer with definitions for private keys, public keys, certificates, CRL, OCSP, CMS, PKCS#3, PKCS#7, PKCS#8, PKCS#12, PKCS#5, X.509 and TSP
asteval 0.9.31 Safe, minimalistic evaluator of python expression using ast module
astroid 3.1.0 An abstract syntax tree for Python with inference support.
astropy 6.1.0 Astronomy and astrophysics core library
astropy_iers_data 0.2024.4.29.0.28.48 IERS Earth Rotation and Leap Second tables for the astropy core package
asttokens 2.4.1 Annotate AST trees with source code positions
async_lru 2.0.4 Simple LRU cache for asyncio
async_timeout 4.0.3 Timeout context manager for asyncio programs
atomicwrites 1.4.0 Atomic file writes.
attrs 23.2.0 Classes Without Boilerplate
autograd 1.6.2 Efficiently computes derivatives of numpy code.
autopep8 2.0.4 A tool that automatically formats Python code to conform to the PEP 8 style guide
azure_core 1.30.1 Microsoft Azure Core Library for Python
azure_cosmos 4.6.0 Microsoft Azure Cosmos Client Library for Python
azure_identity 1.16.0 Microsoft Azure Identity Library for Python
babel 2.14.0 Internationalization utilities
baresql 0.8.0 playing SQL directly on Python datas
bcrypt 4.0.1 Modern password hashing for your software and your servers
beautifulsoup4 4.12.2 Screen-scraping library
binaryornot 0.4.4 Ultra-lightweight pure Python package to check if a file is binary or text.
black 24.4.2 The uncompromising code formatter.
bleach 6.1.0 An easy safelist-based HTML-sanitizing tool.
blinker 1.7.0 Fast, simple object-to-object and broadcast signaling
bokeh 3.4.1 Interactive plots and applications in the browser from Python
botorch 0.9.5 Bayesian Optimization in PyTorch
branca 0.7.2 Generate complex HTML+JS pages with Python
brotli 1.1.0 Python bindings for the Brotli compression library
build 1.2.1 A simple, correct Python build frontend
cachelib 0.10.2 A collection of cache libraries in the same API interface.
cachetools 5.3.1 Extensible memoizing collections and decorators
cartopy 0.23.0 A Python library for cartographic visualizations with Matplotlib
certifi 2023.11.17 Python package for providing Mozilla's CA Bundle.
cffi 1.16.0 Foreign Function Interface for Python calling C code.
cftime 1.6.3 Time-handling functionality from netcdf4-python
chardet 5.2.0 Universal encoding detector for Python 3
charset_normalizer 3.3.2 The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet.
clarabel 0.7.1 Clarabel Conic Interior Point Solver for Rust / Python
click 8.1.7 Composable command line interface toolkit
click_default_group 1.2.4 click_default_group
click_plugins 1.1.1 An extension module for click to enable registering CLI commands via setuptools entry-points.
cligj 0.7.2 Click params for commmand line interfaces to GeoJSON
cloudpickle 3.0.0 Pickler class to extend the standard pickle.Pickler functionality
clr_loader 0.2.6 Generic pure Python loader for .NET runtimes
clrmagic 0.0.1a2 IPython cell magic to use .NET languages
cma 3.2.2 CMA-ES, Covariance Matrix Adaptation Evolution Strategy for non-linear numerical optimization in Python
colorama 0.4.6 Cross-platform colored terminal text.
colorcet 3.0.1 Collection of perceptually uniform colormaps
colorlog 6.8.2 Add colours to the output of Python's logging module.
comm 0.1.4 Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc.
contourpy 1.2.1 Python library for calculating contours of 2D quadrilateral grids
cookiecutter 2.3.0 A command-line utility that creates projects from project templates, e.g. creating a Python package project from a Python package project template.
coverage 7.3.2 Code coverage measurement for Python
cryptography 41.0.5 cryptography is a package which provides cryptographic recipes and primitives to Python developers.
cvxopt 1.3.2 Convex optimization package
cvxpy 1.5.0 A domain-specific language for modeling convex optimization problems in Python.
cycler 0.12.1 Composable style cycles
cython 3.0.10 The Cython compiler for writing C extensions in the Python language.
cytoolz 0.12.3 Cython implementation of Toolz: High performance functional utilities
dash 2.16.1 A Python framework for building reactive web-apps. Developed by Plotly.
dash_core_components 2.0.0 Core component suite for Dash
dash_html_components 2.0.0 Vanilla HTML components for Dash
dash_table 5.0.0 Dash table
dask 2024.3.1 Parallel PyData with Task Scheduling
dask_expr 1.0.5 High Level Expressions for Dask
dask_image 2023.8.1 Distributed image processing
dataclasses_json 0.6.6 Easily serialize dataclasses to and from JSON.
datasette 0.64.6 An open source multi-tool for exploring and publishing data
datasette_graphql 2.2 Datasette plugin providing an automatic GraphQL API for your SQLite databases
datashader 0.16.1 Data visualization toolchain based on aggregating into a grid
db_py 0.5.4b1 a db package that doesn't suck
deap 1.4.1 Distributed Evolutionary Algorithms in Python
debugpy 1.8.0 An implementation of the Debug Adapter Protocol for Python
decorator 4.4.2 Decorators for Humans
defusedxml 0.7.1 XML bomb protection for Python stdlib modules
deprecated 1.2.13 Python @deprecated decorator to deprecate old python classes, functions or methods.
diff_match_patch 20200713 Repackaging of Google's Diff Match and Patch libraries. Offers robust algorithms to perform the operations required for synchronizing plain text.
dill 0.3.7 serialize all of Python
dirty_cat 0.4.1 Machine learning with dirty categories.
distlib 0.3.6 Distribution utilities
distributed 2024.3.1 Distributed scheduler for Dask
distro 1.8.0 Distro - an OS platform information API
django 5.0.3 A high-level Python web framework that encourages rapid development and clean, pragmatic design.
dnspython 2.4.2 DNS toolkit
docopt 0.6.2 Pythonic argument parser, that will make you smile
docstring_to_markdown 0.13 On the fly conversion of Python docstrings to markdown
docutils 0.20.1 Docutils -- Python Documentation Utilities
duckdb 1.0.0 DuckDB in-process database
ecos 2.0.13 This is the Python package for ECOS: Embedded Cone Solver. See Github page for more information.
entrypoints 0.4 Discover and load entry points from installed packages.
et_xmlfile 1.1.0 An implementation of lxml.xmlfile for the standard library
executing 2.0.1 Get the currently executing AST node of a frame, and other information
fast_histogram 0.12 Fast simple 1D and 2D histograms
fastapi 0.109.1 FastAPI framework, high performance, easy to learn, fast to code, ready for production
fastjsonschema 2.18.0 Fastest Python implementation of JSON schema
filelock 3.12.4 A platform independent file lock.
filterpy 1.4.5 Kalman filtering and optimal estimation library
fiona 1.9.5 Fiona reads and writes spatial data files
flake8 7.0.0 the modular source code checker: pep8 pyflakes and co
flask 3.0.2 A simple framework for building complex web applications.
flask_mail 0.9.1 Flask extension for sending email
flask_session 0.5.0 Server-side session support for Flask
flask_sqlalchemy 3.0.5 Add SQLAlchemy support to your Flask application.
flit 3.9.0 A simple packaging tool for simple packages.
flit_core 3.9.0 Distribution-building parts of Flit. See flit package for more information
folium 0.16.0 Make beautiful maps with Leaflet.js & Python
fonttools 4.50.0 Tools to manipulate font files
formlayout 1.2.1a1 The most easy way to create Qt form dialogs and widgets with Python
fqdn 1.5.1 Validates fully-qualified domain names against RFC 1123, so that they are acceptable to modern bowsers
frozenlist 1.4.1 A list-like structure which implements collections.abc.MutableSequence
fsspec 2024.3.1 File-system specification
future 0.18.2 Clean single-source support for Python 3 and 2
fuzzywuzzy 0.18.0 Fuzzy string matching in python
gdal 3.7.3 GDAL: Geospatial Data Abstraction Library
geographiclib 2.0 The geodesic routines from GeographicLib
geopandas 0.14.0 Geographic pandas extensions
geopy 2.4.0 Python Geocoding Toolbox
gitdb 4.0.10 Git Object Database
gitpython 3.1.32 GitPython is a Python library used to interact with Git repositories
gpytorch 1.11 An implementation of Gaussian Processes in Pytorch
grapheme 0.6.0 Unicode grapheme helpers
graphene 3.3 GraphQL Framework for Python
graphql_core 3.2.3 GraphQL implementation for Python, a port of GraphQL.js, the JavaScript reference implementation for GraphQL.
graphql_relay 3.2.0 Relay library for graphql-core
greenlet 3.0.3 Lightweight in-process concurrent programming
guidata 3.5.0 Automatic GUI generation for easy dataset editing and display
h11 0.14.0 A pure-Python, bring-your-own-I/O implementation of HTTP/1.1
h2 4.1.0 HTTP/2 State-Machine based protocol implementation
h5py 3.10.0 Read and write HDF5 files from Python
hatchling 1.24.2 Modern, extensible Python build backend
holoviews 1.18.3 Stop plotting your data - annotate your data and let it visualize itself.
hpack 4.0.0 Pure-Python HPACK header compression
html5lib 1.1 HTML parser based on the WHATWG HTML specification
httpcore 1.0.5 A minimal low-level HTTP client.
httpie 3.2.2 HTTPie: modern, user-friendly command-line HTTP client for the API era.
httpx 0.27.0 The next generation HTTP client.
huggingface_hub 0.23.0 Client library to download and publish models, datasets and other repos on the huggingface.co hub
hupper 1.12 Integrated process monitor for developing and reloading daemons.
hvplot 0.10.0 A high-level plotting API for the PyData ecosystem built on HoloViews.
hypercorn 0.16.0 A ASGI Server based on Hyper libraries and inspired by Gunicorn
hyperframe 6.0.1 HTTP/2 framing layer for Python
hypothesis 6.100.5 A library for property-based testing
idna 3.4 Internationalized Domain Names in Applications (IDNA)
imageio 2.33.1 Library for reading and writing a wide range of image, video, scientific, and volumetric data formats.
imageio_ffmpeg 0.4.8 FFMPEG wrapper for Python
imagesize 1.4.1 Getting image size from png/jpeg/jpeg2000/gif file
imbalanced_learn 0.12.2 Toolbox for imbalanced dataset in machine learning.
importlib_metadata 7.1.0 Read metadata from Python packages
inflection 0.5.1 A port of Ruby on Rails inflector to Python
iniconfig 2.0.0 brain-dead simple config-ini parsing
intervaltree 3.0.2 Editable interval tree data structure for Python 2 and 3
ipycanvas 0.13.1 Interactive widgets library exposing the browser's Canvas API
ipykernel 6.29.4 IPython Kernel for Jupyter
ipyleaflet 0.18.2 A Jupyter widget for dynamic Leaflet maps
ipympl 0.9.3 Matplotlib Jupyter Extension
ipython 8.24.0 IPython: Productive Interactive Computing
ipython_genutils 0.2.0 Vestigial utilities from IPython
ipython_sql 0.5.0 RDBMS access via IPython
ipywidgets 8.1.2 Jupyter interactive widgets
isoduration 20.11.0 Operations with ISO 8601 durations
isort 5.13.2 A Python utility / library to sort Python imports.
itsdangerous 2.2.0 Safely pass data to untrusted environments and back.
janus 1.0.0 Mixed sync-async queue to interoperate between asyncio tasks and classic threads
jaraco_classes 3.4.0 Utility functions for Python class constructs
jaxtyping 0.2.22 Type annotations and runtime checking for shape and dtype of JAX arrays, and PyTrees.
jedi 0.19.1 An autocompletion tool for Python that can be used for text editors.
jellyfish 1.0.3 Approximate and phonetic matching of strings.
jinja2 3.1.2 A very fast and expressive template engine.
joblib 1.4.2 Lightweight pipelining with Python functions
json5 0.9.14 A Python implementation of the JSON5 data format.
jsonpatch 1.33 Apply JSON-Patches (RFC 6902)
jsonpointer 2.4 Identify specific nodes in a JSON document (RFC 6901)
jsonschema 4.19.2 An implementation of JSON Schema validation for Python
jsonschema_specifications 2023.12.1 The JSON Schema meta-schemas and vocabularies, exposed as a Registry
julia 0.6.2 Julia/Python bridge with IPython support.
jupyter 1.0.0 Jupyter metapackage. Install all the Jupyter components in one go.
jupyter_bokeh 4.0.4 A Jupyter extension for rendering Bokeh content.
jupyter_client 8.6.1 Jupyter protocol implementation and client libraries
jupyter_console 6.6.3 Jupyter terminal console
jupyter_core 5.7.2 Jupyter core package. A base package on which Jupyter projects rely.
jupyter_events 0.10.0 Jupyter Event System library
jupyter_lsp 2.2.4 Multi-Language Server WebSocket proxy for Jupyter Notebook/Lab server
jupyter_server 2.12.5 The backend—i.e. core services, APIs, and REST endpoints—to Jupyter web applications.
jupyter_server_terminals 0.5.3 A Jupyter Server Extension Providing Terminals.
jupyterlab 4.2.1 JupyterLab computational environment
jupyterlab_pygments 0.3.0 Pygments theme using JupyterLab CSS variables
jupyterlab_server 2.27.1 A set of server components for JupyterLab and JupyterLab like applications.
jupyterlab_widgets 3.0.10 Jupyter interactive widgets for JupyterLab
keras 3.3.3 Multi-backend Keras.
keyring 24.3.1 Store and access your passwords safely.
kiwisolver 1.4.5 A fast implementation of the Cassowary constraint solver
kornia 0.7.1 Open Source Differentiable Computer Vision Library for PyTorch
langchain 0.1.13 Building applications with LLMs through composability
langchain_community 0.0.29 Community contributed LangChain integrations.
langchain_core 0.1.35 Building applications with LLMs through composability
langchain_text_splitters 0.0.1 LangChain text splitting utilities
langsmith 0.1.58 Client library to connect to the LangSmith LLM Tracing and Evaluation Platform.
lazy_loader 0.4 Makes it easy to load subpackages and functions on demand.
lightning 2.2.1 The Deep Learning framework to train, deploy, and ship AI products Lightning fast.
lightning_utilities 0.10.0 PyTorch Lightning Sample project.
linear_operator 0.5.1 A linear operator implementation, primarily designed for finite-dimensional positive definite operators (i.e. kernel matrices).
linkify_it_py 2.0.2 Links recognition library with FULL unicode support.
llvmlite 0.42.0 lightweight wrapper around basic LLVM functionality
lmfit 1.3.1 Least-Squares Minimization with Bounds and Constraints
locket 1.0.0 File-based locks for Python on Linux and Windows
lxml 5.2.2 Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API.
mako 1.2.0 A super-fast templating language that borrows the best ideas from the existing templating languages.
markdown 3.5.1 Python implementation of John Gruber's Markdown.
markdown_it_py 2.2.0 Python port of markdown-it. Markdown parsing, done right!
markupsafe 2.1.1 Safely add untrusted strings to HTML/XML markup.
marshmallow 3.20.2 A lightweight library for converting complex datatypes to and from native Python datatypes.
matplotlib 3.9.0 Python plotting package
matplotlib_inline 0.1.7 Inline Matplotlib backend for Jupyter
maturin 1.5.1 Build and publish crates with pyo3, rust-cpython and cffi bindings as well as rust binaries as python packages
mccabe 0.7.0 McCabe checker, plugin for flake8
mdit_py_plugins 0.3.5 Collection of plugins for markdown-it-py
mdurl 0.1.2 Markdown URL utilities
mercantile 1.2.1 Web mercator XYZ tile utilities
mergedeep 1.3.4 A deep merge function for 🐍.
missingno 0.5.1 Missing data visualization module for Python.
mistune 2.0.5 A sane Markdown parser with useful plugins and renderers
mizani 0.9.2 Scales for Python
ml_dtypes 0.4.0 stand-alone implementation of several NumPy dtype extensions used in machine learning libraries
mlxtend 0.22.0 Machine Learning Library Extensions
more_itertools 10.2.0 More routines for operating on iterables, beyond itertools
moviepy 1.0.3 Video editing with Python
mpl_scatter_density 0.7 Matplotlib helpers to make density scatter plots
mpld3 0.5.8 D3 Viewer for Matplotlib
mpmath 1.3.0 Python library for arbitrary-precision floating-point arithmetic
msal 1.24.1 The Microsoft Authentication Library (MSAL) for Python library
msal_extensions 1.0.0 Microsoft Authentication Library extensions (MSAL EX) provides a persistence API that can save your data on disk, encrypted on Windows, macOS and Linux. Concurrent data access will be coordinated by a file lock mechanism.
msgpack 1.0.4 MessagePack serializer
msvc_runtime 14.38.33135 Install the Microsoft™ Visual C++™ runtime DLLs to the sys.prefix and Scripts directories
multidict 6.0.5 multidict implementation
multipledispatch 1.0.0 Multiple dispatch
mutagen 1.46.0 read and write audio tags for many formats
mypy 1.10.0 Optional static typing for Python
mypy_extensions 1.0.0 Type system extensions for programs checked with the mypy type checker.
mysql_connector_python 8.0.21 MySQL driver written in Python
namex 0.0.7 A simple utility to separate the implementation of your Python package and its public API surface.
nbclient 0.10.0 A client library for executing notebooks. Formerly nbconvert's ExecutePreprocessor.
nbconvert 7.16.1 Converting Jupyter Notebooks (.ipynb files) to other formats. Output formats include asciidoc, html, latex, markdown, pdf, py, rst, script. nbconvert can be used both as a Python library (import nbconvert) or as a command line tool (invoked as jupyter nbconvert ...).
nbformat 5.10.4 The Jupyter Notebook format
nest_asyncio 1.6.0 Patch asyncio to allow nested event loops
netcdf4 1.6.5 Provides an object-oriented python interface to the netCDF version 4 library
networkx 3.3 Python package for creating and manipulating graphs and networks
nltk 3.8.1 Natural Language Toolkit
notebook 7.2.0 Jupyter Notebook - A web-based notebook environment for interactive computing
notebook_shim 0.2.4 A shim layer for notebook traits and config
ntlm_auth 1.5.0 Creates NTLM authentication structures
numba 0.59.1 compiling Python code using LLVM
numexpr 2.10.0 Fast numerical expression evaluator for NumPy
numpy 1.26.4 Fundamental package for array computing in Python
numpydoc 1.6.0 Sphinx extension to support docstrings in Numpy format
openai 1.30.1 The official Python library for the openai API
opencv_python 4.9.0.80 Wrapper package for OpenCV python bindings.
openpyxl 3.1.2 A Python library to read/write Excel 2010 xlsx/xlsm files
opt_einsum 3.3.0 Optimizing numpys einsum function
optree 0.11.0 Optimized PyTree Utilities.
optuna 3.6.1 A hyperparameter optimization framework
orjson 3.9.15 Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy
ortools 9.8.3296 Google OR-Tools python libraries and modules
outcome 1.3.0.post0 Capture the outcome of Python function calls.
overrides 7.7.0 A decorator to automatically detect mismatch when overriding a method.
packaging 23.2 Core utilities for Python packages
pandas 2.2.2 Powerful data structures for data analysis, time series, and statistics
pandocfilters 1.5.0 Utilities for writing pandoc filters in python
panel 1.4.4 The powerful data exploration & web app framework for Python.
papermill 2.5.1a1 Parameterize and run Jupyter and nteract Notebooks
param 2.1.0 Make your Python code clearer and more reliable by declaring Parameters.
paramiko 2.8.0 SSH2 protocol library
parso 0.8.4 A Python Parser
partd 1.4.0 Appendable key-value storage
pathspec 0.11.0 Utility library for gitignore style pattern matching of file paths.
patsy 0.5.6 A Python package for describing statistical models and for building design matrices.
pdfrw 0.4.post2 PDF file reader/writer library
pep8 1.7.1 Python style guide checker
pexpect 4.8.0 Pexpect allows easy control of interactive console applications.
pg8000 1.23.0 PostgreSQL interface library
pickleshare 0.7.5 Tiny 'shelve'-like database with concurrency support
pillow 10.3.0 Python Imaging Library (Fork)
pims 0.6.1 Python Image Sequence
pint 0.23 Physical quantities module
pip 24.0 The PyPA recommended tool for installing Python packages.
pkginfo 1.9.6 Query metadata from sdists / bdists / installed packages.
platformdirs 3.8.1 A small Python package for determining appropriate platform-specific dirs, e.g. a "user data dir".
plotly 5.22.0 An open-source, interactive data visualization library for Python
plotnine 0.12.4 A Grammar of Graphics for Python
plotpy 2.3.0 Curve and image plotting tools for Python/Qt applications
pluggy 1.5.0 plugin and hook calling mechanisms for python
ply 3.11 Python Lex & Yacc
pmdarima 2.0.4 Python's forecast::auto.arima equivalent
polars 0.20.31 Blazingly fast DataFrame library
portalocker 2.7.0 Wraps the portalocker recipe for easy usage
portpicker 1.5.0 A library to choose unique available network ports.
ppci 0.5.9 A compiler for ARM, X86, MSP430, xtensa and more implemented in pure Python
prettytable 3.3.0 A simple Python library for easily displaying tabular data in a visually appealing ASCII table format
priority 2.0.0 A pure-Python implementation of the HTTP/2 priority tree
proglog 0.1.10 Log and progress bar manager for console, notebooks, web...
prometheus_client 0.18.0 Python client for the Prometheus monitoring system.
prompt_toolkit 3.0.43 Library for building powerful interactive command lines in Python
protobuf 4.25.1 Protocol Buffers
psutil 5.9.8 Cross-platform lib for process and system monitoring in Python.
psygnal 0.11.1 Fast python callback/event system modeled after Qt Signals
ptpython 3.0.26 Python REPL build on top of prompt_toolkit
ptyprocess 0.7.0 Run a subprocess in a pseudo terminal
pulp 2.6.0 PuLP is an LP modeler written in python. PuLP can generate MPS or LP files and call GLPK, COIN CLP/CBC, CPLEX, and GUROBI to solve linear problems.
pure_eval 0.2.2 Safely evaluate AST nodes without side effects
pyarrow 16.1.0 Python library for Apache Arrow
pyaudio 0.2.14 Cross-platform audio I/O with PortAudio
pybars3 0.9.7 Handlebars.js templating for Python 3 and 2
pybind11 2.12.0 Seamless operability between C++11 and Python
pycodestyle 2.11.1 Python style guide checker
pycosat 0.6.6 bindings to picosat (a SAT solver)
pycparser 2.22 C parser in Python
pycryptodomex 3.20.0 Cryptographic library for Python
pyct 0.5.0 Python package common tasks for users (e.g. copy examples, fetch data, ...)
pydantic 2.7.1 Data validation using Python type hints
pydantic_core 2.18.2 Core functionality for Pydantic validation and serialization
pydeck 0.9.1 Widget for deck.gl maps
pydocstyle 6.3.0 Python docstring style checker
pydub 0.25.1 Manipulate audio with an simple and easy high level interface
pyepsg 0.4.0 Easy access to the EPSG database via http://epsg.io/
pyerfa 2.0.1.4 Python bindings for ERFA
pyflakes 3.2.0 passive checker of Python programs
pygame 2.5.2 Python Game Development
pygments 2.18.0 Pygments is a syntax highlighting package written in Python.
pyjwt 2.8.0 JSON Web Token implementation in Python
pylint 3.1.0 python code static checker
pylint_venv 3.0.3 pylint-venv provides a Pylint init-hook to use the same Pylint installation with different virtual environments.
pyls_spyder 0.4.0 Spyder extensions for the python-lsp-server
pymeta3 0.5.1 Pattern-matching language based on OMeta for Python 3 and 2
pymongo 4.7.2 Python driver for MongoDB http://www.mongodb.org
pymoo 0.6.1.1 Multi-Objective Optimization in Python
pympler 1.0.1 A development tool to measure, monitor and analyze the memory behavior of Python objects.
pynacl 1.5.0 Python binding to the Networking and Cryptography (NaCl) library
pynndescent 0.5.12 Nearest Neighbor Descent
pyodbc 5.1.0 DB API module for ODBC
pyomo 6.7.2 Pyomo: Python Optimization Modeling Objects
pypandoc 1.5 Thin wrapper for pandoc.
pyparsing 3.1.2 pyparsing module - Classes and methods to define and execute parsing grammars
pypdf 3.15.2 A pure-python PDF library capable of splitting, merging, cropping, and transforming PDF files
pypng 0.20220715.0 Pure Python library for saving and loading PNG images
pyproj 3.6.1 Python interface to PROJ (cartographic projections and coordinate transformations library)
pyproject_hooks 1.1.0 Wrappers to call pyproject.toml-based build backend hooks.
pyqt5 5.15.10 Python bindings for the Qt cross platform application toolkit
pyqt5_qt5 5.15.2 The subset of a Qt installation needed by PyQt5.
pyqt5_sip 12.13.0 The sip module support for PyQt5
pyqtgraph 0.13.7 Scientific Graphics and GUI Library for Python
pyqtwebengine 5.15.6 Python bindings for the Qt WebEngine framework
pyqtwebengine_qt5 5.15.2 The subset of a Qt installation needed by PyQtWebEngine.
pyro_api 0.1.2 Generic API for dispatch to Pyro backends.
pyro_ppl 1.9.0 A Python library for probabilistic modeling and inference
pyserial 3.5 Python Serial Port Extension
pyshp 2.3.1 Pure Python read/write support for ESRI Shapefile format
pysimplegui 4.60.4 Python GUIs for Humans. Launched in 2018. It's 2022 & PySimpleGUI is an ACTIVE & supported project. Super-simple to create custom GUI's. 325+ Demo programs & Cookbook for rapid start. Extensive documentation. Main docs at www.PySimpleGUI.org. Fun & your success are the focus. Examples using Machine Learning (GUI, OpenCV Integration), Rainmeter Style Desktop Widgets, Matplotlib + Pyplot, PIL support, add GUI to command line scripts, PDF & Image Viewers. Great for beginners & advanced GUI programmers.
pysocks 1.7.1 A Python SOCKS client module. See https://github.com/Anorov/PySocks for more information.
pytest 8.2.0 pytest: simple powerful testing with Python
python_barcode 0.15.1 Create standard barcodes with Python. No external modules needed. (optional Pillow support included).
python_dateutil 2.8.2 Extensions to the standard Python datetime module
python_dotenv 1.0.1 Read key-value pairs from a .env file and set them as environment variables
python_json_logger 2.0.7 A python library adding a json log formatter
python_lsp_black 2.0.0 Black plugin for the Python LSP Server
python_lsp_jsonrpc 1.1.2 JSON RPC 2.0 server library
python_lsp_server 1.11.0 Python Language Server for the Language Server Protocol
python_multipart 0.0.5 A streaming multipart parser for Python
python_slugify 6.1.2 A Python slugify application that also handles Unicode
pythonnet 3.0.3 .NET and Mono integration for Python
pythonqwt 0.12.1 Qt plotting widgets for Python
pytoolconfig 1.2.4 Python tool configuration
pytorch_lightning 2.2.1 PyTorch Lightning is the lightweight PyTorch wrapper for ML researchers. Scale your models. Write less boilerplate.
pytz 2023.3 World timezone definitions, modern and historical
pytz_deprecation_shim 0.1.0.post0 Shims to make deprecation of pytz easier
pyviz_comms 3.0.2 A JupyterLab extension for rendering HoloViz content.
pywin32 306 Python for Window Extensions
pywin32_ctypes 0.2.2 A (partial) reimplementation of pywin32 using ctypes/cffi
pywinpty 2.0.12 Pseudo terminal support for Windows from Python.
pywinusb 0.4.2 A package that simplifies USB/HID communications on windows
pyyaml 6.0.1 YAML parser and emitter for Python
pyzmq 26.0.3 Python bindings for 0MQ
qdarkstyle 3.2.3 The most complete dark/light style sheet for C++/Python and Qt applications
qpsolvers 4.3.0 Quadratic programming solvers in Python with a unified API.
qrcode 7.4.2 QR Code image generator
qstylizer 0.2.2 Stylesheet Generator for PyQt{4-5}/PySide{1-2}
qtawesome 1.3.1 FontAwesome icons in PyQt and PySide applications
qtconsole 5.5.1 Jupyter Qt console
qtpy 2.4.1 Provides an abstraction layer on top of the various Qt bindings (PyQt5/6 and PySide2/6).
quantecon 0.5.3 Import the main names to top level.
quart 0.19.4 A Python ASGI web microframework with the same API as Flask
rapidfuzz 3.5.2 rapid fuzzy string matching
rasterio 1.3.9 Fast and direct raster I/O for use with Numpy and SciPy
readme_renderer 35.0 readme_renderer is a library for rendering "readme" descriptions for Warehouse
redis 4.3.1 Python client for Redis database and key-value store
referencing 0.31.1 JSON Referencing + Python
regex 2023.10.3 Alternative regular expression module, to replace re.
reportlab 4.2.0 The Reportlab Toolkit
requests 2.31.0 Python HTTP for Humans.
requests_ntlm 1.1.0 This package allows for HTTP NTLM authentication using the requests library.
requests_toolbelt 1.0.0 A utility belt for advanced users of python-requests
retrying 1.3.4 Retrying
rfc3339_validator 0.1.4 A pure python RFC3339 validator
rfc3986 2.0.0 Validating URI References per RFC 3986
rfc3986_validator 0.1.1 Pure python rfc3986 validator
rich 13.7.1 Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal
rope 1.12.0 a python refactoring library...
rpds_py 0.13.2 Python bindings to Rust's persistent data structures (rpds)
rtree 1.1.0 R-Tree spatial index for Python GIS
rx 3.1.1 Reactive Extensions (Rx) for Python
safetensors 0.4.2 Fast and Safe Tensor serialization
scikit_image 0.23.2 Image processing in Python
scikit_learn 1.4.2 A set of python modules for machine learning and data mining
scipy 1.13.0 Fundamental algorithms for scientific computing in Python
scramp 1.4.1 An implementation of the SCRAM protocol.
scs 3.2.4.post1 Splitting conic solver
seaborn 0.13.2 Statistical data visualization
send2trash 1.8.2 Send file to trash natively under Mac OS X, Windows and Linux
setuptools 69.5.1 Easily download, build, install, upgrade, and uninstall Python packages
shapely 2.0.4 Manipulation and analysis of geometric objects
simplegeneric 0.8.1 Simple generic functions (similar to Python's own len(), pickle.dump(), etc.)
simplejson 3.17.6 Simple, fast, extensible JSON encoder/decoder for Python
simpy 4.0.1 Event discrete, process based simulation for Python.
six 1.16.0 Python 2 and 3 compatibility utilities
slicerator 1.1.0 A lazy-loading, fancy-sliceable iterable.
smmap 5.0.0 A pure Python implementation of a sliding window memory map manager
sniffio 1.3.0 Sniff out which async library your code is running under
snowballstemmer 2.2.0 This package provides 29 stemmers for 28 languages generated from Snowball algorithms.
snuggs 1.4.7 Snuggs are s-expressions for Numpy
sortedcontainers 2.4.0 Sorted Containers -- Sorted List, Sorted Dict, Sorted Set
sounddevice 0.4.6 Play and Record Sound with Python
soupsieve 2.3.2.post1 A modern CSS selector implementation for Beautiful Soup.
sphinx 7.2.6 Python documentation generator
sphinx_rtd_theme 2.0.0 Read the Docs theme for Sphinx
sphinxcontrib_applehelp 1.0.2 sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books
sphinxcontrib_devhelp 1.0.2 sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document.
sphinxcontrib_htmlhelp 2.0.0 sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files
sphinxcontrib_jquery 4.1 Extension to include jQuery on newer Sphinx releases
sphinxcontrib_jsmath 1.0.1 A sphinx extension which renders display math in HTML via JavaScript
sphinxcontrib_qthelp 1.0.3 sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document.
sphinxcontrib_serializinghtml 1.1.9 sphinxcontrib-serializinghtml is a sphinx extension which outputs "serialized" HTML files (json and pickle)
spyder 5.5.4 The Scientific Python Development Environment
spyder_kernels 2.5.1 Jupyter kernels for Spyder's console
sqlalchemy 2.0.28 Database Abstraction Library
sqlite_bro 0.13.1 a graphic SQLite Client in 1 Python file
sqlite_fts4 1.0.3 Python functions for working with SQLite FTS4 search
sqlite_utils 3.36 CLI tool and Python library for manipulating SQLite databases
sqlparse 0.4.3 A non-validating SQL parser.
sspyrs 0.3 Lightweight interface for SSRS reports to python
stack_data 0.6.3 Extract data from python stack frames and tracebacks for informative displays
starlette 0.35.1 The little ASGI library that shines.
statsmodels 0.14.2 Statistical computations and models for Python
streamlit 1.32.2 A faster way to build and share data apps
streamz 0.6.3 Streams
swifter 1.3.4 A package which efficiently applies any function to a pandas dataframe or series in the fastest available manner
sympy 1.12 Computer algebra system (CAS) in Python
tabulate 0.9.0 Pretty-print tabular data
tbats 1.1.0 BATS and TBATS for time series forecasting
tblib 1.7.0 Traceback serialization library.
tenacity 8.1.0 Retry code until it succeeds
terminado 0.17.0 Tornado websocket backend for the Xterm.js Javascript terminal emulator library.
text_unidecode 1.3 The most basic Text::Unidecode port
textdistance 4.5.0 Compute distance between the two texts.
threadpoolctl 3.5.0 threadpoolctl
three_merge 0.1.1 Simple library for merging two strings with respect to a base one
tifffile 2023.7.18 Read and write TIFF files
tinycss2 1.1.1 A tiny CSS parser
tokenizers 0.15.1 Fast and Customizable Tokenizers
toml 0.10.2 Python Library for Tom's Obvious, Minimal Language
tomli 2.0.1 A lil' TOML parser
tomli_w 1.0.0 A lil' TOML writer
tomlkit 0.12.3 Style preserving TOML library
toolz 0.12.0 List processing tools and functional utilities
torch 2.2.2 Tensors and Dynamic neural networks in Python with strong GPU acceleration
torchaudio 2.2.2 An audio package for PyTorch
torchmetrics 1.3.2 PyTorch native Metrics
torchvision 0.17.2 image and video datasets and models for torch deep learning
tornado 6.4 Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.
tqdm 4.66.4 Fast, Extensible Progress Meter
traitlets 5.14.1 Traitlets Python configuration system
traittypes 0.2.1 Scipy trait types
transformers 4.38.2 State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow
trio 0.25.0 A friendly Python library for async concurrency and I/O
trove_classifiers 2023.2.20 Canonical source for classifiers on PyPI (pypi.org).
twine 4.0.1 Collection of utilities for publishing packages on PyPI
typeguard 2.13.3 Run-time type checker for Python
typing_extensions 4.9.0 Backported and Experimental Type Hints for Python 3.8+
typing_inspect 0.8.0 Runtime inspection utilities for typing module.
tzdata 2022.7 Provider of IANA time zone data
tzlocal 4.2 tzinfo object for the local timezone
uc_micro_py 1.0.1 Micro subset of unicode data files for linkify-it-py projects.
ujson 5.8.0 Ultra fast JSON encoder and decoder for Python
umap_learn 0.5.1 Uniform Manifold Approximation and Projection
uncertainties 3.1.7 Transparent calculations with uncertainties on the quantities involved (aka error propagation); fast calculation of derivatives
uri_template 1.2.0 RFC 6570 URI Template Processor
urllib3 2.0.3 HTTP library with thread-safe connection pooling, file post, and more.
uvicorn 0.26.0 The lightning-fast ASGI server.
vega_datasets 0.9.0 A Python package for offline access to Vega datasets
virtualenv 20.23.0 Virtual Python Environment builder
waitress 2.1.2 Waitress WSGI server
wasmer 1.1.0 Python extension to run WebAssembly binaries
wasmer_compiler_cranelift 1.1.0 Python extension to run WebAssembly binaries
wasmer_compiler_singlepass 1.1.0 Python extension to run WebAssembly binaries
watchdog 2.2.0 Filesystem events monitoring
wcwidth 0.2.13 Measures the displayed width of unicode strings in a terminal
webcolors 1.12 A library for working with color names and color values formats defined by HTML and CSS.
webencodings 0.5.1 Character encoding aliases for legacy web content
websocket_client 1.6.4 WebSocket client for Python with low level API options
websockets 12.0 An implementation of the WebSocket Protocol (RFC 6455 & 7692)
werkzeug 3.0.1 The comprehensive WSGI web application library.
whatthepatch 1.0.2 A patch parsing and application library.
wheel 0.43.0 A built-package format for Python
widgetsnbextension 4.0.10 Jupyter interactive widgets for Jupyter Notebook
winpython 8.2.20240526 WinPython distribution tools, including WPPM
wordcloud 1.9.3 A little word cloud generator
wrapt 1.14.1 Module for decorators, wrappers and monkey patching.
wsproto 1.2.0 WebSockets state-machine based protocol implementation
xarray 2024.2.0 N-D labeled arrays and datasets in Python
xlsxwriter 3.1.9 A Python module for creating Excel XLSX files.
xlwings 0.24.7 Make Excel fly: Interact with Excel from Python and vice versa.
xmltodict 0.13.0 Makes working with XML feel like you are working with JSON
xyzservices 2023.10.1 Source of XYZ tiles providers
yapf 0.40.1 A formatter for Python code.
yarl 1.7.2 Yet another URL library
yt_dlp 2023.7.6 A youtube-dl fork with additional features and patches
zict 3.0.0 Mutable mapping tools
zipp 3.17.0 Backport of pathlib-compatible object wrapper for zip files
zstandard 0.22.0 Zstandard bindings for Python

WinPython 3.13.0.0free

The following packages are included in WinPython-64bit v3.13.0.0free b2.

Tools

Name Version Description

Python packages

Name Version Description
Python 3.13.0 Python programming language with standard library
appdirs 1.4.4 A small Python module for determining appropriate platform-specific dirs, e.g. a "user data dir".
asttokens 2.4.1 Annotate AST trees with source code positions
build 1.2.1 A simple, correct Python build frontend
colorama 0.4.6 Cross-platform colored terminal text.
cython 3.1.0a0 The Cython compiler for writing C extensions in the Python language.
decorator 5.1.1 Decorators for Humans
executing 2.0.1 Get the currently executing AST node of a frame, and other information
interpreters_pep_734 0.1.0 Use this module to try out multiple interpreters and a per-interpreter GIL in Python 3.13+. Do not use this for anything important yet.
ipython 8.24.0 IPython: Productive Interactive Computing
jedi 0.19.1 An autocompletion tool for Python that can be used for text editors.
matplotlib_inline 0.1.7 Inline Matplotlib backend for Jupyter
msvc_runtime 14.38.33135 Install the Microsoft™ Visual C++™ runtime DLLs to the sys.prefix and Scripts directories
packaging 24.0 Core utilities for Python packages
parso 0.8.4 A Python Parser
pip 24.1b1 The PyPA recommended tool for installing Python packages.
prompt_toolkit 3.0.43 Library for building powerful interactive command lines in Python
ptpython 3.0.26 Python REPL build on top of prompt_toolkit
pure_eval 0.2.2 Safely evaluate AST nodes without side effects
pygments 2.18.0 Pygments is a syntax highlighting package written in Python.
pyproject_hooks 1.1.0 Wrappers to call pyproject.toml-based build backend hooks.
setuptools 69.5.1 Easily download, build, install, upgrade, and uninstall Python packages
six 1.16.0 Python 2 and 3 compatibility utilities
sqlite_bro 0.13.1 a graphic SQLite Client in 1 Python file
stack_data 0.6.3 Extract data from python stack frames and tracebacks for informative displays
traitlets 5.14.1 Traitlets Python configuration system
wcwidth 0.2.13 Measures the displayed width of unicode strings in a terminal
wheel 0.43.0 A built-package format for Python
winpython 8.2.20240526 WinPython distribution tools, including WPPM

@hiccup7
Copy link

hiccup7 commented Jun 14, 2024

Spyder-5.5.5 has been released. If fixes compatibility with matplotlib-3.9.0.
New dependencies: spyder-ide/spyder#22158
https://github.com/spyder-ide/spyder/blob/master/changelogs/Spyder-5.md#version-555-2024-06-12

@stonebig
Copy link
Contributor Author

stonebig commented Jun 16, 2024

WinPython 2024-03 rc (2024-06-16)

Changes from WinPython 2024-03 b4 :

  • Infrastructure:
  • New Packages:
  • Upgraded Packages:
    • jupyterlab-4.2.2, spyder-5.5.5, msvc_runtime-14.40.33807
    • scipy-1.13.1, numba-0.60.0, scikit_learn-1.5.0, dask-2024.5.2
    • fastapi-0.111.0, streamlit-1.35.0, datashader-0.16.2
    • anyio-4.4.0, trio-0.25.1, xarray-2024.6.0
    • opencv_python-4.10.0.82, rasterio-1.3.10
  • Removed Packages:

Areas of particular interest for testers:

  • overall stability

binaries at:

MD5 SHA-1 SHA-256 Binary Size blake2b-256
ea2f0d6a1e44c2b08b1706541e0588e1 5f04216632e3f5f0ecd58d634efbdde11dc7e3c0 0b2bd40fec6c15eb61f113262d9d2dc0a957282dfcb89a017140e06ad932e1d2 Winpython64-3.12.4.1dotrc.exe 24 167 661 Bytes f66f57d3994f32fc5e2274b79c740fc98560977cd0a698c596ceebf347b76c4f
bf2fb1452b011b1a729c5682f9883e7f 9549c5d16fbfee8669e7b923d8dbfec32cf6b204 08903f02514f59c891e3d56d3ff0d092a7d8571daf66237a5a2c2698068981ec Winpython64-3.12.4.1rc.exe 906 901 445 Bytes adcc4a1c104e3b9c529c5c4fa86d8edf49caf18aa3fce641210bb752d1a18bfb
b944d4a32b2973f378cee4cab958d621 a7ed44fb8fd1cda710dadf1f0d181cc78df91c34 b4cb7a28284eb36ab0abffc9c751e2302e40430af0af930c365816e33c84a528 Winpython64-3.13.0.0dotb2b.exe 24 443 923 Bytes d131db5b89594380c4b653d30fdda1a7d2344c86715d47d52c6bfe1761c39913
38e87ff395374b09f90bdd4868a996b0 a0421a5f41ac6e6a69629f4f0d2258f3f219ce23 08f9a6f75816045d26e38babbde4a04c7da36b7f07863332548fb586a59bcd4b Winpython64-3.13.0.0freeb2b.exe 30 644 666 Bytes aa877cc35e9e47450991d569277fe203708857be231baaa0149f78ddf7110545

WinPython 3.12.4.1

The following packages are included in WinPython-64bit v3.12.4.1 .

Tools

Name Version Description
Nodejs v20.12.2 a JavaScript runtime built on Chrome's V8 JavaScript engine
npmjs 10.5.0 a package manager for JavaScript
Pandoc 3.1.9 a universal document converter

Python packages

Name Version Description
Python 3.12.4 Python programming language with standard library
about_time 4.2.1 Easily measure timing and throughput of code blocks, with beautiful human friendly representations.
absl_py 2.0.0 Abseil Python Common Libraries, see https://github.com/abseil/abseil-py.
accelerate 0.28.0 Accelerate
adbc_driver_manager 0.11.0 A generic entrypoint for ADBC drivers.
adodbapi 2.6.1.3 A pure Python package implementing PEP 249 DB-API using Microsoft ADO.
affine 2.3.1 Matrices describing affine transformation of the plane.
aiofiles 23.2.1 File support for asyncio.
aiohttp 3.9.5 Async http client/server framework (asyncio)
aiosignal 1.3.1 aiosignal: a list of registered asynchronous callbacks
aiosqlite 0.20.0 asyncio bridge to the standard sqlite3 module
alabaster 0.7.16 A light, configurable Sphinx theme
alembic 1.13.1 A database migration tool for SQLAlchemy.
alive_progress 3.1.5 A new kind of Progress Bar, with real-time throughput, ETA, and very cool animations!
altair 5.3.0 Vega-Altair: A declarative statistical visualization library for Python.
altair_data_server 0.4.1 A background data server for Altair charts.
altair_transform 0.2.0 A python engine for evaluating Altair transforms.
aniso8601 9.0.1 A library for parsing ISO 8601 strings.
annotated_types 0.6.0 Reusable constraint types to use with typing.Annotated
ansicolors 1.1.8 ANSI colors for Python
anyio 4.4.0 High level compatibility layer for multiple asynchronous event loop implementations
anywidget 0.9.12 custom jupyter widgets made easy
appdirs 1.4.4 A small Python module for determining appropriate platform-specific dirs, e.g. a "user data dir".
argon2_cffi 23.1.0 Argon2 for Python
argon2_cffi_bindings 21.2.0 Low-level CFFI bindings for Argon2
array_api_compat 1.7.1 A wrapper around NumPy and other array libraries to make them compatible with the Array API standard
arrow 1.2.2 Better dates & times for Python
asgi_csrf 0.9 ASGI middleware for protecting against CSRF attacks
asgiref 3.8.1 ASGI specs, helper code, and adapters
asn1crypto 1.5.1 Fast ASN.1 parser and serializer with definitions for private keys, public keys, certificates, CRL, OCSP, CMS, PKCS#3, PKCS#7, PKCS#8, PKCS#12, PKCS#5, X.509 and TSP
asteval 0.9.31 Safe, minimalistic evaluator of python expression using ast module
astroid 3.1.0 An abstract syntax tree for Python with inference support.
astropy 6.1.0 Astronomy and astrophysics core library
astropy_iers_data 0.2024.4.29.0.28.48 IERS Earth Rotation and Leap Second tables for the astropy core package
asttokens 2.4.1 Annotate AST trees with source code positions
async_lru 2.0.4 Simple LRU cache for asyncio
async_timeout 4.0.3 Timeout context manager for asyncio programs
atomicwrites 1.4.0 Atomic file writes.
attrs 23.2.0 Classes Without Boilerplate
autograd 1.6.2 Efficiently computes derivatives of numpy code.
autopep8 2.0.4 A tool that automatically formats Python code to conform to the PEP 8 style guide
azure_core 1.30.1 Microsoft Azure Core Library for Python
azure_cosmos 4.6.0 Microsoft Azure Cosmos Client Library for Python
azure_identity 1.16.0 Microsoft Azure Identity Library for Python
babel 2.15.0 Internationalization utilities
baresql 0.8.0 playing SQL directly on Python datas
bcrypt 4.0.1 Modern password hashing for your software and your servers
beautifulsoup4 4.12.2 Screen-scraping library
binaryornot 0.4.4 Ultra-lightweight pure Python package to check if a file is binary or text.
black 24.4.2 The uncompromising code formatter.
bleach 6.1.0 An easy safelist-based HTML-sanitizing tool.
blinker 1.7.0 Fast, simple object-to-object and broadcast signaling
bokeh 3.4.1 Interactive plots and applications in the browser from Python
botorch 0.9.5 Bayesian Optimization in PyTorch
branca 0.7.2 Generate complex HTML+JS pages with Python
brotli 1.1.0 Python bindings for the Brotli compression library
build 1.2.1 A simple, correct Python build frontend
cachelib 0.13.0 A collection of cache libraries in the same API interface.
cachetools 5.3.3 Extensible memoizing collections and decorators
cartopy 0.23.0 A Python library for cartographic visualizations with Matplotlib
certifi 2024.6.2 Python package for providing Mozilla's CA Bundle.
cffi 1.16.0 Foreign Function Interface for Python calling C code.
cftime 1.6.3 Time-handling functionality from netcdf4-python
chardet 5.2.0 Universal encoding detector for Python 3
charset_normalizer 3.3.2 The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet.
clarabel 0.9.0 Clarabel Conic Interior Point Solver for Rust / Python
click 8.1.7 Composable command line interface toolkit
click_default_group 1.2.4 click_default_group
click_plugins 1.1.1 An extension module for click to enable registering CLI commands via setuptools entry-points.
cligj 0.7.2 Click params for commmand line interfaces to GeoJSON
cloudpickle 3.0.0 Pickler class to extend the standard pickle.Pickler functionality
clr_loader 0.2.6 Generic pure Python loader for .NET runtimes
clrmagic 0.0.1a2 IPython cell magic to use .NET languages
cma 3.2.2 CMA-ES, Covariance Matrix Adaptation Evolution Strategy for non-linear numerical optimization in Python
colorama 0.4.6 Cross-platform colored terminal text.
colorcet 3.1.0 Collection of perceptually uniform colormaps
colorlog 6.8.2 Add colours to the output of Python's logging module.
comm 0.2.2 Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc.
contourpy 1.2.1 Python library for calculating contours of 2D quadrilateral grids
cookiecutter 2.6.0 A command-line utility that creates projects from project templates, e.g. creating a Python package project from a Python package project template.
coverage 7.5.3 Code coverage measurement for Python
cryptography 41.0.5 cryptography is a package which provides cryptographic recipes and primitives to Python developers.
cvxopt 1.3.2 Convex optimization package
cvxpy 1.5.0 A domain-specific language for modeling convex optimization problems in Python.
cycler 0.12.1 Composable style cycles
cython 3.0.10 The Cython compiler for writing C extensions in the Python language.
cytoolz 0.12.3 Cython implementation of Toolz: High performance functional utilities
dash 2.17.0 A Python framework for building reactive web-apps. Developed by Plotly.
dash_core_components 2.0.0 Core component suite for Dash
dash_html_components 2.0.0 Vanilla HTML components for Dash
dash_table 5.0.0 Dash table
dask 2024.5.2 Parallel PyData with Task Scheduling
dask_expr 1.1.2 High Level Expressions for Dask
dask_image 2024.5.3 Distributed image processing
datasette 0.64.6 An open source multi-tool for exploring and publishing data
datasette_graphql 2.2 Datasette plugin providing an automatic GraphQL API for your SQLite databases
datashader 0.16.2 Data visualization toolchain based on aggregating into a grid
db_py 0.5.4b1 a db package that doesn't suck
deap 1.4.1 Distributed Evolutionary Algorithms in Python
debugpy 1.8.0 An implementation of the Debug Adapter Protocol for Python
decorator 4.4.2 Decorators for Humans
defusedxml 0.7.1 XML bomb protection for Python stdlib modules
deprecated 1.2.13 Python @deprecated decorator to deprecate old python classes, functions or methods.
diff_match_patch 20200713 Repackaging of Google's Diff Match and Patch libraries. Offers robust algorithms to perform the operations required for synchronizing plain text.
dill 0.3.7 serialize all of Python
dirty_cat 0.4.1 Machine learning with dirty categories.
distlib 0.3.8 Distribution utilities
distributed 2024.5.2 Distributed scheduler for Dask
distro 1.8.0 Distro - an OS platform information API
django 5.0.6 A high-level Python web framework that encourages rapid development and clean, pragmatic design.
dnspython 2.6.1 DNS toolkit
docopt 0.6.2 Pythonic argument parser, that will make you smile
docstring_to_markdown 0.13 On the fly conversion of Python docstrings to markdown
docutils 0.20.1 Docutils -- Python Documentation Utilities
duckdb 1.0.0 DuckDB in-process database
ecos 2.0.13 This is the Python package for ECOS: Embedded Cone Solver. See Github page for more information.
email_validator 2.1.1 A robust email address syntax and deliverability validation library.
entrypoints 0.4 Discover and load entry points from installed packages.
et_xmlfile 1.1.0 An implementation of lxml.xmlfile for the standard library
executing 2.0.1 Get the currently executing AST node of a frame, and other information
fast_histogram 0.14 Fast simple 1D and 2D histograms
fastapi 0.111.0 FastAPI framework, high performance, easy to learn, fast to code, ready for production
fastapi_cli 0.0.4 Run and manage FastAPI apps from the command line with FastAPI CLI. 🚀
fastjsonschema 2.18.0 Fastest Python implementation of JSON schema
filelock 3.14.0 A platform independent file lock.
filterpy 1.4.5 Kalman filtering and optimal estimation library
fiona 1.9.5 Fiona reads and writes spatial data files
flake8 7.0.0 the modular source code checker: pep8 pyflakes and co
flask 3.0.3 A simple framework for building complex web applications.
flask_mail 0.9.1 Flask extension for sending email
flask_session 0.5.0 Server-side session support for Flask
flask_sqlalchemy 3.0.5 Add SQLAlchemy support to your Flask application.
flit 3.9.0 A simple packaging tool for simple packages.
flit_core 3.9.0 Distribution-building parts of Flit. See flit package for more information
folium 0.16.0 Make beautiful maps with Leaflet.js & Python
fonttools 4.51.0 Tools to manipulate font files
formlayout 1.2.1a1 The most easy way to create Qt form dialogs and widgets with Python
fqdn 1.5.1 Validates fully-qualified domain names against RFC 1123, so that they are acceptable to modern bowsers
frozenlist 1.4.1 A list-like structure which implements collections.abc.MutableSequence
fsspec 2024.3.1 File-system specification
future 0.18.2 Clean single-source support for Python 3 and 2
fuzzywuzzy 0.18.0 Fuzzy string matching in python
gdal 3.7.3 GDAL: Geospatial Data Abstraction Library
geographiclib 2.0 The geodesic routines from GeographicLib
geopandas 0.14.4 Geographic pandas extensions
geopy 2.4.1 Python Geocoding Toolbox
gitdb 4.0.10 Git Object Database
gitpython 3.1.32 GitPython is a Python library used to interact with Git repositories
gpytorch 1.11 An implementation of Gaussian Processes in Pytorch
grapheme 0.6.0 Unicode grapheme helpers
graphene 3.3 GraphQL Framework for Python
graphql_core 3.2.3 GraphQL implementation for Python, a port of GraphQL.js, the JavaScript reference implementation for GraphQL.
graphql_relay 3.2.0 Relay library for graphql-core
greenlet 3.0.3 Lightweight in-process concurrent programming
guidata 3.5.0 Automatic GUI generation for easy dataset editing and display
h11 0.14.0 A pure-Python, bring-your-own-I/O implementation of HTTP/1.1
h2 4.1.0 HTTP/2 State-Machine based protocol implementation
h5py 3.10.0 Read and write HDF5 files from Python
hatchling 1.24.2 Modern, extensible Python build backend
holoviews 1.19.0 A high-level plotting API for the PyData ecosystem built on HoloViews.
hpack 4.0.0 Pure-Python HPACK header compression
html5lib 1.1 HTML parser based on the WHATWG HTML specification
httpcore 1.0.5 A minimal low-level HTTP client.
httpie 3.2.2 HTTPie: modern, user-friendly command-line HTTP client for the API era.
httptools 0.6.1 A collection of framework independent HTTP protocol utils.
httpx 0.27.0 The next generation HTTP client.
huggingface_hub 0.23.0 Client library to download and publish models, datasets and other repos on the huggingface.co hub
hupper 1.12 Integrated process monitor for developing and reloading daemons.
hvplot 0.10.0 A high-level plotting API for the PyData ecosystem built on HoloViews.
hypercorn 0.16.0 A ASGI Server based on Hyper libraries and inspired by Gunicorn
hyperframe 6.0.1 HTTP/2 framing layer for Python
hypothesis 6.100.5 A library for property-based testing
idna 3.7 Internationalized Domain Names in Applications (IDNA)
imageio 2.33.1 Library for reading and writing a wide range of image, video, scientific, and volumetric data formats.
imageio_ffmpeg 0.4.8 FFMPEG wrapper for Python
imagesize 1.4.1 Getting image size from png/jpeg/jpeg2000/gif file
imbalanced_learn 0.12.3 Toolbox for imbalanced dataset in machine learning.
importlib_metadata 7.1.0 Read metadata from Python packages
inflection 0.5.1 A port of Ruby on Rails inflector to Python
iniconfig 2.0.0 brain-dead simple config-ini parsing
intervaltree 3.0.2 Editable interval tree data structure for Python 2 and 3
ipycanvas 0.13.2 Interactive widgets library exposing the browser's Canvas API
ipykernel 6.29.4 IPython Kernel for Jupyter
ipyleaflet 0.19.1 A Jupyter widget for dynamic Leaflet maps
ipympl 0.9.4 Matplotlib Jupyter Extension
ipython 8.25.0 IPython: Productive Interactive Computing
ipython_genutils 0.2.0 Vestigial utilities from IPython
ipython_sql 0.5.0 RDBMS access via IPython
ipywidgets 8.1.2 Jupyter interactive widgets
isoduration 20.11.0 Operations with ISO 8601 durations
isort 5.13.2 A Python utility / library to sort Python imports.
itsdangerous 2.2.0 Safely pass data to untrusted environments and back.
janus 1.0.0 Mixed sync-async queue to interoperate between asyncio tasks and classic threads
jaraco_classes 3.4.0 Utility functions for Python class constructs
jaraco_context 5.3.0 Useful decorators and context managers
jaraco_functools 4.0.1 Functools like those found in stdlib
jaxtyping 0.2.22 Type annotations and runtime checking for shape and dtype of JAX arrays, and PyTrees.
jedi 0.19.1 An autocompletion tool for Python that can be used for text editors.
jellyfish 1.0.3 Approximate and phonetic matching of strings.
jinja2 3.1.2 A very fast and expressive template engine.
joblib 1.4.2 Lightweight pipelining with Python functions
json5 0.9.14 A Python implementation of the JSON5 data format.
jsonpatch 1.33 Apply JSON-Patches (RFC 6902)
jsonpointer 2.4 Identify specific nodes in a JSON document (RFC 6901)
jsonschema 4.19.2 An implementation of JSON Schema validation for Python
jsonschema_specifications 2023.12.1 The JSON Schema meta-schemas and vocabularies, exposed as a Registry
julia 0.6.2 Julia/Python bridge with IPython support.
jupyter 1.0.0 Jupyter metapackage. Install all the Jupyter components in one go.
jupyter_bokeh 4.0.5 A Jupyter extension for rendering Bokeh content.
jupyter_client 8.6.2 Jupyter protocol implementation and client libraries
jupyter_console 6.6.3 Jupyter terminal console
jupyter_core 5.7.2 Jupyter core package. A base package on which Jupyter projects rely.
jupyter_events 0.10.0 Jupyter Event System library
jupyter_leaflet 0.19.1 ipyleaflet extensions for JupyterLab and Jupyter Notebook
jupyter_lsp 2.2.5 Multi-Language Server WebSocket proxy for Jupyter Notebook/Lab server
jupyter_server 2.14.1 The backend—i.e. core services, APIs, and REST endpoints—to Jupyter web applications.
jupyter_server_terminals 0.5.3 A Jupyter Server Extension Providing Terminals.
jupyterlab 4.2.2 JupyterLab computational environment
jupyterlab_pygments 0.3.0 Pygments theme using JupyterLab CSS variables
jupyterlab_server 2.27.2 A set of server components for JupyterLab and JupyterLab like applications.
jupyterlab_widgets 3.0.11 Jupyter interactive widgets for JupyterLab
keras 3.3.3 Multi-backend Keras.
keyring 25.2.1 Store and access your passwords safely.
kiwisolver 1.4.5 A fast implementation of the Cassowary constraint solver
kornia 0.7.2 Open Source Differentiable Computer Vision Library for PyTorch
kornia_rs 0.1.3 Low level implementations for computer vision in Rust
langchain 0.2.5 Building applications with LLMs through composability
langchain_core 0.2.7 Building applications with LLMs through composability
langchain_text_splitters 0.2.1 LangChain text splitting utilities
langsmith 0.1.77 Client library to connect to the LangSmith LLM Tracing and Evaluation Platform.
lazy_loader 0.4 Makes it easy to load subpackages and functions on demand.
lightning 2.2.1 The Deep Learning framework to train, deploy, and ship AI products Lightning fast.
lightning_utilities 0.10.0 PyTorch Lightning Sample project.
linear_operator 0.5.1 A linear operator implementation, primarily designed for finite-dimensional positive definite operators (i.e. kernel matrices).
linkify_it_py 2.0.2 Links recognition library with FULL unicode support.
llvmlite 0.43.0 lightweight wrapper around basic LLVM functionality
lmfit 1.3.1 Least-Squares Minimization with Bounds and Constraints
locket 1.0.0 File-based locks for Python on Linux and Windows
lxml 5.2.2 Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API.
mako 1.2.0 A super-fast templating language that borrows the best ideas from the existing templating languages.
markdown 3.5.1 Python implementation of John Gruber's Markdown.
markdown_it_py 2.2.0 Python port of markdown-it. Markdown parsing, done right!
markupsafe 2.1.1 Safely add untrusted strings to HTML/XML markup.
matplotlib 3.9.0 Python plotting package
matplotlib_inline 0.1.7 Inline Matplotlib backend for Jupyter
maturin 1.5.1 Build and publish crates with pyo3, rust-cpython and cffi bindings as well as rust binaries as python packages
mccabe 0.7.0 McCabe checker, plugin for flake8
mdit_py_plugins 0.3.5 Collection of plugins for markdown-it-py
mdurl 0.1.2 Markdown URL utilities
mercantile 1.2.1 Web mercator XYZ tile utilities
mergedeep 1.3.4 A deep merge function for 🐍.
missingno 0.5.1 Missing data visualization module for Python.
mistune 2.0.5 A sane Markdown parser with useful plugins and renderers
mizani 0.11.4 Scales for Python
ml_dtypes 0.4.0 stand-alone implementation of several NumPy dtype extensions used in machine learning libraries
mlxtend 0.22.0 Machine Learning Library Extensions
more_itertools 10.2.0 More routines for operating on iterables, beyond itertools
moviepy 1.0.3 Video editing with Python
mpl_scatter_density 0.7 Matplotlib helpers to make density scatter plots
mpld3 0.5.8 D3 Viewer for Matplotlib
mpmath 1.3.0 Python library for arbitrary-precision floating-point arithmetic
msal 1.24.1 The Microsoft Authentication Library (MSAL) for Python library
msal_extensions 1.0.0 Microsoft Authentication Library extensions (MSAL EX) provides a persistence API that can save your data on disk, encrypted on Windows, macOS and Linux. Concurrent data access will be coordinated by a file lock mechanism.
msgpack 1.0.4 MessagePack serializer
msvc_runtime 14.40.33807 Install the Microsoft™ Visual C++™ runtime DLLs to the sys.prefix and Scripts directories
multidict 6.0.5 multidict implementation
multipledispatch 1.0.0 Multiple dispatch
mutagen 1.47.0 read and write audio tags for many formats
mypy 1.10.0 Optional static typing for Python
mypy_extensions 1.0.0 Type system extensions for programs checked with the mypy type checker.
mysql_connector_python 8.0.21 MySQL driver written in Python
namex 0.0.8 A simple utility to separate the implementation of your Python package and its public API surface.
nbclient 0.10.0 A client library for executing notebooks. Formerly nbconvert's ExecutePreprocessor.
nbconvert 7.16.1 Converting Jupyter Notebooks (.ipynb files) to other formats. Output formats include asciidoc, html, latex, markdown, pdf, py, rst, script. nbconvert can be used both as a Python library (import nbconvert) or as a command line tool (invoked as jupyter nbconvert ...).
nbformat 5.10.4 The Jupyter Notebook format
nest_asyncio 1.6.0 Patch asyncio to allow nested event loops
netcdf4 1.6.5 Provides an object-oriented python interface to the netCDF version 4 library
networkx 3.3 Python package for creating and manipulating graphs and networks
nltk 3.8.1 Natural Language Toolkit
notebook 7.2.1 Jupyter Notebook - A web-based notebook environment for interactive computing
notebook_shim 0.2.4 A shim layer for notebook traits and config
ntlm_auth 1.5.0 Creates NTLM authentication structures
numba 0.60.0 compiling Python code using LLVM
numexpr 2.10.0 Fast numerical expression evaluator for NumPy
numpy 1.26.4 Fundamental package for array computing in Python
numpydoc 1.6.0 Sphinx extension to support docstrings in Numpy format
openai 1.33.0 The official Python library for the openai API
opencv_python 4.10.0.82 Wrapper package for OpenCV python bindings.
openpyxl 3.1.2 A Python library to read/write Excel 2010 xlsx/xlsm files
opt_einsum 3.3.0 Optimizing numpys einsum function
optree 0.11.0 Optimized PyTree Utilities.
optuna 3.6.1 A hyperparameter optimization framework
orjson 3.9.15 Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy
ortools 9.8.3296 Google OR-Tools python libraries and modules
outcome 1.3.0.post0 Capture the outcome of Python function calls.
overrides 7.7.0 A decorator to automatically detect mismatch when overriding a method.
packaging 24.1 Core utilities for Python packages
pandas 2.2.2 Powerful data structures for data analysis, time series, and statistics
pandocfilters 1.5.0 Utilities for writing pandoc filters in python
panel 1.4.4 The powerful data exploration & web app framework for Python.
papermill 2.6.0 Parameterize and run Jupyter and nteract Notebooks
param 2.1.0 Make your Python code clearer and more reliable by declaring Parameters.
paramiko 2.8.0 SSH2 protocol library
parso 0.8.4 A Python Parser
partd 1.4.0 Appendable key-value storage
pathspec 0.11.0 Utility library for gitignore style pattern matching of file paths.
patsy 0.5.6 A Python package for describing statistical models and for building design matrices.
pdfrw 0.4.post2 PDF file reader/writer library
pep8 1.7.1 Python style guide checker
pexpect 4.8.0 Pexpect allows easy control of interactive console applications.
pg8000 1.23.0 PostgreSQL interface library
pickleshare 0.7.5 Tiny 'shelve'-like database with concurrency support
pillow 10.3.0 Python Imaging Library (Fork)
pims 0.6.1 Python Image Sequence
pint 0.23 Physical quantities module
pip 24.0 The PyPA recommended tool for installing Python packages.
pkginfo 1.9.6 Query metadata from sdists / bdists / installed packages.
platformdirs 4.2.2 A small Python package for determining appropriate platform-specific dirs, e.g. a user data dir.
plotly 5.22.0 An open-source, interactive data visualization library for Python
plotnine 0.13.6 A Grammar of Graphics for Python
plotpy 2.3.0 Curve and image plotting tools for Python/Qt applications
pluggy 1.5.0 plugin and hook calling mechanisms for python
ply 3.11 Python Lex & Yacc
pmdarima 2.0.4 Python's forecast::auto.arima equivalent
polars 0.20.31 Blazingly fast DataFrame library
portalocker 2.7.0 Wraps the portalocker recipe for easy usage
portpicker 1.5.0 A library to choose unique available network ports.
ppci 0.5.9 A compiler for ARM, X86, MSP430, xtensa and more implemented in pure Python
prettytable 3.3.0 A simple Python library for easily displaying tabular data in a visually appealing ASCII table format
priority 2.0.0 A pure-Python implementation of the HTTP/2 priority tree
proglog 0.1.10 Log and progress bar manager for console, notebooks, web...
prometheus_client 0.18.0 Python client for the Prometheus monitoring system.
prompt_toolkit 3.0.43 Library for building powerful interactive command lines in Python
protobuf 4.25.1 Protocol Buffers
psutil 5.9.8 Cross-platform lib for process and system monitoring in Python.
psygnal 0.11.1 Fast python callback/event system modeled after Qt Signals
ptpython 3.0.26 Python REPL build on top of prompt_toolkit
ptyprocess 0.7.0 Run a subprocess in a pseudo terminal
pulp 2.6.0 PuLP is an LP modeler written in python. PuLP can generate MPS or LP files and call GLPK, COIN CLP/CBC, CPLEX, and GUROBI to solve linear problems.
pure_eval 0.2.2 Safely evaluate AST nodes without side effects
pyarrow 16.1.0 Python library for Apache Arrow
pyaudio 0.2.14 Cross-platform audio I/O with PortAudio
pybars3 0.9.7 Handlebars.js templating for Python 3 and 2
pybind11 2.12.0 Seamless operability between C++11 and Python
pycodestyle 2.11.1 Python style guide checker
pycosat 0.6.6 bindings to picosat (a SAT solver)
pycparser 2.22 C parser in Python
pycryptodomex 3.20.0 Cryptographic library for Python
pyct 0.5.0 Python package common tasks for users (e.g. copy examples, fetch data, ...)
pydantic 2.7.1 Data validation using Python type hints
pydantic_core 2.18.2 Core functionality for Pydantic validation and serialization
pydeck 0.9.1 Widget for deck.gl maps
pydocstyle 6.3.0 Python docstring style checker
pydub 0.25.1 Manipulate audio with an simple and easy high level interface
pyepsg 0.4.0 Easy access to the EPSG database via http://epsg.io/
pyerfa 2.0.1.4 Python bindings for ERFA
pyflakes 3.2.0 passive checker of Python programs
pygame 2.5.2 Python Game Development
pygments 2.18.0 Pygments is a syntax highlighting package written in Python.
pyjwt 2.8.0 JSON Web Token implementation in Python
pylint 3.1.0 python code static checker
pylint_venv 3.0.3 pylint-venv provides a Pylint init-hook to use the same Pylint installation with different virtual environments.
pyls_spyder 0.4.0 Spyder extensions for the python-lsp-server
pymeta3 0.5.1 Pattern-matching language based on OMeta for Python 3 and 2
pymongo 4.7.2 Python driver for MongoDB http://www.mongodb.org
pymoo 0.6.1.1 Multi-Objective Optimization in Python
pympler 1.0.1 A development tool to measure, monitor and analyze the memory behavior of Python objects.
pynacl 1.5.0 Python binding to the Networking and Cryptography (NaCl) library
pynndescent 0.5.12 Nearest Neighbor Descent
pyodbc 5.1.0 DB API module for ODBC
pyomo 6.7.2 Pyomo: Python Optimization Modeling Objects
pypandoc 1.5 Thin wrapper for pandoc.
pyparsing 3.1.2 pyparsing module - Classes and methods to define and execute parsing grammars
pypdf 3.15.2 A pure-python PDF library capable of splitting, merging, cropping, and transforming PDF files
pypng 0.20220715.0 Pure Python library for saving and loading PNG images
pyproj 3.6.1 Python interface to PROJ (cartographic projections and coordinate transformations library)
pyproject_hooks 1.1.0 Wrappers to call pyproject.toml-based build backend hooks.
pyqt5 5.15.10 Python bindings for the Qt cross platform application toolkit
pyqt5_qt5 5.15.2 The subset of a Qt installation needed by PyQt5.
pyqt5_sip 12.13.0 The sip module support for PyQt5
pyqtgraph 0.13.7 Scientific Graphics and GUI Library for Python
pyqtwebengine 5.15.6 Python bindings for the Qt WebEngine framework
pyqtwebengine_qt5 5.15.2 The subset of a Qt installation needed by PyQtWebEngine.
pyro_api 0.1.2 Generic API for dispatch to Pyro backends.
pyro_ppl 1.9.0 A Python library for probabilistic modeling and inference
pyserial 3.5 Python Serial Port Extension
pyshp 2.3.1 Pure Python read/write support for ESRI Shapefile format
pysimplegui 4.60.4 Python GUIs for Humans. Launched in 2018. It's 2022 & PySimpleGUI is an ACTIVE & supported project. Super-simple to create custom GUI's. 325+ Demo programs & Cookbook for rapid start. Extensive documentation. Main docs at www.PySimpleGUI.org. Fun & your success are the focus. Examples using Machine Learning (GUI, OpenCV Integration), Rainmeter Style Desktop Widgets, Matplotlib + Pyplot, PIL support, add GUI to command line scripts, PDF & Image Viewers. Great for beginners & advanced GUI programmers.
pysocks 1.7.1 A Python SOCKS client module. See https://github.com/Anorov/PySocks for more information.
pytest 8.2.0 pytest: simple powerful testing with Python
python_barcode 0.15.1 Create standard barcodes with Python. No external modules needed. (optional Pillow support included).
python_dateutil 2.8.2 Extensions to the standard Python datetime module
python_dotenv 1.0.1 Read key-value pairs from a .env file and set them as environment variables
python_json_logger 2.0.7 A python library adding a json log formatter
python_lsp_black 2.0.0 Black plugin for the Python LSP Server
python_lsp_jsonrpc 1.1.2 JSON RPC 2.0 server library
python_lsp_server 1.11.0 Python Language Server for the Language Server Protocol
python_multipart 0.0.9 A streaming multipart parser for Python
python_slugify 6.1.2 A Python slugify application that also handles Unicode
pythonnet 3.0.3 .NET and Mono integration for Python
pythonqwt 0.12.1 Qt plotting widgets for Python
pytoolconfig 1.3.1 Python tool configuration
pytorch_lightning 2.2.1 PyTorch Lightning is the lightweight PyTorch wrapper for ML researchers. Scale your models. Write less boilerplate.
pytz 2023.3 World timezone definitions, modern and historical
pytz_deprecation_shim 0.1.0.post0 Shims to make deprecation of pytz easier
pyviz_comms 3.0.2 A JupyterLab extension for rendering HoloViz content.
pywin32 306 Python for Window Extensions
pywin32_ctypes 0.2.2 A (partial) reimplementation of pywin32 using ctypes/cffi
pywinpty 2.0.12 Pseudo terminal support for Windows from Python.
pywinusb 0.4.2 A package that simplifies USB/HID communications on windows
pyyaml 6.0.1 YAML parser and emitter for Python
pyzmq 26.0.3 Python bindings for 0MQ
qdarkstyle 3.2.3 The most complete dark/light style sheet for C++/Python and Qt applications
qpsolvers 4.3.0 Quadratic programming solvers in Python with a unified API.
qrcode 7.4.2 QR Code image generator
qstylizer 0.2.2 Stylesheet Generator for PyQt{4-5}/PySide{1-2}
qtawesome 1.3.1 FontAwesome icons in PyQt and PySide applications
qtconsole 5.5.2 Jupyter Qt console
qtpy 2.4.1 Provides an abstraction layer on top of the various Qt bindings (PyQt5/6 and PySide2/6).
quantecon 0.5.3 Import the main names to top level.
quart 0.19.4 A Python ASGI web microframework with the same API as Flask
rapidfuzz 3.5.2 rapid fuzzy string matching
rasterio 1.3.10 Fast and direct raster I/O for use with Numpy and SciPy
readme_renderer 35.0 readme_renderer is a library for rendering "readme" descriptions for Warehouse
redis 4.3.1 Python client for Redis database and key-value store
referencing 0.31.1 JSON Referencing + Python
regex 2023.10.3 Alternative regular expression module, to replace re.
reportlab 4.2.0 The Reportlab Toolkit
requests 2.31.0 Python HTTP for Humans.
requests_ntlm 1.1.0 This package allows for HTTP NTLM authentication using the requests library.
requests_toolbelt 1.0.0 A utility belt for advanced users of python-requests
retrying 1.3.4 Retrying
rfc3339_validator 0.1.4 A pure python RFC3339 validator
rfc3986 2.0.0 Validating URI References per RFC 3986
rfc3986_validator 0.1.1 Pure python rfc3986 validator
rich 13.7.1 Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal
rope 1.12.0 a python refactoring library...
rpds_py 0.13.2 Python bindings to Rust's persistent data structures (rpds)
rtree 1.1.0 R-Tree spatial index for Python GIS
rx 3.1.1 Reactive Extensions (Rx) for Python
safetensors 0.4.2 Fast and Safe Tensor serialization
scikit_image 0.23.2 Image processing in Python
scikit_learn 1.5.0 A set of python modules for machine learning and data mining
scipy 1.13.1 Fundamental algorithms for scientific computing in Python
scramp 1.4.1 An implementation of the SCRAM protocol.
scs 3.2.4.post1 Splitting conic solver
seaborn 0.13.2 Statistical data visualization
send2trash 1.8.2 Send file to trash natively under Mac OS X, Windows and Linux
setuptools 69.5.1 Easily download, build, install, upgrade, and uninstall Python packages
shapely 2.0.4 Manipulation and analysis of geometric objects
shellingham 1.5.0.post1 Tool to Detect Surrounding Shell
simplegeneric 0.8.1 Simple generic functions (similar to Python's own len(), pickle.dump(), etc.)
simplejson 3.19.2 Simple, fast, extensible JSON encoder/decoder for Python
simpy 4.0.1 Event discrete, process based simulation for Python.
six 1.16.0 Python 2 and 3 compatibility utilities
slicerator 1.1.0 A lazy-loading, fancy-sliceable iterable.
smmap 5.0.0 A pure Python implementation of a sliding window memory map manager
sniffio 1.3.0 Sniff out which async library your code is running under
snowballstemmer 2.2.0 This package provides 29 stemmers for 28 languages generated from Snowball algorithms.
snuggs 1.4.7 Snuggs are s-expressions for Numpy
sortedcontainers 2.4.0 Sorted Containers -- Sorted List, Sorted Dict, Sorted Set
sounddevice 0.4.6 Play and Record Sound with Python
soupsieve 2.5 A modern CSS selector implementation for Beautiful Soup.
sphinx 7.2.6 Python documentation generator
sphinx_rtd_theme 2.0.0 Read the Docs theme for Sphinx
sphinxcontrib_applehelp 1.0.2 sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books
sphinxcontrib_devhelp 1.0.2 sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document.
sphinxcontrib_htmlhelp 2.0.0 sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files
sphinxcontrib_jquery 4.1 Extension to include jQuery on newer Sphinx releases
sphinxcontrib_jsmath 1.0.1 A sphinx extension which renders display math in HTML via JavaScript
sphinxcontrib_qthelp 1.0.3 sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document.
sphinxcontrib_serializinghtml 1.1.9 sphinxcontrib-serializinghtml is a sphinx extension which outputs "serialized" HTML files (json and pickle)
spyder 5.5.5 The Scientific Python Development Environment
spyder_kernels 2.5.2 Jupyter kernels for Spyder's console
sqlalchemy 2.0.28 Database Abstraction Library
sqlite_bro 0.13.1 a graphic SQLite Client in 1 Python file
sqlite_fts4 1.0.3 Python functions for working with SQLite FTS4 search
sqlite_utils 3.36 CLI tool and Python library for manipulating SQLite databases
sqlparse 0.4.3 A non-validating SQL parser.
sspyrs 0.3 Lightweight interface for SSRS reports to python
stack_data 0.6.3 Extract data from python stack frames and tracebacks for informative displays
starlette 0.37.2 The little ASGI library that shines.
statsmodels 0.14.2 Statistical computations and models for Python
streamlit 1.35.0 A faster way to build and share data apps
streamz 0.6.3 Streams
swifter 1.3.4 A package which efficiently applies any function to a pandas dataframe or series in the fastest available manner
sympy 1.12.1 Computer algebra system (CAS) in Python
tabulate 0.9.0 Pretty-print tabular data
tbats 1.1.0 BATS and TBATS for time series forecasting
tblib 1.7.0 Traceback serialization library.
tenacity 8.1.0 Retry code until it succeeds
terminado 0.18.1 Tornado websocket backend for the Xterm.js Javascript terminal emulator library.
text_unidecode 1.3 The most basic Text::Unidecode port
textdistance 4.5.0 Compute distance between the two texts.
threadpoolctl 3.5.0 threadpoolctl
three_merge 0.1.1 Simple library for merging two strings with respect to a base one
tifffile 2023.7.18 Read and write TIFF files
tinycss2 1.1.1 A tiny CSS parser
tokenizers 0.15.1 Fast and Customizable Tokenizers
toml 0.10.2 Python Library for Tom's Obvious, Minimal Language
tomli 2.0.1 A lil' TOML parser
tomli_w 1.0.0 A lil' TOML writer
tomlkit 0.12.3 Style preserving TOML library
toolz 0.12.0 List processing tools and functional utilities
torch 2.2.2 Tensors and Dynamic neural networks in Python with strong GPU acceleration
torchaudio 2.2.2 An audio package for PyTorch
torchmetrics 1.3.2 PyTorch native Metrics
torchvision 0.17.2 image and video datasets and models for torch deep learning
tornado 6.4 Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.
tqdm 4.66.4 Fast, Extensible Progress Meter
traitlets 5.14.1 Traitlets Python configuration system
traittypes 0.2.1 Scipy trait types
transformers 4.38.2 State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow
trio 0.25.1 A friendly Python library for async concurrency and I/O
trove_classifiers 2023.2.20 Canonical source for classifiers on PyPI (pypi.org).
twine 4.0.1 Collection of utilities for publishing packages on PyPI
typeguard 2.13.3 Run-time type checker for Python
typer 0.12.3 Typer, build great CLIs. Easy to code. Based on Python type hints.
typing_extensions 4.9.0 Backported and Experimental Type Hints for Python 3.8+
tzdata 2022.7 Provider of IANA time zone data
tzlocal 4.2 tzinfo object for the local timezone
uc_micro_py 1.0.1 Micro subset of unicode data files for linkify-it-py projects.
ujson 5.8.0 Ultra fast JSON encoder and decoder for Python
umap_learn 0.5.1 Uniform Manifold Approximation and Projection
uncertainties 3.1.7 Transparent calculations with uncertainties on the quantities involved (aka error propagation); fast calculation of derivatives
uri_template 1.2.0 RFC 6570 URI Template Processor
urllib3 2.0.3 HTTP library with thread-safe connection pooling, file post, and more.
uvicorn 0.29.0 The lightning-fast ASGI server.
vega_datasets 0.9.0 A Python package for offline access to Vega datasets
virtualenv 20.26.2 Virtual Python Environment builder
waitress 2.1.2 Waitress WSGI server
wasmer 1.1.0 Python extension to run WebAssembly binaries
wasmer_compiler_cranelift 1.1.0 Python extension to run WebAssembly binaries
wasmer_compiler_singlepass 1.1.0 Python extension to run WebAssembly binaries
watchdog 2.2.0 Filesystem events monitoring
watchfiles 0.21.0 Simple, modern and high performance file watching and code reload in python.
wcwidth 0.2.13 Measures the displayed width of unicode strings in a terminal
webcolors 1.12 A library for working with color names and color values formats defined by HTML and CSS.
webencodings 0.5.1 Character encoding aliases for legacy web content
websocket_client 1.8.0 WebSocket client for Python with low level API options
websockets 12.0 An implementation of the WebSocket Protocol (RFC 6455 & 7692)
werkzeug 3.0.3 The comprehensive WSGI web application library.
whatthepatch 1.0.2 A patch parsing and application library.
wheel 0.43.0 A built-package format for Python
widgetsnbextension 4.0.10 Jupyter interactive widgets for Jupyter Notebook
winpython 8.2.20240618 WinPython distribution tools, including WPPM
wordcloud 1.9.3 A little word cloud generator
wrapt 1.14.1 Module for decorators, wrappers and monkey patching.
wsproto 1.2.0 WebSockets state-machine based protocol implementation
xarray 2024.6.0 N-D labeled arrays and datasets in Python
xlsxwriter 3.1.9 A Python module for creating Excel XLSX files.
xlwings 0.24.7 Make Excel fly: Interact with Excel from Python and vice versa.
xmltodict 0.13.0 Makes working with XML feel like you are working with JSON
xyzservices 2023.10.1 Source of XYZ tiles providers
yapf 0.40.1 A formatter for Python code.
yarl 1.7.2 Yet another URL library
yt_dlp 2023.7.6 A youtube-dl fork with additional features and patches
zict 3.0.0 Mutable mapping tools
zipp 3.17.0 Backport of pathlib-compatible object wrapper for zip files
zstandard 0.22.0 Zstandard bindings for Python

History of changes for WinPython-64bit 3.12.4.1

The following changes were made to WinPython-64bit distribution since version 3.12.3.0.

### Python packages

New packages:

  • adbc_driver_manager 0.11.0 (A generic entrypoint for ADBC drivers.)
  • ansicolors 1.1.8 (ANSI colors for Python)
  • astropy_iers_data 0.2024.4.29.0.28.48 (IERS Earth Rotation and Leap Second tables for the astropy core package)
  • cartopy 0.23.0 (A Python library for cartographic visualizations with Matplotlib)
  • dask_expr 1.1.2 (High Level Expressions for Dask )
  • email_validator 2.1.1 (A robust email address syntax and deliverability validation library.)
  • fastapi_cli 0.0.4 (Run and manage FastAPI apps from the command line with FastAPI CLI. 🚀)
  • httptools 0.6.1 (A collection of framework independent HTTP protocol utils.)
  • jaraco_context 5.3.0 (Useful decorators and context managers)
  • jaraco_functools 4.0.1 (Functools like those found in stdlib)
  • jupyter_leaflet 0.19.1 (ipyleaflet extensions for JupyterLab and Jupyter Notebook)
  • kornia_rs 0.1.3 (Low level implementations for computer vision in Rust)
  • pyshp 2.3.1 (Pure Python read/write support for ESRI Shapefile format)
  • typer 0.12.3 (Typer, build great CLIs. Easy to code. Based on Python type hints.)
  • watchfiles 0.21.0 (Simple, modern and high performance file watching and code reload in python.)

Upgraded packages:

  • accelerate 0.23.0 → 0.28.0 (Accelerate)
  • aiohttp 3.9.3 → 3.9.5 (Async http client/server framework (asyncio))
  • alabaster 0.7.13 → 0.7.16 (A light, configurable Sphinx theme)
  • alembic 1.12.1 → 1.13.1 (A database migration tool for SQLAlchemy.)
  • altair 5.2.0 → 5.3.0 (Vega-Altair: A declarative statistical visualization library for Python.)
  • anyio 4.3.0 → 4.4.0 (High level compatibility layer for multiple asynchronous event loop implementations)
  • anywidget 0.7.1 → 0.9.12 (custom jupyter widgets made easy)
  • array_api_compat 1.4.1 → 1.7.1 (A wrapper around NumPy and other array libraries to make them compatible with the Array API standard)
  • asgiref 3.7.2 → 3.8.1 (ASGI specs, helper code, and adapters)
  • astropy 5.3.4 → 6.1.0 (Astronomy and astrophysics core library)
  • azure_core 1.29.5 → 1.30.1 (Microsoft Azure Core Library for Python)
  • azure_cosmos 4.5.1 → 4.6.0 (Microsoft Azure Cosmos Client Library for Python)
  • azure_identity 1.15.0 → 1.16.0 (Microsoft Azure Identity Library for Python)
  • babel 2.13.1 → 2.15.0 (Internationalization utilities)
  • black 24.2.0 → 24.4.2 (The uncompromising code formatter.)
  • bleach 6.0.0 → 6.1.0 (An easy safelist-based HTML-sanitizing tool.)
  • bokeh 3.4.0 → 3.4.1 (Interactive plots and applications in the browser from Python)
  • branca 0.6.0 → 0.7.2 (Generate complex HTML+JS pages with Python)
  • build 1.1.1 → 1.2.1 (A simple, correct Python build frontend)
  • cachelib 0.10.2 → 0.13.0 (A collection of cache libraries in the same API interface.)
  • cachetools 5.3.1 → 5.3.3 (Extensible memoizing collections and decorators)
  • certifi 2023.11.17 → 2024.6.2 (Python package for providing Mozilla's CA Bundle.)
  • charset_normalizer 3.2.0 → 3.3.2 (The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet.)
  • clarabel 0.7.1 → 0.9.0 (Clarabel Conic Interior Point Solver for Rust / Python)
  • colorcet 3.0.1 → 3.1.0 (Collection of perceptually uniform colormaps)
  • comm 0.1.4 → 0.2.2 (Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc.)
  • contourpy 1.2.0 → 1.2.1 (Python library for calculating contours of 2D quadrilateral grids)
  • cookiecutter 2.3.0 → 2.6.0 (A command-line utility that creates projects from project templates, e.g. creating a Python package project from a Python package project template.)
  • coverage 7.3.2 → 7.5.3 (Code coverage measurement for Python)
  • dash 2.14.1 → 2.17.0 (A Python framework for building reactive web-apps. Developed by Plotly.)
  • dask 2023.10.1 → 2024.5.2 (Parallel PyData with Task Scheduling)
  • dask_image 2023.8.1 → 2024.5.3 (Distributed image processing)
  • datasette 0.64.5 → 0.64.6 (An open source multi-tool for exploring and publishing data)
  • datashader 0.16.0 → 0.16.2 (Data visualization toolchain based on aggregating into a grid)
  • distlib 0.3.6 → 0.3.8 (Distribution utilities)
  • distributed 2023.10.1 → 2024.5.2 (Distributed scheduler for Dask)
  • django 4.2.5 → 5.0.6 (A high-level Python web framework that encourages rapid development and clean, pragmatic design.)
  • dnspython 2.4.2 → 2.6.1 (DNS toolkit)
  • duckdb 0.10.1 → 1.0.0 (DuckDB in-process database)
  • fast_histogram 0.12 → 0.14 (Fast simple 1D and 2D histograms)
  • fastapi 0.109.1 → 0.111.0 (FastAPI framework, high performance, easy to learn, fast to code, ready for production)
  • filelock 3.12.4 → 3.14.0 (A platform independent file lock.)
  • flask 3.0.2 → 3.0.3 (A simple framework for building complex web applications.)
  • folium 0.14.0 → 0.16.0 (Make beautiful maps with Leaflet.js & Python)
  • fonttools 4.44.0 → 4.51.0 (Tools to manipulate font files)
  • fsspec 2023.9.2 → 2024.3.1 (File-system specification)
  • geopandas 0.14.0 → 0.14.4 (Geographic pandas extensions)
  • geopy 2.4.0 → 2.4.1 (Python Geocoding Toolbox)
  • guidata 3.4.1 → 3.5.0 (Automatic GUI generation for easy dataset editing and display)
  • hatchling 1.21.1 → 1.24.2 (Modern, extensible Python build backend)
  • holoviews 1.18.3 → 1.19.0 (A high-level plotting API for the PyData ecosystem built on HoloViews.)
  • huggingface_hub 0.21.4 → 0.23.0 (Client library to download and publish models, datasets and other repos on the huggingface.co hub)
  • hvplot 0.9.2 → 0.10.0 (A high-level plotting API for the PyData ecosystem built on HoloViews.)
  • hypercorn 0.14.4 → 0.16.0 (A ASGI Server based on Hyper libraries and inspired by Gunicorn)
  • hypothesis 6.87.1 → 6.100.5 (A library for property-based testing)
  • idna 3.4 → 3.7 (Internationalized Domain Names in Applications (IDNA))
  • imageio 2.31.1 → 2.33.1 (Library for reading and writing a wide range of image, video, scientific, and volumetric data formats.)
  • imbalanced_learn 0.12.2 → 0.12.3 (Toolbox for imbalanced dataset in machine learning.)
  • importlib_metadata 6.8.0 → 7.1.0 (Read metadata from Python packages)
  • ipycanvas 0.13.1 → 0.13.2 (Interactive widgets library exposing the browser's Canvas API)
  • ipyleaflet 0.18.2 → 0.19.1 (A Jupyter widget for dynamic Leaflet maps)
  • ipympl 0.9.3 → 0.9.4 (Matplotlib Jupyter Extension)
  • ipython 8.22.2 → 8.25.0 (IPython: Productive Interactive Computing)
  • isort 5.12.0 → 5.13.2 (A Python utility / library to sort Python imports.)
  • itsdangerous 2.1.2 → 2.2.0 (Safely pass data to untrusted environments and back.)
  • jaraco_classes 3.3.0 → 3.4.0 (Utility functions for Python class constructs)
  • joblib 1.3.2 → 1.4.2 (Lightweight pipelining with Python functions)
  • jsonschema_specifications 2023.7.1 → 2023.12.1 (The JSON Schema meta-schemas and vocabularies, exposed as a Registry)
  • jupyter_bokeh 3.0.7 → 4.0.5 (A Jupyter extension for rendering Bokeh content.)
  • jupyter_client 8.6.0 → 8.6.2 (Jupyter protocol implementation and client libraries)
  • jupyter_core 5.5.0 → 5.7.2 (Jupyter core package. A base package on which Jupyter projects rely.)
  • jupyter_events 0.9.0 → 0.10.0 (Jupyter Event System library)
  • jupyter_lsp 2.2.0 → 2.2.5 (Multi-Language Server WebSocket proxy for Jupyter Notebook/Lab server)
  • jupyter_server 2.12.5 → 2.14.1 (The backend—i.e. core services, APIs, and REST endpoints—to Jupyter web applications.)
  • jupyter_server_terminals 0.4.4 → 0.5.3 (A Jupyter Server Extension Providing Terminals.)
  • jupyterlab 4.1.5 → 4.2.2 (JupyterLab computational environment)
  • jupyterlab_pygments 0.2.2 → 0.3.0 (Pygments theme using JupyterLab CSS variables)
  • jupyterlab_server 2.25.4 → 2.27.2 (A set of server components for JupyterLab and JupyterLab like applications.)
  • jupyterlab_widgets 3.0.10 → 3.0.11 (Jupyter interactive widgets for JupyterLab)
  • keras 3.1.1 → 3.3.3 (Multi-backend Keras.)
  • keyring 24.2.0 → 25.2.1 (Store and access your passwords safely.)
  • kornia 0.7.1 → 0.7.2 (Open Source Differentiable Computer Vision Library for PyTorch)
  • langchain 0.1.13 → 0.2.5 (Building applications with LLMs through composability)
  • langchain_core 0.1.35 → 0.2.7 (Building applications with LLMs through composability)
  • langchain_text_splitters 0.0.1 → 0.2.1 (LangChain text splitting utilities)
  • langsmith 0.1.33 → 0.1.77 (Client library to connect to the LangSmith LLM Tracing and Evaluation Platform.)
  • lazy_loader 0.3 → 0.4 (Makes it easy to load subpackages and functions on demand.)
  • llvmlite 0.42.0 → 0.43.0 (lightweight wrapper around basic LLVM functionality)
  • lmfit 1.0.3 → 1.3.1 (Least-Squares Minimization with Bounds and Constraints)
  • lxml 5.1.0 → 5.2.2 (Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API.)
  • matplotlib 3.8.3 → 3.9.0 (Python plotting package)
  • matplotlib_inline 0.1.6 → 0.1.7 (Inline Matplotlib backend for Jupyter)
  • mizani 0.9.2 → 0.11.4 (Scales for Python)
  • ml_dtypes 0.3.2 → 0.4.0 (stand-alone implementation of several NumPy dtype extensions used in machine learning libraries)
  • more_itertools 9.0.0 → 10.2.0 (More routines for operating on iterables, beyond itertools)
  • msvc_runtime 14.38.33135 → 14.40.33807 (Install the Microsoft™ Visual C++™ runtime DLLs to the sys.prefix and Scripts directories)
  • mutagen 1.46.0 → 1.47.0 (read and write audio tags for many formats)
  • mypy 1.9.0 → 1.10.0 (Optional static typing for Python)
  • namex 0.0.7 → 0.0.8 (A simple utility to separate the implementation of your Python package and its public API surface.)
  • nbformat 5.10.3 → 5.10.4 (The Jupyter Notebook format)
  • nest_asyncio 1.5.6 → 1.6.0 (Patch asyncio to allow nested event loops)
  • networkx 3.2.1 → 3.3 (Python package for creating and manipulating graphs and networks)
  • notebook 7.1.2 → 7.2.1 (Jupyter Notebook - A web-based notebook environment for interactive computing)
  • notebook_shim 0.2.3 → 0.2.4 (A shim layer for notebook traits and config)
  • numba 0.59.1 → 0.60.0 (compiling Python code using LLVM)
  • numexpr 2.8.7 → 2.10.0 (Fast numerical expression evaluator for NumPy)
  • numpydoc 1.3 → 1.6.0 (Sphinx extension to support docstrings in Numpy format)
  • openai 1.14.3 → 1.33.0 (The official Python library for the openai API)
  • opencv_python 4.9.0.80 → 4.10.0.82 (Wrapper package for OpenCV python bindings.)
  • packaging 23.2 → 24.1 (Core utilities for Python packages)
  • pandas 2.2.1 → 2.2.2 (Powerful data structures for data analysis, time series, and statistics)
  • panel 1.4.1 → 1.4.4 (The powerful data exploration & web app framework for Python.)
  • papermill 2.5.1a1 → 2.6.0 (Parameterize and run Jupyter and nteract Notebooks)
  • parso 0.8.3 → 0.8.4 (A Python Parser)
  • pillow 10.2.0 → 10.3.0 (Python Imaging Library (Fork))
  • pint 0.19.2 → 0.23 (Physical quantities module)
  • platformdirs 3.8.1 → 4.2.2 (A small Python package for determining appropriate platform-specific dirs, e.g. a user data dir.)
  • plotly 5.20.0 → 5.22.0 (An open-source, interactive data visualization library for Python)
  • plotnine 0.12.4 → 0.13.6 (A Grammar of Graphics for Python)
  • pluggy 1.0.0 → 1.5.0 (plugin and hook calling mechanisms for python)
  • polars 0.20.17 → 0.20.31 (Blazingly fast DataFrame library)
  • psutil 5.9.5 → 5.9.8 (Cross-platform lib for process and system monitoring in Python.)
  • psygnal 0.9.5 → 0.11.1 (Fast python callback/event system modeled after Qt Signals)
  • pyarrow 14.0.1 → 16.1.0 (Python library for Apache Arrow)
  • pycparser 2.21 → 2.22 (C parser in Python)
  • pycryptodomex 3.18.0 → 3.20.0 (Cryptographic library for Python)
  • pyct 0.4.8 → 0.5.0 (Python package common tasks for users (e.g. copy examples, fetch data, ...))
  • pydantic 2.6.4 → 2.7.1 (Data validation using Python type hints)
  • pydantic_core 2.16.3 → 2.18.2 (Core functionality for Pydantic validation and serialization)
  • pydeck 0.8.0 → 0.9.1 (Widget for deck.gl maps)
  • pyerfa 2.0.1.1 → 2.0.1.4 (Python bindings for ERFA)
  • pygments 2.16.1 → 2.18.0 (Pygments is a syntax highlighting package written in Python.)
  • pyjwt 2.4.0 → 2.8.0 (JSON Web Token implementation in Python)
  • pymongo 4.5.0 → 4.7.2 (Python driver for MongoDB http://www.mongodb.org)
  • pynndescent 0.5.11 → 0.5.12 (Nearest Neighbor Descent)
  • pyodbc 5.0.1 → 5.1.0 (DB API module for ODBC)
  • pyomo 6.7.0 → 6.7.2 (Pyomo: Python Optimization Modeling Objects)
  • pyparsing 3.0.9 → 3.1.2 (pyparsing module - Classes and methods to define and execute parsing grammars)
  • pyproject_hooks 1.0.0 → 1.1.0 (Wrappers to call pyproject.toml-based build backend hooks.)
  • pyqtgraph 0.13.4 → 0.13.7 (Scientific Graphics and GUI Library for Python)
  • pyro_ppl 1.8.4 → 1.9.0 (A Python library for probabilistic modeling and inference)
  • pytest 7.4.2 → 8.2.0 (pytest: simple powerful testing with Python)
  • Python 3.12.3 → 3.12.4 (Python programming language with standard library)
  • python_dotenv 1.0.0 → 1.0.1 (Read key-value pairs from a .env file and set them as environment variables)
  • python_multipart 0.0.5 → 0.0.9 (A streaming multipart parser for Python)
  • pytoolconfig 1.2.4 → 1.3.1 (Python tool configuration)
  • pyzmq 25.1.2 → 26.0.3 (Python bindings for 0MQ)
  • qdarkstyle 3.2 → 3.2.3 (The most complete dark/light style sheet for C++/Python and Qt applications)
  • qtconsole 5.5.1 → 5.5.2 (Jupyter Qt console)
  • rasterio 1.3.9 → 1.3.10 (Fast and direct raster I/O for use with Numpy and SciPy)
  • referencing 0.30.2 → 0.31.1 (JSON Referencing + Python)
  • reportlab 4.0.4 → 4.2.0 (The Reportlab Toolkit)
  • requests_toolbelt 0.10.1 → 1.0.0 (A utility belt for advanced users of python-requests)
  • scikit_image 0.22.0 → 0.23.2 (Image processing in Python)
  • scikit_learn 1.4.1.post1 → 1.5.0 (A set of python modules for machine learning and data mining)
  • scipy 1.12.0 → 1.13.1 (Fundamental algorithms for scientific computing in Python)
  • setuptools 69.2.0 → 69.5.1 (Easily download, build, install, upgrade, and uninstall Python packages)
  • shapely 2.0.1 → 2.0.4 (Manipulation and analysis of geometric objects)
  • simplejson 3.17.6 → 3.19.2 (Simple, fast, extensible JSON encoder/decoder for Python)
  • soupsieve 2.3.2.post1 → 2.5 (A modern CSS selector implementation for Beautiful Soup.)
  • spyder 5.5.4 → 5.5.5 (The Scientific Python Development Environment)
  • spyder_kernels 2.5.1 → 2.5.2 (Jupyter kernels for Spyder's console)
  • sqlite_bro 0.12.2 → 0.13.1 (a graphic SQLite Client in 1 Python file)
  • stack_data 0.6.1 → 0.6.3 (Extract data from python stack frames and tracebacks for informative displays)
  • starlette 0.35.1 → 0.37.2 (The little ASGI library that shines.)
  • statsmodels 0.14.1 → 0.14.2 (Statistical computations and models for Python)
  • streamlit 1.32.2 → 1.35.0 (A faster way to build and share data apps)
  • sympy 1.12 → 1.12.1 (Computer algebra system (CAS) in Python)
  • terminado 0.17.0 → 0.18.1 (Tornado websocket backend for the Xterm.js Javascript terminal emulator library.)
  • threadpoolctl 3.1.0 → 3.5.0 (threadpoolctl)
  • tqdm 4.65.0 → 4.66.4 (Fast, Extensible Progress Meter)
  • trio 0.25.0 → 0.25.1 (A friendly Python library for async concurrency and I/O)
  • uvicorn 0.26.0 → 0.29.0 (The lightning-fast ASGI server.)
  • virtualenv 20.23.0 → 20.26.2 (Virtual Python Environment builder)
  • wcwidth 0.2.9 → 0.2.13 (Measures the displayed width of unicode strings in a terminal)
  • websocket_client 1.6.4 → 1.8.0 (WebSocket client for Python with low level API options)
  • werkzeug 3.0.1 → 3.0.3 (The comprehensive WSGI web application library.)
  • winpython 7.5.20240410 → 8.2.20240618 (WinPython distribution tools, including WPPM)
  • xarray 2024.2.0 → 2024.6.0 (N-D labeled arrays and datasets in Python)

Removed packages:

  • ansi2html 1.9.1 (Convert text with ANSI color codes to HTML or to LaTeX)
  • asciitree 0.3.3 (Draws ASCII trees.)
  • brewer2mpl 1.4.1 (Connect colorbrewer2.org color maps to Python and matplotlib)
  • dataclasses_json 0.5.7 (Easily serialize dataclasses to and from JSON)
  • deprecation 2.1.0 (A library to handle automated deprecations)
  • editables 0.3 (Editable installations)
  • emcee 3.1.4 (The Python ensemble sampling toolkit for MCMC)
  • fasteners 0.18 (A python package that provides useful locks)
  • feather_format 0.4.1 (Simple wrapper library to the Apache Arrow-based Feather File Format)
  • hatch 1.9.3 (Modern, extensible Python project management)
  • highspy 1.7.1.dev1 (A thin set of pybind11 wrappers to HiGHS)
  • hyperlink 21.0.0 (A featureful, immutable, and correct URL for Python.)
  • jupyter_packaging 0.12.3 (Jupyter Packaging Utilities.)
  • jupyter_server_mathjax 0.2.6 (MathJax resources as a Jupyter Server Extension.)
  • jupyter_sphinx 0.4.0 (Jupyter Sphinx Extensions)
  • langchain_community 0.0.29 (Community contributed LangChain integrations.)
  • loky 3.4.0 (A robust implementation of concurrent.futures.ProcessPoolExecutor)
  • lz4 4.3.3 (LZ4 Bindings for Python)
  • marshmallow 3.12.1 (A lightweight library for converting complex datatypes to and from native Python datatypes.)
  • marshmallow_enum 1.5.1 (Enum field for Marshmallow)
  • nbdime 4.0.1 (Diff and merge of Jupyter Notebooks)
  • nbval 0.9.6 (A py.test plugin to validate Jupyter notebooks)
  • numcodecs 0.12.1 (A Python package providing buffer compression and transformation codecs for use in data storage and communication applications.)
  • pyaml 20.4.0 (PyYAML-based module to produce pretty and readable YAML-serialized data)
  • pygad 3.2.0 (PyGAD: A Python Library for Building the Genetic Algorithm and Training Machine Learning Algoithms (Keras & PyTorch).)
  • pyopengl 3.1.7 (Standard OpenGL bindings for Python)
  • pystache 0.5.4 (Mustache for Python)
  • scikit_optimize 0.10.1 (Sequential model-based optimization toolbox.)
  • snakeviz 2.1.0 (A web-based viewer for Python profiler output)
  • supersmoother 0.4 (Python implementation of Friedman's Supersmoother)
  • typing_inspect 0.8.0 (Runtime inspection utilities for typing module.)
  • userpath 1.8.0 (Cross-platform tool for adding locations to the user PATH)
  • zarr 2.16.1 (An implementation of chunked, compressed, N-dimensional arrays for Python)

@stonebig
Copy link
Contributor Author

WinPython 2024-03 final is like rc, just re-tagged binaries

binaries at:

https://github.com/winpython/winpython/releases/tag/8.2.20240618final
https://sourceforge.net/projects/winpython/files/WinPython_3.12/3.12.4.1/
https://sourceforge.net/projects/winpython/files/WinPython_3.13/3.13.0.0/betas/

WinPython 2024-03 release (June 22th, 2024)

MD5 SHA-1 SHA-256 Binary Size blake2b-256
ea2f0d6a1e44c2b08b1706541e0588e1 5f04216632e3f5f0ecd58d634efbdde11dc7e3c0 0b2bd40fec6c15eb61f113262d9d2dc0a957282dfcb89a017140e06ad932e1d2 Winpython64-3.12.4.1dot.exe 24 167 661 Bytes f66f57d3994f32fc5e2274b79c740fc98560977cd0a698c596ceebf347b76c4f
bf2fb1452b011b1a729c5682f9883e7f 9549c5d16fbfee8669e7b923d8dbfec32cf6b204 08903f02514f59c891e3d56d3ff0d092a7d8571daf66237a5a2c2698068981ec Winpython64-3.12.4.1.exe 906 901 445 Bytes adcc4a1c104e3b9c529c5c4fa86d8edf49caf18aa3fce641210bb752d1a18bfb
b944d4a32b2973f378cee4cab958d621 a7ed44fb8fd1cda710dadf1f0d181cc78df91c34 b4cb7a28284eb36ab0abffc9c751e2302e40430af0af930c365816e33c84a528 Winpython64-3.13.0.0dotb2b.exe 24 443 923 Bytes d131db5b89594380c4b653d30fdda1a7d2344c86715d47d52c6bfe1761c39913
38e87ff395374b09f90bdd4868a996b0 a0421a5f41ac6e6a69629f4f0d2258f3f219ce23 08f9a6f75816045d26e38babbde4a04c7da36b7f07863332548fb586a59bcd4b Winpython64-3.13.0.0freeb2b.exe 30 644 666 Bytes aa877cc35e9e47450991d569277fe203708857be231baaa0149f78ddf7110545

@stonebig stonebig unpinned this issue Jun 22, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants