Table of Contents
Description
Simple python3 wrapper for .a7p files \
Instalation
with pypx
pipx install a7p
As common from PyPi:
pip install a7p
or latest from repository:
git clone https://github.com/o-murphy/a7p
cd a7p_transfer_example/a7p_py
python setup.py install
This command builds the Docker image and tags it as go-server
.
Usage
CLI-tool
a7p -h
usage: a7p 0.0.10 [-h] [-V] [-r] [-v] [--verbose] path
positional arguments:
path Path to the directory or file
options:
-h, --help show this help message and exit
-V, --version show program's version number and exit
-r, --recursive Recursively walk files
-v, --validate Validate files
--verbose Verbose
Direct
import logging
from a7p import A7PFile, A7PDataError
from a7p.factory import A7PFactory
with open('data/test.a7p', 'rb') as fp:
try:
profile_opj = A7PFile.load(fp)
except A7PDataError as exc:
logging.error(exc)
profile_name = profile_opj.profile.profile_name
as_json = A7PFile.to_json(profile_opj)
as_dict = A7PFile.to_dict(profile_opj)
from_json = A7PFile.from_json(profile_opj)
from_dict = A7PFile.from_dict(profile_opj)
with open('data/test.a7p', 'rb') as fp:
A7PFile.dump(profile_opj, fp)
payload = A7PFactory(
meta=A7PFactory.Meta(
name="test profile name",
),
bullet=A7PFactory.Bullet(
weight=175,
length=0.9
),
distances=A7PFactory.DistanceTable.LONG_RANGE
)
with open('data/test.a7p', 'wb') as fp:
A7PFile.dump(payload, fp)
Gallery
Latest updates available at JsDelivr CDN