-
python3-yapsy-1.11.223-1.lbn19.noarch
Yapsy’s main purpose is to offer a way to easily design a plugin system in Python3, and motivated by the fact that many other Python plugin system are either too complicated for a basic use or depend on a lot of libraries. Yapsy only depends on Python’s standard library.
Located in
LBN
/
…
/
Core Linux
/
BastionLinux 19
-
python3-yarg-0.1.9-1.lbn36.noarch
yarg(1) -- A semi hard Cornish cheese, also queries PyPI .. image::
Located in
LBN
/
…
/
Core Linux
/
BastionLinux 36
-
python3-yarl-1.18.3-1.lbn36.x86_64
The module provides handy URL class for URL parsing and changing.
Located in
LBN
/
…
/
Core Linux
/
BastionLinux 36
-
python3-yaspin-2.2.0-1.lbn36.noarch
yaspin: **Y**\ et **A**\ nother Terminal **Spin**\ ner for Python |Coverage|
|pypi| |black-fmt||Versions| |Wheel| |Examples||DownloadsTot| |DownloadsW|
Yaspin provides a full-featured terminal spinner to show the progress during
long-hanging operations. It is easy to integrate into existing codebase by
using it as a context manager_ or as a function decorator_:.. code:: python
import time
Located in
LBN
/
…
/
Core Linux
/
BastionLinux 36
-
python3-ydb-3.21.0-1.lbn36.noarch
ydb
Located in
LBN
/
…
/
Data Science
/
BastionLinux 36
-
python3-ydb-dbapi-0.1.11-1.lbn36.noarch
YDB Python DBAPI
Introduction
Python DBAPI to YDB, which provides both sync and async drivers and complies with PEP249.
Installation
pip install ydb-dbapi
Usage
To establish a new DBAPI connection you should provide host, port and database:
import ydb_dbapi
connection = ydb_dbapi.connect(
host="localhost", port="2136", database="/local"
) # sync connection
async_connection = await ydb_dbapi.async_connect(
host="localhost", port="2136", database="/local"
) # async connection
Usage of connection:
with connection.cursor() as cursor:
cursor.execute("SELECT id, val FROM table")
row = cursor.fetchone()
rows = cursor.fetchmany(size=5)
rows = cursor.fetchall()
Usage of async connection:
async with async_connection.cursor() as cursor:
await cursor.execute("SELECT id, val FROM table")
row = await cursor.fetchone()
rows = await cursor.fetchmany(size=5)
rows = await cursor.fetchall()
Located in
LBN
/
…
/
Data Science
/
BastionLinux 36
-
python3-yui-4.2.16-3.fc36.x86_64
This package provides Python 3 language bindings to access functions of libyui,
the YaST User Interface engine that provides the abstraction from graphical
user interfaces (Qt, Gtk) and text based user interfaces (ncurses).
Located in
LBN
/
…
/
Core Linux
/
BastionLinux 36
-
python3-z3c-autoinclude-0.4.1-1.lbn36.noarch
This package adds two new ZCML directives to automatically detect ZCML files to
include: "includeDependencies" and "includePlugins".When you want to include a
Zope-based package in your application, you have to repeat yourself in two
places: you have to add the package itself (in a setup.py, buildout, etc) and
you also have to include its ZCML with an <include> directive or a package-
includes...
Located in
LBN
/
…
/
Plone 5
/
BastionLinux 36
-
python3-z3c-autoinclude-0.4.1-1.lbn36.noarch
This package adds two new ZCML directives to automatically detect ZCML files to
include: "includeDependencies" and "includePlugins".When you want to include a
Zope-based package in your application, you have to repeat yourself in two
places: you have to add the package itself (in a setup.py, buildout, etc) and
you also have to include its ZCML with an <include> directive or a package-
includes...
Located in
LBN
/
…
/
Business
/
BastionLinux 36
-
python3-z3c-batching-2.2-1.lbn36.noarch
This package provides simple sequence batching. Detailed Documentation ..
contents::Simple Batching This module implements a simple batching mechanism
that allows you to split a large sequence into smaller batches. Let's start by
creating a simple list, which will be our full sequence:Batch on empty root:
>>> from z3c.batching.batch import Batch >>> batch Batch([], size3) >>>
len(batch) >>>...
Located in
LBN
/
…
/
Plone 5
/
BastionLinux 36