Last active
November 24, 2023 16:03
-
-
Save augustin64/2594ca433442d3566d24f0d5545cc49c to your computer and use it in GitHub Desktop.
Export [Paseo](https://gitlab.com/pardomi/paseo) data to [Forest](https://github.com/bk20dev/forest)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
import sqlite3 | |
import datetime | |
import time | |
FILE_IN="paseo.db" | |
FILE_OUT="forest_database" | |
#* Get old data | |
con = sqlite3.connect(FILE_IN) | |
cur = con.cursor() | |
data = cur.execute("SELECT * FROM hours").fetchall() | |
origin = datetime.datetime(1970, 1, 1) #Jan 1 1970 | |
new_data = {} | |
for row in data: | |
print(row[1]) | |
conv=datetime.datetime.fromtimestamp(time.mktime(time.strptime(row[1],"%Y%m%d"))) | |
new_date = (conv - origin).days | |
print(new_date) | |
if new_date not in new_data.keys(): | |
new_data[new_date] = 0 | |
new_data[new_date] += (int(row[4]) - int(row[3])) | |
con.close() | |
#* Insert into new database | |
con = sqlite3.connect(FILE_OUT) | |
cur = con.cursor() | |
for key in new_data.keys(): | |
cur.execute( | |
""" | |
INSERT INTO day (date, steps, goal, height, weight, stepLength, pace) | |
VALUES (?, ?, 7500, 182, 70, 67, 1.0) | |
""", # Default height, weight, etc | |
(key, new_data[key],) | |
) | |
con.commit() | |
con.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can get Paseo database in Settings > Backup > Export
You can get the Forest db with
adb pull /data/data/pl.bk20.forest/databases/forest_database .
(assuming you haveadb root
available and active)And then, run the script and
adb push forest_database /data/data/pl.bk20.forest/databases/
forest_database` (maybe backup it elsewhere first as it will be overwritten)