HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept
{
"count": 51640,
"next": "https://ports.macports.org/api/v1/ports/?format=api&ordering=name&page=546",
"previous": "https://ports.macports.org/api/v1/ports/?format=api&ordering=name&page=544",
"results": [
{
"name": "py312-bitarray",
"portdir": "python/py-bitarray",
"version": "3.8.0",
"license": "PSF",
"platforms": "darwin",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/ilanschnell/bitarray",
"description": "A efficient implementation of arrays of booleans",
"long_description": "This module provides an object type which efficiently represents an array of booleans. Bitarrays are sequence types and behave very much like usual lists. Eight bits are represented by one byte in a contiguous block of memory. The user can select between two representations: little-endian and big-endian. Most of the functionality is implemented in C. Methods for accessing the machine representation are provided.",
"active": true,
"categories": [
"math",
"python"
],
"maintainers": [
{
"name": "petr",
"github": "petrrr",
"ports_count": 612
}
],
"variants": [
"universal"
],
"dependencies": [
{
"type": "build",
"ports": [
"py312-build",
"py312-installer",
"py312-setuptools",
"py312-wheel",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"python312"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py312-bitstring"
]
}
]
},
{
"name": "py312-BitArray2D",
"portdir": "python/py-BitArray2D",
"version": "2.1",
"license": "PSF",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://engineering.purdue.edu/kak/dist2d/BitArray2D-2.1.html",
"description": "A memory-efficient packed representation for 2D bit arrays",
"long_description": "The BitArray2D class is for a memory-efficient packed representation of 2D bit arrays and for logical and other operations (such as blob dilations, erosions, etc.) on such arrays. The implementation of the class takes advantage of the facilities of the BitVector class for the memory representation and for the allowed operations.",
"active": true,
"categories": [
"math",
"python"
],
"maintainers": [
{
"name": "petr",
"github": "petrrr",
"ports_count": 612
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py312-build",
"py312-setuptools",
"py312-wheel",
"clang-16",
"py312-installer"
]
},
{
"type": "lib",
"ports": [
"py312-BitVector",
"python312"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py-BitArray2D"
]
}
]
},
{
"name": "py312-bitmath",
"portdir": "python/py-bitmath",
"version": "1.3.3.1",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/tbielawa/bitmath",
"description": "Pythonic module for representing and manipulating file sizes with different prefix notations (file size unit conversion)",
"long_description": "Pythonic module for representing and manipulating file sizes with different prefix notations (file size unit conversion)",
"active": true,
"categories": [
"python"
],
"maintainers": [],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py312-wheel",
"clang-18",
"py312-build",
"py312-installer",
"py312-setuptools"
]
},
{
"type": "lib",
"ports": [
"python312",
"py312-progressbar"
]
},
{
"type": "test",
"ports": [
"py312-pytest",
"py312-mock"
]
}
],
"depends_on": []
},
{
"name": "py312-bitstring",
"portdir": "python/py-bitstring",
"version": "4.3.1",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/scott-griffiths/bitstring",
"description": "Module to simplify handling of binary data",
"long_description": "bitstring is a pure Python module that makes the creation, manipulation and analysis of binary data as simple and natural as possible.",
"active": true,
"categories": [
"devel",
"python"
],
"maintainers": [],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py312-wheel",
"clang-18",
"py312-build",
"py312-installer",
"py312-setuptools"
]
},
{
"type": "lib",
"ports": [
"python312",
"py312-bitarray"
]
},
{
"type": "test",
"ports": [
"py312-pytest"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"esptool",
"py312-osxmetadata",
"proxmark3-iceman"
]
}
]
},
{
"name": "py312-bitstruct",
"portdir": "python/py-bitstruct",
"version": "8.19.0",
"license": "MIT",
"platforms": "darwin",
"epoch": 0,
"replaced_by": null,
"homepage": "",
"description": "This module performs conversions between Python values and C bit field structs represented as Python byte strings.",
"long_description": "This module is intended to have a similar interface as the python struct module, but working on bits instead of primitive data types (char, int, ...).",
"active": true,
"categories": [
"devel",
"python"
],
"maintainers": [
{
"name": "aw.kornilov",
"github": "ierofant",
"ports_count": 15
}
],
"variants": [
"universal"
],
"dependencies": [
{
"type": "build",
"ports": [
"py312-installer",
"clang-16",
"py312-build",
"py312-setuptools",
"py312-wheel"
]
},
{
"type": "lib",
"ports": [
"python312"
]
},
{
"type": "test",
"ports": [
"py312-pytest"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py-bitstruct"
]
}
]
},
{
"name": "py312-BitVector",
"portdir": "python/py-BitVector",
"version": "3.5.0",
"license": "PSF",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://engineering.purdue.edu/kak/dist/BitVector-3.5.0.html",
"description": "A memory-efficient packed representation for bit arrays",
"long_description": "The BitVector class is for a memory-efficient packed representation of bit arrays and for logical operations on such arrays. It is written in pure Python.",
"active": true,
"categories": [
"math",
"python"
],
"maintainers": [
{
"name": "petr",
"github": "petrrr",
"ports_count": 612
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-16",
"py312-build",
"py312-installer",
"py312-setuptools",
"py312-wheel"
]
},
{
"type": "lib",
"ports": [
"python312"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py312-BitArray2D",
"py-BitVector"
]
}
]
},
{
"name": "py312-black",
"portdir": "python/py-black",
"version": "26.3.1",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://black.readthedocs.io/",
"description": "The uncompromising code formatter for Python.",
"long_description": "By using Black, you agree to cede control over minutiae of hand-formatting your Python source code. In return, Black gives you speed, determinism, and freedom from pycodestyle nagging about formatting. You will save time and mental energy for more important matters. Black makes code review faster by producing the smallest diffs possible. Blackened code looks the same regardless of the project you’re reading. Formatting becomes transparent after a while and you can focus on the content instead.",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "danchr",
"github": "danchr",
"ports_count": 175
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18",
"py312-build",
"py312-installer",
"py312-hatchling",
"py312-hatch-fancy-pypi-readme",
"py312-hatch-vcs"
]
},
{
"type": "lib",
"ports": [
"py312-pytokens",
"python312",
"py312-packaging",
"py312-mypy_extensions",
"py312-pathspec",
"py312-click",
"py312-platformdirs"
]
},
{
"type": "run",
"ports": [
"black_select"
]
},
{
"type": "test",
"ports": [
"py312-pytest"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py312-sphinx-copybutton",
"py312-python-lsp-black"
]
},
{
"type": "run",
"ports": [
"py312-orjson"
]
},
{
"type": "test",
"ports": [
"py312-license-expression"
]
}
]
},
{
"name": "py312-bleach",
"portdir": "python/py-bleach",
"version": "6.3.0",
"license": "Apache",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/mozilla/bleach",
"description": "An easy safelist-based HTML-sanitizing tool.",
"long_description": "An easy safelist-based HTML-sanitizing tool.",
"active": true,
"categories": [
"www",
"python"
],
"maintainers": [
{
"name": "stromnov",
"github": "stromnov",
"ports_count": 2896
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py312-installer",
"py312-wheel",
"clang-18",
"py312-build",
"py312-setuptools"
]
},
{
"type": "lib",
"ports": [
"py312-webencodings",
"python312"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py312-panel",
"py312-nbconvert"
]
},
{
"type": "run",
"ports": [
"py312-panel",
"py312-readme_renderer",
"py312-mdx_linkify"
]
}
]
},
{
"name": "py312-blessed",
"portdir": "python/py-blessed",
"version": "1.20.0",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/jquast/blessed",
"description": "A thin practical wrapper around terminal styling screen positioning and keyboard input.",
"long_description": "A thin practical wrapper around terminal styling screen positioning and keyboard input.",
"active": true,
"categories": [
"python"
],
"maintainers": [],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18",
"py312-installer",
"py312-setuptools",
"py312-wheel",
"py312-build"
]
},
{
"type": "lib",
"ports": [
"py312-wcwidth",
"py312-six",
"python312"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py312-objexplore"
]
},
{
"type": "run",
"ports": [
"py312-dashing"
]
}
]
},
{
"name": "py312-blinker",
"portdir": "python/py-blinker",
"version": "1.9.0",
"license": "MIT and BSD",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://blinker.readthedocs.io",
"description": "Fast, simple object-to-object and broadcast signaling",
"long_description": "Blinker provides a fast dispatching system that allows any number of interested parties to subscribe to events, or \"signals\". Signal receivers can subscribe to specific senders or receive signals sent by any sender.",
"active": true,
"categories": [
"devel",
"python"
],
"maintainers": [
{
"name": "aronnax",
"github": "lpsinger",
"ports_count": 440
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py312-installer",
"py312-build",
"py312-flit_core",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"python312"
]
},
{
"type": "test",
"ports": [
"py312-pytest-asyncio",
"py312-pytest"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py312-flask",
"py312-flask-mail",
"py312-oauthlib"
]
}
]
},
{
"name": "py312-blis",
"portdir": "python/py-blis",
"version": "1.3.3",
"license": "MIT",
"platforms": "darwin",
"epoch": 1,
"replaced_by": null,
"homepage": "https://github.com/explosion/cython-blis",
"description": "Fast matrix-multiplication as a self-contained Python library",
"long_description": "Fast matrix-multiplication as a self-contained Python library",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "jonesc",
"github": "cjones051073",
"ports_count": 232
}
],
"variants": [
"native",
"universal"
],
"dependencies": [
{
"type": "build",
"ports": [
"py312-setuptools",
"py312-wheel",
"clang-18",
"cctools",
"py312-build",
"py312-installer"
]
},
{
"type": "lib",
"ports": [
"python312",
"py312-cython",
"py312-numpy"
]
},
{
"type": "test",
"ports": [
"py312-pytest",
"py312-hypothesis"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py312-thinc"
]
}
]
},
{
"name": "py312-blockdiag",
"portdir": "python/py-blockdiag",
"version": "3.0.0",
"license": "Apache-2",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "http://blockdiag.com/",
"description": "blockdiag generates block-diagram image from text",
"long_description": "blockdiag generates block-diagram image from text",
"active": true,
"categories": [
"graphics",
"python"
],
"maintainers": [
{
"name": "stromnov",
"github": "stromnov",
"ports_count": 2896
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18",
"py312-build",
"py312-installer",
"py312-setuptools",
"py312-wheel"
]
},
{
"type": "lib",
"ports": [
"python312",
"py312-setuptools",
"py312-Pillow",
"py312-funcparserlib",
"py312-webcolors"
]
}
],
"depends_on": [
{
"type": "run",
"ports": [
"py312-sphinxcontrib-blockdiag"
]
}
]
},
{
"name": "py312-blosc",
"portdir": "python/py-blosc",
"version": "1.11.2",
"license": "MIT",
"platforms": "darwin",
"epoch": 0,
"replaced_by": null,
"homepage": "http://python-blosc.blosc.org/",
"description": "Python package that wraps the Blosc compressor",
"long_description": "Blosc (http://blosc.pytables.org) is a high performance compressor optimized for binary data. It has been designed to transmit data to the processor cache faster than the traditional, non-compressed, direct memory fetch approach via a memcpy() OS call. Blosc works well for compressing numerical arrays that contains data with relatively low entropy, like sparse data, time series, grids with regular-spaced values, etc. This is a Python package that wraps it.",
"active": true,
"categories": [
"devel",
"python"
],
"maintainers": [
{
"name": "stromnov",
"github": "stromnov",
"ports_count": 2896
}
],
"variants": [
"universal"
],
"dependencies": [
{
"type": "build",
"ports": [
"py312-scikit-build",
"clang-18",
"cmake",
"ninja",
"py312-build",
"py312-installer",
"py312-setuptools",
"py312-wheel",
"py312-cpuinfo"
]
},
{
"type": "lib",
"ports": [
"blosc",
"python312"
]
},
{
"type": "test",
"ports": [
"py312-numpy",
"py312-psutil"
]
}
],
"depends_on": []
},
{
"name": "py312-blosc2",
"portdir": "python/py-blosc2",
"version": "4.1.2",
"license": "BSD",
"platforms": "darwin",
"epoch": 0,
"replaced_by": null,
"homepage": "https://pypi.python.org/pypi/blosc2/",
"description": "Python wrapper for Blosc2",
"long_description": "A Python wrapper for the extremely fast Blosc2 compression library",
"active": true,
"categories": [
"devel",
"archivers",
"python"
],
"maintainers": [],
"variants": [
"universal"
],
"dependencies": [
{
"type": "build",
"ports": [
"pkgconfig",
"py312-build",
"py312-installer",
"py312-cython",
"py312-scikit-build-core",
"py312-oldest-supported-numpy",
"clang-18",
"ninja"
]
},
{
"type": "lib",
"ports": [
"python312",
"py312-numpy",
"py312-requests",
"py312-msgpack",
"py312-numexpr",
"blosc2",
"py312-ndindex"
]
},
{
"type": "test",
"ports": [
"py312-pytest"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py312-tables"
]
}
]
},
{
"name": "py312-bokeh",
"portdir": "python/py-bokeh",
"version": "3.8.2",
"license": "BSD",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/bokeh/bokeh",
"description": "Bokeh is an implementation of Grammar of Graphics",
"long_description": "Bokeh (pronounced boh-Kay) is an implementation of Grammar of Graphics for Python, that also supports the customized rendering flexibility of Protovis and d3.",
"active": true,
"categories": [
"devel",
"python"
],
"maintainers": [
{
"name": "stromnov",
"github": "stromnov",
"ports_count": 2896
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py312-build",
"py312-installer",
"py312-setuptools",
"py312-wheel",
"py312-setuptools-git-versioning",
"py312-colorama",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"py312-tornado",
"python312",
"py312-xyzservices",
"py312-pandas",
"py312-packaging",
"py312-jinja2",
"py312-numpy",
"py312-Pillow",
"py312-contourpy",
"py312-yaml"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py312-panel",
"py312-geoviews",
"py312-holoviews",
"py312-hvplot",
"py312-movingpandas"
]
},
{
"type": "run",
"ports": [
"py312-panel"
]
}
]
},
{
"name": "py312-boolean.py",
"portdir": "python/py-boolean.py",
"version": "5.0",
"license": "BSD",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/bastikr/boolean.py",
"description": "Define boolean algebras, create and parse boolean expressions and create custom boolean DSL.",
"long_description": "Define boolean algebras, create and parse boolean expressions and create custom boolean DSL.",
"active": true,
"categories": [
"python"
],
"maintainers": [],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py312-installer",
"clang-17",
"py312-build",
"py312-setuptools",
"py312-wheel"
]
},
{
"type": "lib",
"ports": [
"python312"
]
},
{
"type": "test",
"ports": [
"py312-pytest"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py312-license-expression",
"reuse"
]
}
]
},
{
"name": "py312-boto3",
"portdir": "python/py-boto3",
"version": "1.42.49",
"license": "Apache-2",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/boto/boto3",
"description": "The AWS SDK for Python",
"long_description": "Boto3 is the Amazon Web Services (AWS) Software Development Kit (SDK) for Python, which allows Python developers to write software that makes use of services like Amazon S3 and Amazon EC2.",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "emcrisostomo",
"github": "emcrisostomo",
"ports_count": 168
},
{
"name": "judaew",
"github": "judaew",
"ports_count": 654
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18",
"py312-build",
"py312-installer",
"py312-setuptools",
"py312-wheel"
]
},
{
"type": "lib",
"ports": [
"python312"
]
},
{
"type": "run",
"ports": [
"py312-botocore",
"py312-jmespath",
"py312-s3transfer"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py312-maggma"
]
},
{
"type": "run",
"ports": [
"py312-aws-sam-translator"
]
}
]
},
{
"name": "py312-botocore",
"portdir": "python/py-botocore",
"version": "1.42.49",
"license": "Apache-2",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/boto/botocore",
"description": "Low level data driven core of boto 3.",
"long_description": "A low-level interface to a growing number of Amazon Web Services. The botocore package is the foundation for the AWS CLI as well as boto3.",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "judaew",
"github": "judaew",
"ports_count": 654
},
{
"name": "emcrisostomo",
"github": "emcrisostomo",
"ports_count": 168
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18",
"py312-build",
"py312-installer",
"py312-setuptools",
"py312-wheel"
]
},
{
"type": "lib",
"ports": [
"py312-urllib3",
"py312-dateutil",
"py312-jmespath",
"python312"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py312-awscli",
"py312-s3transfer",
"py312-aiobotocore"
]
},
{
"type": "run",
"ports": [
"py312-boto3"
]
},
{
"type": "test",
"ports": [
"py312-scrapy"
]
}
]
},
{
"name": "py312-bottle",
"portdir": "python/py-bottle",
"version": "0.13.4",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://bottlepy.org/",
"description": "Fast, simple and lightweight WSGI micro web-framework for python",
"long_description": "Bottle is a fast, simple and lightweight WSGI micro web-framework with no dependencies other than the Python Standard Library. It supports routing, templates and has a built-in HTTP development server. It supports paste, fapws3, bjoern, Google App Engine, cheerypy or any other WSGI capable HTTP server",
"active": true,
"categories": [
"devel",
"python"
],
"maintainers": [],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py312-setuptools",
"py312-build",
"py312-installer",
"py312-wheel",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"python312"
]
},
{
"type": "test",
"ports": [
"py312-pytest"
]
}
],
"depends_on": []
},
{
"name": "py312-bottleneck",
"portdir": "python/py-bottleneck",
"version": "1.6.0",
"license": "BSD",
"platforms": "darwin",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/pydata/bottleneck",
"description": "Fast NumPy array functions written in Cython",
"long_description": "Bottleneck is a set of NumPy ufuncs rewritten in Cython to boost performance. The collection contains mainly operations dealing with NaN and sliding windows.",
"active": true,
"categories": [
"math",
"python"
],
"maintainers": [
{
"name": "stromnov",
"github": "stromnov",
"ports_count": 2896
}
],
"variants": [
"universal"
],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18",
"py312-wheel",
"py312-versioneer",
"py312-build",
"py312-installer",
"py312-setuptools"
]
},
{
"type": "lib",
"ports": [
"py312-numpy",
"python312"
]
}
],
"depends_on": []
},
{
"name": "py312-bottlenose",
"portdir": "python/py-bottlenose",
"version": "1.1.10",
"license": "Apache-2",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/lionheart/bottlenose",
"description": "A Python wrapper for the Amazon Product Advertising API.",
"long_description": "A Python wrapper for the Amazon Product Advertising API.",
"active": true,
"categories": [
"devel",
"python"
],
"maintainers": [],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py312-build",
"py312-installer",
"py312-setuptools",
"py312-wheel",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"python312"
]
}
],
"depends_on": []
},
{
"name": "py312-bpemb",
"portdir": "python/py-bpemb",
"version": "0.3.5",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://nlp.h-its.org/bpemb",
"description": "Byte pair embeddings in 275 languages",
"long_description": "BPEmb is a collection of pre-trained subword embeddings in 275 languages, based on Byte-Pair Encoding (BPE) and trained on Wikipedia. Its intended use is as input for neural models in natural language processing.",
"active": true,
"categories": [
"python"
],
"maintainers": [],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py312-build",
"clang-18",
"py312-wheel",
"py312-setuptools",
"py312-installer"
]
},
{
"type": "lib",
"ports": [
"python312"
]
},
{
"type": "run",
"ports": [
"py312-sentencepiece",
"py312-gensim",
"py312-tqdm",
"py312-requests",
"py312-numpy"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py-bpemb"
]
}
]
},
{
"name": "py312-bpylist2",
"portdir": "python/py-bpylist2",
"version": "4.1.1",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/parabolala/bpylist2",
"description": "Parse and generate NSKeyedArchiver archives",
"long_description": "Parse and generate NSKeyedArchiver archives",
"active": true,
"categories": [
"python"
],
"maintainers": [],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py312-build",
"py312-installer",
"py312-poetry-core",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"python312"
]
}
],
"depends_on": []
},
{
"name": "py312-bracex",
"portdir": "python/py-bracex",
"version": "2.6",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/facelessuser/bracex",
"description": "Bash style brace expansion for Python.",
"long_description": "Bash style brace expansion for Python. Brace expanding is used to generate arbitrary strings.",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "judaew",
"github": "judaew",
"ports_count": 654
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py312-build",
"py312-installer",
"py312-hatchling",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"python312"
]
}
],
"depends_on": [
{
"type": "run",
"ports": [
"py312-wcmatch"
]
}
]
},
{
"name": "py312-branca",
"portdir": "python/py-branca",
"version": "0.8.2",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/python-visualization/branca",
"description": "Generate complex HTML+JS pages with Python",
"long_description": "Generate complex HTML+JS pages with Python. This library is a spinoff from folium, that would host the non-map-specific features.",
"active": true,
"categories": [
"devel",
"graphics",
"python"
],
"maintainers": [],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18",
"py312-wheel",
"py312-setuptools_scm",
"py312-build",
"py312-installer",
"py312-setuptools"
]
},
{
"type": "lib",
"ports": [
"python312"
]
},
{
"type": "run",
"ports": [
"py312-jinja2"
]
}
],
"depends_on": [
{
"type": "run",
"ports": [
"py312-folium"
]
}
]
},
{
"name": "py312-breathe",
"portdir": "python/py-breathe",
"version": "4.36.0",
"license": "BSD",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/michaeljones/breathe",
"description": "Breathe is a Sphinx plugin providing beautifully integrated Doxygen output in your user-facing documentation.",
"long_description": "Breathe is a Sphinx plugin providing beautifully integrated Doxygen output in your user-facing documentation. It allows you to combine Doxygen's excellent technical understanding of your code base with the superb long form documentation output of the Sphinx system.",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "mps",
"github": "Schamschula",
"ports_count": 1398
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py312-build",
"py312-flit_core",
"py312-installer",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"py312-pygments",
"python312",
"py312-sphinx",
"py312-jinja2",
"py312-markupsafe",
"py312-docutils"
]
}
],
"depends_on": []
},
{
"name": "py312-brotli",
"portdir": "python/py-brotli",
"version": "1.2.0",
"license": "MIT",
"platforms": "darwin",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/google/brotli",
"description": "Python module for brotli compression format",
"long_description": "Brotli is a generic-purpose lossless compression algorithm that is similar in speed with deflate but offers more dense compression. This port installs python modules, see also port brotli for the bro tool.",
"active": true,
"categories": [
"archivers",
"python"
],
"maintainers": [],
"variants": [
"universal"
],
"dependencies": [
{
"type": "build",
"ports": [
"py312-setuptools",
"py312-build",
"py312-installer",
"py312-wheel",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"python312"
]
},
{
"type": "test",
"ports": [
"py312-pytest"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py312-discordpy",
"py312-pyarrow",
"py312-mitmproxy",
"py312-aiohttp",
"py312-httpx",
"py312-py7zr"
]
},
{
"type": "run",
"ports": [
"py312-fonttools"
]
}
]
},
{
"name": "py312-brotlicffi",
"portdir": "python/py-brotlicffi",
"version": "1.2.0.1",
"license": "MIT",
"platforms": "darwin",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/python-hyper/brotlicffi",
"description": "Python CFFI bindings to the Brotli library",
"long_description": "Python CFFI bindings to the Brotli library",
"active": true,
"categories": [
"python"
],
"maintainers": [],
"variants": [
"universal"
],
"dependencies": [
{
"type": "build",
"ports": [
"py312-installer",
"py312-wheel",
"clang-18",
"py312-build",
"py312-setuptools"
]
},
{
"type": "lib",
"ports": [
"py312-cffi",
"python312"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py312-httpbin",
"py312-httpx"
]
}
]
},
{
"name": "py312-bsddb3",
"portdir": "python/py-bsddb3",
"version": "6.2.9",
"license": "MIT",
"platforms": "darwin",
"epoch": 0,
"replaced_by": null,
"homepage": "https://pypi.python.org/pypi/bsddb3",
"description": "Python 3 bindings for Oracle Berkeley DB",
"long_description": "This port provides a nearly complete wrapping of the Oracle/Sleepycat C API for the Database Environment, Database, Cursor, Log Cursor, Sequence and Transaction objects. Each of these is exposed as a Python type in the bsddb3.db module.",
"active": true,
"categories": [
"databases",
"python"
],
"maintainers": [
{
"name": "mascguy",
"github": "mascguy",
"ports_count": 357
}
],
"variants": [
"db53",
"db60",
"db62",
"universal"
],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18",
"py312-installer",
"py312-setuptools",
"py312-wheel",
"py312-build"
]
},
{
"type": "lib",
"ports": [
"python312",
"py312-setuptools",
"db62"
]
}
],
"depends_on": []
},
{
"name": "py312-bugsnag",
"portdir": "python/py-bugsnag",
"version": "4.8.0",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/bugsnag/bugsnag-python",
"description": "Automatic error monitoring for django, flask etc.",
"long_description": "Automatic error monitoring for django, flask etc.",
"active": true,
"categories": [
"devel",
"python"
],
"maintainers": [],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py312-installer",
"py312-wheel",
"clang-18",
"py312-build",
"py312-setuptools"
]
},
{
"type": "lib",
"ports": [
"py312-webob",
"python312"
]
}
],
"depends_on": []
},
{
"name": "py312-build",
"portdir": "python/py-build",
"version": "1.4.3",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://pypa-build.readthedocs.io/",
"description": "A simple, correct PEP517 package builder",
"long_description": "A simple, correct PEP517 package builder which will invoke the PEP 517 hooks to build a distribution package. It is a simple build tool and does not perform any dependency management.",
"active": true,
"categories": [
"devel",
"python"
],
"maintainers": [
{
"name": "danchr",
"github": "danchr",
"ports_count": 175
},
{
"name": "jmr",
"github": "jmroot",
"ports_count": 353
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py-bootstrap-modules",
"py312-installer",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"python312",
"py312-packaging",
"py312-pyproject_hooks"
]
}
],
"depends_on": [
{
"type": "build",
"ports": [
"esptool",
"cartman",
"fbuild",
"git-filter-repo",
"git-review",
"legit",
"radon",
"gajim",
"httpie",
"jrnl",
"pdfposter",
"fava",
"impressive",
"WW",
"gds",
"py38-nghttp2",
"py39-nghttp2",
"paramagpy",
"trim_osc",
"gzdice",
"py310-nghttp2",
"epy",
"reuse",
"yubikey-manager4",
"git-when-merged",
"py312-flit_core",
"py312-gdbm",
"py312-setuptools",
"py312-tkinter",
"py312-wheel",
"py312-altgraph",
"py312-macholib",
"py312-modulegraph",
"py312-py2app",
"py312-SDL2",
"py312-jinja2",
"py312-markupsafe",
"py312-alabaster",
"py312-imagesize",
"py312-snowballstemmer",
"py312-tz",
"py312-typing_extensions",
"py312-mypy_extensions",
"py312-types-psutil",
"py312-types-setuptools",
"py312-mypy",
"py312-ruamel-yaml",
"py312-ruamel-yaml-clib",
"py312-pip",
"py312-pycparser",
"py312-cffi",
"py312-coverage",
"py312-fastjsonschema",
"py312-identify",
"py312-setupmeta",
"py312-textdistance",
"py312-pathspec",
"py312-setuptools_scm",
"py312-editables",
"py312-calver",
"py312-hatchling",
"py312-pluggy",
"py312-trove-classifiers",
"py312-attrs",
"py312-hatch-fancy-pypi-readme",
"py312-hatch-vcs",
"py312-cython",
"py312-more-itertools",
"py312-jedi",
"py312-parso",
"py312-peewee",
"py312-wcwidth",
"py312-pycares",
"py312-aiodns",
"py312-charset-normalizer",
"py312-maturin",
"py312-semantic_version",
"py312-setuptools-rust",
"py312-six",
"py312-filelock",
"py312-markdown",
"py312-pefile",
"nicotine-plus",
"py312-crcmod",
"py312-mupdf",
"py312-pdm-backend",
"py312-pypdf",
"py312-editdistance",
"py312-websockets",
"py312-multidict",
"py312-types-docutils",
"py312-types-python-dateutil",
"py312-types-pytz",
"py312-types-simplejson",
"py312-types-ujson",
"py312-zipp",
"py312-serial",
"py312-numpy",
"py312-pyproject_metadata",
"py312-certifi",
"py312-igraph",
"py312-iniconfig",
"py312-py",
"py312-pytest",
"py312-texttable",
"py312-sortedcontainers",
"py312-testpath",
"py312-urllib3",
"py312-black",
"py312-click",
"py312-platformdirs",
"py312-poetry-core",
"py312-isort",
"py312-idna",
"py312-requests",
"py312-autoflake",
"py312-pyflakes",
"py312-orjson",
"py312-shellingham",
"py312-hypothesis",
"py312-zope-event",
"py312-zopeinterface",
"py312-meson",
"py312-meson-python",
"py312-gnupg",
"py312-nclib",
"py312-flatbuffers",
"py312-monty",
"py312-beartype",
"py312-crashtest",
"py312-requests-toolbelt",
"py312-scikit-build-core",
"py312-appdirs",
"py312-fs",
"py312-pyfatfs",
"py312-pretend",
"py312-pyfiglet",
"py312-libusb1",
"py312-pathlib2",
"py312-olefile",
"py312-tomlkit",
"py312-geojson",
"py312-pkginfo",
"py312-msgpack",
"py312-ply",
"py312-brotli",
"py312-zopfli",
"py312-dulwich",
"py312-toml",
"py312-tomli",
"py312-chardet",
"py312-cairo",
"py312-zstd",
"py312-Pillow",
"py312-imageio",
"py312-xattr",
"py312-cppy",
"py312-dateutil",
"py312-freezegun",
"py312-funcsigs",
"py312-mock",
"py312-pybind11",
"py312-unicodedata2",
"doxyqml",
"py312-cpuinfo",
"py312-cryptography",
"py312-cryptography_vectors",
"py312-execnet",
"py312-pytest-benchmark",
"py312-pytest-cov",
"py312-pytest-forked",
"py312-pytest-xdist",
"py312-userpath",
"py312-sip",
"py312-sip-devel",
"py312-aiosignal",
"py312-async-timeout",
"py312-frozenlist",
"py312-yarl",
"py312-cycler",
"py312-kiwisolver",
"py312-aiohttp",
"py312-asteval",
"py312-asv",
"py312-atomicwrites",
"py312-beniget",
"py312-bigfloat",
"py312-binaryornot",
"py312-biopython",
"py312-cachetools",
"py312-cfgv",
"py312-cftime",
"py312-colorlog",
"py312-columnize",
"py312-contourpy",
"py312-deprecation",
"py312-diff-match-patch",
"py312-dill",
"py312-docstring-to-markdown",
"py312-docstyle",
"py312-editorconfig",
"py312-enchant",
"py312-fastprogress",
"py312-filetype",
"py312-gast",
"py312-inflection",
"py312-intervaltree",
"py312-natsort",
"py312-pyicu",
"py312-pytest-mock",
"py312-parsing",
"py312-pbr",
"py312-pdbecif",
"py312-pkce",
"py312-poyo",
"py312-pytest-runner",
"py312-aiojobs",
"py312-nodeenv",
"py312-argcomplete",
"py312-gnureadline",
"py312-yaml",
"py312-distro",
"py312-rapidfuzz",
"py312-scikit-build",
"py312-latexcodec",
"py312-lxml",
"py312-setuptools_scm_git_archive",
"py312-discordpy",
"py312-reportlab",
"py312-sphinx-gallery",
"py312-gyoto",
"py312-tinydb",
"py312-expandvars",
"py312-babel",
"py312-blockdiag",
"py312-docutils",
"py312-funcparserlib",
"py312-pygments",
"py312-pyobjc",
"py312-roman",
"py312-sphinx",
"py312-sphinxcontrib-applehelp",
"py312-sphinxcontrib-blockdiag",
"py312-sphinxcontrib-devhelp",
"py312-sphinxcontrib-htmlhelp",
"py312-sphinxcontrib-jsmath",
"py312-sphinxcontrib-qthelp",
"py312-sphinxcontrib-serializinghtml",
"py312-webcolors",
"py312-applaunchservices",
"py312-pybtex",
"py312-pybtex-docutils",
"py312-ddt",
"py312-sybil",
"py312-testfixtures",
"py312-sphinxcontrib-bibtex",
"py312-sphinxcontrib-httpdomain",
"py312-sphinxcontrib-svg2pdfconverter",
"py312-sphinxcontrib-websupport",
"py312-mpmath",
"py312-sympy",
"py312-fonttools",
"py312-portend",
"py312-tempora",
"py312-zc-lockfile",
"py312-libvirt",
"py312-anyio",
"py312-brotlicffi",
"py312-h11",
"py312-h2",
"py312-hpack",
"py312-httpcore",
"py312-httpx",
"py312-hyperframe",
"py312-linkify-it-py",
"py312-markdown-it-py",
"py312-rich",
"py312-uc-micro-py",
"py312-jaraco.functools",
"py312-mdurl",
"py312-distlib",
"py312-hyperlink",
"py312-importlib-metadata",
"py312-jaraco.classes",
"py312-keyring",
"py312-pexpect",
"py312-ptyprocess",
"py312-pyperclip",
"py312-sniffio",
"py312-socksio",
"py312-tomli-w",
"py312-virtualenv",
"py312-protego",
"py312-feedparser",
"py312-sgmllib3k",
"py312-mdit-py-plugins",
"py312-gobject3",
"py312-python-json-logger",
"py312-greenlet",
"py312-jsonschema",
"py312-about-time",
"py312-acoustid",
"py312-alive-progress",
"py312-anytree",
"py312-argh",
"py312-audioread",
"py312-bitarray",
"py312-bitstring",
"py312-bpylist2",
"py312-country",
"py312-exceptiongroup",
"py312-flexmock",
"py312-flit_scm",
"py312-grapheme",
"py312-iocapture",
"py312-glad2",
"py312-appnope",
"py312-astor",
"py312-asttokens",
"py312-async_generator",
"py312-backcall",
"py312-codestyle",
"py312-decorator",
"py312-entrypoints",
"py312-ephemeral-port-reserve",
"py312-executing",
"py312-flake8",
"py312-flake8-mccabe",
"py312-flaky",
"py312-ipdb",
"py312-ipython",
"py312-itsdangerous",
"py312-matplotlib-inline",
"py312-outcome",
"py312-pickleshare",
"py312-prompt_toolkit",
"py312-psutil",
"py312-pure_eval",
"py312-pytest-asyncio",
"py312-pytest-timeout",
"py312-pytest-xprocess",
"py312-stack_data",
"py312-traitlets",
"py312-watchdog",
"py312-werkzeug",
"py312-tornado",
"py312-terminado",
"py312-plumbum",
"py312-applescript",
"py312-asn1",
"py312-asn1-modules",
"py312-astroid",
"py312-blinker",
"py312-flask",
"py312-gpsoauth",
"py312-inflate64",
"py312-lazy_object_proxy",
"py312-libxml2",
"py312-openssl",
"py312-osxmetadata",
"py312-pathvalidate",
"py312-photoscript",
"py312-pyannotate",
"py312-pybcj",
"py312-pycryptodome",
"py312-pycryptodomex",
"py312-pylint",
"py312-pytest-trio",
"py312-service_identity",
"py312-trio",
"py312-trustme",
"py312-wrapt",
"py312-frozendict",
"py312-cython-compat",
"py312-nest_asyncio",
"py312-arpeggio",
"py312-coveralls",
"py312-docopt",
"py312-multivolumefile",
"py312-pathtools",
"py312-py7zr",
"py312-pyppmd",
"py312-pytest-pylint",
"py312-pytest-remotedata",
"py312-pyzstd",
"py312-rarfile",
"py312-ruff",
"py312-strpdatetime",
"py312-textx",
"py312-unidecode",
"scdl",
"py312-asn1crypto",
"py312-clint",
"py312-dacite",
"py312-ifaddr",
"py312-jellyfish",
"py312-mutagen",
"py312-ptpython",
"py312-pytest-dotenv",
"py312-python-dotenv",
"py312-pytzdata",
"py312-qrcode",
"py312-requests-mock",
"py312-sh",
"py312-soco",
"py312-soundcloud-v2",
"py312-termcolor",
"py312-tzlocal",
"py312-xdg",
"py312-xdg-base-dirs",
"py312-xmltodict",
"py312-certomancer",
"py312-certomancer-csc-dummy",
"py312-hanko",
"py312-hanko-certvalidator",
"py312-oscrypto",
"py312-python-pae",
"py312-uritools",
"py312-bleach",
"py312-webencodings",
"py312-setuptools-git-versioning",
"py312-colorama",
"py312-pandas",
"py312-nose",
"py312-xyzservices",
"py312-bokeh",
"py312-param",
"py312-pyct",
"py312-jupyter_packaging",
"py312-pyviz_comms",
"py312-tqdm",
"py312-panel",
"py312-gssapi",
"py312-imaplib2",
"py312-rfc6555",
"py312-pyqt-builder",
"py312-pyqt5-sip",
"py312-matplotlib",
"py312-pyx",
"py312-fastavro",
"py312-scapy",
"py312-scapy-devel",
"py312-pytest-qt",
"py312-pynose",
"py312-m2crypto",
"py312-arrow",
"py312-autopep8",
"py312-cons",
"py312-cookiecutter",
"py312-etuples",
"py312-flake8-pyproject",
"py312-logical-unification",
"py312-multipledispatch",
"py312-slugify",
"py312-text-unidecode",
"py312-tinycss2",
"py312-toolz",
"py312-ujson",
"py312-versioneer",
"py312-yapf",
"py312-cssselect2",
"py312-jinja2-time",
"py312-minikanren",
"py312-whatthepatch",
"py312-wurlitzer",
"py312-astropy-iers-data",
"py312-imagecodecs",
"py312-networkx",
"py312-pywavelets",
"py312-tifffile",
"py312-openbabel",
"py312-pylint-venv",
"py312-pympler",
"py312-pytest-describe",
"py312-pytoolconfig",
"py312-qstylizer",
"py312-qtawesome",
"py312-qtpy",
"py312-rope",
"py312-term-background",
"py312-tokenize-rt",
"py312-lz4",
"py312-pkgconfig",
"py312-sphinx_rtd_theme",
"py312-sphinxcontrib-jquery",
"py312-simpy",
"py312-simpy-docs",
"py312-corner",
"py312-curl",
"py312-referencing",
"py312-rpds-py",
"py312-semver",
"py312-lazy_loader",
"py312-pysam",
"py312-boolean.py",
"py312-license-expression",
"py312-python-debian",
"py312-pygccxml",
"py312-pyplusplus",
"py312-jsonlines",
"py312-html5lib",
"py312-waitress",
"py312-pastedeploy",
"py312-minidb",
"py312-cssselect",
"py312-pyquery",
"py312-urlwatch",
"py312-webtest",
"py312-shapely",
"py312-sqlalchemy",
"py312-drms",
"py312-aioftp",
"py312-webob",
"py312-alagitpull",
"py312-awscli",
"py312-boto3",
"py312-botocore",
"py312-commonmark",
"py312-git-delete-merged-branches",
"py312-jmespath",
"py312-kaptan",
"py312-libtmux",
"py312-myst-parser",
"py312-neovim",
"py312-recommonmark",
"py312-rsa",
"py312-s3transfer",
"py312-sphinx-autodoc-typehints",
"py312-sphinx-issues",
"py312-tmuxp",
"py312-smartypants",
"py312-typogrify",
"py312-pikepdf",
"py312-fasteners",
"py312-soupsieve",
"py312-pint",
"py312-pooch",
"py312-pyproj",
"py312-pythran",
"py312-Faker",
"py312-aws-sam-translator",
"py312-cattrs",
"py312-jsonschema-specifications",
"py312-lsprotocol",
"py312-parameterized",
"py312-pydantic",
"py312-pygls",
"py312-random2",
"py312-typeguard",
"py312-ukpostcodeparser",
"py312-validators",
"py312-pygraphviz",
"py312-psycopg2",
"py312-beautifulsoup4",
"py312-cloudflare",
"py312-blessed",
"py312-dashing",
"py312-readme_renderer",
"py312-rfc3986",
"py312-pdal",
"py312-hy",
"py312-xlsx2csv",
"py312-fsspec",
"py312-regex",
"py312-cssutils",
"py312-mako",
"py312-singledispatch",
"py312-powerline",
"py312-comm",
"py312-simplejson",
"py312-pyte",
"py312-llfuse",
"py312-gdal",
"py312-gevent",
"py312-unidiff",
"py312-curio",
"py312-python-socks",
"py312-future",
"py312-netcdf4",
"py312-xarray",
"py312-socks",
"py312-tiktoken",
"py312-configargparse",
"py312-google-i18n-address",
"py312-numpydoc",
"py312-scipy",
"py312-arabic-reshaper",
"py312-aiohttp-socks",
"py312-bidi",
"py312-aeppl",
"py312-aesara",
"py312-algopy",
"py312-arviz",
"py312-cached-property",
"py312-cairocffi",
"py312-cairosvg",
"py312-defusedxml",
"py312-h5netcdf",
"py312-h5py",
"py312-httpbin",
"py312-lmfit",
"py312-mpi4py",
"py312-nmrglue",
"py312-nmrglue-devel",
"py312-numdifftools",
"py312-patsy",
"py312-peakutils",
"py312-pytensor",
"py312-pytest-httpbin",
"py312-raven",
"py312-statsmodels",
"py312-structlog",
"py312-three-merge",
"py312-uncertainties",
"py312-xarray-einstats",
"py312-requests-futures",
"py312-socid-extractor",
"py312-tox",
"py312-zmq",
"py312-stem",
"py312-torrequest",
"py312-svglib",
"py312-xhtml2pdf",
"py312-jsonpickle",
"py312-cloudscraper",
"py312-pyvis",
"py312-pygmt",
"py312-asyncpg",
"py312-levenshtein",
"py312-netaddr",
"py312-pytest-mypy",
"py312-mysqlclient",
"py312-hiredis",
"py312-bcrypt",
"py312-confection",
"py312-srsly",
"py312-argon2-cffi",
"py312-argon2-cffi-bindings",
"py312-debugpy",
"py312-ipykernel",
"py312-ipython_genutils",
"py312-ipywidgets",
"py312-json5",
"py312-jupyter_client",
"py312-jupyter_console",
"py312-jupyter_core",
"py312-jupyter_server",
"py312-jupyterlab",
"py312-jupyterlab_pygments",
"py312-jupyterlab_server",
"py312-jupyterlab_widgets",
"py312-metakernel",
"py312-mistune",
"py312-nbclassic",
"py312-nbclient",
"py312-nbconvert",
"py312-nbformat",
"py312-notebook",
"py312-pandocfilters",
"py312-prometheus_client",
"py312-send2trash",
"py312-widgetsnbextension",
"py312-cymem",
"py312-et_xmlfile",
"py312-murmurhash",
"py312-parse",
"py312-preshed",
"py312-qtconsole",
"py312-scikit-hep-hepstats",
"py312-scikit-hep-hepunits",
"py312-scikit-hep-mplhep",
"py312-scikit-hep-mplhep_data",
"py312-scikit-hep-particle",
"py312-cheetah",
"py312-configobj",
"py312-acora",
"py312-asv-runner",
"py312-tabulate",
"py312-pyusb",
"py312-poetry-plugin-export",
"py312-cachecontrol",
"py312-cleo",
"py312-game",
"py312-beancount",
"py312-bottle",
"py312-cheroot",
"py312-flask-babel",
"py312-google-api",
"py312-google-api-core",
"py312-google-auth",
"py312-google-auth-httplib2",
"py312-googleapis-common-protos",
"py312-httplib2",
"py312-magic",
"py312-markdown2",
"py312-protobuf3",
"py312-uritemplate",
"py312-siphon",
"py312-marisa-trie",
"py312-nuitka",
"py312-jwt",
"py312-oauthlib",
"py312-requests-oauthlib",
"py312-pulp",
"py312-svgelements",
"py312-zipfile-deflate64",
"py312-extension-helpers",
"py312-metpy",
"py312-pyerfa",
"py312-pytest-lazy-fixture",
"py312-pyarrow",
"py312-astropy",
"py312-parfive",
"py312-scikit-image",
"py312-isodate",
"py312-requests-file",
"py312-xmlsec",
"py312-sunpy",
"py312-zeep",
"py312-ansible-compat",
"py312-subprocess-tee",
"py312-cbor2",
"py312-geographiclib",
"py312-luma.core",
"py312-luma.emulator",
"py312-pyftdi",
"py312-smbus2",
"py312-annotated_types",
"py312-pydantic_core",
"py312-pydantic_settings",
"py312-configparser",
"py312-ntlm-auth",
"py312-paramiko",
"py312-pynacl",
"py312-pyspnego",
"py312-pywinrm",
"py312-requests_ntlm",
"py312-dnspython",
"py312-iso3166",
"py312-websocket-client",
"py312-wsproto",
"py312-affine",
"py312-click-plugins",
"py312-cligj",
"py312-fiona",
"py312-munch",
"py312-rasterio",
"py312-rasterstats",
"py312-seaborn",
"py312-snuggs",
"py312-sphinx-copybutton",
"py312-trio-websocket",
"py312-samplerate",
"py312-soxr",
"py312-types-decorator",
"py312-polygon",
"py312-rtree",
"py312-python-lsp-jsonrpc",
"py312-python-lsp-server",
"py312-blis",
"py312-plac",
"py312-thinc",
"py312-wasabi",
"py312-z3",
"py312-tzdata",
"py312-locket",
"py312-freetype",
"py312-hsluv",
"py312-meshio",
"py312-pytest-sugar",
"py312-in-n-out",
"py312-psygnal",
"py312-cloudpickle",
"py312-heapdict",
"py312-partd",
"py312-docstring_parser",
"py312-napari-plugin-engine",
"py312-superqt",
"py312-pytomlpp",
"py312-typer",
"py312-vispy",
"py312-app-model",
"py312-opengl",
"py312-opengl-accelerate",
"py312-cachey",
"py312-dask",
"py312-magicgui",
"py312-napari-console",
"py312-napari-svg",
"py312-npe2",
"py312-pydantic-compat",
"py312-cytoolz",
"py312-gitdb",
"py312-smmap",
"py312-gitpython",
"py312-stevedore",
"py312-lockfile",
"py312-numexpr",
"py312-deap",
"py312-helpdev",
"py312-libsass",
"py312-pyls-spyder",
"py312-python-lsp-black",
"py312-qdarkstyle",
"py312-qtsass",
"py312-spyder",
"py312-spyder-kernels",
"py312-pyglet",
"py312-wand",
"py312-fido2",
"py312-pyscard",
"py312-jupyter_server_terminals",
"py312-notebook_shim",
"py312-tblib",
"py312-rfc3339-validator",
"py312-tatsu",
"py312-branca",
"py312-codecov",
"py312-folium",
"py312-pytest-env",
"py312-geopandas",
"py312-llvmlite",
"py312-numba",
"py312-npx",
"py312-psycopg",
"py312-threadpoolctl",
"py312-quantecon",
"py312-BitArray2D",
"py312-BitVector",
"py312-backoff",
"py312-invoke",
"py312-ansible",
"py312-ansible-core",
"py312-resolvelib",
"py312-xkcdpass",
"py312-alembic",
"py312-fqdn",
"py312-isoduration",
"py312-jsonpointer",
"py312-rfc3986-validator",
"py312-uri-template",
"py312-iso8601",
"py312-jug",
"py312-async-lru",
"py312-path",
"py312-pymongo",
"py312-redis",
"py312-aiobotocore",
"py312-aioitertools",
"py312-mslex",
"py312-pymunk",
"py312-pystache",
"py312-s3fs",
"py312-geopy",
"py312-joblib",
"py312-contextily",
"py312-mercantile",
"py312-pdfminer",
"py312-aiorpcX",
"py312-flit",
"py312-spdx",
"py312-spdx-lookup",
"py312-upt-cpan",
"py312-upt-macports",
"py312-upt-pypi",
"py312-upt-rubygems",
"py312-jplephem",
"py312-altair",
"py312-billiard",
"py312-sgp4",
"py312-skyfield",
"py312-spktype21",
"py312-jsbeautifier",
"py312-josepy",
"py312-pyrfc3339",
"py312-acme",
"py312-parsedatetime",
"py312-python-augeas",
"py312-repoze.sphinx.autointerface",
"py312-dns-lexicon",
"py312-tldextract",
"py312-ndg_httpsclient",
"py312-pynamecheap",
"py312-pyotp",
"py312-zope-component",
"py312-zope-hookable",
"py312-pendulum",
"py312-fixtures",
"py312-powerline-exitstatus-kai",
"py312-powerline-gitstatus",
"py312-pygit2",
"py312-flask-frozen",
"py312-flask-login",
"py312-ftputil",
"py312-vine",
"py312-pyrsistent",
"py312-rustworkx",
"py312-imread",
"py312-jsonschema-format-nongpl",
"py312-amqp",
"py312-smart_open",
"py312-phonenumbers",
"py312-makefun",
"py312-overrides",
"py312-jupyter_events",
"py312-hatch-jupyter-builder",
"py312-scikit-learn",
"py312-translationstring",
"py312-colander",
"py312-multiprocess",
"py312-hatch-nodejs-version",
"py312-jupyter-lsp",
"py312-stopit",
"py312-update_checker",
"py312-iminuit",
"py312-simplekml",
"py312-pyxdg",
"py312-agate",
"py312-agate-dbf",
"py312-agate-excel",
"py312-agate-sql",
"py312-csvkit",
"py312-dbfread",
"py312-leather",
"py312-pytimeparse",
"py312-pytimeparse2",
"py312-xlrd",
"py312-types-colorama",
"py312-mdx_linkify",
"py312-managesieve",
"py312-quantities",
"py312-access",
"py312-esda",
"py312-giddy",
"py312-inequality",
"py312-libpysal",
"py312-mapclassify",
"py312-mgwr",
"py312-momepy",
"py312-owslib",
"py312-plotly",
"py312-pointpats",
"py312-pysal",
"py312-segregation",
"py312-spaghetti",
"py312-spglm",
"py312-spint",
"py312-splot",
"py312-spopt",
"py312-spreg",
"py312-spvcm",
"py312-tenacity",
"py312-tobler",
"py312-sphinxnotes-strike",
"py312-sounddevice",
"py312-sphinx-jsonschema",
"py312-astunparse",
"py312-asdf",
"py312-asdf-standard",
"py312-asdf-transform-schemas",
"py312-asdf-unit-schemas",
"py312-colorcet",
"py312-bsddb3",
"py312-ldap3",
"py312-parsimonious",
"py312-bottleneck",
"py312-mecab-python3",
"py312-mssql",
"py312-sphinx-bootstrap-theme",
"py312-ipyparallel",
"py312-inflect",
"py312-pygresql",
"py312-pyheif",
"py312-pyhyphen",
"py312-pyinstaller",
"py312-XlsxWriter",
"morshutalk",
"py312-g2p-en",
"py312-nltk",
"py312-pydub",
"py312-cryptg",
"py312-imagehash",
"py312-portalocker",
"py312-pyaes",
"py312-telethon",
"py312-promise",
"py312-setproctitle",
"py312-pygeos",
"py312-logilab-common",
"py312-importlib-resources",
"py312-pysvn",
"py312-logilab-constraint",
"py312-asdf-coordinates-schemas",
"py312-re2",
"py312-bitmath",
"py312-objexplore",
"py312-progressbar",
"py312-rich-theme-manager",
"py312-shortuuid",
"py312-bugsnag",
"py312-Pyro5",
"py312-serpent",
"py312-blosc",
"py312-blosc2",
"py312-ndindex",
"py312-antlr4-python3-runtime",
"py312-jupytext",
"py312-gensim",
"py312-colored",
"py312-pybox2d",
"py312-pymc",
"py312-logbook",
"py312-bpemb",
"py312-sentencepiece",
"py312-html2text",
"py312-ezdxf",
"py312-zict",
"py312-dropbox",
"py312-stone",
"py312-rstcheck",
"py312-rstcheck-core",
"py312-distributed",
"py312-mahotas",
"py312-ipwhois",
"py312-mimeparse",
"py312-svgpath",
"py312-virtualenv-clone",
"py312-virtualenvwrapper",
"py312-mac-alias",
"py312-spark_parser",
"py312-uncompyle6",
"py312-xdis",
"py312-vobject",
"py312-openslide",
"py312-emcee3",
"py312-hcloud",
"py312-sentry-sdk",
"py312-dbus_next",
"py312-desktop-notifier",
"py312-keyrings.alt",
"py312-pytest-rerunfailures",
"py312-rubicon-objc",
"py312-survey",
"py312-line_profiler",
"py312-jschema_to_python",
"py312-sarif-om",
"py312-deprecated",
"py312-jaraco.context",
"py312-asdf-astropy",
"py312-ldap",
"py312-mando",
"py312-openbabel2",
"py312-fickling",
"py312-scour",
"py312-octave_kernel",
"py312-irodsclient",
"py312-langid",
"py312-prettytable",
"py312-jsonpatch",
"py312-parsel",
"py312-w3lib",
"py312-itemadapter",
"py312-itemloaders",
"py312-pypng",
"py312-pyqrcode",
"py312-slack-sdk",
"py312-fdsnwsscripts",
"py312-ipython-sql",
"py312-pyshp",
"py312-rich-click",
"py312-libarchive-c",
"py312-maxminddb",
"py312-pyvo",
"py312-schema",
"py312-nbval",
"py312-onnx",
"pympress",
"py312-lxml_html_clean",
"py312-pdal-plugins",
"py312-cymruwhois",
"py312-skyfield-data",
"py312-aiosqlite",
"py312-geoplot",
"py312-cgmetadata",
"py312-makelive",
"py312-flexcache",
"py312-flexparser",
"py312-mmcif_pdbx",
"py312-absl",
"py312-tropycal",
"py312-pydicom",
"py312-pynetdicom",
"py312-epsg",
"py312-cartopy",
"py312-queuelib",
"py312-asgiref",
"py312-asynctest",
"py312-kaitaistruct",
"py312-rencode",
"py312-ffc",
"py312-fiat",
"py312-dijitso",
"py312-ufl",
"py312-dolfin",
"py312-automat",
"py312-constantly",
"py312-incremental",
"py312-m2r",
"py312-pyhamcrest",
"py312-twisted",
"py312-fipy",
"py312-pytorch",
"py312-dispatcher",
"py312-pudb",
"py312-urwid",
"py312-scrapy",
"py312-supervisor",
"py312-triangle",
"py312-gmpy2",
"tmt",
"py312-fmf",
"py312-tables",
"py312-pyshortcuts",
"py312-hdf5plugin",
"py312-palettable",
"py312-spglib",
"py312-xraydb",
"py312-wxmplot",
"py312-wxpython-4.0",
"py312-wxutils",
"py312-pymatgen",
"py312-fabio",
"py312-silx",
"py312-jsonconversion",
"py312-macfsevents",
"py312-pyFAI",
"getmail6",
"py312-pyficache",
"py312-bitstruct",
"py312-chm",
"py312-cwcwidth",
"py312-dmgbuild",
"py312-ds-store",
"py312-genshi",
"py312-pyqt6-sip",
"py312-pptx",
"py312-css-parser",
"py312-emoji",
"py312-nbxmpp",
"py312-omemo-dr",
"py312-precis-i18n",
"py312-pylzma",
"py312-pipdeptree",
"py312-cli-helpers",
"py312-sqlparse",
"py312-mygpoclient",
"py312-podcastparser",
"py312-graphviz",
"py312-objgraph",
"py312-clang",
"py312-ctypeslib2",
"py312-awscrt",
"py312-awscli2",
"py312-graph-tool",
"py312-pytest-json-report",
"py312-pytest-metadata",
"py312-obspy",
"py312-aiohappyeyeballs",
"py312-pylsqpack",
"py312-service-identity",
"py312-aioquic",
"py312-gpxpy",
"py312-autopage",
"py312-cliff",
"py312-cmd2",
"py312-asyncssh",
"py312-pygithub",
"py312-pyuca",
"py312-mpld3",
"py312-dap",
"py312-spiceypy",
"py312-pyorick",
"py312-control",
"py312-kombine",
"py312-wordcloud",
"py312-yt",
"py312-wntr",
"py312-berkeleydb",
"py312-dqsegdb2",
"py312-gwdatafind",
"py312-healpy",
"py312-igwn-auth-utils",
"py312-ligo-common",
"py312-ligo-gracedb",
"py312-ligo-segments",
"py312-lscsoft-glue",
"py312-safe-netrc",
"py312-scitokens",
"py312-scimath",
"py312-traits",
"py312-nibabel",
"py312-panedr",
"py312-dateparser",
"py312-gwpy",
"py312-gwosc",
"py312-ligotimegps",
"py312-stagger",
"py312-crayons",
"py312-eventlet",
"py312-starlette",
"py312-ordered-set",
"py312-LabJackPython",
"py312-changelog-chug",
"py312-python-daemon",
"py312-codetools",
"py312-comet",
"py312-csscompressor",
"py312-ctags",
"py312-datrie",
"py312-sqlobject",
"py312-formencode",
"py312-apptools",
"py312-envisage",
"py312-mayavi",
"py312-pyface",
"py312-traitsui",
"py312-scikit-umfpack",
"py312-pacal",
"py312-fontaine",
"py312-pymysql",
"py312-olm",
"youtube-search-python",
"yewtube",
"py312-pylast",
"py312-rich_rst",
"py312-textual",
"py312-distorm",
"py312-propcache",
"py312-esridump",
"py312-fann2",
"py312-fastapi",
"py312-ffmpy",
"py312-fire",
"py312-hyrule",
"py312-itables",
"py312-hatch-requirements-txt",
"py312-readability-lxml",
"py312-cinemagoer",
"py312-contextlib2",
"py312-flake8-pep8-naming",
"py312-flake8-polyfill",
"py312-pytest-check",
"py312-pytest-datadir",
"py312-pytest-fixture-config",
"py312-pytest-flake8",
"py312-pytest-html",
"py312-pytest-pycodestyle",
"py312-pytest-random-order",
"py312-pytest-regressions",
"py312-pytest-shutil",
"py312-pytest-subtests",
"py312-pytest-virtualenv",
"py312-setuptools-git",
"py312-ftfy",
"py312-fugashi",
"py312-gcn",
"py312-ipadic",
"py312-acor",
"py312-cog",
"py312-google-cloud-core",
"py312-google-cloud-storage",
"py312-google-crc32c",
"py312-google-resumable-media",
"py312-gsecrets",
"py312-marshmallow",
"py312-webargs",
"py312-clikit",
"py312-coloredlogs",
"py312-humanfriendly",
"py312-pastel",
"py312-pylev",
"py312-pysimdjson",
"py312-hdfs",
"py312-construct",
"py312-kcs11",
"py312-pykeepass",
"py312-yubico",
"py312-zxcvbn",
"py312-cdflib",
"py312-geomagpy",
"py312-paho-mqtt",
"py312-pypubsub",
"py312-annoy",
"py312-pacmap",
"py312-lesscpy",
"py312-emmet-core",
"py312-maggma",
"py312-mongomock",
"py312-mp-api",
"py312-pycifrw",
"py312-pydash",
"py312-pyqtgraph",
"py312-sentinels",
"py312-smart-open",
"py312-sqlalchemy-utils",
"py312-sshtunnel",
"py312-xraylarch",
"py312-gpstime",
"py312-gunicorn",
"py312-gviz_api",
"py312-hypy",
"py312-icalendar",
"py312-imageio-ffmpeg",
"py312-imgur",
"py312-immutables",
"py312-importmagic",
"py312-humanize",
"py312-pync",
"py312-ipy",
"py312-iso639",
"py312-janus",
"py312-jmespath-terminal",
"py312-langcodes",
"py312-meld3",
"py312-metar",
"py312-misaka",
"matrix-nio",
"matrix-commander",
"py312-aiofiles",
"py312-notify2",
"py312-unpaddedbase64",
"py312-poetry-plugin-shell",
"py312-urwid-readline",
"py312-pytesseract",
"py312-mitmproxy_macos",
"py312-mitmproxy_rs",
"py312-wsaccel",
"py312-yappi",
"py312-libdnet",
"py312-pypcap",
"py312-bracex",
"py312-enrich",
"py312-wcmatch",
"py312-krb5",
"py312-pycson",
"py312-speg",
"py312-requests-kerberos",
"py312-img2pdf",
"py312-pyogrio",
"py312-breathe",
"py312-publicsuffix2",
"py312-flask-cors",
"py312-aniso8601",
"py312-pygments-mathematica",
"py312-qimage2ndarray",
"py312-narwhals",
"py312-celery",
"py312-kombu",
"py312-digitalocean",
"py312-google-api-python-client",
"py312-cloudflare2",
"py312-pydot",
"py312-rdflib",
"py312-doctest-ignore-unicode",
"py312-prov",
"py312-pyproject_api",
"py312-cinderclient",
"py312-debtcollector",
"py312-dogpile-cache",
"py312-keystoneauth1",
"py312-keystoneclient",
"py312-novaclient",
"py312-openstacksdk",
"py312-openstackclient",
"py312-os-service-types",
"py312-osc-lib",
"py312-oslo-config",
"py312-oslo-i18n",
"py312-oslo-utils",
"py312-oslo-serialization",
"py312-requestsexceptions",
"py312-fortranformat",
"py312-gsl",
"py312-findpython",
"py312-tracer",
"py312-typing-inspection",
"py312-selenium",
"py312-undetected-chromedriver",
"py312-pgspecial",
"py312-pyfzf",
"py312-sqlglot",
"py312-cramjam",
"py312-iterable-io",
"py312-zipstream-ng",
"py312-autobahn",
"py312-hkdf",
"py312-passlib",
"py312-python-snappy",
"py312-pytrie",
"py312-spake2",
"py312-txaio",
"py312-txtorcon",
"py312-u-msgpack-python",
"py312-backports.tarfile",
"py312-pbs_installer",
"py312-flask-mail",
"py312-flask-restful",
"py312-flask-sqlalchemy",
"py312-flask-wtf",
"py312-wtforms",
"py312-flasgger",
"py312-django",
"py312-django-allauth",
"py312-django-countries",
"py312-django-debug-toolbar",
"py312-django-extensions",
"py312-django-gravatar2",
"py312-django-mailman3",
"py312-mailmanclient",
"py312-openid",
"py312-pytest-django",
"py312-responses",
"py312-autocommand",
"py312-croniter",
"py312-jaraco.collections",
"py312-jaraco.text",
"py312-looseversion",
"py312-timelib",
"py312-coherent.licensed",
"py312-plyvel",
"py312-astropy-healpix",
"py312-donfig",
"py312-mpl-animators",
"py312-numcodecs",
"py312-reproject",
"py312-zarr",
"py312-mitmproxy",
"py312-jsonnet",
"py312-cvxopt",
"py312-jupyter_sphinx",
"py312-aubio",
"py312-bottlenose",
"py312-confuse",
"py312-discogs-client",
"py312-ibroadcast",
"py312-jsonpath-rw",
"py312-langdetect",
"py312-librosa",
"py312-mediafile",
"py312-mpd2",
"py312-musicbrainzngs",
"py312-nanobind",
"py312-pytest-mpl",
"py312-reflink",
"py312-resampy",
"py312-soundfile",
"py312-termplotlib",
"py312-termtables",
"py312-ttfquery",
"py312-zbar",
"py312-trepan3k",
"py312-elastic-transport",
"py312-elasticsearch",
"py312-darkdetect",
"py312-larixite",
"py312-pypostal",
"py312-virtualfish",
"py312-base58",
"py312-ansicolors",
"py312-sslcrypto",
"py312-ipython-pygments-lexers",
"py312-python-lsp-ruff",
"py312-standard-distutils",
"py312-bidict",
"py312-cfn-lint",
"py312-engineio",
"py312-junit-xml",
"py312-socketio",
"py312-spotipy",
"py312-uvicorn",
"py312-uv-build",
"py312-holidays",
"py312-authres",
"py312-dkimpy",
"py312-ipaddress",
"py312-py3dns",
"py312-pyinstrument",
"py312-smi",
"py312-requests-unixsocket",
"py312-pytokens",
"py312-networkit",
"py312-sacremoses",
"py312-paste",
"py312-colour",
"py312-ml_dtypes",
"py312-decli",
"py312-hf-xet",
"py312-proto-plus",
"py312-huggingface_hub",
"py312-sphinx-click",
"py312-exifread",
"py312-regions",
"py312-questionary",
"py312-rlpycairo",
"py312-gammapy",
"py312-pytest-httpserver",
"py312-catalogue",
"py312-conllu",
"py312-sacrebleu",
"py312-sarpy",
"py312-timeout-decorator",
"py312-xxhash",
"py312-diskcache",
"py312-durationpy",
"py312-scikit-rf",
"py312-url-normalize",
"py312-diskcache-stubs",
"py312-poethepoet",
"py312-pre-commit",
"py312-pysigma",
"py312-ecdsa",
"py312-vcrpy",
"py312-intelhex",
"py312-pytest-recording",
"py312-reedsolo",
"py312-librt",
"py312-sigma-cli",
"py312-requests-cache",
"py312-time-machine",
"py312-pmdarima",
"py312-aenum",
"py312-beaker",
"py312-mido",
"py312-python-multipart",
"py312-treq",
"py312-shtab",
"py312-crc32c",
"py312-rich-argparse",
"py312-pick",
"py312-allpairspy",
"py312-tcolorpy",
"py312-lark",
"py312-rfc3987-syntax",
"py312-ajsonrpc",
"py312-pyelftools",
"py312-annotated-doc",
"py312-uv-dynamic-versioning",
"py312-dunamai",
"py312-segno",
"py312-sexpdata",
"py312-ipympl",
"py312-dm-tree",
"py312-pew",
"py312-tlsh",
"py312-datasets",
"py312-mda-xdrlib",
"py312-versioningit",
"py312-roman_numerals",
"py312-yaspin",
"py312-loguru",
"py312-pskc",
"py312-findlibs",
"py312-eccodes",
"py312-ulid",
"py312-pydantic-extra-types",
"py312-anywidget",
"py312-arro3-compute",
"py312-arro3-core",
"py312-arro3-io",
"py312-holoviews",
"py312-geoviews",
"py312-hvplot",
"py312-lonboard",
"py312-movingpandas",
"py312-pyinstaller-hooks-contrib",
"py312-radix",
"py312-pyedr",
"py312-pythonz",
"py312-rangehttpserver",
"py312-resumable-urlretrieve",
"py312-molmod",
"py312-pytest-twisted",
"py312-fabric",
"py312-discovery",
"py312-lmdb",
"py312-patch-ng",
"py312-safetensors",
"py312-tokenizers",
"py312-diffusers",
"py312-transformers",
"py312-types-pyyaml",
"py312-python-discovery",
"py312-sentence-transformers",
"py312-omegaconf",
"py312-jdcal",
"py312-gyp-next",
"py312-multitasking",
"py312-torchaudio",
"py312-robotframework",
"py312-antlr4-python3-runtime-49",
"py312-obspec",
"py312-async-geotiff",
"py312-async-tiff",
"py312-hydra-core",
"py312-morecantile",
"py312-torchvision",
"py312-bbpb",
"py312-dnslib",
"py312-flask-restx",
"py312-cloudpathlib",
"py312-spacy-legacy",
"py312-spacy-loggers",
"py312-weasel",
"py312-spaCy",
"py312-xmind",
"py312-curl-cffi"
]
}
]
},
{
"name": "py312-cachecontrol",
"portdir": "python/py-cachecontrol",
"version": "0.14.3",
"license": "Apache-2",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/psf/cachecontrol",
"description": "httplib2 caching for requests",
"long_description": "CacheControl is a port of the caching algorithms in httplib2 for use with requests session object.",
"active": true,
"categories": [
"devel",
"python"
],
"maintainers": [
{
"name": "davidgilman1",
"github": "dgilman",
"ports_count": 146
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py312-build",
"py312-flit_core",
"py312-installer",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"py312-requests",
"py312-msgpack",
"python312"
]
}
],
"depends_on": []
},
{
"name": "py312-cached-property",
"portdir": "python/py-cached-property",
"version": "2.0.1",
"license": "BSD",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/pydanny/cached-property",
"description": "A decorator for caching properties in classes",
"long_description": "A decorator for caching properties in classes",
"active": true,
"categories": [
"devel",
"python"
],
"maintainers": [],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py312-build",
"py312-installer",
"py312-setuptools",
"py312-wheel",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"python312"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py312-zeep"
]
}
]
},
{
"name": "py312-cachetools",
"portdir": "python/py-cachetools",
"version": "7.0.5",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/tkem/cachetools",
"description": "memoizing collections and decorators",
"long_description": "This module provides various memoizing collections and decorators, including variants of the Python 3 Standard Library @lru_cache function decorator.",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "reneeotten",
"github": "reneeotten",
"ports_count": 2108
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py312-setuptools",
"py312-build",
"py312-installer",
"py312-wheel",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"python312"
]
},
{
"type": "test",
"ports": [
"py312-pytest"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py312-pymc",
"py312-google-auth",
"py312-tox"
]
}
]
},
{
"name": "py312-cachey",
"portdir": "python/py-cachey",
"version": "0.2.1",
"license": "Permissive",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/dask/cachey/",
"description": "Caching for Analytic Computations",
"long_description": "Caching for Analytic Computations Normal caching policies like LRU aren't well suited for analytic computations where both the cost of recomputation and the cost of storage routinely vary by one million or more.",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "mps",
"github": "Schamschula",
"ports_count": 1398
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py312-installer",
"py312-wheel",
"clang-18",
"py312-build",
"py312-setuptools"
]
},
{
"type": "lib",
"ports": [
"py312-heapdict",
"python312"
]
}
],
"depends_on": []
},
{
"name": "py312-cairo",
"portdir": "python/py-cairo",
"version": "1.29.0",
"license": "(LGPL-2.1 or MPL-1.1)",
"platforms": "darwin",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/pygobject/pycairo",
"description": "Pycairo is set of Python bindings for the cairo graphics library",
"long_description": "Pycairo is set of Python bindings for the cairo graphics library",
"active": true,
"categories": [
"graphics",
"python"
],
"maintainers": [],
"variants": [
"quartz",
"x11",
"universal"
],
"dependencies": [
{
"type": "build",
"ports": [
"py312-cython",
"py312-meson-python",
"clang-18",
"pkgconfig",
"py312-build",
"py312-installer",
"py312-setuptools"
]
},
{
"type": "lib",
"ports": [
"glib2",
"cairo",
"python312"
]
},
{
"type": "test",
"ports": [
"py312-pytest",
"py312-hypothesis"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py312-rlpycairo",
"py312-matplotlib",
"py312-graph-tool",
"meld",
"py312-gobject3",
"MyPaint",
"gimp3-devel"
]
}
]
},
{
"name": "py312-cairocffi",
"portdir": "python/py-cairocffi",
"version": "1.7.1",
"license": "BSD",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/Kozea/cairocffi",
"description": "cairocffi is a CFFI-based drop-in replacement for Pycairo",
"long_description": "cairocffi is a CFFI-based drop-in replacement for Pycairo",
"active": true,
"categories": [
"graphics",
"python"
],
"maintainers": [
{
"name": "reneeotten",
"github": "reneeotten",
"ports_count": 2108
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py312-build",
"py312-flit_core",
"py312-installer",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"py312-cffi",
"libffi",
"cairo",
"gdk-pixbuf2",
"python312"
]
},
{
"type": "test",
"ports": [
"py312-numpy",
"py312-pytest",
"py312-pikepdf"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py312-cairosvg"
]
}
]
},
{
"name": "py312-cairosvg",
"portdir": "python/py-cairosvg",
"version": "2.9.0",
"license": "LGPL-3+",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://cairosvg.org",
"description": "A Simple SVG Converter based on Cairo",
"long_description": "CairoSVG is a SVG converter based on Cairo. It can export SVG files to PDF, PostScript and PNG files.",
"active": true,
"categories": [
"graphics",
"python"
],
"maintainers": [
{
"name": "reneeotten",
"github": "reneeotten",
"ports_count": 2108
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18",
"py312-build",
"py312-installer",
"py312-setuptools",
"py312-wheel"
]
},
{
"type": "lib",
"ports": [
"py312-defusedxml",
"python312",
"py312-Pillow",
"py312-tinycss2",
"py312-cssselect2",
"py312-cairocffi"
]
},
{
"type": "run",
"ports": [
"py-cairosvg_select"
]
}
],
"depends_on": []
},
{
"name": "py312-calver",
"portdir": "python/py-calver",
"version": "2025.10.20",
"license": "Apache-2",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/di/calver",
"description": "setuptools extension for automatically defining your Python package version as a calendar version",
"long_description": "The calver package is a setuptools extension for automatically defining your Python package version as a calendar version.",
"active": true,
"categories": [
"science",
"python"
],
"maintainers": [
{
"name": "mps",
"github": "Schamschula",
"ports_count": 1398
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py312-build",
"py312-installer",
"py312-setuptools",
"py312-wheel",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"python312"
]
}
],
"depends_on": [
{
"type": "build",
"ports": [
"py312-trove-classifiers"
]
}
]
},
{
"name": "py312-cartopy",
"portdir": "python/py-cartopy",
"version": "0.25.0",
"license": "LGPL-3",
"platforms": "darwin",
"epoch": 0,
"replaced_by": null,
"homepage": "https://scitools.org.uk/cartopy/docs/latest",
"description": "A cartographic python library with matplotlib support",
"long_description": "Cartopy is a Python package designed for geospatial data processing in order to produce maps and other geospatial data analyses. Cartopy makes use of the powerful PROJ, NumPy and Shapely libraries and includes a programmatic interface built on top of Matplotlib for the creation of publication quality maps.",
"active": true,
"categories": [
"graphics",
"science",
"python",
"gis"
],
"maintainers": [
{
"name": "petr",
"github": "petrrr",
"ports_count": 612
}
],
"variants": [
"universal"
],
"dependencies": [
{
"type": "build",
"ports": [
"py312-build",
"py312-installer",
"py312-setuptools",
"py312-wheel",
"py312-setuptools_scm",
"py312-cython",
"py312-setuptools_scm_git_archive",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"py312-scipy",
"python312",
"py312-pyshp",
"py312-owslib",
"py312-packaging",
"py312-numpy",
"py312-Pillow",
"py312-matplotlib",
"py312-shapely",
"py312-pyproj",
"py312-beautifulsoup4"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py312-geoviews",
"py312-movingpandas",
"py312-geoplot",
"py312-tropycal"
]
}
]
},
{
"name": "py312-catalogue",
"portdir": "python/py-catalogue",
"version": "2.0.10",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 1,
"replaced_by": null,
"homepage": "https://github.com/explosion/catalogue",
"description": "Super lightweight function registries for your library",
"long_description": "catalogue is a tiny, zero-dependencies library that makes it easy to add function (or object) registries to your code. Function registries are helpful when you have objects that need to be both easily serializable and fully customizable. Instead of passing a function into your object, you pass in an identifier name, which the object can use to lookup the function from the registry. This makes the object easy to serialize, because the name is a simple string. If you instead saved the function, you'd have to use Pickle for serialization, which has many drawbacks.",
"active": true,
"categories": [
"devel",
"python"
],
"maintainers": [],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py312-setuptools",
"py312-build",
"py312-installer",
"py312-wheel",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"python312"
]
},
{
"type": "test",
"ports": [
"py312-pytest"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py312-spaCy",
"py312-srsly",
"py312-thinc"
]
}
]
},
{
"name": "py312-cattrs",
"portdir": "python/py-cattrs",
"version": "26.1.0",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/python-attrs/cattrs",
"description": "py-cattrs is an open-source Python library for structuring and unstructuring data.",
"long_description": "py-cattrs is an open-source Python library for structuring and unstructuring data.. py-cattrs works best with attrs classes, dataclasses and the usual Python collections, but other kinds of classes are supported by manually registering converters.",
"active": true,
"categories": [
"python"
],
"maintainers": [],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18",
"py312-installer",
"py312-hatchling",
"py312-hatch-vcs",
"py312-build"
]
},
{
"type": "lib",
"ports": [
"py312-typing_extensions",
"py312-attrs",
"python312"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py312-python-lsp-ruff",
"py312-requests-cache",
"py312-lsprotocol"
]
},
{
"type": "run",
"ports": [
"py312-pygls"
]
}
]
},
{
"name": "py312-cbor2",
"portdir": "python/py-cbor2",
"version": "5.7.1",
"license": "MIT",
"platforms": "darwin",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/agronholm/cbor2",
"description": "Pure Python CBOR de-serializer with extensive tag support",
"long_description": "Pure Python CBOR de-serializer with extensive tag support",
"active": true,
"categories": [
"python"
],
"maintainers": [
{
"name": "herby.gillot",
"github": "herbygillot",
"ports_count": 1044
}
],
"variants": [
"universal"
],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18",
"py312-build",
"py312-installer",
"py312-setuptools",
"py312-wheel",
"py312-setuptools_scm"
]
},
{
"type": "lib",
"ports": [
"python312"
]
},
{
"type": "test",
"ports": [
"py312-pytest",
"py312-hypothesis"
]
}
],
"depends_on": [
{
"type": "run",
"ports": [
"py312-luma.core",
"py312-autobahn"
]
}
]
},
{
"name": "py312-cdflib",
"portdir": "python/py-cdflib",
"version": "1.3.2",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/MAVENSDC/cdflib",
"description": "A python CDF reader toolkit",
"long_description": "A python CDF reader toolkit",
"active": true,
"categories": [
"science",
"python"
],
"maintainers": [],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py312-setuptools_scm",
"py312-setuptools",
"py312-wheel",
"clang-17",
"py312-build",
"py312-installer"
]
},
{
"type": "lib",
"ports": [
"py312-numpy",
"python312"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py-cdflib",
"py312-geomagpy"
]
}
]
},
{
"name": "py312-celery",
"portdir": "python/py-celery",
"version": "5.2.3",
"license": "BSD",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://docs.celeryq.dev",
"description": "Distributed Task Queue",
"long_description": "Celery is an asynchronous task queue/job queue based on distributed message passing",
"active": true,
"categories": [
"devel",
"python"
],
"maintainers": [
{
"name": "stromnov",
"github": "stromnov",
"ports_count": 2896
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18",
"py312-build",
"py312-installer",
"py312-setuptools",
"py312-wheel"
]
},
{
"type": "lib",
"ports": [
"python312",
"py312-setuptools",
"py312-tz",
"py312-billiard",
"py312-kombu"
]
},
{
"type": "run",
"ports": [
"celery_select"
]
}
],
"depends_on": []
},
{
"name": "py312-certifi",
"portdir": "python/py-certifi",
"version": "2026.2.25",
"license": "(MPL-1.1 or GPL-2+ or LGPL-2.1+)",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://pypi.python.org/pypi/certifi",
"description": "Python package for providing Mozilla's CA Bundle.",
"long_description": "Python package for providing Mozilla's CA Bundle.",
"active": true,
"categories": [
"devel",
"net",
"python"
],
"maintainers": [
{
"name": "stromnov",
"github": "stromnov",
"ports_count": 2896
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py312-build",
"py312-installer",
"py312-setuptools",
"py312-wheel",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"python312"
]
}
],
"depends_on": [
{
"type": "build",
"ports": [
"py312-matplotlib"
]
},
{
"type": "lib",
"ports": [
"py312-requests-futures",
"gajim",
"py312-curl-cffi",
"py312-fiona",
"py312-skyfield",
"py312-pyproj",
"py312-httpx",
"py312-httpcore",
"py312-aioquic",
"py312-requests",
"py312-freetype",
"py312-pyogrio",
"py312-urllib3",
"py312-mitmproxy",
"legit",
"py312-netcdf4"
]
},
{
"type": "run",
"ports": [
"py312-rasterio",
"py312-sentry-sdk",
"py312-elastic-transport",
"py312-elasticsearch"
]
},
{
"type": "test",
"ports": [
"py312-cryptography"
]
}
]
},
{
"name": "py312-certomancer",
"portdir": "python/py-certomancer",
"version": "0.11.0",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://pypi.org/project/certomancer",
"description": "PKI testing tool",
"long_description": "PKI testing tool",
"active": true,
"categories": [
"python"
],
"maintainers": [],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-17",
"py312-build",
"py312-installer",
"py312-setuptools",
"py312-wheel",
"py312-pytest-runner"
]
},
{
"type": "lib",
"ports": [
"python312",
"py312-oscrypto",
"py312-click",
"py312-dateutil",
"py312-yaml",
"py312-asn1crypto",
"py312-tzlocal"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py-certomancer",
"py312-certomancer-csc-dummy"
]
}
]
},
{
"name": "py312-certomancer-csc-dummy",
"portdir": "python/py-certomancer-csc-dummy",
"version": "0.2.3",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/MatthiasValvekens/certomancer-csc-dummy",
"description": "A Certomancer-based demo CSC server for integration tests",
"long_description": "A Certomancer-based demo CSC server for integration tests",
"active": true,
"categories": [
"python"
],
"maintainers": [],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"clang-17",
"py312-build",
"py312-installer",
"py312-setuptools",
"py312-wheel"
]
},
{
"type": "lib",
"ports": [
"python312",
"py312-python-pae",
"py312-cryptography",
"py312-aiohttp",
"py312-asn1crypto",
"py312-certomancer"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py-certomancer-csc-dummy"
]
}
]
},
{
"name": "py312-cffi",
"portdir": "python/py-cffi",
"version": "2.0.0",
"license": "MIT",
"platforms": "darwin",
"epoch": 0,
"replaced_by": null,
"homepage": "https://cffi.readthedocs.org/",
"description": "Foreign Function Interface for Python calling C code.",
"long_description": "Foreign Function Interface for Python calling C code. The aim of this project is to provide a convenient and reliable way of calling C code from Python.",
"active": true,
"categories": [
"devel",
"python"
],
"maintainers": [
{
"name": "stromnov",
"github": "stromnov",
"ports_count": 2896
}
],
"variants": [
"universal"
],
"dependencies": [
{
"type": "build",
"ports": [
"clang-18",
"py312-installer",
"py312-setuptools",
"py312-wheel",
"py312-build"
]
},
{
"type": "lib",
"ports": [
"python312",
"py312-pycparser",
"libffi"
]
}
],
"depends_on": [
{
"type": "build",
"ports": [
"py312-python-snappy",
"py312-sounddevice",
"py312-zstd",
"py312-pymunk",
"hexchat"
]
},
{
"type": "lib",
"ports": [
"py312-pygit2",
"py312-curl-cffi",
"py312-eccodes",
"py312-brotlicffi",
"py312-xattr",
"py312-lmdb",
"py312-reflink",
"py312-pycares",
"py312-python-augeas",
"py312-zmq",
"py312-misaka",
"py312-soundfile",
"py312-pynacl",
"py312-gevent",
"py312-cryptography",
"py312-argon2-cffi-bindings",
"py312-pyheif",
"py312-cairocffi"
]
},
{
"type": "run",
"ports": [
"py312-autobahn",
"py312-olm",
"py312-sounddevice"
]
},
{
"type": "test",
"ports": [
"py312-numpy",
"py312-pyarrow"
]
}
]
},
{
"name": "py312-cfgv",
"portdir": "python/py-cfgv",
"version": "3.5.0",
"license": "MIT",
"platforms": "{darwin any}",
"epoch": 0,
"replaced_by": null,
"homepage": "https://github.com/asottile/cfgv",
"description": "Validate configuration and produce human readable error messages.",
"long_description": "Validate configuration and produce human readable error messages.",
"active": true,
"categories": [
"devel",
"python"
],
"maintainers": [
{
"name": "reneeotten",
"github": "reneeotten",
"ports_count": 2108
}
],
"variants": [],
"dependencies": [
{
"type": "build",
"ports": [
"py312-build",
"py312-installer",
"py312-setuptools",
"py312-wheel",
"clang-18"
]
},
{
"type": "lib",
"ports": [
"python312"
]
}
],
"depends_on": [
{
"type": "lib",
"ports": [
"py312-pre-commit"
]
}
]
}
]
}