You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage python3-pynest2d-4.8.0-6.fc36.x86_64
Binding allowing libnest2d to be called from Python using NumPy.
RPMPackage python3-pynacl-1.5.0-1.lbn36.x86_64
PyNaCl is a Python binding to the Networking and Cryptography library, a crypto library with the stated goal of improving usability, security and speed. Python 3 version.
RPMPackage python3-pylons-sphinx-themes-1.0.13-1.lbn36.noarch
Pylons Sphinx Themes This repository is a Python package that contains Sphinx themes for Pylons related projects. This project is based on Pylons Sphinx Theme < (singular), but uses a package implementation instead of git submodules and manual steps.To use a theme in your Sphinx documentation, follow this guide. Edit your project's setup.py -- . Add pylons-sphinx-themes to your project's...
RPMPackage python3-pylons-sphinx-latesturl-0.2-1.lbn36.noarch
pylons_sphinx_latesturl README This package is a Sphinx extension: it adds a latest_url key to the Sphinx template namespace for use in for a versioned document sets.Please see docs/narr.rst for detailed documentation. pylons_sphinx_latesturl Changelog 0.2 (2016-02-18) -- When RTD is building json output the context is missing the file_suffix option but it seems safe to assume .html::...
RPMPackage python3-pylint-3.3.6-1.lbn36.noarch
Pylint is a Python source code analyzer which looks for programming errors, helps enforcing a coding standard and sniffs for some code smells (as defined in Martin Fowler's Refactoring book). Pylint can be seen as another PyChecker since nearly all tests you can do with PyChecker can also be done with Pylint. However, Pylint offers some more features, like checking length of lines of code, checking if variable names are well-formed according to your coding standard, or checking if declared interfaces are truly implemented, and much more. Additionally, it is possible to write plugins to add your own checks.
RPMPackage python3-pyjwt-2.10.1-3.lbn36.noarch
A Python implementation of RFC 7519 < Original implementation was written by @progrium <
RPMPackage python3-pyjsparser-2.7.1-1.lbn36.noarch
 
RPMPackage python3-pygraphviz-1.9-1.fc36.x86_64
PyGraphviz is a Python interface to the Graphviz graph layout and visualization package. With PyGraphviz you can create, edit, read, write, and draw graphs using Python to access the Graphviz graph data structure and layout algorithms. PyGraphviz is independent from NetworkX but provides a similar programming interface.
RPMPackage python3-pygments-github-lexers-0.0.5-1.lbn36.noarch
UNKNOWN
RPMPackage python3-pygments-2.18.0-2.lbn36.noarch
Pygments is a generic syntax highlighter suitable for use in code hosting, forums, wikis or other applications that need to prettify source code. Highlights are: * a wide range of over 500 languages and other text formats is supported * special attention is paid to details that increase highlighting quality * support for new languages and formats are added easily; most languages use a simple regex-based lexing mechanism * a number of output formats is available, among them HTML, RTF, LaTeX and ANSI sequences * it is usable as a command-line tool and as a library
RPMPackage python3-pyglet-1.5.23-1.fc36.noarch
This library provides an object-oriented programming interface for developing games and other visually-rich applications with Python. pyglet has virtually no external dependencies. For most applications and game requirements, pyglet needs nothing else besides Python, simplifying distribution and installation. It also handles multiple windows and fully aware of multi-monitor setups. pyglet might be seen as an alternative to PyGame.
RPMPackage python3-pygithub-2.3.0-1.lbn36.noarch
PyGitHub PyGitHub is a Python library to access the GitHub REST API. This library enables you to manage GitHub resources such as repositories, user profiles, and organizations in your Python applications. Install pip install PyGithub Simple Demo from github import Github from github import Auth auth = Auth.Token("access_token") g = Github(auth=auth) g = Github(base_url="https:/{hostname}/api/v3", auth=auth) for repo in g.get_user().get_repos(): print(repo.name) g.close() Documentation More information can be found on the PyGitHub documentation site. Development Contributing Long-term discussion and bug reports are maintained via GitHub Issues. Code review is done via GitHub Pull Requests. For more information read CONTRIBUTING.md. Main
RPMPackage python3-pygit2-1.7.1-3.fc36.x86_64
pygit2 is a set of Python bindings to the libgit2 library, which implements the core of Git. The python3-pygit2 package contains the Python 3 bindings.
RPMPackage python3-pyflakes-3.0.1-1.lbn36.noarch
Pyflakes A simple program which checks Python source files for errors.Pyflakes analyzes programs and detects various errors. It works by parsing the source file, not importing it, so it is safe to use on modules with side effects. It's also much faster.It is available on PyPI < and it supports all active versions of Python: 3.6+.Installation It can be installed with:: $ pip install --upgrade...
RPMPackage python3-pydot-1.4.2-1.fc36.noarch
An interface for creating both directed and non directed graphs from Python. Currently all attributes implemented in the Dot language are supported (up to Graphviz 2.16). Output can be inlined in Postscript into interactive scientific environments like TeXmacs, or output in any of the format's supported by the Graphviz tools dot, neato, twopi.
RPMPackage python3-pydocstyle-6.3.0-1.lbn36.noarch
pydocstyle - docstring style checker :target:
RPMPackage python3-pycurl-7.45.1-1.fc36.x86_64
PycURL is a Python interface to libcurl. PycURL can be used to fetch objects identified by a URL from a Python program, similar to the urllib Python module. PycURL is mature, very fast, and supports a lot of features. Python 3 version.
RPMPackage python3-pycryptodomex-selftest-3.15.0-1.fc36.x86_64
PyCryptodome is a self-contained Python package of low-level cryptographic primitives. It's a fork of PyCrypto. It brings several enhancements with respect to the last official version of PyCrypto (2.6.1), for instance: * Authenticated encryption modes (GCM, CCM, EAX, SIV, OCB) * Accelerated AES on Intel platforms via AES-NI * Elliptic curves cryptography (NIST P-256 curve only) * Better and more compact API (nonce and iv attributes for ciphers, automatic generation of random nonces and IVs, simplified CTR cipher mode, and more) * SHA-3 (including SHAKE XOFs) and BLAKE2 hash algorithms * Salsa20 and ChaCha20 stream ciphers * scrypt and HKDF * Deterministic (EC)DSA * Password-protected PKCS#8 key containers * Shamir's Secret Sharing scheme * Random numbers get sourced directly from the OS (and not from a CSPRNG in userspace) * Cleaner RSA and DSA key generation (largely based on FIPS 186-4) * Major clean ups and simplification of the code base PyCryptodome is not a wrapper to a separate C library like OpenSSL. To the largest possible extent, algorithms are implemented in pure Python. Only the pieces that are extremely critical to performance (e.g. block ciphers) are implemented as C extensions. Note: all modules are installed under the Cryptodome package to avoid conflicts with the PyCrypto library. This package provides the PyCryptodome test suite module (Cryptodome.SelfTest).
RPMPackage python3-pycryptodomex-3.15.0-1.fc36.x86_64
PyCryptodome is a self-contained Python package of low-level cryptographic primitives. It's a fork of PyCrypto. It brings several enhancements with respect to the last official version of PyCrypto (2.6.1), for instance: * Authenticated encryption modes (GCM, CCM, EAX, SIV, OCB) * Accelerated AES on Intel platforms via AES-NI * Elliptic curves cryptography (NIST P-256 curve only) * Better and more compact API (nonce and iv attributes for ciphers, automatic generation of random nonces and IVs, simplified CTR cipher mode, and more) * SHA-3 (including SHAKE XOFs) and BLAKE2 hash algorithms * Salsa20 and ChaCha20 stream ciphers * scrypt and HKDF * Deterministic (EC)DSA * Password-protected PKCS#8 key containers * Shamir's Secret Sharing scheme * Random numbers get sourced directly from the OS (and not from a CSPRNG in userspace) * Cleaner RSA and DSA key generation (largely based on FIPS 186-4) * Major clean ups and simplification of the code base PyCryptodome is not a wrapper to a separate C library like OpenSSL. To the largest possible extent, algorithms are implemented in pure Python. Only the pieces that are extremely critical to performance (e.g. block ciphers) are implemented as C extensions. Note: all modules are installed under the Cryptodome package to avoid conflicts with the PyCrypto library.
RPMPackage python3-pycrypto-2.6.1-1.lbn36.x86_64
Python Cryptography Toolkit (pycrypto) ====================================== This is a collection of both secure hash functions (such as SHA256 and RIPEMD160), and various encryption algorithms (AES, DES, RSA, ElGamal, etc.). The package is structured to make adding new modules easy. This section is essentially complete, and the software interface will almost certainly not change in...