No description
				
			
			
		| src/mylarp-api | ||
| tests | ||
| .gitignore | ||
| poetry.lock | ||
| pyproject.toml | ||
| README.md | ||
| requirements.txt | ||
| sample_config.toml | ||
MyLARP Web API
A parser and REST API for using https://mylarp.dev/
This really doesn't do much just yet, just a proof of concept.
Setup
Rename the sample_config.toml to config.toml.
Then, edit it to include your credentials for login, and the proper url for mylarp.
Create Virtual Environment
python -m venv ./.venv
source ./.venv/bin/activate
Install Dependencies
You can then install dependencies with Poetry, or using the requirements.txt
Poetry
pip install poetry
poetry install --no-root
requirements.txt
pip install -r ./requirements.txt
Usage
If you installed with Poetry:
poetry run ./src/mylarp-api/mylarp-api.py
Otherwise:
python ./src/mylarp-api/mylarp-api.py