This package provides a version of dict that keeps keys in insertion resp. sorted order.
repo2docker
fetches a git repository and builds a container image based on the configuration files found in the repository.
django-cors-headers
is a Django application for handling the server headers required for Cross-Origin Resource Sharing (CORS).
lazr.authentication implements various HTTP authentication schemes as simple pieces of WSGI middleware. Currently implemented are HTTP Basic and section 7 of the OAuth specification.
This is a small Python module for parsing Pip requirement files. The goal of the project is to parse everything in the Pip requirement file format spec.
Python-setuptools-markdown is a deprecated package that is required by python-miditime. Instead of using this, you should use the built-in functionality of setuptools and PyPI.
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.
Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers, and related algorithms. It provides an elegant API based on "expression templates". It is versatile: it supports all matrix sizes, all standard numeric types, various matrix decompositions and geometry features, and more.
(guix-science-nonfree packages machine-learning)
PyTorch is a Python package that provides two high-level features:
tensor computation (like NumPy) with strong GPU acceleration;
deep neural networks (DNNs) built on a tape-based autograd system.
You can reuse Python packages such as NumPy, SciPy, and Cython to extend PyTorch when needed.
Note: currently this package does not provide GPU support.
(guix-science-nonfree packages machine-learning)
PyTorch is a Python package that provides two high-level features:
tensor computation (like NumPy) with strong GPU acceleration;
deep neural networks (DNNs) built on a tape-based autograd system.
You can reuse Python packages such as NumPy, SciPy, and Cython to extend PyTorch when needed.
Note: currently this package does not provide GPU support.
(guix-science-nonfree packages machine-learning)
PyTorch is a Python package that provides two high-level features:
tensor computation (like NumPy) with strong GPU acceleration;
deep neural networks (DNNs) built on a tape-based autograd system.
You can reuse Python packages such as NumPy, SciPy, and Cython to extend PyTorch when needed.
Note: currently this package does not provide GPU support.
importlib_metadata
is a library which provides an API for accessing an installed Python package's metadata, such as its entry points or its top-level name. This functionality intends to replace most uses of pkg_resources
entry point API and metadata API. Along with importlib.resources
in Python 3.7 and newer, this can eliminate the need to use the older and less efficient pkg_resources
package.
This package provides a Python library intended for use in automated tests. One difficulty when testing software is that the code under test might need to read or write to files in the local file system. If the file system is not set up in just the right way, it might cause a spurious error during the test. The pyfakefs library provides a solution to problems like this by mocking file system interactions. In other words, it arranges for the code under test to interact with a fake file system instead of the real file system. The code under test requires no modification to work with pyfakefs.
The goal of pathlib2 is to provide a backport of standard pathlib module which tracks the standard library module, so all the newest features of the standard pathlib can be used also on older Python versions.
Pathlib offers a set of classes to handle file system paths. It offers the following advantages over using string objects:
No more cumbersome use of os and os.path functions. Everything can be done easily through operators, attribute accesses, and method calls.
Embodies the semantics of different path types. For example, comparing Windows paths ignores casing.
Well-defined semantics, eliminating any inconsistencies or ambiguities (forward vs. backward slashes, etc.).
Extra Pydantic types.
Browser resources implementation for Zope.
Software Heritage Mercurial Loader
Core component suite for Dash.
Vanilla HTML components for Dash.
Core component suite for Dash
Vanilla HTML components for Dash.
Deferring loading of JS files until after React loads.
A Lexer for Pygments, following what could be a standardized pseudocode.
This package provides an implementation of importlib.resources
for older versions of Python.