A Python package for working with Lunii devices, and emulating them
Project description
Lumiios
Lumiios is a Python program that allows you to manage and emulate the Lunii StoryTeller. With Lumiios, you can easily parse every story in your device and get details about each one.
Installation
pip install lunii
Usage
Device-level methods
To use Lumiios, you need to create an instance of the Device class by passing in the folder mountpoint or dump location of your Lunii StoryTeller. Once you have a Device instance, you can call its methods to get information about the stories on your device.
from lunii import Device
device = Device('/media/lunii')
# get the serial number of the Lunii StoryTeller
snu = device.snu
# get the major and minor firmware version of the Lunii StoryTeller
fw_vers_major = device.fw_vers_major
fw_vers_minor = device.fw_vers_minor
print(f'Lunii StoryTeller SNU: {snu}')
print(f'Lunii StoryTeller Firmware Version: {fw_vers_major}.{fw_vers_minor}')
Story-level methods
You can also parse the stories on your device and get information about each one, as well as read them fully in the next release.
# parse all stories
device.parse_stories()
story = device.stories[0]
version = story.version
title = story.title
authorized = story.authorized # True if story is authorized by the Lunii StoryTeller (checksum is valid)
night_mode = story.night_mode # True if the story is Night Mode compatible
if authorized:
print(f'Version: {version}')
print(f'Title: {title}')
print(f'Night Mode: {night_mode}')
else:
print(f'Story {title} is not authorized')
You can also parse a single story by passing in the UUID of the story. This is useful if you have a lot of stories on your device.
# get the list of stories installed on the Lunii StoryTeller
story_uuid = device.story_list[0]
# parse a single story
story = device.parse_story(story_uuid)
Lumiios also allows you to read the cover audio of a story.
# get the cover audio of a story
cover_audio = story.cover_audio
print(f'Cover audio content type: {cover_audio.audio_type}')
print('Playing cover audio...')
cover_audio.play()
while cover_audio.is_playing():
time.sleep(0.1)
cover_audio.release()
# saving it
with open('cover_audio.mp3', 'wb') as f:
f.write(cover_audio.content)
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
If you find a bug or have a feature request, please open an issue on GitHub.
If you want to contribute to Lumiios, please open a pull request on GitHub.
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
File details
Details for the file lunii-0.1.0a2.tar.gz
.
File metadata
- Download URL: lunii-0.1.0a2.tar.gz
- Upload date:
- Size: 32.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b4bd5b8d9f9b4699eb9c483bfc62eed3c7f1de41abe2ace534a5aa3624adfca1 |
|
MD5 | afedf09b62ca39df2cebd51ae9604b20 |
|
BLAKE2b-256 | 15feac751b75cdba59ee7b30d2c3cbf9b243d214adf650ebc4b4e58121cbc2d8 |