-
python3-rpm-spec-0.11-1.lbn36.noarch
[](https://github.com/bkircher/python-rpm-
spec/actions)
[](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...
Located in
LBN
/
…
/
Core Linux
/
BastionLinux 36
-
python3-rpmautospec-0.7.3-2.lbn36.noarch
A package and CLI tool to generate RPM release fields and changelogs.
Located in
LBN
/
…
/
Core Linux
/
BastionLinux 36
-
python3-rpmfile-2.0.0-1.lbn36.noarch
rpmfile[ 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
Located in
LBN
/
…
/
Core Linux
/
BastionLinux 36
-
python3-rrdtool-1.7.2-23.fc36.x86_64
Python RRDtool bindings.
Located in
LBN
/
…
/
Core Linux
/
BastionLinux 36
-
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.
Located in
LBN
/
…
/
Core Linux
/
BastionLinux 36
-
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)
Located in
LBN
/
…
/
Core Linux
/
BastionLinux 36
-
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
Located in
LBN
/
…
/
Core Linux
/
BastionLinux 36
-
python3-ruamel-yaml-clib-0.2.7-1.lbn36.x86_64
It is the C based reader/scanner and emitter for ruamel.yaml.
Located in
LBN
/
…
/
Core Linux
/
BastionLinux 36
-
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...
Located in
LBN
/
…
/
Core Linux
/
BastionLinux 36