Skip to content

Instantly share code, notes, and snippets.

@augustin64
Last active November 24, 2023 16:03
Show Gist options
  • Save augustin64/2594ca433442d3566d24f0d5545cc49c to your computer and use it in GitHub Desktop.
Save augustin64/2594ca433442d3566d24f0d5545cc49c to your computer and use it in GitHub Desktop.
#!/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()
@augustin64
Copy link
Author

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 have adb 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)

adb root
# Export from paseo in the settings
# Kill Forest app
adb pull /sdcard/paseo......db
adb pull /data/data/pl.bk20.forest/databases/forest_database .
# Modify the script config
python export.py
adb push forest_database /data/data/pl.bk20.forest/databases/forest_database
# Done !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment