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 Python module provides an abstraction layer for interacting with constraint solvers. Specifically, it is intended to be used with SMT solvers and is built on top of the Z3 solver.
This package provides a collection of library stubs for Python, with static types.
This package provides a microlibrary that defines a JSON type alias for Python.
This package provides a build hook plugin for Hatch that compiles bsmulti-lingual messages with GNU gettext's tools msgfmt.
A Flake8 plugin that checks for the line continuation style to be in the preferred method according to PEP-8, specifically:
The preferred way of wrapping long lines is by using Python's implied line continuation inside parentheses, brackets and braces. Long lines can be broken over multiple lines by wrapping expressions in parentheses. These should be used in preference to using a backslash for line continuation.
Multidict is dict-like collection of key-value pairs where key might be occurred more than once in the container.
FontTools/TTX is a library to manipulate font files from Python. It supports reading and writing of TrueType/OpenType fonts, reading and writing of AFM files, reading (and partially writing) of PS Type 1 fonts. The package also contains a tool called “TTX” which converts TrueType/OpenType fonts to and from an XML-based format.
The uncertainties package transparently handles calculations with numbers with uncertainties. It can also yield the derivatives of any expression.
This package provides a wrapper around NumPy and other array libraries to make them compatible with the Array API standard
This package provides a decorator to automatically detect mismatch when overriding a method.
The lockfile package exports a LockFile class which provides a simple API for locking files.
This package provides a Python parser for Pubmed Open-Access Subset and MEDLINE XML repository.
Blinker provides a fast dispatching system that allows any number of interested parties to subscribe to events, or "signals".
This package provides a collection of miscellaneous utility functions and classes.
The Python Language Server pylsp is an implementation of the Python 3 language specification for the Language Server Protocol (LSP). This tool is used in text editing environments to provide a complete and integrated feature-set for programming Python effectively.
python-forex-python can be used to manipulate foreign exchange rates and to operate currency conversions.
Features:
List all currency rates.
BitCoin price for all currencies.
Converting amount to BitCoins.
Get historical rates for any day since 1999.
Conversion rate for one currency(ex; USD to INR).
Convert amount from one currency to other.('USD 10$' to INR).
Currency symbols.
Currency names.
The pysol-cards python modules provide code to generate the initial deals of some PySol games.
This package provides a style checker for the Python Language Server (PLS).
This package provides Python interface to the OpenJPEG library which allows one to read and write JPEG 2000 files
This is a Python package for rendering rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal.
Statistic is a static site generator based on Markdown and Jinja2.
This package provides a Stream and Optional class.
Codespell fixes common misspellings in text files. It's designed primarily for checking misspelled words in source code, but it can be used with other files as well. It does not check for word membership in a complete dictionary, but instead looks for a set of common misspellings. Therefore it should catch errors like "adn", but it will not catch "adnasdfasdf". This also means it shouldn't generate false-positives when you use a niche term it doesn't know about.
This package provides loaders and dumpers for PyYAML. Currently, an OrderedDict loader/dumper is implemented, allowing to keep items order when loading resp. dumping a file from/to an OrderedDict (Python 3.8+: Also regular dicts are supported and are the default items to be loaded to. As of Python 3.7 preservation of insertion order is a language feature of regular dicts.) It was originally mirrored from yamlordereddict.