You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage python3-rx-1.6.1-1.lbn36.noarch
is a library for composing asynchronous and event-based programs using observable collections and LINQ-style query operators in Python.
RPMPackage python3-rwproperty-1.0-1.lbn36.noarch
Read & write properties :Author: Philipp von Weitershausen :Email: philikon@philikon.de :License: Zope Public License, v2.1Motivation -Using method decorators and descriptors like property, we can easily create computed attributes: >>> class JamesBrown(object): ... @property ... def feel(self): ... return self._feelAn attribute like this cannot be written, though. You would have to do...
RPMPackage python3-ruamel-yaml-clib-0.2.7-1.lbn36.x86_64
It is the C based reader/scanner and emitter for ruamel.yaml.
RPMPackage python3-ruamel-yaml-0.17.21-1.lbn36.x86_64
ruamel.yaml is a YAML 1.2 loader/dumper package for Python. It is a derivative of Kirill Simonov’s PyYAML 3.11
RPMPackage python3-rtree-0.9.7-4.fc36.noarch
Rtree is a ctypes Python wrapper of the spatialindex library, that provides a number of advanced spatial indexing features for the spatially curious Python user. These features include: -Nearest neighbor search -Intersection search -Multi-dimensional indexes -Clustered indexes (store Python pickles directly with index entries) -Bulk loading -Deletion -Disk serialization -Custom storage implementation (to implement spatial indexing in ZODB, for example)
RPMPackage python3-rsa-4.9-6.lbn36.noarch
Python-RSA is a pure-Python RSA implementation. It supports encryption and decryption, signing and verifying signatures, and key generation according to PKCS#1 version 1.5. It can be used as a Python library as well as on the command-line.
RPMPackage python3-rrdtool-1.7.2-23.fc36.x86_64
Python RRDtool bindings.
RPMPackage python3-rq-1.16.2-1.lbn36.noarch
RQ (Redis Queue) is a simple Python library for queueing jobs and processing them in the background with workers. It is backed by Redis and it is designed to have a low barrier to entry. It should be integrated in your web stack easily. RQ requires Redis >= 3.0.0. Full documentation can be found here. Support RQ If you find RQ useful, please consider supporting this project via Tidelift. Getting started First, run a Redis server, of course: $ redis-server To put jobs on queues, you don't have to do anything special, just define your typically lengthy or blocking function: import requests def count_words_at_url(url): """Just an example function that's called async.""" resp = requests.get(url) return len(resp.text.split()) You do use the excellent requests package, don't you? Then, create an RQ queue: from redis import Redis from rq import Queue queue = Queue(connection=Redis()) And enqueue the function call: from my_module import count_words_at_url job = queue.enq
RPMPackage python3-rpmfile-2.0.0-1.lbn36.noarch
rpmfile[![Build Status]( [![Actions Status]( [![PyPI version]( for inspecting RPM files in python. This module is modeled after the [tarfile]( module. Installconsole $ python -m pip install -U rpmfile If you want to use rpmfile with zstd compressed rpms, you'll need to install
RPMPackage python3-rpmautospec-0.7.3-2.lbn36.noarch
A package and CLI tool to generate RPM release fields and changelogs.
RPMPackage python3-rpm-spec-0.11-1.lbn36.noarch
[![pytest status](https://github.com/bkircher/python-rpm- spec/workflows/tests/badge.svg)](https://github.com/bkircher/python-rpm- spec/actions) [![PyPI version](https://badge.fury.io/py/python-rpm- spec.svg)](https://badge.fury.io/py/python-rpm-spec) python-rpm-spec is a Python library for parsing RPM spec files. *tl;dr* If you want to quickly parse a spec file on the...
RPMPackage python3-rpm-macros-3.13-3.lbn36.noarch
RPM macros for building Python 3 packages.
RPMPackage python3-rpm-generators-14-12.lbn36.noarch
Dependency generators for Python RPMs.
RPMPackage python3-rpm-4.19.94-1.lbn36.x86_64
The python3-rpm package contains a module that permits applications written in the Python programming language to use the interface supplied by RPM Package Manager libraries. This package should be installed if you want to develop Python 3 programs that will manipulate RPM packages and databases.
RPMPackage python3-routes-2.5.1-2.fc36.noarch
Routes is a Python re-implementation of the Rails routes system for mapping URL's to Controllers/Actions and generating URL's. Routes makes it easy to create pretty and concise URL's that are RESTful with little effort.
RPMPackage python3-roman-3.3-1.lbn36.noarch
Small helper library to convert arabic to roman numerals.
RPMPackage python3-robotsuite-2.2.1-1.lbn36.noarch
Python unittest test suite for Robot Framework This is an experimental package for wrapping Robot Framework test suites into Python unittest suites to make it possible to run Robot Framework tests as plone.testing_'s layered test suites:.. code:: python import unittest from plone.testing import layered from robotsuite import RobotTestSuite from my_package.testing import ACCEPTANCE_TESTING def...
RPMPackage python3-robotframework-seleniumlibrary-6.2.0-1.lbn36.noarch
SeleniumLibrary is a web testing library for Robot Framework that utilizes the Selenium tool internally. The project is hosted on GitHub and downloads can be found from PyPI. SeleniumLibrary works with Selenium 3 and 4.
RPMPackage python3-robotframework-selenium2screenshots-0.8.1-1.lbn36.noarch
Selenium2Screenshots-library for Robot Framework Read the docs for more detailed information.____ 0.8.1 (2018-03-27) - Fix issue where naive string conversion generated broken JavaScript on Python 2 [fixes 12] [Asko Soukka] 0.8.0 (2017-12-05) - Depend on newest versions of Robot Framework and Selenium2Library [tomgross] - Fix issue where keyword Capture and crop page screenshot when bounding...
RPMPackage python3-robotframework-selenium2library-3.0.0-1.lbn36.noarch
Selenium2Library Selenium2Library is a web testing library for Robot Framework_ that uses the Selenium_ tool internally. The project is hosted on GitHub_ and downloads can be found from PyPI_.Starting from version 3.0, Selenium2Library is renamed to SeleniumLibrary_ and this project exists mainly to help with transitioning.Versions Selenium2Library 3.0 and newer extend the new SeleniumLibrary_...