You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage python3-ipykernel-6.25.2-1.lbn36.noarch
IPython Kernel for Jupyter This package provides the IPython kernel for Jupyter. Installation from source git clone cd ipykernel pip install -e ".[test]" After that, all normal ipython commands will use this newly-installed version of the kernel. Running tests Follow the instructions from Installation from source. and then from the root directory pytest ipykernel Running tests with coverage pytest ipykernel -vv -s --cov ipykernel --cov-branch --cov-report term-missing:skip-covered --durations 10 About the IPython Development Team The IPython Development Team is the set of all contributors to the IPython project. This includes all of the IPython subprojects. The core team that coordinates development on GitHub can be found here: https:/github.com/ipython/. Our Copyright Policy IPython uses a shared copyright model. Each contributor maintains copyright over their contributions to IPython. But, it is important to note that these contributions are typically only changes to the reposi
RPMPackage python3-ipaddress-1.0.23-1.lbn36.noarch
Port of the 3.3+ ipaddress module to 2.6, 2.7, 3.2
RPMPackage python3-iocapture-0.1.2-1.lbn36.noarch
.. -*- restructuredtext -*-.. highlight:: python Capture stdout, stderr easily with iocapture.How to use With Python > 2.5 :: import iocapture with iocapture.capture() as captured: print("hello stdout") print(captured.stdout) >>> hello stdoutWith Python < 2.5 :: import iocapture captured iocapture.capture() captured.start() print("hello stdout") captured.close() print(captured.stdout) >>>...
RPMPackage python3-interlude-1.3.1-1.lbn36.noarch
Interlude - Interactive Doctests Provides an interactive shell aka console inside your doctest case.The console looks exact like in a doctest-case and you can copy and paste code from the shell into your doctest. It feels as you are in the test case itself. Its not pdb, it's a python shell.In your doctest you can invoke the shell at any point by calling:: >>> interact(locals()) To make your...
RPMPackage python3-iniconfig-1.1.1-6.fc36.noarch
iniconfig is a small and simple INI-file parser module having a unique set of features: * tested against Python2.4 across to Python3.2, Jython, PyPy * maintains order of sections and entries * supports multi-line values with or without line-continuations * supports "#" comments everywhere * raises errors with proper line-numbers * no bells and whistles like automatic substitutions * iniconfig raises an Error if two sections have the same name.
RPMPackage python3-inflection-0.5.1-5.fc36.noarch
Inflection is a string transformation library. It singularizes and pluralizes English words, and transforms strings from CamelCase to underscored string. Inflection is a port of Ruby on Rails’ inflector to Python. Python 3 version.
RPMPackage python3-incremental-24.7.2-1.lbn36.noarch
Incremental is a small library that versions your Python projects.
RPMPackage python3-imsvdex-1.2-1.lbn36.noarch
IMSVDEX API to access and modify XML files in the IMS Vocabulary Definition Exchange The IMS Vocabulary Definition Exchange (VDEX) specification defines a grammar for the exchange of value lists of various classes: collections often denoted "vocabulary". Specifically, VDEX defines a grammar for the exchange of simple machine-readable lists of values, or terms, together with information that...
RPMPackage python3-imapclient-2.3.1-1.lbn36.noarch
IMAPClient is an easy-to-use, Pythonic and complete IMAP client library.Features: * Arguments and return values are natural Python types. * IMAP server responses are fully parsed and readily usable. * IMAP unique message IDs (UIDs) are handled transparently. * Internationalised mailbox names are transparently handled. * Time zones are correctly handled. * Convenience methods are provided for...
RPMPackage python3-imagesize-1.3.0-1.lbn36.noarch
It parses image files' header and return image size.* PNG* JPEG2000* TIFF* NetpbmThis is a pure Python library.
RPMPackage python3-imageio-2.37.0-1.lbn36.noarch
Imageio is a Python library that provides an easy interface to read and write a wide range of image data, including animated images, volumetric data, and scientific formats.
RPMPackage python3-ifaddr-0.1.7-6.fc36.noarch
ifaddr is a small Python library that allows you to find all the IP addresses of the computer. Python 3 version.
RPMPackage python3-idna-3.7-2.lbn36.noarch
A library to support the Internationalised Domain Names in Applications (IDNA) protocol as specified in RFC 5891 <http://tools.ietf.org/html/rfc5891>. This version of the protocol is often referred to as "IDNA2008" and can produce different results from the earlier standard from 2003. The library is also intended to act as a suitable drop-in replacement for the "encodings.idna" module that comes with the Python standard library but currently only supports the older 2003 specification.
RPMPackage python3-hypothesis+django-6.99.13-1.lbn36.noarch
This is a metapackage bringing in django extras requires for python3-hypothesis. It makes sure the dependencies are installed.
RPMPackage python3-humanize-4.12.1-1.lbn36.noarch
This modest package contains various common humanization utilities, like turning a number into a fuzzy human readable duration ('3 minutes ago') or into a human readable size or throughput.
RPMPackage python3-httplib2-0.21.0-1.lbn36.noarch
A comprehensive HTTP client library, httplib2 supports many features left out of other HTTP libraries.**HTTP and HTTPS** HTTPS support is only available if the socket module was compiled with SSL support. **Keep-Alive** Supports HTTP 1.1 Keep-Alive, keeping the socket open and performing multiple requests over the same connection if possible. **Authentication** The following three types of...
RPMPackage python3-html5lib-1.1-24.lbn36.noarch
A python based HTML parser/tokenizer based on the WHATWG HTML5 specification for maximum compatibility with major desktop web browsers.
RPMPackage python3-hivex-1.3.21-6.fc36.x86_64
python3-hivex contains Python 3 bindings for hivex.
RPMPackage python3-hawkey-0.73.4-1.lbn36.x86_64
Python 3 bindings for the hawkey library.
RPMPackage python3-gunicorn-23.0.0-1.lbn36.noarch
Gunicorn Gunicorn ‘Green Unicorn’ is a Python WSGI HTTP Server for UNIX. It’s a pre-fork worker model ported from Ruby’s Unicorn project. The Gunicorn server is broadly compatible with various web frameworks, simply implemented, light on server resource usage, and fairly speedy. Feel free to join us in #gunicorn on Libera.chat. Documentation The documentation is hosted at https:/docs.gunicorn.org. Installation Gunicorn requires Python 3.x >= 3.7. Install from PyPI: $ pip install gunicorn Usage Basic usage: $ gunicorn [OPTIONS] APP_MODULE Where APP_MODULE is of the pattern $(MODULE_NAME):$(VARIABLE_NAME). The module name can be a full dotted path. The variable name refers to a WSGI callable that should be found in the specified module. Example with test app: $ cd examples $ gunicorn --workers=2 test:app Contributing See our complete contributor’s guide for more details. License Gunicorn is released under the MIT License. See the LICENSE file for more details.