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 is a port of Python's built-in functools.lru_cache function for asyncio. To better handle async behaviour, it also ensures multiple concurrent calls will only result in 1 call to the wrapped function, with all awaits receiving the result of that call when it completes.
Jinxed is an implementation of a subset of the Python curses library.
PyMD4C provides Python bindings for MD4c, a C Markdown parser, compliant to CommonMark.
python-dbus provides bindings for libdbus, the reference implementation of D-Bus.
This package provides a Python wrapper for using extended file system attributes. Extended attributes extend the basic attributes of files and directories in the file system. They are stored as name:data pairs associated with file system objects (files, directories, symlinks, etc).
Chameleon is an HTML/XML template engine for Python. It uses the page templates language.
This package provides a command-line utility that creates projects from project templates, e.g. creating a Python package project from a Python package project template.
Redo provides various means to add seamless ability to retry to any Python callable.
Natsort lets you apply natural sorting on lists instead of lexicographical. If you use the built-in sorted method in python on a list such as [, it would be returned as a20, a9, a1, a4, a10][. Natsort provides a function a1, a10, a20, a4, a9]natsorted that identifies numbers and sorts them separately from strings. It can also sort version numbers, real numbers, mixed types and more, and comes with a shell command natsort that exposes this functionality in the command line.
pybind11 is a lightweight header-only library that exposes C++ types in Python and vice versa, mainly to create Python bindings of existing C++ code. Its goals and syntax are similar to the Boost.Python library: to minimize boilerplate code in traditional extension modules by inferring type information using compile-time introspection.
Botocore is a Python library that provides a low-level interface to the Amazon Web Services (AWS) API.
The minifier is based on the semantics of the YUI compressor, which itself is based on the rule list by Isaac Schlueter.
This Python library is a wrapper around tokenize from the Python standard library. It provides two additional tokens ESCAPED_NL and UNIMPORTANT_WS, and a Token data type. Use src_to_tokens and tokens_to_src to roundtrip.
This package provides an extension for the template engine Jinja2. It adds a 'now' tag providing a convenient access to the arrow.now() API from templates. A format string can be provided to control the output.
A library to identify devices (phones, tablets) and their capabilities by parsing (browser/HTTP) user agent strings.
Docutils is a modular system for processing documentation into useful formats, such as HTML, XML, and LaTeX. It uses reStructuredText, an easy to use markup language, for input.
This package provides tools for converting .rst files to other formats via commands such as rst2man, as well as supporting Python code.
Islenska is a Python package that embeds the vocabulary of the Database of Icelandic Morphology and offers various lookups and queries of the data. The database contains over 6.5 million entries, over 3.1 million unique word forms, and about 300,000 distinct lemmas.
This package provides utilities for multithreading in Click applications.
Miniboa is a simple, asynchronous, single-threaded, poll-based Telnet server.
This library provides an OrderedSet data type that works like a regular set, but remembers insertion order. It supports the full Python set interface.
This package contains operations on PyTrees (a tree made of container data structures in Python).
Imageio is a Python library that provides an easy interface to read and write a wide range of image data, including animated images, video, volumetric data, and scientific formats.
This package provides a text progress bar library for Python. This version only differs from the original progressbar package in that it uses relative package imports instead of absolute imports, which is necessary for the module to work under Python 3.3.
perfplot extends Python's timeit by testing snippets with input parameters (e.g., the size of an array) and plotting the results.