tox_profile/README.md

35 lines
1.4 KiB
Markdown
Raw Normal View History

2022-09-21 11:21:48 +00:00
# tox_profile
2022-09-24 02:43:49 +00:00
Read and manipulate tox profile files. It started as a simple script from
<https://stackoverflow.com/questions/30901873/what-format-are-tox-files-stored-in>
2022-09-30 20:09:14 +00:00
For the moment logging_tox_savefile.py just reads a Tox profile and
prints to stdout various things that it finds. Then it writes what it
found in YAML to stderr. Later it can be extended to print out JSON
or YAML, and then extended to accept JSON or YAML to write a profile.
2022-09-24 02:43:49 +00:00
## Requirements
If you want to read encrypted profiles, you need to download
toxygen to deal with encrypted tox files, from:
2022-10-01 18:18:56 +00:00
<https://git.plastiras.org/emdee/toxygen_wrapper>
2022-09-24 02:43:49 +00:00
Just put the toxygen/toxygen directory on your PYTHONPATH
You also need to link your libtoxcore.so and libtoxav.so
2022-10-01 18:18:56 +00:00
and libtoxencryptsave.so into ```wrapper/../libs/```
2022-09-24 02:43:49 +00:00
Link all 3 from libtoxcore.so files if you have only libtoxcore.so
If you want to read the GROUPS section, you need Python msgpack:
<https://pypi.org/project/msgpack/>
2022-09-30 20:09:14 +00:00
If you want to write in YAML, you need Python yaml:
<https://pypi.org/project/PyYAML/>
2022-09-24 02:43:49 +00:00
If you have coloredlogs installed it will make use of it:
<https://pypi.org/project/coloredlogs/>
## Future Directions
Because it's written in Python it is easy to extend to, for example,
rekeying a profile when copying a profile to a new device:
<https://git.plastiras.org/emdee/tox_profile/wiki/MultiDevice-Announcements-POC>