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.
Funtools is a minimal buy-in FITS library and utility package originally developed at the the High Energy Astrophysics Division of SAO. Although no longer actively supported at SAO, it is still widely used within the astronomical community, especially among X-ray astronomers.
The Funtools library provides simplified access to a wide array of file types: standard astronomical FITS images and binary tables, raw arrays and binary event lists, and even tables of ASCII column data. A sophisticated region filtering library (compatible with ds9) filters images and tables using Boolean operations between geometric shapes, support world coordinates, etc. Funtools also supports advanced capabilities such as optimized data searching using index files.
SPICE is an ancillary information system developed by NASA for planetary science missions. It enables the computation of geometric and event data required for analyzing and planning scientific observations obtained from spacecraft. In addition, it plays a crucial role in mission planning and executing various engineering functions necessary for successful mission completion.
Fitsverify is a computer program that rigorously checks whether a FITS data file conforms to the requirements defined in Version 3.0 of the FITS Standard document.
This package provides a plugin to fake subprocess for pytest. The plugin adds the fake_process fixture (and fp as an alias). It can be used it to register subprocess results so you won't need to rely on the real processes. The plugin hooks on the subprocess.Popen(), which is the base for other subprocess functions. That makes the subprocess.run(),subprocess.call(), subprocess.check_call() and subprocess.check_output() methods also functional.
Python asyncio code is usually written in the form of coroutines, which makes it slightly more difficult to test using normal testing tools. pytest-asyncio provides useful fixtures and markers to make testing async code easier.
The cinnamon-desktop package contains the libcinnamon-desktop library, as well as some desktop-wide documents.
B2 makes it easy to build C++ projects, everywhere. B2 has been the primary build system for the Boost C++ Libraries for many years.
Fakeredis is a pure-Python implementation of the redis-py Python client that simulates talking to a redis server. It was created for a single purpose: to write unit tests.
Setting up redis is not hard, but one often wants to write unit tests that don't talk to an external server such as redis. This module can be used as a reasonable substitute.
This package provides a Python interface to the Redis key-value store.
Dragonfly is a modern in-memory datastore, fully compatible with Redis and Memcached APIs. Dragonfly implements novel algorithms and data structures on top of a multi-threaded, shared-nothing architecture. As a result, Dragonfly reaches x25 performance compared to Redis and supports millions of QPS on a single instance.
This package provides VCGlib The VCG library is tailored to mostly manage triangular meshes: offers many capabilities for processing meshes, such as:
high quality quadric-error edge-collapse based simplfication
efficient spatial query structures (uniform grids, hashed grids, kdtree, etc)
advanced smoothing and fairing algorithms
computation of curvature
optimization of texture coordinates
Hausdorff distance computation
geodesic paths
mesh repairing capabilities
isosurface extraction and advancing front meshing algorithms
Poisson Disk sampling and other tools to sample point distributions over meshes
subdivision surfaces
MeshLab is a system for the processing and editing of large, unstructured, 3D triangular meshes. It is aimed to help the processing of the typical, not-so-small unstructured models arising in 3D scanning, providing a set of tools for editing, cleaning, healing, inspecting, rendering and converting this kind of meshes. These tools include MeshLab proper, a versatile program with a graphical user interface, and meshlabserver, a program that can perform mesh processing tasks in batch mode, without a GUI.
Package gojq provides the parser and the interpreter of gojq. Please refer to Usage as a library for introduction. It's fork of github.com/itchyny/gojq, see github.com/wader/gojq fq branc.
Package shlex provides a simple lexical analysis like Unix shell.
Package logfmt implements utilities to marshal and unmarshal data in the logfmt format. The logfmt format records key/value pairs in a way that balances readability for humans and simplicity of computer parsing. It is most commonly used as a more human friendly alternative to JSON for structured logging.
Package xurls extracts urls from plain text using regular expressions.
This package provides an expect-like interface to automate control of applications. It is unlike expect in that it does not spawn or manage process lifecycle. This package only focuses on expecting output and sending input through it's pseudoterminal.
Fork version of jessevdk/go-flags
This package provides the collection of as-it-is code snipets and micro libraries.
Package aurora implements ANSI-colors
Package errors provides errors that have stack-traces.
This package provides re-implemented Golang Generics map, filter, contains, find functionality.
Package orderedmap implements an ordered map, i.e. a map that also keeps track of the order in which keys were inserted.
It offers the following features:
optimal runtime performance (all operations are constant time)
optimal memory usage (only one copy of values, no unnecessary memory allocation)
allows iterating from newest or oldest keys indifferently, without memory copy, allowing to break the iteration, and in time linear to the number of keys iterated over rather than the total length of the ordered map
supports any generic types for both keys and values. If you're running go < 1.18, you can use version 1 that takes and returns generic interfaces instead of using generics
idiomatic API, akin to that of container/list
support for JSON and YAML marshalling
This package provides the mocking framework for the Golang. It integrates well with Golang's built-in testing package, but can be used in other contexts too.