You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage python3-pyquery-1.4.3-6.fc36.noarch
python3-pyquery allows you to make jQuery queries on XML documents. The API is as much as possible the similar to jQuery. python-pyquery uses lxml for fast XML and HTML manipulation.
RPMPackage python3-pyqt5-sip-12.9.0-3.fc36.x86_64
The sip extension module provides support for the PyQt5 package.
RPMPackage python3-pypubsub-4.0.3-13.fc36.noarch
PyPubSub provides a publish - subscribe API that facilitates the development of event-based / message-based applications. PyPubSub supports sending and receiving messages between objects of an application. It is centered on the notion of a topic; senders publish messages of a given topic, and listeners subscribe to messages of a given topic. The package also supports a variety of advanced features that facilitate debugging and maintaining pypubsub topics and messages in larger applications.
RPMPackage python3-pyparted-3.12.0-1.fc36.x86_64
Python module for the parted library. It is used for manipulating partition tables. This package provides Python 3 bindings for parted.
RPMPackage python3-pyparsing-3.2.0-1.lbn36.noarch
PyParsing -- A Python Parsing Module |Build Status|Introduction The pyparsing module is an alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions. The pyparsing module provides a library of classes that client code uses to construct the grammar directly in Python code.*[Since first writing this description of...
RPMPackage python3-pyparsing-3.2.0-1.lbn36.noarch
PyParsing -- A Python Parsing Module |Build Status|Introduction The pyparsing module is an alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions. The pyparsing module provides a library of classes that client code uses to construct the grammar directly in Python code.*[Since first writing this description of...
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...