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.
This package provides Python bindings and utilities for GeoJSON, a format for encoding geographic data structures.
This package provides a fast, efficiently stored trie implementation for Python.
Vobject is intended to be a full featured Python package for parsing and generating vCard and vCalendar files. Currently, iCalendar files are supported and well tested. vCard 3.0 files are supported, and all data should be imported, but only a few components are understood in a sophisticated way.
This package provides a tool for generating OIDC, OpenID Connect identities.
This package provides the flake8-todo Python module, a TODO notes checker plugin for flake8.
This package provides a build hook plugin for Hatch to automatically bs generate a manual page from an ArgumentParser object, using argparse-manpage by Pavel Raiskup.
This package provides a collection of useful tools to use PyPy-specific features, with CPython fallbacks.
pyproject-hooks is a low-level library for calling build backends in pyproject.toml-based projects. It provides basic functionality to write tooling that generates distribution files from Python projects.
This module provides various memoizing collections and decorators, including variants of the Python standard library's lru_cache function decorator.
Prompt-Toolkit is a library for building interactive command line interfaces in Python. It's like GNU Readline but it also features syntax highlighting while typing, out-of-the-box multi-line input editing, advanced code completion, incremental search, support for Chinese double-width characters, mouse support, and auto suggestions.
This package provides a tokenizer/parser/executor for the PartiQL language, in Python.
Whoosh is a fast, pure-Python full text indexing, search, and spell checking library.
moto is a library designed to easily mock out the boto library.
py3status is an i3status wrapper which extends i3status functionality in a modular way, allowing you to extend your panel with your own code, responding to click events and updating clock every second.
Collection of libraries and utility programs written in Python to manipulate OpenDocument 1.2 files.
Packaging is a Python module for dealing with Python packages. It offers an interface for working with package versions, names, and dependency information.
This package corresponds to the latest unicodedata standard Python module.
JUBE helps perform and analyze benchmarks in a systematic way. For each benchmarked application, benchmark data is stored in a format that allows JUBE to deduct the desired information. This data can be parsed by automatic pre- and post-processing scripts that draw information and store it more densely for manual interpretation.
This package provides the complete NumPy documentation in the Texinfo, and HTML formats.
This package is a wrapper around argparse, allowing you to write complete CLI applications in seconds while maintaining all the flexibility.
JSON5 extends the JSON data interchange format to make it slightly more usable as a configuration language. This Python package implements parsing and dumping of JSON5 data structures.
This package is a Cython wrapper for khash-sets/maps. It brings functionality of khash to Python and Cython and can be used seamlessly in numpy or pandas. Numpy's world is lacking the concept of a (hash-)set. This shortcoming is fixed and efficient (memory- and speedwise compared to pandas) unique and isin are implemented. Python-set/dict have a big memory-footprint. For some datatypes the overhead can be reduced by using khash by factor 4-8.
Requests-File is a transport adapter for use with the Requests Python library to allow local file system access via file:// URLs.
This is a implementation of immutable linked lists for Python. It contains nil (the empty linked list) and a Pair class for nodes. Since a linked list is treated as immutable, it is hashable, and its length can be retrieved in constant time. Some of the terminology is inspired by LISP. It is possible to create an improper list by creating a Pair with a non-list cdr.