this repo has no description
Python 96.8%
Batchfile 1.8%
Makefile 1.4%
Other 0.1%
59 1 0

Clone this repository

https://tangled.org/alice.mosphere.at/atmst https://tangled.org/did:plc:by3jhwdqgbtrcc7q4tkkv3cf/atmst
git@tangled.org:alice.mosphere.at/atmst git@tangled.org:did:plc:by3jhwdqgbtrcc7q4tkkv3cf/atmst

For self-hosted knots, clone URLs may differ based on your setup.

Download tar.gz
README.md

atmst#

Static Badge Static Badge Static Badge Static Badge Static Badge

A Python library for wrangling atproto-flavoured Merkle Search Trees

Current status: ⚠️ prototype ⚠️

Installation#

git clone https://github.com/DavidBuchanan314/atmst
cd atmst
python3 -m pip install .

dev install: (editable)

python3 -m pip install -e .

Running the tests:

python3 -m unittest discover -v

build the docs:

cd docs/
sphinx-apidoc -f -o _apidocs/ ../src/atmst ../src/atmst/all.py
make html
# open _build/html/index.html

publishing to pypi: (this one is mainly for my benefit!)

python3 -m build
python3 -m twine upload --repository pypi dist/*