You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage python3-openai-1.77.0-1.lbn36.noarch
The OpenAI Python library provides convenient access to the OpenAI API from applications written in the Python language. It includes a pre-defined set of classes for API resources that initialize themselves dynamically from API responses which makes it compatible with a wide range of versions of the OpenAI API.
RPMPackage python3-ntlm-auth-1.5.0-2.lbn36.noarch
This package allows Python clients running on any operating system to provide NTLM authentication to a supporting server.
RPMPackage python3-grpc-google-iam-v1-0.14.1-1.lbn36.noarch
Python Client for IAM
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-portalocker-2.10.0-1.lbn36.noarch
Library to provide an easy API to file locking
RPMPackage python3-pinecone-plugin-inference-0.4.1-1.lbn36.noarch
Inference API plugin for python SDK Installation The plugin is distributed separately from the core python sdk. pip install pinecone-client pip install pinecone-plugin-inference Usage Interact with Pinecone's Inference APIs, e.g. create embeddings (currently in preview). Models currently supported: multilingual-e5-large Generate embeddings The following example highlights how to use an embedding model to generate embeddings for a list of documents and a user query, with the ultimate goal of retrieving similar documents from a Pinecone index. from pinecone import Pinecone pc = Pinecone(api_key="<<PINECONE_API_KEY>>") model = "multilingual-e5-large" text = [ "Turkey is a classic meat to eat at American Thanksgiving.", "Many people enjoy the beautiful mosques in Turkey.", ] text_embeddings = pc.inference.embed( model=model, inputs=text, parameters={"input_
RPMPackage python3-pinecone-client-4.1.2-1.lbn36.noarch
Pinecone Python Client The official Pinecone Python client. For more information, see the docs at https:/www.pinecone.io/docs/ Documentation If you are upgrading from a 2.2.x version of the client, check out the v3 Migration Guide. Reference Documentation Example code Many of the brief examples shown in this README are using very small vectors to keep the documentation concise, but most real world usage will involve much larger embedding vectors. To see some more realistic examples of how this client can be used, explore some of our many Jupyter notebooks in the examples repository. Prerequisites The Pinecone Python client is compatible with Python 3.8 and greater. Installation There are two flavors of the Pinecone python client. The default client installed from PyPI as pinecone-client has a minimal set of dependencies and interacts with Pinecone via HTTP requests. If you are aiming to maximimize performance, you can install additional gRPC dependencies to access an alternate clie
RPMPackage python3-immutabledict-4.2.1-2.lbn36.noarch
Implements the complete mapping interface and can be used as a drop-in replacement for dictionaries where immutability is desired. The immutabledict constructor mimics dict, and all of the expected interfaces (iter, len, repr, hash, getitem) are provided.
RPMPackage python3-hdfs+kerberos-2.7.3-1.lbn36.noarch
This is a metapackage bringing in kerberos extras requires for python3-hdfs. It makes sure the dependencies are installed.
RPMPackage python3-qdrant-client-1.10.1-1.lbn36.noarch
Python Client library for the Qdrant vector search engine. Python Qdrant Client Client library and SDK for the Qdrant vector search engine. Python Client API Documentation is available here. Library contains type definitions for all Qdrant API and allows to make both Sync and Async requests. Client allows calls for all Qdrant API methods directly. It also provides some additional helper methods for frequently required operations, e.g. initial collection uploading. See QuickStart for more details! Installation pip install qdrant-client Features Type hints for all API methods Local mode - use same API without running server REST and gRPC support Minimal dependencies Extensive Test Coverage Local mode Python client allows you to run same code in local mode without running Qdrant server. Simply initialize client like this: from qdrant_client import QdrantClient client = QdrantClient(":memory:") client = QdrantClient(path="path/to/db") # Persists changes to disk Local mo
RPMPackage python3-pymysql-1.1.1-1.lbn36.noarch
PyMySQL This package contains a pure-Python MySQL client library, based on PEP249.
RPMPackage python3-pymssql-2.3.0-3.lbn36.x86_64
A simple database interface for Python that builds on top of FreeTDS to provide a Python DB-API (PEP-249) interface to Microsoft SQL Server.
RPMPackage python3-pykerberos-1.2.4-1.lbn36.x86_64
This Python package is a high-level wrapper for Kerberos (GSSAPI) operations. The goal is to avoid having to build a module that wraps the entire Kerberos.framework, and instead offer a limited set of functions that do what is needed for client/server Kerberos authentication based on <
RPMPackage python3-pyhive+presto-0.7.0-1.lbn36.noarch
This is a metapackage bringing in presto extras requires for python3-pyhive. It makes sure the dependencies are installed.
RPMPackage python3-pyhive+hive_pure_sasl-0.7.0-1.lbn36.noarch
This is a metapackage bringing in hive_pure_sasl extras requires for python3-pyhive. It makes sure the dependencies are installed.
RPMPackage python3-pyhive+hive-0.7.0-1.lbn36.noarch
This is a metapackage bringing in hive extras requires for python3-pyhive. It makes sure the dependencies are installed.
RPMPackage python3-pyhive-0.7.0-1.lbn36.noarch
PyHive is a collection of Python DB-API <and SQLAlchemy ierfaces for Presto and Hive
RPMPackage python3-py4j-0.10.9.7-1.lbn36.noarch
Py4J enables Python programs running in a Python interpreter to dynamically access Java objects in a Java Virtual Machine. Methods are called as if the Java objects resided in the Python interpreter and Java collections can be accessed through standard Python collection methods. Py4J also enables Java programs to call back Python objects. Py4J is distributed under the BSD license. This package is for usage with Python3 version 3.10 only.
RPMPackage python3-pss-1.45-1.lbn36.noarch
pssIntroduction: what is pss? --**pss** is a power-tool for searching inside source code files. **pss** searches recursively within a directory tree, knows which extensions and file names to search and which to ignore, automatically skips directories you wouldn't want to search in (for example .git or .svn), colors its output in a helpful way, and does much more.If you're familiar with the...
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.