-
perl-Mail-Transport-Dbx-0.07-35.lbn25.x86_64
Mail::Transport::Dbx is a wrapper around libdbx to read Outlook Express
mailboxes (more commonly known as .dbx files).
Located in
LBN
/
…
/
Core Linux
/
BastionLinux 25
-
python-pip-wheel-22.3.1-2.lbn36.noarch
A Python wheel of pip to use with venv.
Located in
LBN
/
…
/
Core Linux
/
BastionLinux 36
-
python3-time-machine-2.13.0-1.lbn36.x86_64
time-machine :target:
Located in
LBN
/
…
/
Core Linux
/
BastionLinux 36
-
python2-collective.newrelic-1.0.9-1.lbn25.noarch
Introduction This package offers instrumentation for NewRelic ( ). Currently
the catalog-tool, transformchains and zope-events are instrumented. A transform
is included to support RUM (Real-User-Monitoring): it inserts small snippets of
javascript at the top and bottom of the rendered pages. RUM does not work in
the ZMI (Zope Management Interface).
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 25
-
python3-apache-airflow-providers-common-compat-1.5.0-1.lbn36.noarch
apache-airflow-providers-common-compat
Located in
LBN
/
…
/
Data Science
/
BastionLinux 36
-
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!
Located in
LBN
/
…
/
Data Science
/
BastionLinux 36
-
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.
Located in
LBN
/
…
/
Data Science
/
BastionLinux 36
-
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.
Located in
LBN
/
…
/
Data Science
/
BastionLinux 36
-
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
Located in
LBN
/
…
/
Data Science
/
BastionLinux 36
-
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
Located in
LBN
/
…
/
Data Science
/
BastionLinux 36