You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage 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()
RPMPackage python3-ydb-3.21.0-1.lbn36.noarch
ydb
RPMPackage python3-xmlsec-1.3.14-1.lbn36.x86_64
Python bindings for the XML Security Library.
RPMPackage python3-validators-0.34.0-2.lbn36.noarch
Python has all kinds of data validation tools, but every one of them seems to require defining a schema or form. I wanted to create a simple validation library where validating a simple value does not require defining a form or a schema.
RPMPackage python3-weaviate-client-4.14.0-1.lbn36.noarch
A python native client for easy interaction with a Weaviate instance. The client is tested for python 3.8 and higher. Visit the official Weaviate website for more information about the Weaviate and how to use it in production. Articles Here are some articles on Weaviate: Semantic Search Queries Return More Informed Results Getting Started with Weaviate Python Library A sub-50ms neural search with DistilBERT and Weaviate Documentation Weaviate Python client overview. Weaviate documentation. Additional reference documentation Support Use our Forum for support or any other question. Use our Slack Channel for discussions or any other question. Use the weaviate tag on StackOverflow for questions. For bugs or problems, submit a GitHub issue. Contributing To contribute, read How to Contribute.
RPMPackage python3-xmltodict-0.13.0-4.lbn36.noarch
xmltodict is a Python module that makes working with XML feel like you are working with JSON. It's very fast (Expat-based) and has a streaming mode with a small memory footprint, suitable for big XML dumps like Discogs or Wikipedia.
RPMPackage python3-wtforms-sqlalchemy-0.4.1-1.lbn36.noarch
WTForms-SQLAlchemy WTForms-SQLAlchemy is a fork of the wtforms.ext.sqlalchemy package from WTForms. The package has been renamed to wtforms_sqlalchemy but otherwise should function the same as wtforms.ext.sqlalchemy did.to install:: pip install WTForms-SQLAlchemyAn example using Flask is included in examples/flask.
RPMPackage python3-wtforms-jsonschema2-0.7.0-1.lbn36.noarch
WTForms JSONSchema 2 [![Build status]( JSONSchema 2 is a converter to turn forms made with WTForms into a OrderedDict following the JSONSchema syntax.It was developed independently of [wtforms_jsonschema]( Main differences are that it is unit tested, adds support for validators and is easier to extend. That being said, not all fields that are supported by wtforms_jsonschema are supported by...
RPMPackage python3-wtforms-json-0.3.5-1.lbn36.noarch
WTForms-JSON Adds smart json support for WTForms. Useful for when using WTForms with RESTful
RPMPackage python3-wtforms-dateutil-0.1-1.lbn36.noarch
wtforms-dateutil WTForms integration for dateutil pip install wtforms-dateutil python from wtforms_dateutil import DateField, DateTimeField
RPMPackage python3-wtforms-components-0.11.0-1.lbn36.noarch
Additional fields, validators and widgets for WTForms.
RPMPackage python3-wtforms-alchemy-0.19.0-1.lbn36.noarch
WTForms-Alchemy Generates WTForms forms from SQLAlchemy models.
RPMPackage python3-wirerope-0.4.7-2.lbn36.noarch
The concepts: wirerope.rope.WireRope is a wrapper interface for python callable. Custom wirerope.wire.Wire class provides user-defined behavior. A subclass of this class is working similar to a decorator function body. A wire object is associated with a bound method. Rope is dispatching types. wirerope.rope.WireRope is the wrapper for callables. By wrapping a function with WireRope with a custom subclass of the wirerope.wire.Wire class, the wire object will be created by each function or bound method. Wire is the most important part. The given class will be instantiated and bound to each function or bound method - which fits the concept of instance cmethod of human. For example, when f is a free function or staticmethod, the wire also will be a single object. When f is a method or property, wires will be created for each method owner object self. When f is a classmethod, wires will be created for each method owner class cls. Yes, it will detect the owner and bound to it regardless of
RPMPackage python3-universal-pathlib-0.2.2-1.lbn36.noarch
Universal Pathlib Universal Pathlib is a python library that aims to extend Python's built-in pathlib.Path api to use a variety of backend filesystems using fsspec Installation Pypi python -m pip install universal_pathlib conda conda install -c conda-forge universal_pathlib Basic Usage >>> from upath import UPath >>> >>> s3path = UPath("s3:/test_bucket") / "example.txt" >>> s3path.name example.txt >>> s3path.stem example >>> s3path.suffix .txt >>> s3path.exists() True >>> s3path.read_text() 'Hello World' For more examples, see the example notebook here Currently supported filesystems (and schemes) file: Local filessystem memory: Ephemeral filesystem in RAM az:, adl:, abfs: and abfss: Azure Storage (requires adlfs to be installed) http: and https: HTTP(S)-based filesystem hdfs: Hadoop distributed filesystem gs: and gcs: Google Cloud Storage (requires gcsfs to be installed) s3: and s3a: AWS S3 (requires s3fs to be installed) webdav+http: and w
RPMPackage python3-wtforms+email-3.2.1-1.lbn36.noarch
This is a metapackage bringing in email extras requires for python3-wtforms. It makes sure the dependencies are installed.
RPMPackage python3-wtforms+email-3.2.1-1.lbn36.noarch
This is a metapackage bringing in email extras requires for python3-wtforms. It makes sure the dependencies are installed.
RPMPackage python3-wtforms-3.2.1-1.lbn36.noarch
With wtforms, your form field HTML can be generated for you. This allows you to maintain separation of code and presentation, and keep those messy parameters out of your python code.
RPMPackage python3-wtforms-3.2.1-1.lbn36.noarch
With wtforms, your form field HTML can be generated for you. This allows you to maintain separation of code and presentation, and keep those messy parameters out of your python code.
RPMPackage python3-wsgiutils-0.7.2-1.lbn36.noarch
WSGI Utils (Version 0.7.1) -- WSGI Utils are a package of standalone utility libraries that ease the development of simple WSGI programs. The functionality provided is limited at the moment, patches to add new features and address defects are most The following components are included please refer to the documentation for more details:wsgiServer - This module provides a very simple...
RPMPackage python3-tokenizers-0.15.1-1.lbn36.x86_64
Tokenizers Provides an implementation of today's most used tokenizers, with a focus on performance and versatility. Bindings over the Rust implementation. If you are interested in the High-level design, you can go check it there. Otherwise, let's dive in! Main features: Train new vocabularies and tokenize using 4 pre-made tokenizers (Bert WordPiece and the 3 most common BPE versions). Extremely fast (both training and tokenization), thanks to the Rust implementation. Takes less than 20 seconds to tokenize a GB of text on a server's CPU. Easy to use, but also extremely versatile. Designed for research and production. Normalization comes with alignments tracking. It's always possible to get the part of the original sentence that corresponds to a given token. Does all the pre-processing: Truncate, Pad, add the special tokens your model needs.