Enter the query into the form above. You can look for specific version of a package by using @ symbol like this: gcc@10.
API method:
GET /api/packages?search=hello&page=1&limit=20
where search is your query, page is a page number and limit is a number of items on a single page. Pagination information (such as a number of pages and etc) is returned
in response headers.
If you'd like to join our channel webring send a patch to ~whereiseveryone/toys@lists.sr.ht adding your channel as an entry in channels.scm.
Cairocffi is a CFFI-based drop-in replacement for Pycairo, a set of Python bindings and object-oriented API for cairo. Cairo is a 2D vector graphics library with support for multiple backends including image buffers, PNG, PostScript, PDF, and SVG file output.
The minifier is based on the semantics of the YUI compressor, which itself is based on the rule list by Isaac Schlueter.
This package provides command line tools, powered by pydoit. It offers integration with click and rich for custom CLI and these linters: pycodestlye, pyflakes
Lark is a parser built with a focus on ergonomics, performance and resilience. Lark can parse all context-free languages. That means it is capable of parsing almost any programming language out there, and to some degree most natural languages too.
This package lets you run asynchronous workflows using pytest-fixtures-style dependency injection.
Safety checks installed dependencies for known vulnerabilities. By default it uses the open Python vulnerability database Safety DB.
python-proselint is a linter for English prose, that scans through a file and detects issues.
Lazy object proxy is an object that wraps a callable but defers the call until the object is actually required, and caches the result of said call.
The fastbencode Python package implements the bencode serialization format for storing and transmitting loosely structured data, originally used by BitTorrent.
The format can encode four different types of values: byte strings, integers, lists, and dictionaries (associative arrays). It's simple and unaffected by endianness,
This package includes both a pure-Python version and an optional C extension based on Cython. Both provide the same functionality, but the C version has significantly better performance.
This Python library allows reading and writing to the Excel XLSX, XLSM, XLTX and XLTM file formats that are defined by the Office Open XML (OOXML) standard.
Typer is a library for building CLI applications. It's based on Python 3.6+ type hints.
Urwid is a curses-based UI/widget library for Python. It includes many features useful for text console applications.
Pexpect is a pure Python module for spawning child applications; controlling them; and responding to expected patterns in their output. Pexpect works like Don Libes’ Expect. Pexpect allows your script to spawn a child application and control it as if a human were typing commands.
This package is a small C++ header library which makes it easier to write Python extension modules. The primary feature is a PyObject smart pointer which automatically handles reference counting and provides convenience methods for performing common object operations.
ansi2html is a Python library and command line utility for converting text with ANSI color codes to HTML or LaTeX.
Pydoc-Markdown is a tool to create Python API documentation in Markdown format. Instead of executing your Python code like so many other documentation tools, it parses it using docspec instead.
PyPEG is an intrinsic parser interpreter framework for Python. It is based on Parsing Expression Grammars, PEG. With pyPEG you can parse many formal languages.
This package defines the can module, which provides controller area network (CAN) support for Python developers; providing common abstractions to different hardware devices, and a suite of utilities for sending and receiving messages on a CAN bus.
This package provides the editor module for programmatically interfacing with your system's $EDITOR.
python-flasgger allows extracting Swagger specs from your Flask project. It is a fork of Flask-Swagger.
This package provides static memory-efficient and fast Trie-like structures for Python.
filelock contains a single module implementing a platform independent file lock in Python, which provides a simple way of inter-process communication.
This package provides a pure Python trie data structure implementation.
This package provides a decorator for caching properties in classes. It is forked from cached-property.