1
0

Compare commits

...

2 Commits

Author SHA1 Message Date
3008d00955 Add MIT license 2025-08-18 15:08:05 -04:00
1cefe8380c Populate README with actual instructions 2025-08-18 15:08:01 -04:00
2 changed files with 33 additions and 0 deletions

21
LICENSE Normal file
View File

@@ -0,0 +1,21 @@
MIT License
Copyright (c) 2025 Clair C. Delafuente
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -0,0 +1,12 @@
# Clair's AppSettings Archiver
I was asked to make an AppSettings archiver, so this should work as a rough attempt ... for now.
# How to install
Copy `config.example.py` to `config.py`. Configure your destination directory, and your ROBLOSECURITY cookie if you wish to provide one. I would recommend using an alternate Roblox account, mostly out of precaution. Your ROBLOSECURITY is not transmitted to any other place than Roblox with this script.
This project uses [Poetry](https://python-poetry.org/), which has very clear documentation on how to install it:
1. `pip install pipx` to install PIPX
2. `pipx install poetry` to install Poetry under PIPX (You will have global access to Poetry, PIPX performs some gnarly isolation while still allowing global access to tools)
3. In this directory, run `poetry install`. This will install all dependencies required by AppSettings-archiver
At this point, execute `poetry run __init__.py`. This should run AppSettings-archiver, archive all AppSettings channels, and then immediately exit. Your results will be in DST_DIR (by default, 'AppSettings' in the working directory)