Compare commits
24 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
3ea4ba5b63
|
|||
|
185db82bf0
|
|||
|
86ddce80db
|
|||
|
d1676ce5ec
|
|||
|
ec47ecd872
|
|||
|
ed01ccccbb
|
|||
|
9ba9d277c2
|
|||
|
39dac5c2db
|
|||
|
a40ba430b8
|
|||
|
70c8826af0
|
|||
|
97d978611e
|
|||
|
a295a52904
|
|||
|
64c016250a
|
|||
|
457013b94a
|
|||
|
02af0e1ddf
|
|||
|
438d12ab71
|
|||
|
4d1b49daa4
|
|||
|
beab7b2565
|
|||
|
2998b8d833
|
|||
|
f09622ae76
|
|||
|
d7efe9de7f
|
|||
|
f49c6293f9
|
|||
|
1b0aaad689
|
|||
|
6e28f908be
|
+75
-20
@@ -3,16 +3,21 @@ name: Build and Publish Docker Image
|
|||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
push:
|
push:
|
||||||
tags: [ 'v*' ]
|
branches:
|
||||||
|
- main
|
||||||
|
- master
|
||||||
|
tags:
|
||||||
|
- "v*"
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ main, master ]
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
REGISTRY: git.quad4.io
|
REGISTRY: git.quad4.io
|
||||||
IMAGE_NAME: RNS-Things/rns-page-node
|
IMAGE_NAME: RNS-Things/rns-page-node
|
||||||
|
DEV_IMAGE_NAME: RNS-Things/rns-page-node-dev
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
if: startsWith(github.ref, 'refs/tags/v')
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
@@ -24,6 +29,8 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: https://git.quad4.io/actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
|
uses: https://git.quad4.io/actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: https://git.quad4.io/actions/setup-qemu-action@3a1695b1353f9f8868722ffaafc1f164ef35fa5e # v3
|
uses: https://git.quad4.io/actions/setup-qemu-action@3a1695b1353f9f8868722ffaafc1f164ef35fa5e # v3
|
||||||
@@ -46,9 +53,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
||||||
tags: |
|
tags: |
|
||||||
type=raw,value=latest,enable={{is_default_branch}}
|
type=raw,value=latest
|
||||||
type=ref,event=branch,prefix=,suffix=,enable={{is_default_branch}}
|
|
||||||
type=ref,event=pr
|
|
||||||
type=semver,pattern={{version}}
|
type=semver,pattern={{version}}
|
||||||
type=semver,pattern={{major}}.{{minor}}
|
type=semver,pattern={{major}}.{{minor}}
|
||||||
type=sha,format=short
|
type=sha,format=short
|
||||||
@@ -60,7 +65,8 @@ jobs:
|
|||||||
context: .
|
context: .
|
||||||
file: ./docker/Dockerfile
|
file: ./docker/Dockerfile
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
push: ${{ startsWith(github.ref, 'refs/tags/v') }}
|
push: true
|
||||||
|
no-cache: true
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
labels: ${{ steps.meta.outputs.labels }}
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
build-args: |
|
build-args: |
|
||||||
@@ -68,28 +74,77 @@ jobs:
|
|||||||
VCS_REF=${{ github.sha }}
|
VCS_REF=${{ github.sha }}
|
||||||
VERSION=${{ steps.meta.outputs.version }}
|
VERSION=${{ steps.meta.outputs.version }}
|
||||||
|
|
||||||
- name: Extract metadata (tags, labels) for Docker (rootless)
|
- name: Download Trivy
|
||||||
id: meta_rootless
|
run: |
|
||||||
|
curl -L -o /tmp/trivy.deb https://git.quad4.io/Quad4-Software/Trivy-Assets/raw/commit/917e0e52b2f663cbbe13e63b7176262e248265ae/trivy_0.68.2_Linux-64bit.deb
|
||||||
|
sudo dpkg -i /tmp/trivy.deb || sudo apt-get install -f -y
|
||||||
|
|
||||||
|
- name: Scan Docker image
|
||||||
|
run: |
|
||||||
|
# Extract the first tag from the multi-line tags output
|
||||||
|
IMAGE_TAG=$(echo "${{ steps.meta.outputs.tags }}" | head -n 1)
|
||||||
|
trivy image --exit-code 1 "$IMAGE_TAG"
|
||||||
|
|
||||||
|
build-dev:
|
||||||
|
if: github.event_name == 'pull_request' || github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
packages: write
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: https://git.quad4.io/actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: https://git.quad4.io/actions/setup-qemu-action@3a1695b1353f9f8868722ffaafc1f164ef35fa5e # v3
|
||||||
|
with:
|
||||||
|
platforms: amd64,arm64
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: https://git.quad4.io/actions/setup-buildx-action@7fbd262f0ca05b45700d8eaaf71f40837d036cc7 # v3
|
||||||
|
|
||||||
|
- name: Log in to the Container registry
|
||||||
|
uses: https://git.quad4.io/actions/login-action@bb91d7e20cfedb030a44164cb558bba899e1010a # v3
|
||||||
|
with:
|
||||||
|
registry: ${{ env.REGISTRY }}
|
||||||
|
username: ${{ secrets.REGISTRY_USERNAME }}
|
||||||
|
password: ${{ secrets.REGISTRY_PASSWORD }}
|
||||||
|
|
||||||
|
- name: Extract DEV metadata (tags, labels) for Docker
|
||||||
|
id: meta-dev
|
||||||
uses: https://git.quad4.io/actions/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5
|
uses: https://git.quad4.io/actions/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5
|
||||||
with:
|
with:
|
||||||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-rootless
|
images: ${{ env.REGISTRY }}/${{ env.DEV_IMAGE_NAME }}
|
||||||
tags: |
|
tags: |
|
||||||
type=raw,value=latest-rootless,enable={{is_default_branch}}
|
type=raw,value=dev
|
||||||
type=ref,event=branch,prefix=,suffix=-rootless,enable={{is_default_branch}}
|
type=sha,format=short
|
||||||
type=semver,pattern={{version}},suffix=-rootless
|
|
||||||
type=semver,pattern={{major}}.{{minor}},suffix=-rootless
|
|
||||||
type=sha,format=short,suffix=-rootless
|
|
||||||
|
|
||||||
- name: Build and push rootless Docker image
|
- name: Build and push dev Docker image
|
||||||
|
id: build-dev
|
||||||
uses: https://git.quad4.io/actions/build-push-action@dc0c2d97df39a6939d9db7d572445529e2365ec6 # v6
|
uses: https://git.quad4.io/actions/build-push-action@dc0c2d97df39a6939d9db7d572445529e2365ec6 # v6
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
file: ./docker/Dockerfile.rootless
|
file: ./docker/Dockerfile
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
push: ${{ startsWith(github.ref, 'refs/tags/v') }}
|
push: true
|
||||||
tags: ${{ steps.meta_rootless.outputs.tags }}
|
no-cache: true
|
||||||
labels: ${{ steps.meta_rootless.outputs.labels }}
|
tags: ${{ steps.meta-dev.outputs.tags }}
|
||||||
|
labels: ${{ steps.meta-dev.outputs.labels }}
|
||||||
build-args: |
|
build-args: |
|
||||||
BUILD_DATE=${{ github.event.head_commit.timestamp }}
|
BUILD_DATE=${{ github.event.head_commit.timestamp }}
|
||||||
VCS_REF=${{ github.sha }}
|
VCS_REF=${{ github.sha }}
|
||||||
VERSION=${{ steps.meta_rootless.outputs.version }}
|
VERSION=${{ steps.meta-dev.outputs.version }}
|
||||||
|
|
||||||
|
- name: Download Trivy
|
||||||
|
run: |
|
||||||
|
curl -L -o /tmp/trivy.deb https://git.quad4.io/Quad4-Software/Trivy-Assets/raw/commit/917e0e52b2f663cbbe13e63b7176262e248265ae/trivy_0.68.2_Linux-64bit.deb
|
||||||
|
sudo dpkg -i /tmp/trivy.deb || sudo apt-get install -f -y
|
||||||
|
|
||||||
|
- name: Scan Docker image (dev)
|
||||||
|
run: |
|
||||||
|
# Extract the first tag from the multi-line tags output
|
||||||
|
IMAGE_TAG=$(echo "${{ steps.meta-dev.outputs.tags }}" | head -n 1)
|
||||||
|
trivy image --exit-code 1 "$IMAGE_TAG"
|
||||||
|
|||||||
@@ -20,49 +20,48 @@ permissions:
|
|||||||
contents: write
|
contents: write
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
release:
|
||||||
name: Build distribution 📦
|
name: Build and Release
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: https://git.quad4.io/actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
|
|
||||||
with:
|
|
||||||
persist-credentials: false
|
|
||||||
- name: Set up Python
|
|
||||||
uses: https://git.quad4.io/actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v5
|
|
||||||
with:
|
|
||||||
python-version: "3.13"
|
|
||||||
- name: Install pypa/build
|
|
||||||
run: python3 -m pip install build --user
|
|
||||||
- name: Build a binary wheel and a source tarball
|
|
||||||
run: python3 -m build
|
|
||||||
- name: Store the distribution packages
|
|
||||||
uses: https://git.quad4.io/actions/upload-artifact@8689daa8608e46baf41e4786cb83fbc0dea972cd # v4
|
|
||||||
with:
|
|
||||||
name: python-package-distributions
|
|
||||||
path: dist/
|
|
||||||
|
|
||||||
gitea-release:
|
|
||||||
name: Create Gitea Release
|
|
||||||
needs:
|
|
||||||
- build
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Download all the dists
|
- name: Checkout
|
||||||
uses: https://git.quad4.io/actions/download-artifact@10979da4ee3096dd7ca8d9a35c72871335fee704 # v5
|
uses: https://git.quad4.io/actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
|
||||||
with:
|
with:
|
||||||
name: python-package-distributions
|
persist-credentials: false
|
||||||
path: dist/
|
|
||||||
|
- name: Set up Python
|
||||||
|
uses: https://git.quad4.io/actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v5
|
||||||
|
with:
|
||||||
|
python-version: "3.13"
|
||||||
|
|
||||||
|
- name: Install build and twine
|
||||||
|
run: python3 -m pip install build twine --user
|
||||||
|
|
||||||
|
- name: Build a binary wheel and a source tarball
|
||||||
|
run: python3 -m build
|
||||||
|
|
||||||
|
- name: Generate SHA256 checksums
|
||||||
|
run: |
|
||||||
|
sha256sum dist/*.tar.gz dist/*.whl | sed 's|dist/||g' > dist/SHA256SUMS
|
||||||
|
echo "### SHA256 Checksums" > release_notes.md
|
||||||
|
echo '```' >> release_notes.md
|
||||||
|
cat dist/SHA256SUMS >> release_notes.md
|
||||||
|
echo '```' >> release_notes.md
|
||||||
|
|
||||||
|
- name: Publish to Gitea PyPI registry
|
||||||
|
run: python3 -m twine upload --repository-url ${{ github.server_url }}/api/packages/${{ github.repository_owner }}/pypi -u ${{ secrets.REGISTRY_USERNAME }} -p ${{ secrets.REGISTRY_PASSWORD }} dist/*.tar.gz dist/*.whl
|
||||||
|
continue-on-error: true
|
||||||
|
|
||||||
- name: Create Gitea Release with artifacts
|
- name: Create Gitea Release with artifacts
|
||||||
uses: https://git.quad4.io/actions/gitea-release-action@4875285c0950474efb7ca2df55233c51333eeb74
|
uses: https://git.quad4.io/actions/gitea-release-action@4875285c0950474efb7ca2df55233c51333eeb74
|
||||||
with:
|
with:
|
||||||
tag_name: ${{ github.ref_name }}
|
tag_name: ${{ inputs.version || github.ref_name }}
|
||||||
name: Release ${{ github.ref_name }}
|
name: Release ${{ inputs.version || github.ref_name }}
|
||||||
|
body_path: release_notes.md
|
||||||
files: |
|
files: |
|
||||||
dist/*.tar.gz
|
dist/*.tar.gz
|
||||||
dist/*.whl
|
dist/*.whl
|
||||||
|
dist/SHA256SUMS
|
||||||
|
|||||||
@@ -1,22 +1,42 @@
|
|||||||
name: Safety
|
name: Safety
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ main ]
|
branches: [main, master]
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 0 * * 0' # weekly
|
- cron: "0 0 * * 0" # weekly
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
security:
|
security:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: https://git.quad4.io/actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
|
uses: https://git.quad4.io/actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
|
||||||
|
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: https://git.quad4.io/actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v5
|
uses: https://git.quad4.io/actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.10'
|
python-version: "3.13"
|
||||||
|
|
||||||
|
- name: Install Poetry
|
||||||
|
run: |
|
||||||
|
curl -sSL https://install.python-poetry.org | python3 -
|
||||||
|
echo "$HOME/.local/bin" >> $GITHUB_PATH
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
poetry config virtualenvs.create false
|
||||||
pip install .
|
poetry install --no-interaction --no-ansi
|
||||||
|
pip install --upgrade filelock virtualenv
|
||||||
|
|
||||||
- name: Run pip-audit
|
- name: Run pip-audit
|
||||||
uses: https://git.quad4.io/actions/gh-action-pip-audit@66a6ee35b1b25f89c6bdc9f7c11284f08061823a # v1.1.0
|
uses: https://git.quad4.io/actions/gh-action-pip-audit@66a6ee35b1b25f89c6bdc9f7c11284f08061823a # v1.1.0
|
||||||
|
|
||||||
|
- name: Download Trivy
|
||||||
|
run: |
|
||||||
|
curl -L -o /tmp/trivy.deb https://git.quad4.io/Quad4-Software/Trivy-Assets/raw/commit/917e0e52b2f663cbbe13e63b7176262e248265ae/trivy_0.68.2_Linux-64bit.deb
|
||||||
|
sudo dpkg -i /tmp/trivy.deb || sudo apt-get install -f -y
|
||||||
|
|
||||||
|
- name: Scan Repository
|
||||||
|
run: |
|
||||||
|
trivy fs --exit-code 1 .
|
||||||
|
|||||||
@@ -14,18 +14,18 @@ DOCKER_BUILD_ARGS := --build-arg VERSION=$(VERSION) \
|
|||||||
--build-arg VCS_REF=$(VCS_REF) \
|
--build-arg VCS_REF=$(VCS_REF) \
|
||||||
--build-arg BUILD_DATE=$(BUILD_DATE)
|
--build-arg BUILD_DATE=$(BUILD_DATE)
|
||||||
|
|
||||||
.PHONY: all build sdist wheel clean install lint format docker-wheels docker-build docker-run docker-build-rootless docker-run-rootless help test docker-test
|
.PHONY: all build sdist wheel clean install lint format docker-wheels docker-build docker-run help test docker-test test-advanced
|
||||||
|
|
||||||
all: build
|
all: build
|
||||||
|
|
||||||
build: clean
|
build: clean
|
||||||
python3 -m build
|
poetry run python3 -m build
|
||||||
|
|
||||||
sdist:
|
sdist:
|
||||||
python3 -m build --sdist
|
poetry run python3 -m build --sdist
|
||||||
|
|
||||||
wheel:
|
wheel:
|
||||||
python3 -m build --wheel
|
poetry run python3 -m build --wheel
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf build dist *.egg-info
|
rm -rf build dist *.egg-info
|
||||||
@@ -40,19 +40,20 @@ format:
|
|||||||
ruff check --fix .
|
ruff check --fix .
|
||||||
|
|
||||||
docker-wheels:
|
docker-wheels:
|
||||||
$(DOCKER_BUILD) --target builder -f docker/Dockerfile.build -t rns-page-node-builder .
|
$(DOCKER_BUILD) --target builder -f docker/Dockerfile -t rns-page-node-builder .
|
||||||
docker create --name builder-container rns-page-node-builder true
|
docker create --name builder-container rns-page-node-builder true
|
||||||
docker cp builder-container:/src/dist ./dist
|
docker cp builder-container:/app/dist ./dist
|
||||||
docker rm builder-container
|
docker rm builder-container
|
||||||
|
|
||||||
docker-build:
|
docker-build:
|
||||||
$(DOCKER_BUILD_LOAD) $(DOCKER_BUILD_ARGS) $(BUILD_ARGS) -f docker/Dockerfile -t git.quad4.io/rns-things/rns-page-node:latest -t git.quad4.io/rns-things/rns-page-node:$(VERSION) .
|
$(DOCKER_BUILD_LOAD) $(DOCKER_BUILD_ARGS) $(BUILD_ARGS) -f docker/Dockerfile -t git.quad4.io/rns-things/rns-page-node:latest -t git.quad4.io/rns-things/rns-page-node:$(VERSION) .
|
||||||
|
|
||||||
docker-run:
|
docker-run: setup-dirs
|
||||||
docker run --rm -it \
|
docker run --rm -it \
|
||||||
-v ./pages:/app/pages \
|
-v ./pages:/app/pages \
|
||||||
-v ./files:/app/files \
|
-v ./files:/app/files \
|
||||||
-v ./node-config:/app/node-config \
|
-v ./node-config:/app/node-config \
|
||||||
|
-v ./reticulum-config:/home/app/.reticulum \
|
||||||
git.quad4.io/rns-things/rns-page-node:latest \
|
git.quad4.io/rns-things/rns-page-node:latest \
|
||||||
--node-name "Page Node" \
|
--node-name "Page Node" \
|
||||||
--pages-dir /app/pages \
|
--pages-dir /app/pages \
|
||||||
@@ -60,28 +61,19 @@ docker-run:
|
|||||||
--identity-dir /app/node-config \
|
--identity-dir /app/node-config \
|
||||||
--announce-interval 360
|
--announce-interval 360
|
||||||
|
|
||||||
docker-build-rootless:
|
|
||||||
$(DOCKER_BUILD_LOAD) $(DOCKER_BUILD_ARGS) $(BUILD_ARGS) -f docker/Dockerfile.rootless -t git.quad4.io/rns-things/rns-page-node:latest-rootless -t git.quad4.io/rns-things/rns-page-node:$(VERSION)-rootless .
|
|
||||||
|
|
||||||
docker-run-rootless:
|
|
||||||
docker run --rm -it \
|
|
||||||
-v ./pages:/app/pages \
|
|
||||||
-v ./files:/app/files \
|
|
||||||
-v ./node-config:/app/node-config \
|
|
||||||
git.quad4.io/rns-things/rns-page-node:latest-rootless \
|
|
||||||
--node-name "Page Node" \
|
|
||||||
--pages-dir /app/pages \
|
|
||||||
--files-dir /app/files \
|
|
||||||
--identity-dir /app/node-config \
|
|
||||||
--announce-interval 360
|
|
||||||
|
|
||||||
test:
|
test:
|
||||||
bash tests/run_tests.sh
|
bash tests/run_tests.sh
|
||||||
|
|
||||||
|
test-advanced:
|
||||||
|
poetry run python3 tests/test_advanced.py
|
||||||
|
|
||||||
docker-test:
|
docker-test:
|
||||||
$(DOCKER_BUILD_LOAD) -f docker/Dockerfile.tests -t rns-page-node-tests .
|
$(DOCKER_BUILD_LOAD) -f docker/Dockerfile.tests -t rns-page-node-tests .
|
||||||
docker run --rm rns-page-node-tests
|
docker run --rm rns-page-node-tests
|
||||||
|
|
||||||
|
setup-dirs:
|
||||||
|
mkdir -p pages files node-config reticulum-config
|
||||||
|
|
||||||
help:
|
help:
|
||||||
@echo "Makefile commands:"
|
@echo "Makefile commands:"
|
||||||
@echo " all - alias for build"
|
@echo " all - alias for build"
|
||||||
@@ -95,7 +87,6 @@ help:
|
|||||||
@echo " docker-wheels - build Python wheels in Docker"
|
@echo " docker-wheels - build Python wheels in Docker"
|
||||||
@echo " docker-build - build runtime Docker image (version: $(VERSION))"
|
@echo " docker-build - build runtime Docker image (version: $(VERSION))"
|
||||||
@echo " docker-run - run runtime Docker image"
|
@echo " docker-run - run runtime Docker image"
|
||||||
@echo " docker-build-rootless - build rootless runtime Docker image"
|
|
||||||
@echo " docker-run-rootless - run rootless runtime Docker image"
|
|
||||||
@echo " test - run local integration tests"
|
@echo " test - run local integration tests"
|
||||||
@echo " docker-test - build and run integration tests in Docker"
|
@echo " docker-test - build and run integration tests in Docker"
|
||||||
|
@echo " test-advanced - run advanced tests (smoke, performance, leak, etc)"
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
# RNS Page Node
|
# RNS Page Node
|
||||||
|
|
||||||
[Русская](README.ru.md)
|
[Русский](docs/languages/README.ru.md) | [中文](docs/languages/README.zh.md) | [日本語](docs/languages/README.ja.md) | [Italiano](docs/languages/README.it.md) | [Deutsch](docs/languages/README.de.md)
|
||||||
|
|
||||||
A simple way to serve pages and files over the [Reticulum network](https://reticulum.network/). Drop-in replacement for [NomadNet](https://github.com/markqvist/NomadNet) nodes that primarily serve pages and files.
|
A simple way to serve pages and files over the [Reticulum network](https://reticulum.network/). Drop-in replacement for [NomadNet](https://github.com/markqvist/NomadNet) nodes that primarily serve pages and files.
|
||||||
|
|
||||||
@@ -10,33 +10,44 @@ A simple way to serve pages and files over the [Reticulum network](https://retic
|
|||||||
- Dynamic page support with environment variables
|
- Dynamic page support with environment variables
|
||||||
- Form data and request parameter parsing
|
- Form data and request parameter parsing
|
||||||
|
|
||||||
## To Do
|
## Installation
|
||||||
|
|
||||||
- [ ] Move to single small and rootless docker image
|
|
||||||
- [ ] Codebase cleanup
|
|
||||||
- [ ] Update PyPI publishing workflow
|
|
||||||
|
|
||||||
## Usage
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Pip
|
# Pip
|
||||||
# May require --break-system-packages
|
pip install --index-url https://git.quad4.io/api/packages/RNS-Things/pypi/simple/ --extra-index-url https://pypi.org/simple rns-page-node
|
||||||
|
|
||||||
pip install rns-page-node
|
|
||||||
|
|
||||||
# Pipx
|
# Pipx
|
||||||
|
pipx install --pip-args "--index-url https://git.quad4.io/api/packages/RNS-Things/pypi/simple/ --extra-index-url https://pypi.org/simple" rns-page-node
|
||||||
|
```
|
||||||
|
|
||||||
|
**Permanent Configuration (Optional):**
|
||||||
|
|
||||||
|
To avoid typing the index URLs every time, add them to your `pip.conf`:
|
||||||
|
|
||||||
|
```ini
|
||||||
|
# ~/.config/pip/pip.conf
|
||||||
|
[global]
|
||||||
|
index-url = https://git.quad4.io/api/packages/RNS-Things/pypi/simple/
|
||||||
|
extra-index-url = https://pypi.org/simple
|
||||||
|
```
|
||||||
|
|
||||||
|
Then you can simply use:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
pip install rns-page-node
|
||||||
|
# or
|
||||||
pipx install rns-page-node
|
pipx install rns-page-node
|
||||||
|
```
|
||||||
|
|
||||||
# uv
|
```bash
|
||||||
|
# Pip
|
||||||
|
pipx install git+https://git.quad4.io/RNS-Things/rns-page-node.git
|
||||||
|
# Pipx via Git
|
||||||
|
pipx install git+https://git.quad4.io/RNS-Things/rns-page-node.git
|
||||||
|
# UV
|
||||||
uv venv
|
uv venv
|
||||||
source .venv/bin/activate
|
source .venv/bin/activate
|
||||||
uv pip install rns-page-node
|
uv pip install git+https://git.quad4.io/RNS-Things/rns-page-node.git
|
||||||
|
|
||||||
# Pipx via Git
|
|
||||||
|
|
||||||
pipx install git+https://git.quad4.io/RNS-Things/rns-page-node.git
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
@@ -78,15 +89,15 @@ Priority order: Command-line arguments > Config file > Defaults
|
|||||||
### Docker/Podman
|
### Docker/Podman
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker run -it --rm -v ./pages:/app/pages -v ./files:/app/files -v ./node-config:/app/node-config -v ./config:/root/.reticulum git.quad4.io/rns-things/rns-page-node:latest
|
docker run -it --rm -v ./pages:/app/pages -v ./files:/app/files -v ./node-config:/app/node-config -v ./reticulum-config:/home/app/.reticulum git.quad4.io/rns-things/rns-page-node:latest
|
||||||
```
|
```
|
||||||
|
|
||||||
### Docker/Podman Rootless
|
### Docker/Podman Rootless
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
mkdir -p ./pages ./files ./node-config ./config
|
mkdir -p ./pages ./files ./node-config ./reticulum-config
|
||||||
chown -R 1000:1000 ./pages ./files ./node-config ./config
|
chown -R 1000:1000 ./pages ./files ./node-config ./reticulum-config
|
||||||
podman run -it --rm -v ./pages:/app/pages -v ./files:/app/files -v ./node-config:/app/node-config -v ./config:/app/config git.quad4.io/rns-things/rns-page-node:latest-rootless
|
podman run -it --rm -v ./pages:/app/pages -v ./files:/app/files -v ./node-config:/app/node-config -v ./reticulum-config:/home/app/.reticulum git.quad4.io/rns-things/rns-page-node:latest
|
||||||
```
|
```
|
||||||
|
|
||||||
Mounting volumes are optional, you can also copy pages and files to the container `podman cp` or `docker cp`.
|
Mounting volumes are optional, you can also copy pages and files to the container `podman cp` or `docker cp`.
|
||||||
|
|||||||
+15
-37
@@ -23,17 +23,17 @@ tasks:
|
|||||||
desc: Clean and build sdist and wheel
|
desc: Clean and build sdist and wheel
|
||||||
deps: [clean]
|
deps: [clean]
|
||||||
cmds:
|
cmds:
|
||||||
- python3 -m build
|
- poetry run python3 -m build
|
||||||
|
|
||||||
sdist:
|
sdist:
|
||||||
desc: Build source distribution
|
desc: Build source distribution
|
||||||
cmds:
|
cmds:
|
||||||
- python3 -m build --sdist
|
- poetry run python3 -m build --sdist
|
||||||
|
|
||||||
wheel:
|
wheel:
|
||||||
desc: Build wheel
|
desc: Build wheel
|
||||||
cmds:
|
cmds:
|
||||||
- python3 -m build --wheel
|
- poetry run python3 -m build --wheel
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
desc: Remove build artifacts
|
desc: Remove build artifacts
|
||||||
@@ -70,12 +70,17 @@ tasks:
|
|||||||
cmds:
|
cmds:
|
||||||
- bash tests/run_tests.sh
|
- bash tests/run_tests.sh
|
||||||
|
|
||||||
|
test-advanced:
|
||||||
|
desc: Run advanced tests (smoke, performance, leak, fuzzing, property-based)
|
||||||
|
cmds:
|
||||||
|
- poetry run python3 tests/test_advanced.py
|
||||||
|
|
||||||
docker-wheels:
|
docker-wheels:
|
||||||
desc: Build Python wheels in Docker
|
desc: Build Python wheels in Docker
|
||||||
cmds:
|
cmds:
|
||||||
- '{{.DOCKER_BUILD}} --target builder -f docker/Dockerfile.build -t rns-page-node-builder .'
|
- '{{.DOCKER_BUILD}} --target builder -f docker/Dockerfile -t rns-page-node-builder .'
|
||||||
- docker create --name builder-container rns-page-node-builder true
|
- docker create --name builder-container rns-page-node-builder true
|
||||||
- docker cp builder-container:/src/dist ./dist
|
- docker cp builder-container:/app/dist ./dist
|
||||||
- docker rm builder-container
|
- docker rm builder-container
|
||||||
|
|
||||||
docker-build:
|
docker-build:
|
||||||
@@ -93,12 +98,14 @@ tasks:
|
|||||||
|
|
||||||
docker-run:
|
docker-run:
|
||||||
desc: Run runtime Docker image
|
desc: Run runtime Docker image
|
||||||
|
deps: [setup-dirs]
|
||||||
cmds:
|
cmds:
|
||||||
- >
|
- >
|
||||||
docker run --rm -it
|
docker run --rm -it
|
||||||
-v ./pages:/app/pages
|
-v ./pages:/app/pages
|
||||||
-v ./files:/app/files
|
-v ./files:/app/files
|
||||||
-v ./node-config:/app/node-config
|
-v ./node-config:/app/node-config
|
||||||
|
-v ./reticulum-config:/home/app/.reticulum
|
||||||
{{.IMAGE_NAME}}:latest
|
{{.IMAGE_NAME}}:latest
|
||||||
--node-name "Page Node"
|
--node-name "Page Node"
|
||||||
--pages-dir /app/pages
|
--pages-dir /app/pages
|
||||||
@@ -106,34 +113,6 @@ tasks:
|
|||||||
--identity-dir /app/node-config
|
--identity-dir /app/node-config
|
||||||
--announce-interval 360
|
--announce-interval 360
|
||||||
|
|
||||||
docker-build-rootless:
|
|
||||||
desc: Build rootless runtime Docker image
|
|
||||||
cmds:
|
|
||||||
- >
|
|
||||||
{{.DOCKER_BUILD_LOAD}}
|
|
||||||
--build-arg VERSION={{.VERSION}}
|
|
||||||
--build-arg VCS_REF={{.VCS_REF}}
|
|
||||||
--build-arg BUILD_DATE={{.BUILD_DATE}}
|
|
||||||
-f docker/Dockerfile.rootless
|
|
||||||
-t {{.IMAGE_NAME}}:latest-rootless
|
|
||||||
-t {{.IMAGE_NAME}}:{{.VERSION}}-rootless
|
|
||||||
.
|
|
||||||
|
|
||||||
docker-run-rootless:
|
|
||||||
desc: Run rootless runtime Docker image
|
|
||||||
cmds:
|
|
||||||
- >
|
|
||||||
docker run --rm -it
|
|
||||||
-v ./pages:/app/pages
|
|
||||||
-v ./files:/app/files
|
|
||||||
-v ./node-config:/app/node-config
|
|
||||||
{{.IMAGE_NAME}}:latest-rootless
|
|
||||||
--node-name "Page Node"
|
|
||||||
--pages-dir /app/pages
|
|
||||||
--files-dir /app/files
|
|
||||||
--identity-dir /app/node-config
|
|
||||||
--announce-interval 360
|
|
||||||
|
|
||||||
docker-test:
|
docker-test:
|
||||||
desc: Build and run integration tests in Docker
|
desc: Build and run integration tests in Docker
|
||||||
cmds:
|
cmds:
|
||||||
@@ -144,18 +123,17 @@ tasks:
|
|||||||
desc: Remove Docker images and containers
|
desc: Remove Docker images and containers
|
||||||
cmds:
|
cmds:
|
||||||
- docker rmi {{.IMAGE_NAME}}:latest {{.IMAGE_NAME}}:{{.VERSION}} 2>/dev/null || true
|
- docker rmi {{.IMAGE_NAME}}:latest {{.IMAGE_NAME}}:{{.VERSION}} 2>/dev/null || true
|
||||||
- docker rmi {{.IMAGE_NAME}}:latest-rootless {{.IMAGE_NAME}}:{{.VERSION}}-rootless 2>/dev/null || true
|
|
||||||
- docker rmi rns-page-node-builder rns-page-node-tests 2>/dev/null || true
|
- docker rmi rns-page-node-builder rns-page-node-tests 2>/dev/null || true
|
||||||
|
|
||||||
run:
|
run:
|
||||||
desc: Run rns-page-node locally
|
desc: Run rns-page-node locally
|
||||||
cmds:
|
cmds:
|
||||||
- python3 -m rns_page_node.main
|
- poetry run python3 -m rns_page_node.main
|
||||||
|
|
||||||
run-dev:
|
run-dev:
|
||||||
desc: Run rns-page-node with development settings
|
desc: Run rns-page-node with development settings
|
||||||
cmds:
|
cmds:
|
||||||
- python3 -m rns_page_node.main --log-level DEBUG
|
- poetry run python3 -m rns_page_node.main --log-level DEBUG
|
||||||
|
|
||||||
venv:
|
venv:
|
||||||
desc: Create Python virtual environment
|
desc: Create Python virtual environment
|
||||||
@@ -183,7 +161,7 @@ tasks:
|
|||||||
setup-dirs:
|
setup-dirs:
|
||||||
desc: Create required directories for running the node
|
desc: Create required directories for running the node
|
||||||
cmds:
|
cmds:
|
||||||
- mkdir -p pages files node-config
|
- mkdir -p pages files node-config reticulum-config
|
||||||
|
|
||||||
nix-shell:
|
nix-shell:
|
||||||
desc: Enter Nix development shell
|
desc: Enter Nix development shell
|
||||||
|
|||||||
+40
-14
@@ -1,9 +1,31 @@
|
|||||||
ARG PYTHON_VERSION=3.13
|
ARG PYTHON_VERSION=3.13
|
||||||
|
FROM python:${PYTHON_VERSION}-alpine AS builder
|
||||||
|
|
||||||
|
RUN apk add --no-cache \
|
||||||
|
gcc \
|
||||||
|
musl-dev \
|
||||||
|
libffi-dev \
|
||||||
|
cargo \
|
||||||
|
pkgconfig \
|
||||||
|
python3-dev \
|
||||||
|
linux-headers
|
||||||
|
|
||||||
|
RUN pip install --no-cache-dir poetry
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
COPY pyproject.toml poetry.lock* README.md ./
|
||||||
|
COPY rns_page_node ./rns_page_node
|
||||||
|
|
||||||
|
RUN poetry config virtualenvs.in-project true && \
|
||||||
|
poetry install --no-interaction --no-ansi --only main && \
|
||||||
|
poetry build --format wheel && \
|
||||||
|
.venv/bin/pip install dist/*.whl
|
||||||
|
|
||||||
FROM python:${PYTHON_VERSION}-alpine
|
FROM python:${PYTHON_VERSION}-alpine
|
||||||
|
|
||||||
ARG BUILD_DATE
|
|
||||||
ARG VCS_REF
|
|
||||||
ARG VERSION
|
ARG VERSION
|
||||||
|
ARG VCS_REF
|
||||||
|
ARG BUILD_DATE
|
||||||
|
|
||||||
LABEL org.opencontainers.image.created=$BUILD_DATE \
|
LABEL org.opencontainers.image.created=$BUILD_DATE \
|
||||||
org.opencontainers.image.title="RNS Page Node" \
|
org.opencontainers.image.title="RNS Page Node" \
|
||||||
@@ -18,19 +40,23 @@ LABEL org.opencontainers.image.created=$BUILD_DATE \
|
|||||||
org.opencontainers.image.authors="Sudo-Ivan" \
|
org.opencontainers.image.authors="Sudo-Ivan" \
|
||||||
org.opencontainers.image.base.name="python:${PYTHON_VERSION}-alpine"
|
org.opencontainers.image.base.name="python:${PYTHON_VERSION}-alpine"
|
||||||
|
|
||||||
|
RUN addgroup -g 1000 app && adduser -D -u 1000 -G app app && \
|
||||||
|
apk add --no-cache su-exec
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
RUN apk add --no-cache gcc python3-dev musl-dev linux-headers
|
COPY --from=builder /app/.venv /app/.venv
|
||||||
|
|
||||||
RUN pip install poetry
|
|
||||||
ENV POETRY_VIRTUALENVS_IN_PROJECT=true
|
|
||||||
|
|
||||||
COPY pyproject.toml poetry.lock* ./
|
|
||||||
COPY README.md ./
|
|
||||||
COPY rns_page_node ./rns_page_node
|
|
||||||
|
|
||||||
RUN poetry install --no-interaction --no-ansi
|
|
||||||
|
|
||||||
ENV PATH="/app/.venv/bin:$PATH"
|
ENV PATH="/app/.venv/bin:$PATH"
|
||||||
|
|
||||||
ENTRYPOINT ["poetry", "run", "rns-page-node"]
|
RUN mkdir -p pages files node-config && \
|
||||||
|
chown -R app:app /app && \
|
||||||
|
mkdir -p /home/app/.reticulum && \
|
||||||
|
chown -R app:app /home/app/.reticulum
|
||||||
|
|
||||||
|
COPY docker/entrypoint.sh /usr/local/bin/entrypoint.sh
|
||||||
|
RUN chmod +x /usr/local/bin/entrypoint.sh
|
||||||
|
|
||||||
|
VOLUME ["/app/pages", "/app/files", "/app/node-config", "/home/app/.reticulum"]
|
||||||
|
|
||||||
|
ENTRYPOINT ["entrypoint.sh"]
|
||||||
|
CMD ["rns-page-node"]
|
||||||
|
|||||||
@@ -1,18 +0,0 @@
|
|||||||
FROM python:3.14-alpine AS builder
|
|
||||||
|
|
||||||
RUN apk update
|
|
||||||
RUN apk add --no-cache build-base libffi-dev cargo pkgconfig gcc python3-dev musl-dev linux-headers
|
|
||||||
|
|
||||||
WORKDIR /src
|
|
||||||
|
|
||||||
RUN pip install poetry
|
|
||||||
|
|
||||||
COPY pyproject.toml ./
|
|
||||||
COPY README.md ./
|
|
||||||
COPY rns_page_node ./rns_page_node
|
|
||||||
|
|
||||||
RUN poetry build --format wheel
|
|
||||||
|
|
||||||
FROM scratch AS dist
|
|
||||||
|
|
||||||
COPY --from=builder /src/dist .
|
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
ARG PYTHON_VERSION=3.13
|
|
||||||
FROM python:${PYTHON_VERSION}-alpine
|
|
||||||
|
|
||||||
ARG BUILD_DATE
|
|
||||||
ARG VCS_REF
|
|
||||||
ARG VERSION
|
|
||||||
|
|
||||||
LABEL org.opencontainers.image.created=$BUILD_DATE \
|
|
||||||
org.opencontainers.image.title="RNS Page Node (Rootless)" \
|
|
||||||
org.opencontainers.image.description="A simple way to serve pages and files over the Reticulum network." \
|
|
||||||
org.opencontainers.image.url="https://git.quad4.io/RNS-Things/rns-page-node" \
|
|
||||||
org.opencontainers.image.documentation="https://git.quad4.io/RNS-Things/rns-page-node/src/branch/main/README.md" \
|
|
||||||
org.opencontainers.image.source="https://git.quad4.io/RNS-Things/rns-page-node" \
|
|
||||||
org.opencontainers.image.version=$VERSION \
|
|
||||||
org.opencontainers.image.revision=$VCS_REF \
|
|
||||||
org.opencontainers.image.vendor="RNS-Things" \
|
|
||||||
org.opencontainers.image.licenses="GPL-3.0" \
|
|
||||||
org.opencontainers.image.authors="Sudo-Ivan" \
|
|
||||||
org.opencontainers.image.base.name="python:${PYTHON_VERSION}-alpine"
|
|
||||||
|
|
||||||
RUN addgroup -g 1000 app && adduser -D -u 1000 -G app app
|
|
||||||
|
|
||||||
WORKDIR /app
|
|
||||||
|
|
||||||
RUN apk add --no-cache gcc python3-dev musl-dev linux-headers
|
|
||||||
|
|
||||||
RUN pip install poetry
|
|
||||||
ENV POETRY_VIRTUALENVS_IN_PROJECT=true
|
|
||||||
|
|
||||||
COPY pyproject.toml poetry.lock* ./
|
|
||||||
COPY README.md ./
|
|
||||||
COPY rns_page_node ./rns_page_node
|
|
||||||
|
|
||||||
RUN poetry install --no-interaction --no-ansi
|
|
||||||
|
|
||||||
ENV PATH="/app/.venv/bin:$PATH"
|
|
||||||
|
|
||||||
USER app
|
|
||||||
|
|
||||||
ENTRYPOINT ["poetry", "run", "rns-page-node"]
|
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# Fix permissions if they are wrong (e.g. volume mounts)
|
||||||
|
# We only do this if we are root
|
||||||
|
if [ "$(id -u)" = '0' ]; then
|
||||||
|
chown -R app:app /app /home/app/.reticulum
|
||||||
|
fi
|
||||||
|
|
||||||
|
# If the first argument is an option (starts with a dash), prepend the app command
|
||||||
|
if [ "${1#-}" != "$1" ]; then
|
||||||
|
set -- rns-page-node "$@"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# If we are root, drop privileges and run the command
|
||||||
|
if [ "$(id -u)" = '0' ]; then
|
||||||
|
exec su-exec app "$@"
|
||||||
|
else
|
||||||
|
exec "$@"
|
||||||
|
fi
|
||||||
@@ -0,0 +1,153 @@
|
|||||||
|
# RNS Page Node
|
||||||
|
|
||||||
|
[English](../../README.md) | [Русский](README.ru.md) | [中文](README.zh.md) | [日本語](README.ja.md) | [Italiano](README.it.md)
|
||||||
|
|
||||||
|
Ein einfacher Weg, um Seiten und Dateien über das [Reticulum-Netzwerk](https://reticulum.network/) bereitzustellen. Drop-in-Ersatz für [NomadNet](https://github.com/markqvist/NomadNet)-Knoten, die hauptsächlich Seiten und Dateien bereitstellen.
|
||||||
|
|
||||||
|
## Funktionen
|
||||||
|
|
||||||
|
- Bereitstellung von Seiten und Dateien über RNS
|
||||||
|
- Unterstützung dynamischer Seiten mit Umgebungsvariablen
|
||||||
|
- Parsing von Formulardaten und Anfrageparametern
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Pip
|
||||||
|
pip install --index-url https://git.quad4.io/api/packages/RNS-Things/pypi/simple/ --extra-index-url https://pypi.org/simple rns-page-node
|
||||||
|
|
||||||
|
# Pipx
|
||||||
|
pipx install --pip-args "--index-url https://git.quad4.io/api/packages/RNS-Things/pypi/simple/ --extra-index-url https://pypi.org/simple" rns-page-node
|
||||||
|
```
|
||||||
|
|
||||||
|
**Dauerhafte Konfiguration (Optional):**
|
||||||
|
|
||||||
|
Um die Index-URLs nicht jedes Mal eingeben zu müssen, fügen Sie sie Ihrer `pip.conf` hinzu:
|
||||||
|
|
||||||
|
```ini
|
||||||
|
# ~/.config/pip/pip.conf
|
||||||
|
[global]
|
||||||
|
index-url = https://git.quad4.io/api/packages/RNS-Things/pypi/simple/
|
||||||
|
extra-index-url = https://pypi.org/simple
|
||||||
|
```
|
||||||
|
|
||||||
|
Dann können Sie einfach Folgendes verwenden:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
pip install rns-page-node
|
||||||
|
# oder
|
||||||
|
pipx install rns-page-node
|
||||||
|
```
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Pip
|
||||||
|
pipx install git+https://git.quad4.io/RNS-Things/rns-page-node.git
|
||||||
|
# Pipx via Git
|
||||||
|
pipx install git+https://git.quad4.io/RNS-Things/rns-page-node.git
|
||||||
|
# UV
|
||||||
|
uv venv
|
||||||
|
source .venv/bin/activate
|
||||||
|
uv pip install git+https://git.quad4.io/RNS-Things/rns-page-node.git
|
||||||
|
```
|
||||||
|
|
||||||
|
## Verwendung
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# verwendet das aktuelle Verzeichnis für Seiten und Dateien
|
||||||
|
rns-page-node
|
||||||
|
```
|
||||||
|
|
||||||
|
oder mit Befehlszeilenoptionen:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
rns-page-node --node-name "Page Node" --pages-dir ./pages --files-dir ./files --identity-dir ./node-config --announce-interval 360
|
||||||
|
```
|
||||||
|
|
||||||
|
oder mit einer Konfigurationsdatei:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
rns-page-node /pfad/zur/config.conf
|
||||||
|
```
|
||||||
|
|
||||||
|
### Konfigurationsdatei
|
||||||
|
|
||||||
|
Sie können eine Konfigurationsdatei verwenden, um Einstellungen dauerhaft zu speichern. Siehe `config.example` für ein Beispiel.
|
||||||
|
|
||||||
|
Das Format der Konfigurationsdatei besteht aus einfachen `Schlüssel=Wert`-Paaren:
|
||||||
|
|
||||||
|
```
|
||||||
|
# Kommentarzeilen beginnen mit #
|
||||||
|
node-name=Mein Seitenknoten
|
||||||
|
pages-dir=./pages
|
||||||
|
files-dir=./files
|
||||||
|
identity-dir=./node-config
|
||||||
|
announce-interval=360
|
||||||
|
```
|
||||||
|
|
||||||
|
Prioritätsreihenfolge: Befehlszeilenargumente > Konfigurationsdatei > Standardwerte
|
||||||
|
|
||||||
|
### Docker/Podman
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker run -it --rm -v ./pages:/app/pages -v ./files:/app/files -v ./node-config:/app/node-config -v ./reticulum-config:/home/app/.reticulum git.quad4.io/rns-things/rns-page-node:latest
|
||||||
|
```
|
||||||
|
|
||||||
|
### Docker/Podman Rootless (ohne Root)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
mkdir -p ./pages ./files ./node-config ./reticulum-config
|
||||||
|
chown -R 1000:1000 ./pages ./files ./node-config ./reticulum-config
|
||||||
|
podman run -it --rm -v ./pages:/app/pages -v ./files:/app/files -v ./node-config:/app/node-config -v ./reticulum-config:/home/app/.reticulum git.quad4.io/rns-things/rns-page-node:latest
|
||||||
|
```
|
||||||
|
|
||||||
|
Das Einbinden von Volumes ist optional, Sie können Seiten und Dateien auch mit `podman cp` oder `docker cp` in den Container kopieren.
|
||||||
|
|
||||||
|
## Build
|
||||||
|
|
||||||
|
```bash
|
||||||
|
make build
|
||||||
|
```
|
||||||
|
|
||||||
|
Wheels bauen:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
make wheel
|
||||||
|
```
|
||||||
|
|
||||||
|
### Build Wheels in Docker
|
||||||
|
|
||||||
|
```bash
|
||||||
|
make docker-wheels
|
||||||
|
```
|
||||||
|
|
||||||
|
## Seiten
|
||||||
|
|
||||||
|
Unterstützt dynamische ausführbare Seiten mit vollständigem Parsing der Anfragedaten. Seiten können Folgendes empfangen:
|
||||||
|
- Formularfelder über `field_*` Umgebungsvariablen
|
||||||
|
- Verknüpfungsvariablen über `var_*` Umgebungsvariablen
|
||||||
|
- Remote-Identität über die Umgebungsvariable `remote_identity`
|
||||||
|
- Link-ID über die Umgebungsvariable `link_id`
|
||||||
|
|
||||||
|
Dies ermöglicht die Erstellung von Foren, Chats und anderen interaktiven Anwendungen, die mit NomadNet-Clients kompatibel sind.
|
||||||
|
|
||||||
|
## Optionen
|
||||||
|
|
||||||
|
```
|
||||||
|
Positionsargumente:
|
||||||
|
node_config Pfad zur rns-page-node-Konfigurationsdatei
|
||||||
|
|
||||||
|
Optionale Argumente:
|
||||||
|
-c, --config Pfad zur Reticulum-Konfigurationsdatei
|
||||||
|
-n, --node-name Name des Knotens
|
||||||
|
-p, --pages-dir Verzeichnis, aus dem Seiten bereitgestellt werden
|
||||||
|
-f, --files-dir Verzeichnis, aus dem Dateien bereitgestellt werden
|
||||||
|
-i, --identity-dir Verzeichnis zum Speichern der Identität des Knotens
|
||||||
|
-a, --announce-interval Intervall zur Bekanntgabe der Anwesenheit des Knotens (in Minuten, Standard: 360 = 6 Stunden)
|
||||||
|
--page-refresh-interval Intervall zum Aktualisieren von Seiten (in Sekunden, 0 = deaktiviert)
|
||||||
|
--file-refresh-interval Intervall zum Aktualisieren von Dateien (in Sekunden, 0 = deaktiviert)
|
||||||
|
-l, --log-level Protokollierungsebene (DEBUG, INFO, WARNING, ERROR, CRITICAL)
|
||||||
|
```
|
||||||
|
|
||||||
|
## Lizenz
|
||||||
|
|
||||||
|
Dieses Projekt enthält Teile der Codebasis von [NomadNet](https://github.com/markqvist/NomadNet), die unter der GNU General Public License v3.0 (GPL-3.0) lizenziert ist. Als abgeleitetes Werk wird dieses Projekt ebenfalls unter den Bedingungen der GPL-3.0 verbreitet. Die vollständige Lizenz finden Sie in der Datei [LICENSE](LICENSE).
|
||||||
@@ -0,0 +1,153 @@
|
|||||||
|
# RNS Page Node
|
||||||
|
|
||||||
|
[English](../../README.md) | [Русский](README.ru.md) | [中文](README.zh.md) | [日本語](README.ja.md) | [Deutsch](README.de.md)
|
||||||
|
|
||||||
|
Un modo semplice per servire pagine e file sulla [rete Reticulum](https://reticulum.network/). Sostituto drop-in per i nodi [NomadNet](https://github.com/markqvist/NomadNet) che servono principalmente pagine e file.
|
||||||
|
|
||||||
|
## Caratteristiche
|
||||||
|
|
||||||
|
- Serve pagine e file su RNS
|
||||||
|
- Supporto per pagine dinamiche con variabili d'ambiente
|
||||||
|
- Parsing dei dati dei moduli e dei parametri di richiesta
|
||||||
|
|
||||||
|
## Installazione
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Pip
|
||||||
|
pip install --index-url https://git.quad4.io/api/packages/RNS-Things/pypi/simple/ --extra-index-url https://pypi.org/simple rns-page-node
|
||||||
|
|
||||||
|
# Pipx
|
||||||
|
pipx install --pip-args "--index-url https://git.quad4.io/api/packages/RNS-Things/pypi/simple/ --extra-index-url https://pypi.org/simple" rns-page-node
|
||||||
|
```
|
||||||
|
|
||||||
|
**Configurazione permanente (Opzionale):**
|
||||||
|
|
||||||
|
Per evitare di digitare ogni volta gli URL degli indici, aggiungili al tuo `pip.conf`:
|
||||||
|
|
||||||
|
```ini
|
||||||
|
# ~/.config/pip/pip.conf
|
||||||
|
[global]
|
||||||
|
index-url = https://git.quad4.io/api/packages/RNS-Things/pypi/simple/
|
||||||
|
extra-index-url = https://pypi.org/simple
|
||||||
|
```
|
||||||
|
|
||||||
|
Quindi puoi semplicemente usare:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
pip install rns-page-node
|
||||||
|
# o
|
||||||
|
pipx install rns-page-node
|
||||||
|
```
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Pip
|
||||||
|
pipx install git+https://git.quad4.io/RNS-Things/rns-page-node.git
|
||||||
|
# Pipx via Git
|
||||||
|
pipx install git+https://git.quad4.io/RNS-Things/rns-page-node.git
|
||||||
|
# UV
|
||||||
|
uv venv
|
||||||
|
source .venv/bin/activate
|
||||||
|
uv pip install git+https://git.quad4.io/RNS-Things/rns-page-node.git
|
||||||
|
```
|
||||||
|
|
||||||
|
## Utilizzo
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# userà la directory corrente per pagine e file
|
||||||
|
rns-page-node
|
||||||
|
```
|
||||||
|
|
||||||
|
o con le opzioni della riga di comando:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
rns-page-node --node-name "Page Node" --pages-dir ./pages --files-dir ./files --identity-dir ./node-config --announce-interval 360
|
||||||
|
```
|
||||||
|
|
||||||
|
o con un file di configurazione:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
rns-page-node /percorso/del/config.conf
|
||||||
|
```
|
||||||
|
|
||||||
|
### File di configurazione
|
||||||
|
|
||||||
|
È possibile utilizzare un file di configurazione per rendere persistenti le impostazioni. Vedere `config.example` per un esempio.
|
||||||
|
|
||||||
|
Il formato del file di configurazione consiste in semplici coppie `chiave=valore`:
|
||||||
|
|
||||||
|
```
|
||||||
|
# Le righe di commento iniziano con #
|
||||||
|
node-name=Mio Nodo Pagina
|
||||||
|
pages-dir=./pages
|
||||||
|
files-dir=./files
|
||||||
|
identity-dir=./node-config
|
||||||
|
announce-interval=360
|
||||||
|
```
|
||||||
|
|
||||||
|
Ordine di priorità: Argomenti della riga di comando > File di configurazione > Predefiniti
|
||||||
|
|
||||||
|
### Docker/Podman
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker run -it --rm -v ./pages:/app/pages -v ./files:/app/files -v ./node-config:/app/node-config -v ./reticulum-config:/home/app/.reticulum git.quad4.io/rns-things/rns-page-node:latest
|
||||||
|
```
|
||||||
|
|
||||||
|
### Docker/Podman Rootless
|
||||||
|
|
||||||
|
```bash
|
||||||
|
mkdir -p ./pages ./files ./node-config ./reticulum-config
|
||||||
|
chown -R 1000:1000 ./pages ./files ./node-config ./reticulum-config
|
||||||
|
podman run -it --rm -v ./pages:/app/pages -v ./files:/app/files -v ./node-config:/app/node-config -v ./reticulum-config:/home/app/.reticulum git.quad4.io/rns-things/rns-page-node:latest
|
||||||
|
```
|
||||||
|
|
||||||
|
Il montaggio dei volumi è opzionale, è anche possibile copiare pagine e file nel container con `podman cp` o `docker cp`.
|
||||||
|
|
||||||
|
## Compilazione
|
||||||
|
|
||||||
|
```bash
|
||||||
|
make build
|
||||||
|
```
|
||||||
|
|
||||||
|
Costruire le Wheels:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
make wheel
|
||||||
|
```
|
||||||
|
|
||||||
|
### Costruire le Wheels in Docker
|
||||||
|
|
||||||
|
```bash
|
||||||
|
make docker-wheels
|
||||||
|
```
|
||||||
|
|
||||||
|
## Pagine
|
||||||
|
|
||||||
|
Supporta pagine dinamiche eseguibili con parsing completo dei dati di richiesta. Le pagine possono ricevere:
|
||||||
|
- Campi del modulo tramite variabili d'ambiente `field_*`
|
||||||
|
- Variabili di collegamento tramite variabili d'ambiente `var_*`
|
||||||
|
- Identità remota tramite la variabile d'ambiente `remote_identity`
|
||||||
|
- ID collegamento tramite la variabile d'ambiente `link_id`
|
||||||
|
|
||||||
|
Ciò consente la creazione di forum, chat e altre applicazioni interattive compatibili con i client NomadNet.
|
||||||
|
|
||||||
|
## Opzioni
|
||||||
|
|
||||||
|
```
|
||||||
|
Argomenti posizionali:
|
||||||
|
node_config Percorso del file di configurazione di rns-page-node
|
||||||
|
|
||||||
|
Argomenti opzionali:
|
||||||
|
-c, --config Percorso del file di configurazione di Reticulum
|
||||||
|
-n, --node-name Nome del nodo
|
||||||
|
-p, --pages-dir Directory da cui servire le pagine
|
||||||
|
-f, --files-dir Directory da cui servire i file
|
||||||
|
-i, --identity-dir Directory per rendere persistente l'identità del nodo
|
||||||
|
-a, --announce-interval Intervallo per annunciare la presenza del nodo (in minuti, predefinito: 360 = 6 ore)
|
||||||
|
--page-refresh-interval Intervallo per aggiornare le pagine (in secondi, 0 = disabilitato)
|
||||||
|
--file-refresh-interval Intervallo per aggiornare i file (in secondi, 0 = disabilitato)
|
||||||
|
-l, --log-level Livello di logging (DEBUG, INFO, WARNING, ERROR, CRITICAL)
|
||||||
|
```
|
||||||
|
|
||||||
|
## Licenza
|
||||||
|
|
||||||
|
Questo progetto incorpora parti della base di codice di [NomadNet](https://github.com/markqvist/NomadNet), che è concesso in licenza con la GNU General Public License v3.0 (GPL-3.0). Come opera derivata, questo progetto è distribuito anche secondo i termini della licenza GPL-3.0. Vedere il file [LICENSE](LICENSE) per la licenza completa.
|
||||||
@@ -0,0 +1,153 @@
|
|||||||
|
# RNS Page Node
|
||||||
|
|
||||||
|
[English](../../README.md) | [Русский](README.ru.md) | [中文](README.zh.md) | [Italiano](README.it.md) | [Deutsch](README.de.md)
|
||||||
|
|
||||||
|
[Reticulum ネットワーク](https://reticulum.network/)を介してページやファイルを提供するためのシンプルな方法です。主にページやファイルを提供する [NomadNet](https://github.com/markqvist/NomadNet) ノードのドロップイン代替品です。
|
||||||
|
|
||||||
|
## 特徴
|
||||||
|
|
||||||
|
- RNS を介したページおよびファイルの提供
|
||||||
|
- 環境変数による動的ページのサポート
|
||||||
|
- フォームデータとリクエストパラメータの解析
|
||||||
|
|
||||||
|
## インストール
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Pip
|
||||||
|
pip install --index-url https://git.quad4.io/api/packages/RNS-Things/pypi/simple/ --extra-index-url https://pypi.org/simple rns-page-node
|
||||||
|
|
||||||
|
# Pipx
|
||||||
|
pipx install --pip-args "--index-url https://git.quad4.io/api/packages/RNS-Things/pypi/simple/ --extra-index-url https://pypi.org/simple" rns-page-node
|
||||||
|
```
|
||||||
|
|
||||||
|
**永続的な設定 (オプション):**
|
||||||
|
|
||||||
|
毎回インデックス URL を入力しなくて済むように、`pip.conf` に追加します。
|
||||||
|
|
||||||
|
```ini
|
||||||
|
# ~/.config/pip/pip.conf
|
||||||
|
[global]
|
||||||
|
index-url = https://git.quad4.io/api/packages/RNS-Things/pypi/simple/
|
||||||
|
extra-index-url = https://pypi.org/simple
|
||||||
|
```
|
||||||
|
|
||||||
|
その後は、単に以下を使用できます。
|
||||||
|
|
||||||
|
```bash
|
||||||
|
pip install rns-page-node
|
||||||
|
# または
|
||||||
|
pipx install rns-page-node
|
||||||
|
```
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Pip
|
||||||
|
pipx install git+https://git.quad4.io/RNS-Things/rns-page-node.git
|
||||||
|
# Git 経由の Pipx
|
||||||
|
pipx install git+https://git.quad4.io/RNS-Things/rns-page-node.git
|
||||||
|
# UV
|
||||||
|
uv venv
|
||||||
|
source .venv/bin/activate
|
||||||
|
uv pip install git+https://git.quad4.io/RNS-Things/rns-page-node.git
|
||||||
|
```
|
||||||
|
|
||||||
|
## 使用法
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# カレントディレクトリをページとファイルのソースとして使用します
|
||||||
|
rns-page-node
|
||||||
|
```
|
||||||
|
|
||||||
|
または、コマンドラインオプションを使用します:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
rns-page-node --node-name "Page Node" --pages-dir ./pages --files-dir ./files --identity-dir ./node-config --announce-interval 360
|
||||||
|
```
|
||||||
|
|
||||||
|
または、設定ファイルを使用します:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
rns-page-node /path/to/config.conf
|
||||||
|
```
|
||||||
|
|
||||||
|
### 設定ファイル
|
||||||
|
|
||||||
|
設定を永続化するために設定ファイルを使用できます。例については `config.example` を参照してください。
|
||||||
|
|
||||||
|
設定ファイルの形式は単純な `key=value` のペアです:
|
||||||
|
|
||||||
|
```
|
||||||
|
# # で始まる行はコメントです
|
||||||
|
node-name=My Page Node
|
||||||
|
pages-dir=./pages
|
||||||
|
files-dir=./files
|
||||||
|
identity-dir=./node-config
|
||||||
|
announce-interval=360
|
||||||
|
```
|
||||||
|
|
||||||
|
優先順位:コマンドライン引数 > 設定ファイル > デフォルト
|
||||||
|
|
||||||
|
### Docker/Podman
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker run -it --rm -v ./pages:/app/pages -v ./files:/app/files -v ./node-config:/app/node-config -v ./reticulum-config:/home/app/.reticulum git.quad4.io/rns-things/rns-page-node:latest
|
||||||
|
```
|
||||||
|
|
||||||
|
### Docker/Podman ルートレス (Rootless)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
mkdir -p ./pages ./files ./node-config ./reticulum-config
|
||||||
|
chown -R 1000:1000 ./pages ./files ./node-config ./reticulum-config
|
||||||
|
podman run -it --rm -v ./pages:/app/pages -v ./files:/app/files -v ./node-config:/app/node-config -v ./reticulum-config:/home/app/.reticulum git.quad4.io/rns-things/rns-page-node:latest
|
||||||
|
```
|
||||||
|
|
||||||
|
ボリュームのマウントはオプションです。`podman cp` または `docker cp` を使用してページやファイルをコンテナにコピーすることもできます。
|
||||||
|
|
||||||
|
## ビルド
|
||||||
|
|
||||||
|
```bash
|
||||||
|
make build
|
||||||
|
```
|
||||||
|
|
||||||
|
Wheels のビルド:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
make wheel
|
||||||
|
```
|
||||||
|
|
||||||
|
### Docker での Wheels のビルド
|
||||||
|
|
||||||
|
```bash
|
||||||
|
make docker-wheels
|
||||||
|
```
|
||||||
|
|
||||||
|
## ページ
|
||||||
|
|
||||||
|
完全なリクエストデータ解析を備えた動的実行可能ページをサポートします。ページは以下を受け取ることができます:
|
||||||
|
- `field_*` 環境変数を介したフォームフィールド
|
||||||
|
- `var_*` 環境変数を介したリンク変数
|
||||||
|
- `remote_identity` 環境変数を介したリモート ID
|
||||||
|
- `link_id` 環境変数を介したリンク ID
|
||||||
|
|
||||||
|
これにより、NomadNet クライアントと互換性のあるフォーラム、チャット、その他のインタラクティブなアプリケーションの作成が可能になります。
|
||||||
|
|
||||||
|
## オプション
|
||||||
|
|
||||||
|
```
|
||||||
|
位置引数:
|
||||||
|
node_config rns-page-node 設定ファイルのパス
|
||||||
|
|
||||||
|
オプション引数:
|
||||||
|
-c, --config Reticulum 設定ファイルのパス
|
||||||
|
-n, --node-name ノードの名前
|
||||||
|
-p, --pages-dir ページを提供するディレクトリ
|
||||||
|
-f, --files-dir ファイルを提供するディレクトリ
|
||||||
|
-i, --identity-dir ノードの ID を永続化するディレクトリ
|
||||||
|
-a, --announce-interval ノードの存在をアナウンスする間隔(分単位、デフォルト:360 = 6 時間)
|
||||||
|
--page-refresh-interval ページを更新する間隔(秒単位、0 = 無効)
|
||||||
|
--file-refresh-interval ファイルを更新する間隔(秒単位、0 = 無効)
|
||||||
|
-l, --log-level ログレベル (DEBUG, INFO, WARNING, ERROR, CRITICAL)
|
||||||
|
```
|
||||||
|
|
||||||
|
## ライセンス
|
||||||
|
|
||||||
|
このプロジェクトには、GNU General Public License v3.0 (GPL-3.0) の下でライセンスされている [NomadNet](https://github.com/markqvist/NomadNet) コードベースの一部が組み込まれています。派生作品として、このプロジェクトも GPL-3.0 の条項に基づいて配布されます。完全なライセンスについては、[LICENSE](LICENSE) ファイルを参照してください。
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
# RNS Page Node
|
# RNS Page Node
|
||||||
|
|
||||||
[English](README.md)
|
[English](../../README.md) | [中文](README.zh.md) | [日本語](README.ja.md) | [Italiano](README.it.md) | [Deutsch](README.de.md)
|
||||||
|
|
||||||
Простой способ для раздачи страниц и файлов через сеть [Reticulum](https://reticulum.network/). Прямая замена для узлов [NomadNet](https://github.com/markqvist/NomadNet), которые в основном служат для раздачи страниц и файлов.
|
Простой способ для раздачи страниц и файлов через сеть [Reticulum](https://reticulum.network/). Прямая замена для узлов [NomadNet](https://github.com/markqvist/NomadNet), которые в основном служат для раздачи страниц и файлов.
|
||||||
|
|
||||||
@@ -14,21 +14,42 @@
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Pip
|
# Pip
|
||||||
# Может потребоваться --break-system-packages
|
pip install --index-url https://git.quad4.io/api/packages/RNS-Things/pypi/simple/ --extra-index-url https://pypi.org/simple rns-page-node
|
||||||
pip install rns-page-node
|
|
||||||
|
|
||||||
# Pipx
|
# Pipx
|
||||||
|
pipx install --pip-args "--index-url https://git.quad4.io/api/packages/RNS-Things/pypi/simple/ --extra-index-url https://pypi.org/simple" rns-page-node
|
||||||
|
```
|
||||||
|
|
||||||
|
**Постоянная конфигурация (опционально):**
|
||||||
|
|
||||||
|
Чтобы не вводить URL-адреса индексов каждый раз, добавьте их в свой `pip.conf`:
|
||||||
|
|
||||||
|
```ini
|
||||||
|
# ~/.config/pip/pip.conf
|
||||||
|
[global]
|
||||||
|
index-url = https://git.quad4.io/api/packages/RNS-Things/pypi/simple/
|
||||||
|
extra-index-url = https://pypi.org/simple
|
||||||
|
```
|
||||||
|
|
||||||
|
Затем вы сможете просто использовать:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
pip install rns-page-node
|
||||||
|
# или
|
||||||
pipx install rns-page-node
|
pipx install rns-page-node
|
||||||
|
```
|
||||||
|
|
||||||
# uv
|
```bash
|
||||||
uv venv
|
# Pip
|
||||||
source .venv/bin/activate
|
pipx install git+https://git.quad4.io/RNS-Things/rns-page-node.git
|
||||||
uv pip install rns-page-node
|
|
||||||
|
|
||||||
# Pipx через Git
|
# Pipx через Git
|
||||||
pipx install git+https://git.quad4.io/RNS-Things/rns-page-node.git
|
pipx install git+https://git.quad4.io/RNS-Things/rns-page-node.git
|
||||||
|
# UV
|
||||||
|
uv venv
|
||||||
|
source .venv/bin/activate
|
||||||
|
uv pip install git+https://git.quad4.io/RNS-Things/rns-page-node.git
|
||||||
```
|
```
|
||||||
|
|
||||||
## Использование
|
## Использование
|
||||||
```bash
|
```bash
|
||||||
# будет использовать текущий каталог для страниц и файлов
|
# будет использовать текущий каталог для страниц и файлов
|
||||||
@@ -64,14 +85,14 @@ announce-interval=360
|
|||||||
|
|
||||||
### Docker/Podman
|
### Docker/Podman
|
||||||
```bash
|
```bash
|
||||||
docker run -it --rm -v ./pages:/app/pages -v ./files:/app/files -v ./node-config:/app/node-config -v ./config:/root/.reticulum git.quad4.io/rns-things/rns-page-node:latest
|
docker run -it --rm -v ./pages:/app/pages -v ./files:/app/files -v ./node-config:/app/node-config -v ./reticulum-config:/home/app/.reticulum git.quad4.io/rns-things/rns-page-node:latest
|
||||||
```
|
```
|
||||||
|
|
||||||
### Docker/Podman без root-доступа
|
### Docker/Podman без root-доступа
|
||||||
```bash
|
```bash
|
||||||
mkdir -p ./pages ./files ./node-config ./config
|
mkdir -p ./pages ./files ./node-config ./reticulum-config
|
||||||
chown -R 1000:1000 ./pages ./files ./node-config ./config
|
chown -R 1000:1000 ./pages ./files ./node-config ./reticulum-config
|
||||||
podman run -it --rm -v ./pages:/app/pages -v ./files:/app/files -v ./node-config:/app/node-config -v ./config:/app/config git.quad4.io/rns-things/rns-page-node:latest-rootless
|
podman run -it --rm -v ./pages:/app/pages -v ./files:/app/files -v ./node-config:/app/node-config -v ./reticulum-config:/home/app/.reticulum git.quad4.io/rns-things/rns-page-node:latest
|
||||||
```
|
```
|
||||||
|
|
||||||
Монтирование томов необязательно, вы также можете скопировать страницы и файлы в контейнер с помощью `podman cp` или `docker cp`.
|
Монтирование томов необязательно, вы также можете скопировать страницы и файлы в контейнер с помощью `podman cp` или `docker cp`.
|
||||||
@@ -0,0 +1,153 @@
|
|||||||
|
# RNS Page Node
|
||||||
|
|
||||||
|
[English](../../README.md) | [Русский](README.ru.md) | [日本語](README.ja.md) | [Italiano](README.it.md) | [Deutsch](README.de.md)
|
||||||
|
|
||||||
|
一种通过 [Reticulum 网络](https://reticulum.network/) 提供页面和文件的简单方法。主要用于提供页面和文件的 [NomadNet](https://github.com/markqvist/NomadNet) 节点的掉入式替代方案。
|
||||||
|
|
||||||
|
## 特性
|
||||||
|
|
||||||
|
- 通过 RNS 提供页面和文件
|
||||||
|
- 支持带有环境变量的动态页面
|
||||||
|
- 表单数据和请求参数解析
|
||||||
|
|
||||||
|
## 安装
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Pip
|
||||||
|
pip install --index-url https://git.quad4.io/api/packages/RNS-Things/pypi/simple/ --extra-index-url https://pypi.org/simple rns-page-node
|
||||||
|
|
||||||
|
# Pipx
|
||||||
|
pipx install --pip-args "--index-url https://git.quad4.io/api/packages/RNS-Things/pypi/simple/ --extra-index-url https://pypi.org/simple" rns-page-node
|
||||||
|
```
|
||||||
|
|
||||||
|
**持久化配置 (可选):**
|
||||||
|
|
||||||
|
为了避免每次都输入索引 URL,请将它们添加到您的 `pip.conf` 中:
|
||||||
|
|
||||||
|
```ini
|
||||||
|
# ~/.config/pip/pip.conf
|
||||||
|
[global]
|
||||||
|
index-url = https://git.quad4.io/api/packages/RNS-Things/pypi/simple/
|
||||||
|
extra-index-url = https://pypi.org/simple
|
||||||
|
```
|
||||||
|
|
||||||
|
然后您就可以简单地使用:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
pip install rns-page-node
|
||||||
|
# 或者
|
||||||
|
pipx install rns-page-node
|
||||||
|
```
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Pip
|
||||||
|
pipx install git+https://git.quad4.io/RNS-Things/rns-page-node.git
|
||||||
|
# 通过 Git 安装 Pipx
|
||||||
|
pipx install git+https://git.quad4.io/RNS-Things/rns-page-node.git
|
||||||
|
# UV
|
||||||
|
uv venv
|
||||||
|
source .venv/bin/activate
|
||||||
|
uv pip install git+https://git.quad4.io/RNS-Things/rns-page-node.git
|
||||||
|
```
|
||||||
|
|
||||||
|
## 使用
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# 将使用当前目录作为页面和文件的来源
|
||||||
|
rns-page-node
|
||||||
|
```
|
||||||
|
|
||||||
|
或者使用命令行选项:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
rns-page-node --node-name "Page Node" --pages-dir ./pages --files-dir ./files --identity-dir ./node-config --announce-interval 360
|
||||||
|
```
|
||||||
|
|
||||||
|
或者使用配置文件:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
rns-page-node /path/to/config.conf
|
||||||
|
```
|
||||||
|
|
||||||
|
### 配置文件
|
||||||
|
|
||||||
|
您可以使用配置文件来持久化设置。请参阅 `config.example` 获取示例。
|
||||||
|
|
||||||
|
配置文件格式为简单的 `key=value` 键值对:
|
||||||
|
|
||||||
|
```
|
||||||
|
# 以 # 开头的行为注释
|
||||||
|
node-name=我的页面节点
|
||||||
|
pages-dir=./pages
|
||||||
|
files-dir=./files
|
||||||
|
identity-dir=./node-config
|
||||||
|
announce-interval=360
|
||||||
|
```
|
||||||
|
|
||||||
|
优先级:命令行参数 > 配置文件 > 默认值
|
||||||
|
|
||||||
|
### Docker/Podman
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker run -it --rm -v ./pages:/app/pages -v ./files:/app/files -v ./node-config:/app/node-config -v ./reticulum-config:/home/app/.reticulum git.quad4.io/rns-things/rns-page-node:latest
|
||||||
|
```
|
||||||
|
|
||||||
|
### Docker/Podman 无根模式 (Rootless)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
mkdir -p ./pages ./files ./node-config ./reticulum-config
|
||||||
|
chown -R 1000:1000 ./pages ./files ./node-config ./reticulum-config
|
||||||
|
podman run -it --rm -v ./pages:/app/pages -v ./files:/app/files -v ./node-config:/app/node-config -v ./reticulum-config:/home/app/.reticulum git.quad4.io/rns-things/rns-page-node:latest
|
||||||
|
```
|
||||||
|
|
||||||
|
挂载卷是可选的,您也可以使用 `podman cp` 或 `docker cp` 将页面和文件复制到容器中。
|
||||||
|
|
||||||
|
## 编译
|
||||||
|
|
||||||
|
```bash
|
||||||
|
make build
|
||||||
|
```
|
||||||
|
|
||||||
|
编译 Wheels:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
make wheel
|
||||||
|
```
|
||||||
|
|
||||||
|
### 在 Docker 中编译 Wheels
|
||||||
|
|
||||||
|
```bash
|
||||||
|
make docker-wheels
|
||||||
|
```
|
||||||
|
|
||||||
|
## 页面
|
||||||
|
|
||||||
|
支持具有完整请求数据解析的动态可执行页面。页面可以接收:
|
||||||
|
- 通过 `field_*` 环境变量接收表单字段
|
||||||
|
- 通过 `var_*` 环境变量接收链接变量
|
||||||
|
- 通过 `remote_identity` 环境变量接收远程身份
|
||||||
|
- 通过 `link_id` 环境变量接收链接 ID
|
||||||
|
|
||||||
|
这使得创建与 NomadNet 客户端兼容的论坛、聊天和其他交互式应用程序成为可能。
|
||||||
|
|
||||||
|
## 选项
|
||||||
|
|
||||||
|
```
|
||||||
|
位置参数:
|
||||||
|
node_config rns-page-node 配置文件的路径
|
||||||
|
|
||||||
|
可选参数:
|
||||||
|
-c, --config Reticulum 配置文件的路径
|
||||||
|
-n, --node-name 节点名称
|
||||||
|
-p, --pages-dir 提供页面的目录
|
||||||
|
-f, --files-dir 提供文件的目录
|
||||||
|
-i, --identity-dir 持久化节点身份的目录
|
||||||
|
-a, --announce-interval 宣告节点存在的间隔(以分钟为单位,默认值:360 = 6 小时)
|
||||||
|
--page-refresh-interval 刷新页面的间隔(以秒为单位,0 = 禁用)
|
||||||
|
--file-refresh-interval 刷新文件的间隔(以秒为单位,0 = 禁用)
|
||||||
|
-l, --log-level 日志级别 (DEBUG, INFO, WARNING, ERROR, CRITICAL)
|
||||||
|
```
|
||||||
|
|
||||||
|
## 许可证
|
||||||
|
|
||||||
|
本工程集成了 [NomadNet](https://github.com/markqvist/NomadNet) 代码库的部分内容,该代码库采用 GNU General Public License v3.0 (GPL-3.0) 许可。作为衍生作品,本工程也根据 GPL-3.0 的条款进行分发。有关完整许可证,请参阅 [LICENSE](LICENSE) 文件。
|
||||||
Generated
+669
-29
@@ -1,12 +1,41 @@
|
|||||||
# This file is automatically @generated by Poetry 2.2.1 and should not be changed by hand.
|
# This file is automatically @generated by Poetry 2.2.1 and should not be changed by hand.
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "backports-tarfile"
|
||||||
|
version = "1.2.0"
|
||||||
|
description = "Backport of CPython tarfile module"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.8"
|
||||||
|
groups = ["dev"]
|
||||||
|
markers = "platform_machine != \"ppc64le\" and platform_machine != \"s390x\" and python_version < \"3.12\""
|
||||||
|
files = [
|
||||||
|
{file = "backports.tarfile-1.2.0-py3-none-any.whl", hash = "sha256:77e284d754527b01fb1e6fa8a1afe577858ebe4e9dad8919e34c862cb399bc34"},
|
||||||
|
{file = "backports_tarfile-1.2.0.tar.gz", hash = "sha256:d75e02c268746e1b8144c278978b6e98e85de6ad16f8e4b0844a154557eca991"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.extras]
|
||||||
|
docs = ["furo", "jaraco.packaging (>=9.3)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
|
||||||
|
testing = ["jaraco.test", "pytest (!=8.0.*)", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)"]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "certifi"
|
||||||
|
version = "2026.1.4"
|
||||||
|
description = "Python package for providing Mozilla's CA Bundle."
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.7"
|
||||||
|
groups = ["dev"]
|
||||||
|
files = [
|
||||||
|
{file = "certifi-2026.1.4-py3-none-any.whl", hash = "sha256:9943707519e4add1115f44c2bc244f782c0249876bf51b6599fee1ffbedd685c"},
|
||||||
|
{file = "certifi-2026.1.4.tar.gz", hash = "sha256:ac726dd470482006e014ad384921ed6438c457018f4b3d204aea4281258b2120"},
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "cffi"
|
name = "cffi"
|
||||||
version = "2.0.0"
|
version = "2.0.0"
|
||||||
description = "Foreign Function Interface for Python calling C code."
|
description = "Foreign Function Interface for Python calling C code."
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = ">=3.9"
|
python-versions = ">=3.9"
|
||||||
groups = ["main"]
|
groups = ["main", "dev"]
|
||||||
markers = "platform_python_implementation != \"PyPy\""
|
markers = "platform_python_implementation != \"PyPy\""
|
||||||
files = [
|
files = [
|
||||||
{file = "cffi-2.0.0-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:0cf2d91ecc3fcc0625c2c530fe004f82c110405f101548512cce44322fa8ac44"},
|
{file = "cffi-2.0.0-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:0cf2d91ecc3fcc0625c2c530fe004f82c110405f101548512cce44322fa8ac44"},
|
||||||
@@ -98,13 +127,136 @@ files = [
|
|||||||
[package.dependencies]
|
[package.dependencies]
|
||||||
pycparser = {version = "*", markers = "implementation_name != \"PyPy\""}
|
pycparser = {version = "*", markers = "implementation_name != \"PyPy\""}
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "charset-normalizer"
|
||||||
|
version = "3.4.4"
|
||||||
|
description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet."
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.7"
|
||||||
|
groups = ["dev"]
|
||||||
|
files = [
|
||||||
|
{file = "charset_normalizer-3.4.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e824f1492727fa856dd6eda4f7cee25f8518a12f3c4a56a74e8095695089cf6d"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4bd5d4137d500351a30687c2d3971758aac9a19208fc110ccb9d7188fbe709e8"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:027f6de494925c0ab2a55eab46ae5129951638a49a34d87f4c3eda90f696b4ad"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f820802628d2694cb7e56db99213f930856014862f3fd943d290ea8438d07ca8"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:798d75d81754988d2565bff1b97ba5a44411867c0cf32b77a7e8f8d84796b10d"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9d1bb833febdff5c8927f922386db610b49db6e0d4f4ee29601d71e7c2694313"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:9cd98cdc06614a2f768d2b7286d66805f94c48cde050acdbbb7db2600ab3197e"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:077fbb858e903c73f6c9db43374fd213b0b6a778106bc7032446a8e8b5b38b93"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:244bfb999c71b35de57821b8ea746b24e863398194a4014e4c76adc2bbdfeff0"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:64b55f9dce520635f018f907ff1b0df1fdc31f2795a922fb49dd14fbcdf48c84"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:faa3a41b2b66b6e50f84ae4a68c64fcd0c44355741c6374813a800cd6695db9e"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:6515f3182dbe4ea06ced2d9e8666d97b46ef4c75e326b79bb624110f122551db"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cc00f04ed596e9dc0da42ed17ac5e596c6ccba999ba6bd92b0e0aef2f170f2d6"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp310-cp310-win32.whl", hash = "sha256:f34be2938726fc13801220747472850852fe6b1ea75869a048d6f896838c896f"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp310-cp310-win_amd64.whl", hash = "sha256:a61900df84c667873b292c3de315a786dd8dac506704dea57bc957bd31e22c7d"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp310-cp310-win_arm64.whl", hash = "sha256:cead0978fc57397645f12578bfd2d5ea9138ea0fac82b2f63f7f7c6877986a69"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:6e1fcf0720908f200cd21aa4e6750a48ff6ce4afe7ff5a79a90d5ed8a08296f8"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5f819d5fe9234f9f82d75bdfa9aef3a3d72c4d24a6e57aeaebba32a704553aa0"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:a59cb51917aa591b1c4e6a43c132f0cdc3c76dbad6155df4e28ee626cc77a0a3"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8ef3c867360f88ac904fd3f5e1f902f13307af9052646963ee08ff4f131adafc"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d9e45d7faa48ee908174d8fe84854479ef838fc6a705c9315372eacbc2f02897"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:840c25fb618a231545cbab0564a799f101b63b9901f2569faecd6b222ac72381"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:ca5862d5b3928c4940729dacc329aa9102900382fea192fc5e52eb69d6093815"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d9c7f57c3d666a53421049053eaacdd14bbd0a528e2186fcb2e672effd053bb0"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:277e970e750505ed74c832b4bf75dac7476262ee2a013f5574dd49075879e161"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:31fd66405eaf47bb62e8cd575dc621c56c668f27d46a61d975a249930dd5e2a4"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:0d3d8f15c07f86e9ff82319b3d9ef6f4bf907608f53fe9d92b28ea9ae3d1fd89"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:9f7fcd74d410a36883701fafa2482a6af2ff5ba96b9a620e9e0721e28ead5569"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ebf3e58c7ec8a8bed6d66a75d7fb37b55e5015b03ceae72a8e7c74495551e224"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp311-cp311-win32.whl", hash = "sha256:eecbc200c7fd5ddb9a7f16c7decb07b566c29fa2161a16cf67b8d068bd21690a"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp311-cp311-win_amd64.whl", hash = "sha256:5ae497466c7901d54b639cf42d5b8c1b6a4fead55215500d2f486d34db48d016"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp311-cp311-win_arm64.whl", hash = "sha256:65e2befcd84bc6f37095f5961e68a6f077bf44946771354a28ad434c2cce0ae1"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0a98e6759f854bd25a58a73fa88833fba3b7c491169f86ce1180c948ab3fd394"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b5b290ccc2a263e8d185130284f8501e3e36c5e02750fc6b6bdeb2e9e96f1e25"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:74bb723680f9f7a6234dcf67aea57e708ec1fbdf5699fb91dfd6f511b0a320ef"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f1e34719c6ed0b92f418c7c780480b26b5d9c50349e9a9af7d76bf757530350d"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:2437418e20515acec67d86e12bf70056a33abdacb5cb1655042f6538d6b085a8"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:11d694519d7f29d6cd09f6ac70028dba10f92f6cdd059096db198c283794ac86"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:ac1c4a689edcc530fc9d9aa11f5774b9e2f33f9a0c6a57864e90908f5208d30a"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:21d142cc6c0ec30d2efee5068ca36c128a30b0f2c53c1c07bd78cb6bc1d3be5f"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:5dbe56a36425d26d6cfb40ce79c314a2e4dd6211d51d6d2191c00bed34f354cc"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5bfbb1b9acf3334612667b61bd3002196fe2a1eb4dd74d247e0f2a4d50ec9bbf"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:d055ec1e26e441f6187acf818b73564e6e6282709e9bcb5b63f5b23068356a15"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:af2d8c67d8e573d6de5bc30cdb27e9b95e49115cd9baad5ddbd1a6207aaa82a9"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:780236ac706e66881f3b7f2f32dfe90507a09e67d1d454c762cf642e6e1586e0"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp312-cp312-win32.whl", hash = "sha256:5833d2c39d8896e4e19b689ffc198f08ea58116bee26dea51e362ecc7cd3ed26"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp312-cp312-win_amd64.whl", hash = "sha256:a79cfe37875f822425b89a82333404539ae63dbdddf97f84dcbc3d339aae9525"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp312-cp312-win_arm64.whl", hash = "sha256:376bec83a63b8021bb5c8ea75e21c4ccb86e7e45ca4eb81146091b56599b80c3"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e1f185f86a6f3403aa2420e815904c67b2f9ebc443f045edd0de921108345794"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6b39f987ae8ccdf0d2642338faf2abb1862340facc796048b604ef14919e55ed"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3162d5d8ce1bb98dd51af660f2121c55d0fa541b46dff7bb9b9f86ea1d87de72"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:81d5eb2a312700f4ecaa977a8235b634ce853200e828fbadf3a9c50bab278328"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5bd2293095d766545ec1a8f612559f6b40abc0eb18bb2f5d1171872d34036ede"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a8a8b89589086a25749f471e6a900d3f662d1d3b6e2e59dcecf787b1cc3a1894"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:bc7637e2f80d8530ee4a78e878bce464f70087ce73cf7c1caf142416923b98f1"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f8bf04158c6b607d747e93949aa60618b61312fe647a6369f88ce2ff16043490"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:554af85e960429cf30784dd47447d5125aaa3b99a6f0683589dbd27e2f45da44"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:74018750915ee7ad843a774364e13a3db91682f26142baddf775342c3f5b1133"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:c0463276121fdee9c49b98908b3a89c39be45d86d1dbaa22957e38f6321d4ce3"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:362d61fd13843997c1c446760ef36f240cf81d3ebf74ac62652aebaf7838561e"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9a26f18905b8dd5d685d6d07b0cdf98a79f3c7a918906af7cc143ea2e164c8bc"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp313-cp313-win32.whl", hash = "sha256:9b35f4c90079ff2e2edc5b26c0c77925e5d2d255c42c74fdb70fb49b172726ac"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp313-cp313-win_amd64.whl", hash = "sha256:b435cba5f4f750aa6c0a0d92c541fb79f69a387c91e61f1795227e4ed9cece14"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp313-cp313-win_arm64.whl", hash = "sha256:542d2cee80be6f80247095cc36c418f7bddd14f4a6de45af91dfad36d817bba2"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:da3326d9e65ef63a817ecbcc0df6e94463713b754fe293eaa03da99befb9a5bd"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8af65f14dc14a79b924524b1e7fffe304517b2bff5a58bf64f30b98bbc5079eb"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:74664978bb272435107de04e36db5a9735e78232b85b77d45cfb38f758efd33e"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:752944c7ffbfdd10c074dc58ec2d5a8a4cd9493b314d367c14d24c17684ddd14"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d1f13550535ad8cff21b8d757a3257963e951d96e20ec82ab44bc64aeb62a191"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ecaae4149d99b1c9e7b88bb03e3221956f68fd6d50be2ef061b2381b61d20838"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:cb6254dc36b47a990e59e1068afacdcd02958bdcce30bb50cc1700a8b9d624a6"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:c8ae8a0f02f57a6e61203a31428fa1d677cbe50c93622b4149d5c0f319c1d19e"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:47cc91b2f4dd2833fddaedd2893006b0106129d4b94fdb6af1f4ce5a9965577c"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:82004af6c302b5d3ab2cfc4cc5f29db16123b1a8417f2e25f9066f91d4411090"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:2b7d8f6c26245217bd2ad053761201e9f9680f8ce52f0fcd8d0755aeae5b2152"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:799a7a5e4fb2d5898c60b640fd4981d6a25f1c11790935a44ce38c54e985f828"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:99ae2cffebb06e6c22bdc25801d7b30f503cc87dbd283479e7b606f70aff57ec"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp314-cp314-win32.whl", hash = "sha256:f9d332f8c2a2fcbffe1378594431458ddbef721c1769d78e2cbc06280d8155f9"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp314-cp314-win_amd64.whl", hash = "sha256:8a6562c3700cce886c5be75ade4a5db4214fda19fede41d9792d100288d8f94c"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp314-cp314-win_arm64.whl", hash = "sha256:de00632ca48df9daf77a2c65a484531649261ec9f25489917f09e455cb09ddb2"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:ce8a0633f41a967713a59c4139d29110c07e826d131a316b50ce11b1d79b4f84"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:eaabd426fe94daf8fd157c32e571c85cb12e66692f15516a83a03264b08d06c3"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:c4ef880e27901b6cc782f1b95f82da9313c0eb95c3af699103088fa0ac3ce9ac"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2aaba3b0819274cc41757a1da876f810a3e4d7b6eb25699253a4effef9e8e4af"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:778d2e08eda00f4256d7f672ca9fef386071c9202f5e4607920b86d7803387f2"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f155a433c2ec037d4e8df17d18922c3a0d9b3232a396690f17175d2946f0218d"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp38-cp38-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:a8bf8d0f749c5757af2142fe7903a9df1d2e8aa3841559b2bad34b08d0e2bcf3"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:194f08cbb32dc406d6e1aea671a68be0823673db2832b38405deba2fb0d88f63"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp38-cp38-musllinux_1_2_armv7l.whl", hash = "sha256:6aee717dcfead04c6eb1ce3bd29ac1e22663cdea57f943c87d1eab9a025438d7"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:cd4b7ca9984e5e7985c12bc60a6f173f3c958eae74f3ef6624bb6b26e2abbae4"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp38-cp38-musllinux_1_2_riscv64.whl", hash = "sha256:b7cf1017d601aa35e6bb650b6ad28652c9cd78ee6caff19f3c28d03e1c80acbf"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:e912091979546adf63357d7e2ccff9b44f026c075aeaf25a52d0e95ad2281074"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:5cb4d72eea50c8868f5288b7f7f33ed276118325c1dfd3957089f6b519e1382a"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp38-cp38-win32.whl", hash = "sha256:837c2ce8c5a65a2035be9b3569c684358dfbf109fd3b6969630a87535495ceaa"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp38-cp38-win_amd64.whl", hash = "sha256:44c2a8734b333e0578090c4cd6b16f275e07aa6614ca8715e6c038e865e70576"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a9768c477b9d7bd54bc0c86dbaebdec6f03306675526c9927c0e8a04e8f94af9"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1bee1e43c28aa63cb16e5c14e582580546b08e535299b8b6158a7c9c768a1f3d"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:fd44c878ea55ba351104cb93cc85e74916eb8fa440ca7903e57575e97394f608"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:0f04b14ffe5fdc8c4933862d8306109a2c51e0704acfa35d51598eb45a1e89fc"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:cd09d08005f958f370f539f186d10aec3377d55b9eeb0d796025d4886119d76e"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4fe7859a4e3e8457458e2ff592f15ccb02f3da787fcd31e0183879c3ad4692a1"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:fa09f53c465e532f4d3db095e0c55b615f010ad81803d383195b6b5ca6cbf5f3"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7fa17817dc5625de8a027cb8b26d9fefa3ea28c8253929b8d6649e705d2835b6"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:5947809c8a2417be3267efc979c47d76a079758166f7d43ef5ae8e9f92751f88"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:4902828217069c3c5c71094537a8e623f5d097858ac6ca8252f7b4d10b7560f1"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp39-cp39-musllinux_1_2_riscv64.whl", hash = "sha256:7c308f7e26e4363d79df40ca5b2be1c6ba9f02bdbccfed5abddb7859a6ce72cf"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:2c9d3c380143a1fedbff95a312aa798578371eb29da42106a29019368a475318"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:cb01158d8b88ee68f15949894ccc6712278243d95f344770fa7593fa2d94410c"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp39-cp39-win32.whl", hash = "sha256:2677acec1a2f8ef614c6888b5b4ae4060cc184174a938ed4e8ef690e15d3e505"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp39-cp39-win_amd64.whl", hash = "sha256:f8e160feb2aed042cd657a72acc0b481212ed28b1b9a95c0cee1621b524e1966"},
|
||||||
|
{file = "charset_normalizer-3.4.4-cp39-cp39-win_arm64.whl", hash = "sha256:b5d84d37db046c5ca74ee7bb47dd6cbc13f80665fdde3e8040bdd3fb015ecb50"},
|
||||||
|
{file = "charset_normalizer-3.4.4-py3-none-any.whl", hash = "sha256:7a32c560861a02ff789ad905a2fe94e3f840803362c84fecf1851cb4cf3dc37f"},
|
||||||
|
{file = "charset_normalizer-3.4.4.tar.gz", hash = "sha256:94537985111c35f28720e43603b8e7b43a6ecfb2ce1d3058bbe955b73404e21a"},
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "cryptography"
|
name = "cryptography"
|
||||||
version = "46.0.3"
|
version = "46.0.3"
|
||||||
description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers."
|
description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers."
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = "!=3.9.0,!=3.9.1,>=3.8"
|
python-versions = "!=3.9.0,!=3.9.1,>=3.8"
|
||||||
groups = ["main"]
|
groups = ["main", "dev"]
|
||||||
files = [
|
files = [
|
||||||
{file = "cryptography-46.0.3-cp311-abi3-macosx_10_9_universal2.whl", hash = "sha256:109d4ddfadf17e8e7779c39f9b18111a09efb969a301a31e987416a0191ed93a"},
|
{file = "cryptography-46.0.3-cp311-abi3-macosx_10_9_universal2.whl", hash = "sha256:109d4ddfadf17e8e7779c39f9b18111a09efb969a301a31e987416a0191ed93a"},
|
||||||
{file = "cryptography-46.0.3-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:09859af8466b69bc3c27bdf4f5d84a665e0f7ab5088412e9e2ec49758eca5cbc"},
|
{file = "cryptography-46.0.3-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:09859af8466b69bc3c27bdf4f5d84a665e0f7ab5088412e9e2ec49758eca5cbc"},
|
||||||
@@ -176,19 +328,320 @@ ssh = ["bcrypt (>=3.1.5)"]
|
|||||||
test = ["certifi (>=2024)", "cryptography-vectors (==46.0.3)", "pretend (>=0.7)", "pytest (>=7.4.0)", "pytest-benchmark (>=4.0)", "pytest-cov (>=2.10.1)", "pytest-xdist (>=3.5.0)"]
|
test = ["certifi (>=2024)", "cryptography-vectors (==46.0.3)", "pretend (>=0.7)", "pytest (>=7.4.0)", "pytest-benchmark (>=4.0)", "pytest-cov (>=2.10.1)", "pytest-xdist (>=3.5.0)"]
|
||||||
test-randomorder = ["pytest-randomly"]
|
test-randomorder = ["pytest-randomly"]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "docutils"
|
||||||
|
version = "0.22.4"
|
||||||
|
description = "Docutils -- Python Documentation Utilities"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.9"
|
||||||
|
groups = ["dev"]
|
||||||
|
files = [
|
||||||
|
{file = "docutils-0.22.4-py3-none-any.whl", hash = "sha256:d0013f540772d1420576855455d050a2180186c91c15779301ac2ccb3eeb68de"},
|
||||||
|
{file = "docutils-0.22.4.tar.gz", hash = "sha256:4db53b1fde9abecbb74d91230d32ab626d94f6badfc575d6db9194a49df29968"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "id"
|
||||||
|
version = "1.5.0"
|
||||||
|
description = "A tool for generating OIDC identities"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.8"
|
||||||
|
groups = ["dev"]
|
||||||
|
files = [
|
||||||
|
{file = "id-1.5.0-py3-none-any.whl", hash = "sha256:f1434e1cef91f2cbb8a4ec64663d5a23b9ed43ef44c4c957d02583d61714c658"},
|
||||||
|
{file = "id-1.5.0.tar.gz", hash = "sha256:292cb8a49eacbbdbce97244f47a97b4c62540169c976552e497fd57df0734c1d"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.dependencies]
|
||||||
|
requests = "*"
|
||||||
|
|
||||||
|
[package.extras]
|
||||||
|
dev = ["build", "bump (>=1.3.2)", "id[lint,test]"]
|
||||||
|
lint = ["bandit", "interrogate", "mypy", "ruff (<0.8.2)", "types-requests"]
|
||||||
|
test = ["coverage[toml]", "pretend", "pytest", "pytest-cov"]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "idna"
|
||||||
|
version = "3.11"
|
||||||
|
description = "Internationalized Domain Names in Applications (IDNA)"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.8"
|
||||||
|
groups = ["dev"]
|
||||||
|
files = [
|
||||||
|
{file = "idna-3.11-py3-none-any.whl", hash = "sha256:771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea"},
|
||||||
|
{file = "idna-3.11.tar.gz", hash = "sha256:795dafcc9c04ed0c1fb032c2aa73654d8e8c5023a7df64a53f39190ada629902"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.extras]
|
||||||
|
all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "importlib-metadata"
|
||||||
|
version = "8.7.1"
|
||||||
|
description = "Read metadata from Python packages"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.9"
|
||||||
|
groups = ["dev"]
|
||||||
|
markers = "platform_machine != \"ppc64le\" and platform_machine != \"s390x\" and python_version < \"3.12\" or python_version < \"3.10\""
|
||||||
|
files = [
|
||||||
|
{file = "importlib_metadata-8.7.1-py3-none-any.whl", hash = "sha256:5a1f80bf1daa489495071efbb095d75a634cf28a8bc299581244063b53176151"},
|
||||||
|
{file = "importlib_metadata-8.7.1.tar.gz", hash = "sha256:49fef1ae6440c182052f407c8d34a68f72efc36db9ca90dc0113398f2fdde8bb"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.dependencies]
|
||||||
|
zipp = ">=3.20"
|
||||||
|
|
||||||
|
[package.extras]
|
||||||
|
check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1) ; sys_platform != \"cygwin\""]
|
||||||
|
cover = ["pytest-cov"]
|
||||||
|
doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
|
||||||
|
enabler = ["pytest-enabler (>=3.4)"]
|
||||||
|
perf = ["ipython"]
|
||||||
|
test = ["flufl.flake8", "jaraco.test (>=5.4)", "packaging", "pyfakefs", "pytest (>=6,!=8.1.*)", "pytest-perf (>=0.9.2)"]
|
||||||
|
type = ["mypy (<1.19) ; platform_python_implementation == \"PyPy\"", "pytest-mypy (>=1.0.1)"]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "jaraco-classes"
|
||||||
|
version = "3.4.0"
|
||||||
|
description = "Utility functions for Python class constructs"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.8"
|
||||||
|
groups = ["dev"]
|
||||||
|
markers = "platform_machine != \"ppc64le\" and platform_machine != \"s390x\""
|
||||||
|
files = [
|
||||||
|
{file = "jaraco.classes-3.4.0-py3-none-any.whl", hash = "sha256:f662826b6bed8cace05e7ff873ce0f9283b5c924470fe664fff1c2f00f581790"},
|
||||||
|
{file = "jaraco.classes-3.4.0.tar.gz", hash = "sha256:47a024b51d0239c0dd8c8540c6c7f484be3b8fcf0b2d85c13825780d3b3f3acd"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.dependencies]
|
||||||
|
more-itertools = "*"
|
||||||
|
|
||||||
|
[package.extras]
|
||||||
|
docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
|
||||||
|
testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-ruff (>=0.2.1)"]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "jaraco-context"
|
||||||
|
version = "6.1.0"
|
||||||
|
description = "Useful decorators and context managers"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.9"
|
||||||
|
groups = ["dev"]
|
||||||
|
markers = "platform_machine != \"ppc64le\" and platform_machine != \"s390x\""
|
||||||
|
files = [
|
||||||
|
{file = "jaraco_context-6.1.0-py3-none-any.whl", hash = "sha256:a43b5ed85815223d0d3cfdb6d7ca0d2bc8946f28f30b6f3216bda070f68badda"},
|
||||||
|
{file = "jaraco_context-6.1.0.tar.gz", hash = "sha256:129a341b0a85a7db7879e22acd66902fda67882db771754574338898b2d5d86f"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.dependencies]
|
||||||
|
"backports.tarfile" = {version = "*", markers = "python_version < \"3.12\""}
|
||||||
|
|
||||||
|
[package.extras]
|
||||||
|
check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1) ; sys_platform != \"cygwin\""]
|
||||||
|
cover = ["pytest-cov"]
|
||||||
|
doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
|
||||||
|
enabler = ["pytest-enabler (>=3.4)"]
|
||||||
|
test = ["jaraco.test (>=5.6.0)", "portend", "pytest (>=6,!=8.1.*)"]
|
||||||
|
type = ["mypy (<1.19) ; platform_python_implementation == \"PyPy\"", "pytest-mypy (>=1.0.1)"]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "jaraco-functools"
|
||||||
|
version = "4.4.0"
|
||||||
|
description = "Functools like those found in stdlib"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.9"
|
||||||
|
groups = ["dev"]
|
||||||
|
markers = "platform_machine != \"ppc64le\" and platform_machine != \"s390x\""
|
||||||
|
files = [
|
||||||
|
{file = "jaraco_functools-4.4.0-py3-none-any.whl", hash = "sha256:9eec1e36f45c818d9bf307c8948eb03b2b56cd44087b3cdc989abca1f20b9176"},
|
||||||
|
{file = "jaraco_functools-4.4.0.tar.gz", hash = "sha256:da21933b0417b89515562656547a77b4931f98176eb173644c0d35032a33d6bb"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.dependencies]
|
||||||
|
more_itertools = "*"
|
||||||
|
|
||||||
|
[package.extras]
|
||||||
|
check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1) ; sys_platform != \"cygwin\""]
|
||||||
|
cover = ["pytest-cov"]
|
||||||
|
doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
|
||||||
|
enabler = ["pytest-enabler (>=3.4)"]
|
||||||
|
test = ["jaraco.classes", "pytest (>=6,!=8.1.*)"]
|
||||||
|
type = ["mypy (<1.19) ; platform_python_implementation == \"PyPy\"", "pytest-mypy (>=1.0.1)"]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "jeepney"
|
||||||
|
version = "0.9.0"
|
||||||
|
description = "Low-level, pure Python DBus protocol wrapper."
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.7"
|
||||||
|
groups = ["dev"]
|
||||||
|
markers = "platform_machine != \"ppc64le\" and platform_machine != \"s390x\" and sys_platform == \"linux\""
|
||||||
|
files = [
|
||||||
|
{file = "jeepney-0.9.0-py3-none-any.whl", hash = "sha256:97e5714520c16fc0a45695e5365a2e11b81ea79bba796e26f9f1d178cb182683"},
|
||||||
|
{file = "jeepney-0.9.0.tar.gz", hash = "sha256:cf0e9e845622b81e4a28df94c40345400256ec608d0e55bb8a3feaa9163f5732"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.extras]
|
||||||
|
test = ["async-timeout ; python_version < \"3.11\"", "pytest", "pytest-asyncio (>=0.17)", "pytest-trio", "testpath", "trio"]
|
||||||
|
trio = ["trio"]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "keyring"
|
||||||
|
version = "25.7.0"
|
||||||
|
description = "Store and access your passwords safely."
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.9"
|
||||||
|
groups = ["dev"]
|
||||||
|
markers = "platform_machine != \"ppc64le\" and platform_machine != \"s390x\""
|
||||||
|
files = [
|
||||||
|
{file = "keyring-25.7.0-py3-none-any.whl", hash = "sha256:be4a0b195f149690c166e850609a477c532ddbfbaed96a404d4e43f8d5e2689f"},
|
||||||
|
{file = "keyring-25.7.0.tar.gz", hash = "sha256:fe01bd85eb3f8fb3dd0405defdeac9a5b4f6f0439edbb3149577f244a2e8245b"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.dependencies]
|
||||||
|
importlib_metadata = {version = ">=4.11.4", markers = "python_version < \"3.12\""}
|
||||||
|
"jaraco.classes" = "*"
|
||||||
|
"jaraco.context" = "*"
|
||||||
|
"jaraco.functools" = "*"
|
||||||
|
jeepney = {version = ">=0.4.2", markers = "sys_platform == \"linux\""}
|
||||||
|
pywin32-ctypes = {version = ">=0.2.0", markers = "sys_platform == \"win32\""}
|
||||||
|
SecretStorage = {version = ">=3.2", markers = "sys_platform == \"linux\""}
|
||||||
|
|
||||||
|
[package.extras]
|
||||||
|
check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1) ; sys_platform != \"cygwin\""]
|
||||||
|
completion = ["shtab (>=1.1.0)"]
|
||||||
|
cover = ["pytest-cov"]
|
||||||
|
doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
|
||||||
|
enabler = ["pytest-enabler (>=3.4)"]
|
||||||
|
test = ["pyfakefs", "pytest (>=6,!=8.1.*)"]
|
||||||
|
type = ["pygobject-stubs", "pytest-mypy (>=1.0.1)", "shtab", "types-pywin32"]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "markdown-it-py"
|
||||||
|
version = "3.0.0"
|
||||||
|
description = "Python port of markdown-it. Markdown parsing, done right!"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.8"
|
||||||
|
groups = ["dev"]
|
||||||
|
files = [
|
||||||
|
{file = "markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb"},
|
||||||
|
{file = "markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.dependencies]
|
||||||
|
mdurl = ">=0.1,<1.0"
|
||||||
|
|
||||||
|
[package.extras]
|
||||||
|
benchmarking = ["psutil", "pytest", "pytest-benchmark"]
|
||||||
|
code-style = ["pre-commit (>=3.0,<4.0)"]
|
||||||
|
compare = ["commonmark (>=0.9,<1.0)", "markdown (>=3.4,<4.0)", "mistletoe (>=1.0,<2.0)", "mistune (>=2.0,<3.0)", "panflute (>=2.3,<3.0)"]
|
||||||
|
linkify = ["linkify-it-py (>=1,<3)"]
|
||||||
|
plugins = ["mdit-py-plugins"]
|
||||||
|
profiling = ["gprof2dot"]
|
||||||
|
rtd = ["jupyter_sphinx", "mdit-py-plugins", "myst-parser", "pyyaml", "sphinx", "sphinx-copybutton", "sphinx-design", "sphinx_book_theme"]
|
||||||
|
testing = ["coverage", "pytest", "pytest-cov", "pytest-regressions"]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "mdurl"
|
||||||
|
version = "0.1.2"
|
||||||
|
description = "Markdown URL utilities"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.7"
|
||||||
|
groups = ["dev"]
|
||||||
|
files = [
|
||||||
|
{file = "mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8"},
|
||||||
|
{file = "mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "more-itertools"
|
||||||
|
version = "10.8.0"
|
||||||
|
description = "More routines for operating on iterables, beyond itertools"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.9"
|
||||||
|
groups = ["dev"]
|
||||||
|
markers = "platform_machine != \"ppc64le\" and platform_machine != \"s390x\""
|
||||||
|
files = [
|
||||||
|
{file = "more_itertools-10.8.0-py3-none-any.whl", hash = "sha256:52d4362373dcf7c52546bc4af9a86ee7c4579df9a8dc268be0a2f949d376cc9b"},
|
||||||
|
{file = "more_itertools-10.8.0.tar.gz", hash = "sha256:f638ddf8a1a0d134181275fb5d58b086ead7c6a72429ad725c67503f13ba30bd"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "nh3"
|
||||||
|
version = "0.3.2"
|
||||||
|
description = "Python binding to Ammonia HTML sanitizer Rust crate"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.8"
|
||||||
|
groups = ["dev"]
|
||||||
|
files = [
|
||||||
|
{file = "nh3-0.3.2-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:d18957a90806d943d141cc5e4a0fefa1d77cf0d7a156878bf9a66eed52c9cc7d"},
|
||||||
|
{file = "nh3-0.3.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45c953e57028c31d473d6b648552d9cab1efe20a42ad139d78e11d8f42a36130"},
|
||||||
|
{file = "nh3-0.3.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2c9850041b77a9147d6bbd6dbbf13eeec7009eb60b44e83f07fcb2910075bf9b"},
|
||||||
|
{file = "nh3-0.3.2-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:403c11563e50b915d0efdb622866d1d9e4506bce590ef7da57789bf71dd148b5"},
|
||||||
|
{file = "nh3-0.3.2-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:0dca4365db62b2d71ff1620ee4f800c4729849906c5dd504ee1a7b2389558e31"},
|
||||||
|
{file = "nh3-0.3.2-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:0fe7ee035dd7b2290715baf29cb27167dddd2ff70ea7d052c958dbd80d323c99"},
|
||||||
|
{file = "nh3-0.3.2-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:a40202fd58e49129764f025bbaae77028e420f1d5b3c8e6f6fd3a6490d513868"},
|
||||||
|
{file = "nh3-0.3.2-cp314-cp314t-win32.whl", hash = "sha256:1f9ba555a797dbdcd844b89523f29cdc90973d8bd2e836ea6b962cf567cadd93"},
|
||||||
|
{file = "nh3-0.3.2-cp314-cp314t-win_amd64.whl", hash = "sha256:dce4248edc427c9b79261f3e6e2b3ecbdd9b88c267012168b4a7b3fc6fd41d13"},
|
||||||
|
{file = "nh3-0.3.2-cp314-cp314t-win_arm64.whl", hash = "sha256:019ecbd007536b67fdf76fab411b648fb64e2257ca3262ec80c3425c24028c80"},
|
||||||
|
{file = "nh3-0.3.2-cp38-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:7064ccf5ace75825bd7bf57859daaaf16ed28660c1c6b306b649a9eda4b54b1e"},
|
||||||
|
{file = "nh3-0.3.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c8745454cdd28bbbc90861b80a0111a195b0e3961b9fa2e672be89eb199fa5d8"},
|
||||||
|
{file = "nh3-0.3.2-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:72d67c25a84579f4a432c065e8b4274e53b7cf1df8f792cf846abfe2c3090866"},
|
||||||
|
{file = "nh3-0.3.2-cp38-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:13398e676a14d6233f372c75f52d5ae74f98210172991f7a3142a736bd92b131"},
|
||||||
|
{file = "nh3-0.3.2-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03d617e5c8aa7331bd2659c654e021caf9bba704b109e7b2b28b039a00949fe5"},
|
||||||
|
{file = "nh3-0.3.2-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f2f55c4d2d5a207e74eefe4d828067bbb01300e06e2a7436142f915c5928de07"},
|
||||||
|
{file = "nh3-0.3.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7bb18403f02b655a1bbe4e3a4696c2ae1d6ae8f5991f7cacb684b1ae27e6c9f7"},
|
||||||
|
{file = "nh3-0.3.2-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6d66f41672eb4060cf87c037f760bdbc6847852ca9ef8e9c5a5da18f090abf87"},
|
||||||
|
{file = "nh3-0.3.2-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:f97f8b25cb2681d25e2338148159447e4d689aafdccfcf19e61ff7db3905768a"},
|
||||||
|
{file = "nh3-0.3.2-cp38-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:2ab70e8c6c7d2ce953d2a58102eefa90c2d0a5ed7aa40c7e29a487bc5e613131"},
|
||||||
|
{file = "nh3-0.3.2-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:1710f3901cd6440ca92494ba2eb6dc260f829fa8d9196b659fa10de825610ce0"},
|
||||||
|
{file = "nh3-0.3.2-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:91e9b001101fb4500a2aafe3e7c92928d85242d38bf5ac0aba0b7480da0a4cd6"},
|
||||||
|
{file = "nh3-0.3.2-cp38-abi3-win32.whl", hash = "sha256:169db03df90da63286e0560ea0efa9b6f3b59844a9735514a1d47e6bb2c8c61b"},
|
||||||
|
{file = "nh3-0.3.2-cp38-abi3-win_amd64.whl", hash = "sha256:562da3dca7a17f9077593214a9781a94b8d76de4f158f8c895e62f09573945fe"},
|
||||||
|
{file = "nh3-0.3.2-cp38-abi3-win_arm64.whl", hash = "sha256:cf5964d54edd405e68583114a7cba929468bcd7db5e676ae38ee954de1cfc104"},
|
||||||
|
{file = "nh3-0.3.2.tar.gz", hash = "sha256:f394759a06df8b685a4ebfb1874fb67a9cbfd58c64fc5ed587a663c0e63ec376"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "packaging"
|
||||||
|
version = "25.0"
|
||||||
|
description = "Core utilities for Python packages"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.8"
|
||||||
|
groups = ["dev"]
|
||||||
|
files = [
|
||||||
|
{file = "packaging-25.0-py3-none-any.whl", hash = "sha256:29572ef2b1f17581046b3a2227d5c611fb25ec70ca1ba8554b24b0e69331a484"},
|
||||||
|
{file = "packaging-25.0.tar.gz", hash = "sha256:d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f"},
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pycparser"
|
name = "pycparser"
|
||||||
version = "2.23"
|
version = "2.23"
|
||||||
description = "C parser in Python"
|
description = "C parser in Python"
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = ">=3.8"
|
python-versions = ">=3.8"
|
||||||
groups = ["main"]
|
groups = ["main", "dev"]
|
||||||
markers = "platform_python_implementation != \"PyPy\" and implementation_name != \"PyPy\""
|
markers = "platform_python_implementation != \"PyPy\" and implementation_name != \"PyPy\""
|
||||||
files = [
|
files = [
|
||||||
{file = "pycparser-2.23-py3-none-any.whl", hash = "sha256:e5c6e8d3fbad53479cab09ac03729e0a9faf2bee3db8208a550daf5af81a5934"},
|
{file = "pycparser-2.23-py3-none-any.whl", hash = "sha256:e5c6e8d3fbad53479cab09ac03729e0a9faf2bee3db8208a550daf5af81a5934"},
|
||||||
{file = "pycparser-2.23.tar.gz", hash = "sha256:78816d4f24add8f10a06d6f05b4d424ad9e96cfebf68a4ddc99c65c0720d00c2"},
|
{file = "pycparser-2.23.tar.gz", hash = "sha256:78816d4f24add8f10a06d6f05b4d424ad9e96cfebf68a4ddc99c65c0720d00c2"},
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "pygments"
|
||||||
|
version = "2.19.2"
|
||||||
|
description = "Pygments is a syntax highlighting package written in Python."
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.8"
|
||||||
|
groups = ["dev"]
|
||||||
|
files = [
|
||||||
|
{file = "pygments-2.19.2-py3-none-any.whl", hash = "sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b"},
|
||||||
|
{file = "pygments-2.19.2.tar.gz", hash = "sha256:636cb2477cec7f8952536970bc533bc43743542f70392ae026374600add5b887"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.extras]
|
||||||
|
windows-terminal = ["colorama (>=0.4.6)"]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pyserial"
|
name = "pyserial"
|
||||||
version = "3.5"
|
version = "3.5"
|
||||||
@@ -204,17 +657,121 @@ files = [
|
|||||||
[package.extras]
|
[package.extras]
|
||||||
cp2110 = ["hidapi"]
|
cp2110 = ["hidapi"]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "pywin32-ctypes"
|
||||||
|
version = "0.2.3"
|
||||||
|
description = "A (partial) reimplementation of pywin32 using ctypes/cffi"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.6"
|
||||||
|
groups = ["dev"]
|
||||||
|
markers = "platform_machine != \"ppc64le\" and platform_machine != \"s390x\" and sys_platform == \"win32\""
|
||||||
|
files = [
|
||||||
|
{file = "pywin32-ctypes-0.2.3.tar.gz", hash = "sha256:d162dc04946d704503b2edc4d55f3dba5c1d539ead017afa00142c38b9885755"},
|
||||||
|
{file = "pywin32_ctypes-0.2.3-py3-none-any.whl", hash = "sha256:8a1513379d709975552d202d942d9837758905c8d01eb82b8bcc30918929e7b8"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "readme-renderer"
|
||||||
|
version = "44.0"
|
||||||
|
description = "readme_renderer is a library for rendering readme descriptions for Warehouse"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.9"
|
||||||
|
groups = ["dev"]
|
||||||
|
files = [
|
||||||
|
{file = "readme_renderer-44.0-py3-none-any.whl", hash = "sha256:2fbca89b81a08526aadf1357a8c2ae889ec05fb03f5da67f9769c9a592166151"},
|
||||||
|
{file = "readme_renderer-44.0.tar.gz", hash = "sha256:8712034eabbfa6805cacf1402b4eeb2a73028f72d1166d6f5cb7f9c047c5d1e1"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.dependencies]
|
||||||
|
docutils = ">=0.21.2"
|
||||||
|
nh3 = ">=0.2.14"
|
||||||
|
Pygments = ">=2.5.1"
|
||||||
|
|
||||||
|
[package.extras]
|
||||||
|
md = ["cmarkgfm (>=0.8.0)"]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "requests"
|
||||||
|
version = "2.32.5"
|
||||||
|
description = "Python HTTP for Humans."
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.9"
|
||||||
|
groups = ["dev"]
|
||||||
|
files = [
|
||||||
|
{file = "requests-2.32.5-py3-none-any.whl", hash = "sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6"},
|
||||||
|
{file = "requests-2.32.5.tar.gz", hash = "sha256:dbba0bac56e100853db0ea71b82b4dfd5fe2bf6d3754a8893c3af500cec7d7cf"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.dependencies]
|
||||||
|
certifi = ">=2017.4.17"
|
||||||
|
charset_normalizer = ">=2,<4"
|
||||||
|
idna = ">=2.5,<4"
|
||||||
|
urllib3 = ">=1.21.1,<3"
|
||||||
|
|
||||||
|
[package.extras]
|
||||||
|
socks = ["PySocks (>=1.5.6,!=1.5.7)"]
|
||||||
|
use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "requests-toolbelt"
|
||||||
|
version = "1.0.0"
|
||||||
|
description = "A utility belt for advanced users of python-requests"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
||||||
|
groups = ["dev"]
|
||||||
|
files = [
|
||||||
|
{file = "requests-toolbelt-1.0.0.tar.gz", hash = "sha256:7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6"},
|
||||||
|
{file = "requests_toolbelt-1.0.0-py2.py3-none-any.whl", hash = "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.dependencies]
|
||||||
|
requests = ">=2.0.1,<3.0.0"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "rfc3986"
|
||||||
|
version = "2.0.0"
|
||||||
|
description = "Validating URI References per RFC 3986"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.7"
|
||||||
|
groups = ["dev"]
|
||||||
|
files = [
|
||||||
|
{file = "rfc3986-2.0.0-py2.py3-none-any.whl", hash = "sha256:50b1502b60e289cb37883f3dfd34532b8873c7de9f49bb546641ce9cbd256ebd"},
|
||||||
|
{file = "rfc3986-2.0.0.tar.gz", hash = "sha256:97aacf9dbd4bfd829baad6e6309fa6573aaf1be3f6fa735c8ab05e46cecb261c"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.extras]
|
||||||
|
idna2008 = ["idna"]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "rich"
|
||||||
|
version = "14.2.0"
|
||||||
|
description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.8.0"
|
||||||
|
groups = ["dev"]
|
||||||
|
files = [
|
||||||
|
{file = "rich-14.2.0-py3-none-any.whl", hash = "sha256:76bc51fe2e57d2b1be1f96c524b890b816e334ab4c1e45888799bfaab0021edd"},
|
||||||
|
{file = "rich-14.2.0.tar.gz", hash = "sha256:73ff50c7c0c1c77c8243079283f4edb376f0f6442433aecb8ce7e6d0b92d1fe4"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.dependencies]
|
||||||
|
markdown-it-py = ">=2.2.0"
|
||||||
|
pygments = ">=2.13.0,<3.0.0"
|
||||||
|
|
||||||
|
[package.extras]
|
||||||
|
jupyter = ["ipywidgets (>=7.5.1,<9)"]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rns"
|
name = "rns"
|
||||||
version = "1.0.4"
|
version = "1.1.2"
|
||||||
description = "Self-configuring, encrypted and resilient mesh networking stack for LoRa, packet radio, WiFi and everything in between"
|
description = "Self-configuring, encrypted and resilient mesh networking stack for LoRa, packet radio, WiFi and everything in between"
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = ">=3.7"
|
python-versions = ">=3.7"
|
||||||
groups = ["main"]
|
groups = ["main"]
|
||||||
files = [
|
files = [
|
||||||
{file = "rns-1.0.4-1-py3-none-any.whl", hash = "sha256:f1804f8b07a8b8e1c1b61889f929fdb5cfbd57f4c354108c417135f0d67c5ef6"},
|
{file = "rns-1.1.2-1-py3-none-any.whl", hash = "sha256:4354e75fcb64a5487fcc9fdadb40c082456a63318b95144f2fa2e802e9e8d633"},
|
||||||
{file = "rns-1.0.4-py3-none-any.whl", hash = "sha256:7a2b7893410833b42c0fa7f9a9e3369cebb085cdd26bd83f3031fa6c1051653c"},
|
{file = "rns-1.1.2-py3-none-any.whl", hash = "sha256:8a153d97a02b4b326556b7f5926c37029767b70c9093b5f00c53c72105bc2091"},
|
||||||
{file = "rns-1.0.4.tar.gz", hash = "sha256:e70667a767fe523bab8e7ea0627447258c4e6763b7756fbba50c6556dbb84399"},
|
{file = "rns-1.1.2.tar.gz", hash = "sha256:ff2af56490c065adcc5f38aef07081b19bb355101406d10d768ec54f783a30c3"},
|
||||||
]
|
]
|
||||||
|
|
||||||
[package.dependencies]
|
[package.dependencies]
|
||||||
@@ -223,47 +780,130 @@ pyserial = ">=3.5"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ruff"
|
name = "ruff"
|
||||||
version = "0.14.10"
|
version = "0.14.11"
|
||||||
description = "An extremely fast Python linter and code formatter, written in Rust."
|
description = "An extremely fast Python linter and code formatter, written in Rust."
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = ">=3.7"
|
python-versions = ">=3.7"
|
||||||
groups = ["dev"]
|
groups = ["dev"]
|
||||||
files = [
|
files = [
|
||||||
{file = "ruff-0.14.10-py3-none-linux_armv6l.whl", hash = "sha256:7a3ce585f2ade3e1f29ec1b92df13e3da262178df8c8bdf876f48fa0e8316c49"},
|
{file = "ruff-0.14.11-py3-none-linux_armv6l.whl", hash = "sha256:f6ff2d95cbd335841a7217bdfd9c1d2e44eac2c584197ab1385579d55ff8830e"},
|
||||||
{file = "ruff-0.14.10-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:674f9be9372907f7257c51f1d4fc902cb7cf014b9980152b802794317941f08f"},
|
{file = "ruff-0.14.11-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:6f6eb5c1c8033680f4172ea9c8d3706c156223010b8b97b05e82c59bdc774ee6"},
|
||||||
{file = "ruff-0.14.10-py3-none-macosx_11_0_arm64.whl", hash = "sha256:d85713d522348837ef9df8efca33ccb8bd6fcfc86a2cde3ccb4bc9d28a18003d"},
|
{file = "ruff-0.14.11-py3-none-macosx_11_0_arm64.whl", hash = "sha256:f2fc34cc896f90080fca01259f96c566f74069a04b25b6205d55379d12a6855e"},
|
||||||
{file = "ruff-0.14.10-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6987ebe0501ae4f4308d7d24e2d0fe3d7a98430f5adfd0f1fead050a740a3a77"},
|
{file = "ruff-0.14.11-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:53386375001773ae812b43205d6064dae49ff0968774e6befe16a994fc233caa"},
|
||||||
{file = "ruff-0.14.10-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:16a01dfb7b9e4eee556fbfd5392806b1b8550c9b4a9f6acd3dbe6812b193c70a"},
|
{file = "ruff-0.14.11-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a697737dce1ca97a0a55b5ff0434ee7205943d4874d638fe3ae66166ff46edbe"},
|
||||||
{file = "ruff-0.14.10-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7165d31a925b7a294465fa81be8c12a0e9b60fb02bf177e79067c867e71f8b1f"},
|
{file = "ruff-0.14.11-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6845ca1da8ab81ab1dce755a32ad13f1db72e7fba27c486d5d90d65e04d17b8f"},
|
||||||
{file = "ruff-0.14.10-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:c561695675b972effb0c0a45db233f2c816ff3da8dcfbe7dfc7eed625f218935"},
|
{file = "ruff-0.14.11-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:e36ce2fd31b54065ec6f76cb08d60159e1b32bdf08507862e32f47e6dde8bcbf"},
|
||||||
{file = "ruff-0.14.10-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4bb98fcbbc61725968893682fd4df8966a34611239c9fd07a1f6a07e7103d08e"},
|
{file = "ruff-0.14.11-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:590bcc0e2097ecf74e62a5c10a6b71f008ad82eb97b0a0079e85defe19fe74d9"},
|
||||||
{file = "ruff-0.14.10-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f24b47993a9d8cb858429e97bdf8544c78029f09b520af615c1d261bf827001d"},
|
{file = "ruff-0.14.11-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:53fe71125fc158210d57fe4da26e622c9c294022988d08d9347ec1cf782adafe"},
|
||||||
{file = "ruff-0.14.10-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:59aabd2e2c4fd614d2862e7939c34a532c04f1084476d6833dddef4afab87e9f"},
|
{file = "ruff-0.14.11-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a35c9da08562f1598ded8470fcfef2afb5cf881996e6c0a502ceb61f4bc9c8a3"},
|
||||||
{file = "ruff-0.14.10-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:213db2b2e44be8625002dbea33bb9c60c66ea2c07c084a00d55732689d697a7f"},
|
{file = "ruff-0.14.11-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:0f3727189a52179393ecf92ec7057c2210203e6af2676f08d92140d3e1ee72c1"},
|
||||||
{file = "ruff-0.14.10-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:b914c40ab64865a17a9a5b67911d14df72346a634527240039eb3bd650e5979d"},
|
{file = "ruff-0.14.11-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:eb09f849bd37147a789b85995ff734a6c4a095bed5fd1608c4f56afc3634cde2"},
|
||||||
{file = "ruff-0.14.10-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:1484983559f026788e3a5c07c81ef7d1e97c1c78ed03041a18f75df104c45405"},
|
{file = "ruff-0.14.11-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:c61782543c1231bf71041461c1f28c64b961d457d0f238ac388e2ab173d7ecb7"},
|
||||||
{file = "ruff-0.14.10-py3-none-musllinux_1_2_i686.whl", hash = "sha256:c70427132db492d25f982fffc8d6c7535cc2fd2c83fc8888f05caaa248521e60"},
|
{file = "ruff-0.14.11-py3-none-musllinux_1_2_i686.whl", hash = "sha256:82ff352ea68fb6766140381748e1f67f83c39860b6446966cff48a315c3e2491"},
|
||||||
{file = "ruff-0.14.10-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:5bcf45b681e9f1ee6445d317ce1fa9d6cba9a6049542d1c3d5b5958986be8830"},
|
{file = "ruff-0.14.11-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:728e56879df4ca5b62a9dde2dd0eb0edda2a55160c0ea28c4025f18c03f86984"},
|
||||||
{file = "ruff-0.14.10-py3-none-win32.whl", hash = "sha256:104c49fc7ab73f3f3a758039adea978869a918f31b73280db175b43a2d9b51d6"},
|
{file = "ruff-0.14.11-py3-none-win32.whl", hash = "sha256:337c5dd11f16ee52ae217757d9b82a26400be7efac883e9e852646f1557ed841"},
|
||||||
{file = "ruff-0.14.10-py3-none-win_amd64.whl", hash = "sha256:466297bd73638c6bdf06485683e812db1c00c7ac96d4ddd0294a338c62fdc154"},
|
{file = "ruff-0.14.11-py3-none-win_amd64.whl", hash = "sha256:f981cea63d08456b2c070e64b79cb62f951aa1305282974d4d5216e6e0178ae6"},
|
||||||
{file = "ruff-0.14.10-py3-none-win_arm64.whl", hash = "sha256:e51d046cf6dda98a4633b8a8a771451107413b0f07183b2bef03f075599e44e6"},
|
{file = "ruff-0.14.11-py3-none-win_arm64.whl", hash = "sha256:649fb6c9edd7f751db276ef42df1f3df41c38d67d199570ae2a7bd6cbc3590f0"},
|
||||||
{file = "ruff-0.14.10.tar.gz", hash = "sha256:9a2e830f075d1a42cd28420d7809ace390832a490ed0966fe373ba288e77aaf4"},
|
{file = "ruff-0.14.11.tar.gz", hash = "sha256:f6dc463bfa5c07a59b1ff2c3b9767373e541346ea105503b4c0369c520a66958"},
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "secretstorage"
|
||||||
|
version = "3.3.3"
|
||||||
|
description = "Python bindings to FreeDesktop.org Secret Service API"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.6"
|
||||||
|
groups = ["dev"]
|
||||||
|
markers = "platform_machine != \"ppc64le\" and platform_machine != \"s390x\" and sys_platform == \"linux\""
|
||||||
|
files = [
|
||||||
|
{file = "SecretStorage-3.3.3-py3-none-any.whl", hash = "sha256:f356e6628222568e3af06f2eba8df495efa13b3b63081dafd4f7d9a7b7bc9f99"},
|
||||||
|
{file = "SecretStorage-3.3.3.tar.gz", hash = "sha256:2403533ef369eca6d2ba81718576c5e0f564d5cca1b58f73a8b23e7d4eeebd77"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.dependencies]
|
||||||
|
cryptography = ">=2.0"
|
||||||
|
jeepney = ">=0.6"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "twine"
|
||||||
|
version = "6.2.0"
|
||||||
|
description = "Collection of utilities for publishing packages on PyPI"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.9"
|
||||||
|
groups = ["dev"]
|
||||||
|
files = [
|
||||||
|
{file = "twine-6.2.0-py3-none-any.whl", hash = "sha256:418ebf08ccda9a8caaebe414433b0ba5e25eb5e4a927667122fbe8f829f985d8"},
|
||||||
|
{file = "twine-6.2.0.tar.gz", hash = "sha256:e5ed0d2fd70c9959770dce51c8f39c8945c574e18173a7b81802dab51b4b75cf"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.dependencies]
|
||||||
|
id = "*"
|
||||||
|
importlib-metadata = {version = ">=3.6", markers = "python_version < \"3.10\""}
|
||||||
|
keyring = {version = ">=21.2.0", markers = "platform_machine != \"ppc64le\" and platform_machine != \"s390x\""}
|
||||||
|
packaging = ">=24.0"
|
||||||
|
readme-renderer = ">=35.0"
|
||||||
|
requests = ">=2.20"
|
||||||
|
requests-toolbelt = ">=0.8.0,<0.9.0 || >0.9.0"
|
||||||
|
rfc3986 = ">=1.4.0"
|
||||||
|
rich = ">=12.0.0"
|
||||||
|
urllib3 = ">=1.26.0"
|
||||||
|
|
||||||
|
[package.extras]
|
||||||
|
keyring = ["keyring (>=21.2.0)"]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "typing-extensions"
|
name = "typing-extensions"
|
||||||
version = "4.15.0"
|
version = "4.15.0"
|
||||||
description = "Backported and Experimental Type Hints for Python 3.9+"
|
description = "Backported and Experimental Type Hints for Python 3.9+"
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = ">=3.9"
|
python-versions = ">=3.9"
|
||||||
groups = ["main"]
|
groups = ["main", "dev"]
|
||||||
markers = "python_full_version < \"3.11.0\""
|
markers = "python_full_version < \"3.11.0\""
|
||||||
files = [
|
files = [
|
||||||
{file = "typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548"},
|
{file = "typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548"},
|
||||||
{file = "typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466"},
|
{file = "typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466"},
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "urllib3"
|
||||||
|
version = "2.6.3"
|
||||||
|
description = "HTTP library with thread-safe connection pooling, file post, and more."
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.9"
|
||||||
|
groups = ["dev"]
|
||||||
|
files = [
|
||||||
|
{file = "urllib3-2.6.3-py3-none-any.whl", hash = "sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4"},
|
||||||
|
{file = "urllib3-2.6.3.tar.gz", hash = "sha256:1b62b6884944a57dbe321509ab94fd4d3b307075e0c2eae991ac71ee15ad38ed"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.extras]
|
||||||
|
brotli = ["brotli (>=1.2.0) ; platform_python_implementation == \"CPython\"", "brotlicffi (>=1.2.0.0) ; platform_python_implementation != \"CPython\""]
|
||||||
|
h2 = ["h2 (>=4,<5)"]
|
||||||
|
socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"]
|
||||||
|
zstd = ["backports-zstd (>=1.0.0) ; python_version < \"3.14\""]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "zipp"
|
||||||
|
version = "3.23.0"
|
||||||
|
description = "Backport of pathlib-compatible object wrapper for zip files"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.9"
|
||||||
|
groups = ["dev"]
|
||||||
|
markers = "platform_machine != \"ppc64le\" and platform_machine != \"s390x\" and python_version < \"3.12\" or python_version < \"3.10\""
|
||||||
|
files = [
|
||||||
|
{file = "zipp-3.23.0-py3-none-any.whl", hash = "sha256:071652d6115ed432f5ce1d34c336c0adfd6a884660d1e9712a256d3d3bd4b14e"},
|
||||||
|
{file = "zipp-3.23.0.tar.gz", hash = "sha256:a07157588a12518c9d4034df3fbbee09c814741a33ff63c05fa29d26a2404166"},
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.extras]
|
||||||
|
check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1) ; sys_platform != \"cygwin\""]
|
||||||
|
cover = ["pytest-cov"]
|
||||||
|
doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
|
||||||
|
enabler = ["pytest-enabler (>=2.2)"]
|
||||||
|
test = ["big-O", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more_itertools", "pytest (>=6,!=8.1.*)", "pytest-ignore-flaky"]
|
||||||
|
type = ["pytest-mypy"]
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
lock-version = "2.1"
|
lock-version = "2.1"
|
||||||
python-versions = ">=3.9.2"
|
python-versions = ">=3.9.2"
|
||||||
content-hash = "42d1d286b79ed42d6a0fe6adf1cb3e7c730967cd82b9013c580851a65b5fcbdc"
|
content-hash = "50df723a356ca8c5b089b0593e3439edc78c2882a8545f928daf505784191e76"
|
||||||
|
|||||||
+3
-2
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "rns-page-node"
|
name = "rns-page-node"
|
||||||
version = "1.3.0"
|
version = "1.3.1"
|
||||||
license = "GPL-3.0-only"
|
license = "GPL-3.0-only"
|
||||||
description = "A simple way to serve pages and files over the Reticulum network."
|
description = "A simple way to serve pages and files over the Reticulum network."
|
||||||
authors = [
|
authors = [
|
||||||
@@ -9,7 +9,7 @@ authors = [
|
|||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.9.2"
|
requires-python = ">=3.9.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"rns (>=1.0.4,<1.5.0)",
|
"rns (>=1.1.2,<1.5.0)",
|
||||||
"cryptography>=46.0.3"
|
"cryptography>=46.0.3"
|
||||||
]
|
]
|
||||||
classifiers = [
|
classifiers = [
|
||||||
@@ -30,3 +30,4 @@ build-backend = "poetry.core.masonry.api"
|
|||||||
|
|
||||||
[tool.poetry.group.dev.dependencies]
|
[tool.poetry.group.dev.dependencies]
|
||||||
ruff = "^0.14.10"
|
ruff = "^0.14.10"
|
||||||
|
twine = "^6.2.0"
|
||||||
|
|||||||
+6
-2
@@ -1,2 +1,6 @@
|
|||||||
rns=1.0.4
|
cffi==2.0.0 ; python_full_version >= "3.9.2" and platform_python_implementation != "PyPy"
|
||||||
cryptography==46.0.3
|
cryptography==46.0.3 ; python_full_version >= "3.9.2"
|
||||||
|
pycparser==2.23 ; platform_python_implementation != "PyPy" and implementation_name != "PyPy" and python_full_version >= "3.9.2"
|
||||||
|
pyserial==3.5 ; python_full_version >= "3.9.2"
|
||||||
|
rns==1.1.2 ; python_full_version >= "3.9.2"
|
||||||
|
typing-extensions==4.15.0 ; python_full_version >= "3.9.2" and python_full_version < "3.11.0"
|
||||||
|
|||||||
@@ -185,7 +185,7 @@ class PageNode:
|
|||||||
continue
|
continue
|
||||||
if entry.is_dir():
|
if entry.is_dir():
|
||||||
served.extend(self._scan_pages(entry))
|
served.extend(self._scan_pages(entry))
|
||||||
elif entry.is_file() and not entry.name.endswith(".allowed"):
|
elif entry.is_file() and entry.name.endswith(".mu"):
|
||||||
served.append(str(entry))
|
served.append(str(entry))
|
||||||
return served
|
return served
|
||||||
|
|
||||||
@@ -303,13 +303,17 @@ class PageNode:
|
|||||||
relative_path = path[6:] if path.startswith("/file/") else path[5:]
|
relative_path = path[6:] if path.startswith("/file/") else path[5:]
|
||||||
file_path = (filespath / relative_path).resolve()
|
file_path = (filespath / relative_path).resolve()
|
||||||
|
|
||||||
if not str(file_path).startswith(str(filespath)):
|
if not file_path.is_file() or not str(file_path).startswith(str(filespath)):
|
||||||
return DEFAULT_NOTALLOWED.encode("utf-8")
|
return DEFAULT_NOTALLOWED.encode("utf-8")
|
||||||
|
|
||||||
|
try:
|
||||||
return [
|
return [
|
||||||
file_path.open("rb"),
|
file_path.open("rb"),
|
||||||
{"name": file_path.name.encode("utf-8")},
|
{"name": file_path.name.encode("utf-8")},
|
||||||
]
|
]
|
||||||
|
except OSError as err:
|
||||||
|
RNS.log(f"Error opening file {file_path}: {err}", RNS.LOG_ERROR)
|
||||||
|
return DEFAULT_NOTALLOWED.encode("utf-8")
|
||||||
|
|
||||||
def on_connect(self, link):
|
def on_connect(self, link):
|
||||||
"""Handle new link connections."""
|
"""Handle new link connections."""
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
from setuptools import setup, find_packages
|
from setuptools import find_packages, setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="rns-page-node",
|
name="rns-page-node",
|
||||||
version="1.3.0",
|
version="1.3.1",
|
||||||
description="A simple way to serve pages and files over the Reticulum network.",
|
description="A simple way to serve pages and files over the Reticulum network.",
|
||||||
long_description=open("README.md").read(),
|
long_description=open("README.md").read(),
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
@@ -10,7 +10,7 @@ setup(
|
|||||||
url="https://git.quad4.io/RNS-Things/rns-page-node",
|
url="https://git.quad4.io/RNS-Things/rns-page-node",
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"rns>=1.0.4,<1.5.0",
|
"rns>=1.1.2,<1.5.0",
|
||||||
"cryptography>=46.0.3",
|
"cryptography>=46.0.3",
|
||||||
],
|
],
|
||||||
entry_points={
|
entry_points={
|
||||||
@@ -25,4 +25,3 @@ setup(
|
|||||||
],
|
],
|
||||||
python_requires=">=3.9.2",
|
python_requires=">=3.9.2",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
+6
-2
@@ -41,7 +41,7 @@ This is a test file.
|
|||||||
EOF
|
EOF
|
||||||
|
|
||||||
# Start the page node in the background
|
# Start the page node in the background
|
||||||
python3 ../rns_page_node/main.py -c config -i node-config -p pages -f files > node.log 2>&1 &
|
poetry run python3 ../rns_page_node/main.py -c config -i node-config -p pages -f files > node.log 2>&1 &
|
||||||
NODE_PID=$!
|
NODE_PID=$!
|
||||||
|
|
||||||
# Wait for node to generate its identity file
|
# Wait for node to generate its identity file
|
||||||
@@ -60,7 +60,11 @@ if [ ! -f node-config/identity ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Run the client test
|
# Run the client test
|
||||||
python3 test_client.py
|
poetry run python3 test_client.py
|
||||||
|
|
||||||
|
# Run advanced tests
|
||||||
|
echo "Running advanced tests (smoke, performance, leak, fuzzing, property-based)..."
|
||||||
|
poetry run python3 test_advanced.py
|
||||||
|
|
||||||
# Clean up
|
# Clean up
|
||||||
kill $NODE_PID
|
kill $NODE_PID
|
||||||
Executable
+248
@@ -0,0 +1,248 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
import random
|
||||||
|
import shutil
|
||||||
|
import string
|
||||||
|
import threading
|
||||||
|
import time
|
||||||
|
import tracemalloc
|
||||||
|
import unittest
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
import RNS
|
||||||
|
|
||||||
|
from rns_page_node.main import PageNode
|
||||||
|
|
||||||
|
|
||||||
|
class AdvancedTests(unittest.TestCase):
|
||||||
|
@classmethod
|
||||||
|
def setUpClass(cls):
|
||||||
|
cls.test_dir = Path("./test_advanced_tmp")
|
||||||
|
cls.test_dir.mkdir(exist_ok=True)
|
||||||
|
cls.pages_dir = cls.test_dir / "pages"
|
||||||
|
cls.files_dir = cls.test_dir / "files"
|
||||||
|
cls.identity_dir = cls.test_dir / "node-config"
|
||||||
|
|
||||||
|
cls.pages_dir.mkdir(exist_ok=True)
|
||||||
|
cls.files_dir.mkdir(exist_ok=True)
|
||||||
|
cls.identity_dir.mkdir(exist_ok=True)
|
||||||
|
|
||||||
|
# Create test files
|
||||||
|
(cls.pages_dir / "index.mu").write_text("Hello World")
|
||||||
|
(cls.files_dir / "test.txt").write_bytes(b"File content")
|
||||||
|
|
||||||
|
# Initialize RNS
|
||||||
|
RNS.Reticulum(str(cls.test_dir / "config"))
|
||||||
|
cls.identity = RNS.Identity()
|
||||||
|
|
||||||
|
cls.node = PageNode(
|
||||||
|
cls.identity,
|
||||||
|
str(cls.pages_dir),
|
||||||
|
str(cls.files_dir),
|
||||||
|
announce_interval=0,
|
||||||
|
)
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def tearDownClass(cls):
|
||||||
|
cls.node.shutdown()
|
||||||
|
# Small sleep to allow threads to exit
|
||||||
|
time.sleep(0.5)
|
||||||
|
shutil.rmtree(cls.test_dir, ignore_errors=True)
|
||||||
|
|
||||||
|
def test_smoke(self):
|
||||||
|
"""Basic smoke test to ensure node is initialized and has handlers."""
|
||||||
|
self.assertIsNotNone(self.node.destination)
|
||||||
|
self.assertTrue(len(self.node.servedpages) >= 1)
|
||||||
|
|
||||||
|
def test_performance(self):
|
||||||
|
"""Measure performance of request handlers."""
|
||||||
|
start_time = time.time()
|
||||||
|
iterations = 100
|
||||||
|
for _ in range(iterations):
|
||||||
|
# Simulate a request to serve_page
|
||||||
|
self.node.serve_page("/page/index.mu", None, None, None, None, None)
|
||||||
|
|
||||||
|
duration = time.time() - start_time
|
||||||
|
avg_time = duration / iterations
|
||||||
|
print(
|
||||||
|
f"\n[Performance] Avg serve_page time: {avg_time:.6f}s over {iterations} iterations",
|
||||||
|
)
|
||||||
|
self.assertLess(avg_time, 0.01, "Performance too slow")
|
||||||
|
|
||||||
|
def test_leaks(self):
|
||||||
|
"""Test for memory and thread leaks."""
|
||||||
|
tracemalloc.start()
|
||||||
|
initial_threads = threading.active_count()
|
||||||
|
|
||||||
|
# Perform some operations
|
||||||
|
for _ in range(50):
|
||||||
|
self.node.register_pages()
|
||||||
|
self.node.register_files()
|
||||||
|
self.node.serve_page("/page/index.mu", None, None, None, None, None)
|
||||||
|
|
||||||
|
current_threads = threading.active_count()
|
||||||
|
_, peak = tracemalloc.get_traced_memory()
|
||||||
|
tracemalloc.stop()
|
||||||
|
|
||||||
|
print(f"\n[Leak Test] Peak memory: {peak / 1024 / 1024:.2f} MB")
|
||||||
|
print(f"[Leak Test] Thread count change: {current_threads - initial_threads}")
|
||||||
|
|
||||||
|
# Allow some thread variation but not excessive growth
|
||||||
|
self.assertLessEqual(
|
||||||
|
current_threads,
|
||||||
|
initial_threads + 5,
|
||||||
|
"Potential thread leak detected",
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_fuzzing(self):
|
||||||
|
"""Fuzz request handlers with random inputs."""
|
||||||
|
print("\n[Fuzzing] Starting fuzzing of request handlers...")
|
||||||
|
for _ in range(100):
|
||||||
|
# Random path fuzzing
|
||||||
|
random_path = "/" + "".join(
|
||||||
|
random.choices(string.ascii_letters + string.digits + "/.", k=20),
|
||||||
|
)
|
||||||
|
# Should not crash
|
||||||
|
res_p = self.node.serve_page(random_path, None, None, None, None, None)
|
||||||
|
res_f = self.node.serve_file(random_path, None, None, None, None, None)
|
||||||
|
|
||||||
|
# Close file handles if returned to avoid ResourceWarnings
|
||||||
|
if isinstance(res_f, list) and len(res_f) > 0 and hasattr(res_f[0], "close"):
|
||||||
|
res_f[0].close()
|
||||||
|
|
||||||
|
# Random data fuzzing
|
||||||
|
random_data = {
|
||||||
|
"field_" + "".join(random.choices(string.ascii_letters, k=5)): "".join(
|
||||||
|
random.choices(string.ascii_letters + string.digits, k=20),
|
||||||
|
)
|
||||||
|
for _ in range(3)
|
||||||
|
}
|
||||||
|
self.node.serve_page("/page/index.mu", random_data, None, None, None, None)
|
||||||
|
|
||||||
|
def test_property_based(self):
|
||||||
|
"""Property-based testing for path traversal and response types."""
|
||||||
|
# Property: serve_page should never return contents from outside pages_dir
|
||||||
|
traversal_paths = [
|
||||||
|
"/page/../../etc/passwd",
|
||||||
|
"/page/../main.py",
|
||||||
|
"/page/./index.mu/../../../",
|
||||||
|
]
|
||||||
|
for path in traversal_paths:
|
||||||
|
response = self.node.serve_page(path, None, None, None, None, None)
|
||||||
|
self.assertIn(
|
||||||
|
b"Not Allowed",
|
||||||
|
response,
|
||||||
|
f"Path traversal succeeded for {path}",
|
||||||
|
)
|
||||||
|
|
||||||
|
# Property: serve_file should always return a list with [fileobj, headers] or bytes
|
||||||
|
response = self.node.serve_file("/file/test.txt", None, None, None, None, None)
|
||||||
|
try:
|
||||||
|
self.assertTrue(isinstance(response, list) or isinstance(response, bytes))
|
||||||
|
if isinstance(response, list):
|
||||||
|
self.assertEqual(len(response), 2)
|
||||||
|
self.assertTrue(hasattr(response[0], "read"))
|
||||||
|
finally:
|
||||||
|
if isinstance(response, list) and len(response) > 0 and hasattr(response[0], "close"):
|
||||||
|
response[0].close()
|
||||||
|
|
||||||
|
def test_property_config_loading(self):
|
||||||
|
"""Property-based testing for configuration loading."""
|
||||||
|
from rns_page_node.main import load_config
|
||||||
|
|
||||||
|
config_file = self.test_dir / "prop_config"
|
||||||
|
|
||||||
|
for _ in range(50):
|
||||||
|
# Generate random valid and invalid config lines
|
||||||
|
expected = {}
|
||||||
|
lines = []
|
||||||
|
for i in range(10):
|
||||||
|
if random.random() > 0.3:
|
||||||
|
# Valid line
|
||||||
|
key = f"key_{i}_{''.join(random.choices(string.ascii_letters, k=5))}"
|
||||||
|
val = f"val_{i}_{''.join(random.choices(string.ascii_letters, k=5))}"
|
||||||
|
lines.append(f"{key} = {val}")
|
||||||
|
expected[key] = val
|
||||||
|
else:
|
||||||
|
# Invalid line (comment or no =)
|
||||||
|
if random.random() > 0.5:
|
||||||
|
lines.append(f"# comment {''.join(random.choices(string.ascii_letters, k=10))}")
|
||||||
|
else:
|
||||||
|
lines.append("".join(random.choices(string.ascii_letters, k=15)))
|
||||||
|
|
||||||
|
config_file.write_text("\n".join(lines))
|
||||||
|
loaded = load_config(str(config_file))
|
||||||
|
self.assertEqual(loaded, expected)
|
||||||
|
|
||||||
|
def test_property_scanning(self):
|
||||||
|
"""Property-based testing for directory scanning."""
|
||||||
|
scan_test_dir = self.test_dir / "scan_test"
|
||||||
|
if scan_test_dir.exists():
|
||||||
|
shutil.rmtree(scan_test_dir)
|
||||||
|
scan_test_dir.mkdir()
|
||||||
|
|
||||||
|
expected_pages = []
|
||||||
|
expected_files = []
|
||||||
|
|
||||||
|
for i in range(20):
|
||||||
|
name = "".join(random.choices(string.ascii_letters, k=8))
|
||||||
|
if random.random() > 0.5:
|
||||||
|
# Page scenario
|
||||||
|
if random.random() > 0.2:
|
||||||
|
# Normal page
|
||||||
|
f = scan_test_dir / f"{name}.mu"
|
||||||
|
f.touch()
|
||||||
|
expected_pages.append(str(f))
|
||||||
|
else:
|
||||||
|
# .allowed file (should be ignored by pages)
|
||||||
|
f = scan_test_dir / f"{name}.allowed"
|
||||||
|
f.touch()
|
||||||
|
else:
|
||||||
|
# File scenario
|
||||||
|
if random.random() > 0.2:
|
||||||
|
# Normal file
|
||||||
|
f = scan_test_dir / name
|
||||||
|
f.touch()
|
||||||
|
expected_files.append(str(f))
|
||||||
|
else:
|
||||||
|
# Hidden file (should be ignored by both)
|
||||||
|
f = scan_test_dir / f".{name}"
|
||||||
|
f.touch()
|
||||||
|
|
||||||
|
# We need to test the methods on a PageNode instance
|
||||||
|
# Pages scan
|
||||||
|
found_pages = self.node._scan_pages(str(scan_test_dir))
|
||||||
|
self.assertCountEqual(found_pages, expected_pages)
|
||||||
|
|
||||||
|
# Files scan (files scan includes .mu files too as they are just files)
|
||||||
|
# but excludes hidden files.
|
||||||
|
found_files = self.node._scan_files(str(scan_test_dir))
|
||||||
|
# Our expected_files only tracked "normal" files, but _scan_files
|
||||||
|
# includes everything that isn't hidden and isn't a directory.
|
||||||
|
actual_expected_files = [str(f) for f in scan_test_dir.iterdir()
|
||||||
|
if not f.name.startswith(".") and f.is_file()]
|
||||||
|
self.assertCountEqual(found_files, actual_expected_files)
|
||||||
|
|
||||||
|
def test_property_script_execution(self):
|
||||||
|
"""Property-based testing for script execution vs reading."""
|
||||||
|
script_path = self.pages_dir / "prop_script.mu"
|
||||||
|
|
||||||
|
# Property: File with shebang AND executable bit -> Executed
|
||||||
|
script_path.write_text("#!/bin/sh\necho 'script output'")
|
||||||
|
script_path.chmod(0o755)
|
||||||
|
response = self.node.serve_page("/page/prop_script.mu", None, None, None, None, None)
|
||||||
|
self.assertEqual(response.strip(), b"script output")
|
||||||
|
|
||||||
|
# Property: File with shebang but NO executable bit -> Read as text
|
||||||
|
script_path.chmod(0o644)
|
||||||
|
response = self.node.serve_page("/page/prop_script.mu", None, None, None, None, None)
|
||||||
|
self.assertIn(b"#!/bin/sh", response)
|
||||||
|
|
||||||
|
# Property: File without shebang -> Read as text even if executable
|
||||||
|
script_path.write_text("plain text content")
|
||||||
|
script_path.chmod(0o755)
|
||||||
|
response = self.node.serve_page("/page/prop_script.mu", None, None, None, None, None)
|
||||||
|
self.assertEqual(response, b"plain text content")
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
unittest.main()
|
||||||
Reference in New Issue
Block a user