asfpy - ASF Infrastructure common Python tools library

Clone this repo:
  1. 4c30a53 chore: bump to python 3.10 (#56) by Thomas Neidhart · 2 weeks ago main
  2. 77453db chore: bump to latest allowed setup-uv action by Thomas Neidhart · 2 weeks ago
  3. 371838c chore: bump various deps in lock file (#55) by Thomas Neidhart · 2 weeks ago
  4. d737a86 Bump pygments from 2.19.2 to 2.20.0 (#45) by dependabot[bot] · 2 weeks ago
  5. 21376bc Bump cryptography from 46.0.6 to 48.0.1 (#54) by dependabot[bot] · 2 weeks ago

asfpy - ASF Infrastructure Common Library for Python functions

This Python library contains features commonly used at the Apache Software Foundation.

(For asfpy 0.37 and below, look at our old Subversion repository)

Package Documention

  • aioldap: asynchronous LDAP client (documentation TBD)
  • clitools: LDAP work via command line tooling (documentation TBD)
  • crypto: helper for ED25519 work (documentation TBD)
  • db: high performance simplified SQLite client (documentation TBD)
  • justone: helper to ensure only one long-running process is operating (documentation TBD)
  • messaging: helpers to send email (documentation TBD)
  • pubsub: client for subscribing to the ASF pubsub service (documentation TBD)
  • sqlite: document-based CRUD using SQLite (documentation TBD)
  • stopwatch: debug/logging timing for Python code. See documentation
  • syslog: redirect print() to syslog (documentation TBD)
  • twatcher: watch EZT emplates for edits, then reload (documentation TBD)
  • whoami: fetch hostname of box (documentation TBD)

  • daemon: DEPRECATED old code to spawn a daemon (obsoleted by pipservice)
  • ldapadmin: DEPRECATED internal ASF infra tooling (moved to internal infra)

Building asfpy package

Prerequisites:

Setting up the development environment:

$ uv sync --all-extras

Building the package:

$ uv build

Running the tests:

$ uv run pytest

Installation

Create and activate a virtual environment and then install asfpy using pip:

$ pip install "asfpy"

Note: Adding [ldap] or [aioldap] extras will install optional dependencies for LDAP support that will require additional system dependencies:

$ pip install "asfpy[aioldap]"

Publishing a new asfpy package

Create an account on https://pypi.org/, then add a token with an “all projects” scope.

Set your token via the environment:

$ export UV_PUBLISH_TOKEN=<your-token>

Finally publish to pypi.org:

$ make publish

See this guide for more details on working with PyPi.

Please also create a tag for the release.

Publishing to test.pypi.org

Create an account on https://test.pypi.org/, then add a token with an “all projects” scope.

Set your token via the environment:

$ export UV_PUBLISH_TOKEN=<your-token>

Finally publish to test.pypi.org:

$ make publish-test

The package should upload to the test.pypi.org service.