You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage python3-proto-plus-1.25.0-1.lbn36.noarch
Proto Plus for Python |pypi| |release level| |docs| Beautiful, Pythonic protocol buffers.This is a wrapper around protocol buffers_. Protocol buffers is a specification format for APIs, such as those inside Google. This library provides protocol buffer message classes and objects that largely behave like native Python types... _protocol buffers: Documentation -Documentation_ is available on...
RPMPackage python3-prometheus-flask-exporter-0.23.1-1.lbn36.noarch
Prometheus Flask exporter[![PyPI]( [![PyPI]( [![PyPI - Downloads]( [![Coverage Status]( [![Code Climate](
RPMPackage python3-prometheus-client-0.20.0-1.lbn36.noarch
See for documentation.
RPMPackage python3-prison-0.2.1-1.lbn36.noarch
 
RPMPackage python3-pretend-1.0.9-2.fc36.noarch
Pretend is a library to make stubbing with Python easier.
RPMPackage python3-presto-python-client-0.8.4-1.lbn36.noarch
Client for Presto (), a distributed SQL engine for interactive and batch big data processing. Provides a low-level client and a DBAPI 2.0 implementation.
RPMPackage python3-poyo-0.5.0-7.fc36.noarch
A lightweight YAML Parser for Python Please note that Poyo supports only a chosen subset of the YAML format. It can only read but not write and is not compatible with JSON. Poyo does not allow deserialization of arbitrary Python objects. Supported types are str, bool, int, float, NoneType as well as dict and list values. Please see the examples below to get an idea of what Poyo understands.
RPMPackage python3-portray-1.7.0-1.lbn36.noarch
[![portray - Your Project with Great Documentation.]( _________________[![PyPI version]( [![Test Status]( [![Lint Status]( [![codecov](
RPMPackage python3-poppler-qt5-21.3.0-1.fc36.x86_64
Python 3 bindings for the Poppler PDF rendering library. It is needed to run programs written in Python 3 and using Poppler set.
RPMPackage python3-polib-1.1.1-4.fc36.noarch
polib allows you to manipulate, create, modify gettext files (pot, po and mo files). You can load existing files, iterate through it's entries, add, modify entries, comments or metadata, etc... or create new po files from scratch. polib provides a simple and pythonic API, exporting only three convenience functions 'pofile', 'mofile' and 'detect_encoding', and the 4 core classes: POFile, MOFile, POEntry and MOEntry for creating new files/entries.
RPMPackage python3-pockets-0.9.1-1.lbn36.noarch
Pockets full of useful Python tools! *Let me check my pockets...* -The Pockets library pulls together many of the Python helper functions I've found useful over the years.If you've worked on a project that exports an API and accesses a data store, you've probably seen some code that looks like this:: Receive a data type with underscores from some API data_type 'user_preference' Convert...
RPMPackage python3-plumbum-1.8.0-1.lbn36.noarch
.. image::
RPMPackage python3-pinotdb-5.1.0-1.lbn36.noarch
Python DB-API and SQLAlchemy dialect for Pinot This module allows accessing Pinot via its SQL API. Current supported Pinot version: 1.1.0. Usage Using the DB API to query Pinot Broker directly: from pinotdb import connect conn = connect(host='localhost', port=8000, path='/query/sql', scheme='http') curs = conn.cursor() curs.execute(""" SELECT place, CAST(REGEXP_EXTRACT(place, '(.*),', 1) AS FLOAT) AS lat,       CAST(REGEXP_EXTRACT(place, ',(.*)', 1) AS FLOAT) AS lon FROM places LIMIT 10 """) for row in curs: print(row) For HTTPS: from pinotdb import connect conn = connect(host='localhost', port=443, path='/query/sql', scheme='https') curs = conn.cursor() curs.execute(""" SELECT place, CAST(REGEXP_EXTRACT(place, '(.*),', 1) AS FLOAT) AS lat,       CAST(REGEXP_EXTRACT(place, ',(.*)', 1) AS FLOAT) AS lon FROM places LIMIT 10 ""
RPMPackage python3-pendulum-3.0.0-1.lbn36.x86_64
Unlike other datetime libraries for Python, Pendulum is a drop-in replacement for the standard datetime class (it inherits from it), so, basically, you can replace all your datetime instances by DateTime instances in you code. It also removes the notion of naive datetimes: each Pendulum instance is timezone-aware and by default in UTC for ease of use.
RPMPackage python3-oss2-2.18.5-1.lbn36.noarch
Alibaba Cloud OSS SDK for Python README of Chinese < Alibaba Cloud Object Storage Python SDK 2.x. This version is not compatible with the previous version (Version 0.x). The package name is oss2 to avoid conflict with previous versions.
RPMPackage python3-oscrypto-1.3.0-1.lbn36.noarch
oscryptoA compilation-free, always up-to-date encryption library for Python that works on Windows, OS X, Linux and BSD. Supports the following versions of Python: 2.6, 2.7, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10 and pypy. - [Supported Operating Systems](supported-operationg-systems) - [Features](features) - [Why Another Python Crypto Library?](why-another-python- crypto-library) -...
RPMPackage python3-osbuild-64-1.fc36.noarch
A build system for OS images
RPMPackage python3-orionutils-0.1.7-1.lbn36.noarch
orion-utilsorionutils provides collection generation for testing Galaxy and related projects. ReleasingTo release a new version of orion-utils, follow these steps:1. Change the version in setup.py 2. Generate a distribution of the new version: python setup.py sdist 3. Upload to PyPI twine upload dist/orionutils-*.tar.gzYou must have PyPI credentials for an account with upload permissions.
RPMPackage python3-ordered-set-4.1.0-14.lbn36.noarch
An OrderedSet is a custom MutableSet that remembers its order, so that every entry has an index that can be looked up. Python 3 version.
RPMPackage python3-oracledb-2.2.1-1.lbn36.x86_64
The python-oracledb driver is a Python programming language extension module allowing Python programs to connect to Oracle Database. Python-oracledb is the new name for Oracle's popular cx_Oracle driver.