A10SA Script
Project description
Library for manipulating Vorze A10 sex toy scripts.
Features
Read/Write/Convert supported script formats.
Export scripts as Buttplug Protocol command sequences.
Experimental features
Experimental features are not fully tested, use at your own risk.
Control Vorze devices directly via BluetoothLE (tested with CycloneSA, untested for UFOSA, PistonSA).
Control linear/funscript devices via Buttplug Protocol (requires Intiface Central, tested with Handy).
Bluetooth functionality requires installation with ``[ble]`` dependencies.
Supported Formats
Vorze CSV
Afesta/LPEG VCSX (.bin)
Funscript JSON
Requirements
Python 3.10+
Installation
You can install A10SA Script via pip from PyPI:
$ pip install a10sa-script
Optional dependencies can also be installed to enable experimental feature support:
$ pip install a10sa-script[ble]
Usage
Convert VCSX Vorze_CycloneSA.bin to script_cyclone.csv:
>>> from a10sa_script.script import VCSXCycloneScript, VorzeRotateScript
>>> with open("Vorze_CycloneSA.bin", "rb") as f:
... vcsx = VCSXCycloneScript.load(f)
>>> with open("script_cyclone.csv", "wb") as f:
... VorzeRotateScript(vcsx.commands).dump(f)
Convert CSV script_piston.csv to script.funscript:
>>> from a10sa_script.script import VorzeLinearScript, FunscriptScript
>>> with open("script_piston.csv", "rb") as f:
... csv = VorzeLinearScript.load(f)
>>> with open("script.funscript", "wb") as f:
... FunscriptScript.from_vorze(csv).dump(f)
Convert funscript script.funscript to script_piston.csv:
>>> from a10sa_script.script import VorzeLinearScript, FunscriptScript
>>> with open("script.funscript", "rb") as f:
... funscript = FunscriptScript.load(f)
>>> with open("script_piston.csv", "wb") as f:
... funscript.to_vorze().dump(f)
Please see the Command-line Reference for details.
Contributing
Contributions are very welcome. To learn more, see the Contributor Guide.
License
Distributed under the terms of the MIT license, A10SA Script is free and open source software.
Issues
If you encounter any problems, please file an issue along with a detailed description.
Credits
This project was generated from @cjolowicz’s Hypermodern Python Cookiecutter template.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file a10sa_script-1.0.2.tar.gz.
File metadata
- Download URL: a10sa_script-1.0.2.tar.gz
- Upload date:
- Size: 20.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: pdm/2.22.1 CPython/3.12.3 Linux/6.11.0-1014-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60f4895d06a693b66f5185aef555344807d6710fd323b413e26ef0e3fe1c7726
|
|
| MD5 |
dd251c52e15391f98707c5d787b1e15d
|
|
| BLAKE2b-256 |
84419405c0b0fe28e83f366e477ec9d607e511f5db892d2d8dff16edeeb55388
|
File details
Details for the file a10sa_script-1.0.2-py3-none-any.whl.
File metadata
- Download URL: a10sa_script-1.0.2-py3-none-any.whl
- Upload date:
- Size: 20.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: pdm/2.22.1 CPython/3.12.3 Linux/6.11.0-1014-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f11e2fc394f1fdccd68a4872d617d803bfd2363596bf6246763bfab7f15ab0b
|
|
| MD5 |
a89d5933bb4deeeff31c42a416a041fb
|
|
| BLAKE2b-256 |
08074f6099113e341401f97a79963dcd445a29dbc5c2ff95c531b557a2ad72da
|