Updated readme/instructions

This commit is contained in:
Dniel97 2023-10-29 00:14:24 +02:00
parent 4cc13cb593
commit 4af8ce08f3
Signed by: Dniel97
GPG Key ID: 6180B3C768FB2E08
2 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
# AQUA-to-ARTEMiS
Imports AQUAs db.sqlite database into ARTEMiS database, currently WIP
Imports AQUAs db.sqlite or MySQL database into ARTEMiS, currently WIP
## Requirements
@ -17,19 +17,19 @@ python dbutils.py create
Place `aqua_importer.py` in your ARTEMiS directory and execute it:
```sh
python aqua_importer.py "C:\path\to\aqua\data"
python aqua_importer.py "C:\path\to\aqua"
```
**CAN OVERWRITE ALREADY EXISTING GAMES DATA! BE WARNED!!**
## How to use
```
usage: aqua_importer.py [-h] [--config CONFIG] aqua_folder_path
usage: aqua_importer.py [-h] [--config CONFIG] aqua_data_path
AQUA to ARTEMiS
positional arguments:
aqua_folder_path Absolute folder path to AQUA /data folder, where db.sqlite is located in
aqua_data_path Absolute folder path to AQUA folder, where application.properties is located in.
options:
-h, --help show this help message and exit
@ -41,6 +41,6 @@ options:
- [x] CHUNITHM SUN
- [x] O.N.G.E.K.I. Bright Memory
- [ ] maimai DX UNiVERSE/FESTiVAL
- [x] maimai DX FESTiVAL
- [ ] Change the game version to import using arguments
- [ ] Code clean up/optimizations

View File

@ -1132,7 +1132,7 @@ def main():
parser.add_argument(
"aqua_folder_path",
type=str,
help="The absolute folder path to the folder where AQUA is located, where the data folder and the application.properties file should be located.",
help="Absolute folder path to AQUA folder, where application.properties is located in.",
)
args = parser.parse_args()