You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage python3-pandas+feather-2.2.3-1.lbn36.x86_64
This is a metapackage bringing in feather extras requires for python3-pandas. It makes sure the dependencies are installed.
RPMPackage python3-pandas+excel-2.2.3-1.lbn36.x86_64
This is a metapackage bringing in excel extras requires for python3-pandas. It makes sure the dependencies are installed.
RPMPackage python3-pandas+consortium-standard-2.2.3-1.lbn36.x86_64
This is a metapackage bringing in consortium-standard extras requires for python3-pandas. It makes sure the dependencies are installed.
RPMPackage python3-pandas+computation-2.2.3-1.lbn36.x86_64
This is a metapackage bringing in computation extras requires for python3-pandas. It makes sure the dependencies are installed.
RPMPackage python3-pandas+compression-2.2.3-1.lbn36.x86_64
This is a metapackage bringing in compression extras requires for python3-pandas. It makes sure the dependencies are installed.
RPMPackage python3-pandas+clipboard-2.2.3-1.lbn36.x86_64
This is a metapackage bringing in clipboard extras requires for python3-pandas. It makes sure the dependencies are installed.
RPMPackage python3-pandas+aws-2.2.3-1.lbn36.x86_64
This is a metapackage bringing in aws extras requires for python3-pandas. It makes sure the dependencies are installed.
RPMPackage python3-pandas+all-2.2.3-1.lbn36.x86_64
This is a metapackage bringing in all extras requires for python3-pandas. It makes sure the dependencies are installed.
RPMPackage python3-nh3-0.2.17-1.lbn36.x86_64
nh3 Python bindings to the ammonia HTML sanitization library. Installation pip install nh3 Usage See the documentation. Performance A quick benchmark showing that nh3 is about 20 times faster than the deprecated bleach package. Measured on a MacBook Air (M2, 2022). Python 3.11.0 (main, Oct 25 2022, 16:25:24) [Clang 14.0.0 (clang-1400.0.29.102)] Type 'copyright', 'credits' or 'license' for more information IPython 8.9.0 -- An enhanced Interactive Python. Type '?' for help. In [1]: import requests In [2]: import bleach In [3]: import nh3 In [4]: html = requests.get("https:/www.google.com").text In [5]: %timeit bleach.clean(html) 2.85 ms ± 22.8 µs per loop (mean ± std. dev. of 7 runs, 100 loops each) In [6]: %timeit nh3.clean(html) 138 µs ± 860 ns per loop (mean ± std. dev. of 7 runs, 10,000 loops each) License This work is released under the MIT license. A copy of the license is provided in the LICENSE file.
RPMPackage python3-holidays-0.39-1.lbn36.noarch
python-holidays A fast, efficient Python library for generating country- and subdivision- (e.g. state or province) specific sets of government-designated holidays on the fly. It aims to make determining whether a specific date is a holiday as fast and flexible as possible.:PyPI: .. image::
RPMPackage python3-hashids-1.3.1-1.lbn36.noarch
A python port of the JavaScript hashids implementation. It generates YouTube-like hashes from one or many numbers. Use hashids when you do not want to expose your database ids to the user. Website: http:/www.hashids.org/ Compatibility hashids is tested with python 2.7 and 3.5–3.8. PyPy and PyPy 3 work as well. Compatibility with the JavaScript implementation hashids/JavaScript hashids/Python v0.1.x v0.8.x v0.3.x+ v1.0.2+ The JavaScript implementation produces different hashes in versions 0.1.x and 0.3.x. For compatibility with the older 0.1.x version install hashids 0.8.4 from pip, otherwise the newest hashids. Installation Install the module from PyPI, e. g. with pip: pip install hashids pip install hashids==0.8.4 # for compatibility with hashids.js 0.1.x Run the tests The tests are written with pytest. The pytest module has to be installed. python -m pytest Usage Import the constructor from the hashids module: from hashids import Hashids hashids = Hashids() Basic Us
RPMPackage python3-geopy-2.3.0-1.lbn36.noarch
geopy is a Python client for several popular geocoding web services.geopy makes it easy for Python developers to locate the coordinates of addresses, cities, countries, and landmarks across the globe using
RPMPackage python3-geohash-0.8.5-1.lbn36.x86_64
* python-geohash python-geohash is a fast, accurate python geohashing library. ** History python-geohash 0.8 introduced uint64 representation. python-geohash 0.7.1 starts supporting python3k. python-geohash 0.3 can create C extension. If you want to use python-geohash without C extension, simply copy geohash.py into your system. geohash.py will work fine without C extension. **...
RPMPackage python3-click-option-group-0.5.6-1.lbn36.noarch
click-option-group is a Click-extension package that adds option groups missing in Click.
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-connexion+flask-2.14.2-4.lbn36.noarch
This is a metapackage bringing in flask extras requires for python3-connexion. It makes sure the dependencies are installed.
RPMPackage python3-connexion-2.14.2-4.lbn36.noarch
Connexion is a modern Python web framework that makes spec-first and api-first development easy. You describe your API in an OpenAPI (or Swagger) specification with as much detail as you want and Connexion will guarantee that it works as you specified. It works either standalone, or in combination with any ASGI or WSGI-compatible framework!
RPMPackage python3-apache-airflow-providers-common-compat-1.5.0-1.lbn36.noarch
apache-airflow-providers-common-compat