You are here: Home

Modified items

All recently modified items, latest first.
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-methodtools-0.4.7-2.lbn36.noarch
Expand functools features to methods, classmethods, staticmethods and even for (unofficial) hybrid methods. For now, methodtools only provides methodtools.lru_cache. Use methodtools module instead of functools module. Than it will work as you expected. from methodtools import lru_cache class A(object): @lru_cache() def cached_method(self, args): ... @lru_cache() # the order is important! @classmethod # always lru_cache on top of classmethod def cached_classmethod(self, args): ... @lru_cache() # the order is important! @staticmethod # always lru_cache on top of staticmethod def cached_staticmethod(self, args): ... @lru_cache() # just same as functools.lru_cache def cached_function(): ... Installation PyPI is the recommended w
RPMPackage python3-google-re2-20240702-21.lbn36.x86_64
A drop-in replacement for the re module. It uses RE2 under the hood, of course, so various PCRE features (e.g. backreferences, look-around assertions) are not supported. See https://github.com/google/re2/wiki/Syntax for the canonical reference, but known syntactic ”gotchas” relative to Python are: • PCRE supports \Z and \z; RE2 supports \z; Python supports \z, but calls it \Z. You must rewrite \Z to \z in pattern strings. Known differences between this module’s API and the re module’s API: • The error class does not provide any error information as attributes. • The Options class replaces the re module’s flags with RE2’s options as gettable/settable properties. Please see re2.h for their documentation. • The pattern string and the input string do not have to be the same type. Any str will be encoded to UTF-8. • The pattern string cannot be str if the options specify Latin-1 encoding.
RPMPackage python3-llvmlite-0.44.0-1.lbn36.x86_64
llvmlite is a project originally tailored for Numba‘s needs, using the following approach: • A small C wrapper around the parts of the LLVM C++ API we need that are not already exposed by the LLVM C API. • A ctypes Python wrapper around the C API. • A pure Python implementation of the subset of the LLVM IR builder that we need for Numba.
RPMPackage python3-geographiclib-2.0-1.lbn36.noarch
Python implementation of the geodesic routines in GeographicLibThis is a library to solve geodesic problems on an ellipsoid model of the earth.Licensed under the MIT/X11 License; see [LICENSE.txt]( algorithms are documented in* C. F. F. Karney, [Algorithms for geodesics]( J. Geodesy **87**(1), 43–55 (2013); [Addenda]( documentation for this package is in
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-sqlalchemy-utils-0.41.2-1.lbn36.noarch
Various utility functions and custom data types for SQLAlchemy.
RPMPackage python3-sqlalchemy-utils-0.41.2-1.lbn36.noarch
Various utility functions and custom data types for SQLAlchemy.
RPMPackage python3-sqlalchemy-redshift-0.8.14-1.lbn36.noarch
sqlalchemy-redshift Amazon Redshift dialect for SQLAlchemy. Installation The package is available on PyPI:: pip install sqlalchemy-redshift.. warning:: This dialect requires either redshift_connector or psycopg2 to work properly. It does not provide it as required, but relies on you to select the distribution you need: * psycopg2 - standard distribution of psycopg2, requires compilation so few...
RPMPackage python3-sqlalchemy-jsonfield-1.0.0-1.lbn36.noarch
SQLAlchemy-JSONField :target:
RPMPackage python3-sqlalchemy-filters-0.12.0-6.fc36.noarch
Filter, sort and paginate SQLAlchemy query objects. Ideal for exposing these actions over a REST API.
RPMPackage python3-sqlalchemy-drill-1.1.5-1.lbn36.noarch
Apache Drill dialect for SQLAlchemy.The primary purpose of this is to have a working dialect for Apache Drill that can be used with Apache Superset., a working, robust dialect for Drill serves other purposes as well, but most of the iterative planning for this REPO will be based on working with Superset. Other changes will gladly be incorporated, as long as it doesn't hurt Superset...
RPMPackage python3-sqlalchemy-collectd-0.0.7-3.fc36.noarch
sqlalchemy-collectd Send statistics on SQLAlchemy <>_ connection and transaction metrics used by Python applications to the collectd < service.sqlalchemy-collectd works as a SQLAlchemy plugin invoked via the database URL, so can be used in any SQLAlchemy application (1.1 or greater) that accepts arbitrary connection URLs. The plugin is loaded using setuptools entrypoints and no code changes...
RPMPackage python3-sqlalchemy-bigquery-1.6.1-1.lbn36.noarch
SQLAlchemy Dialect for BigQuery |GA| |pypi| |versions|SQLALchemy Dialects_- Dialect Documentation_ - Product Documentation_.. |G .. |pyp .. |version .. _SQLAlchemy Dialects:
RPMPackage python3-sqlalchemy-bigquery-1.6.1-1.lbn36.noarch
SQLAlchemy Dialect for BigQuery |GA| |pypi| |versions|SQLALchemy Dialects_- Dialect Documentation_ - Product Documentation_.. |G .. |pyp .. |version .. _SQLAlchemy Dialects:
RPMPackage python3-sqlalchemy+pymysql-2.0.40-4.lbn36.x86_64
This is a metapackage bringing in pymysql extras requires for python3-sqlalchemy. It makes sure the dependencies are installed.