https://github.com/mortonfox/daily-diary-import
Import from Libra export file to dailydiary.com
https://github.com/mortonfox/daily-diary-import
cdp dailydiary ferrum import libra ruby
Last synced: about 1 year ago
JSON representation
Import from Libra export file to dailydiary.com
- Host: GitHub
- URL: https://github.com/mortonfox/daily-diary-import
- Owner: mortonfox
- Created: 2020-10-07T01:56:46.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-10-15T20:15:09.000Z (over 5 years ago)
- Last Synced: 2025-02-14T01:19:09.911Z (over 1 year ago)
- Topics: cdp, dailydiary, ferrum, import, libra, ruby
- Language: Ruby
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# daily-diary-import
## Introduction
This is a script that takes a CSV file from the [Libra Android app](https://play.google.com/store/apps/details?id=net.cachapa.libra&hl=en_US) and imports it to the "How much do you weigh today?" question on [DailyDiary](https://www.dailydiary.com/).
The script uses [Ferrum](https://github.com/rubycdp/ferrum) to submit the data by controlling a headless browser via the [Chrome DevTools Protocol](https://chromedevtools.github.io/devtools-protocol/). Therefore you also need a Chrome or Chromium installation.
## Installation
You need Ruby and either Chrome or Chromium, of course.
Add the following to a ``.netrc`` file in your home directory:
```
machine dailydiary.com
login USER
password PASSWORD
```
Where USER and PASSWORD are your login credentials on DailyDiary.
Then run ``bundle install`` in the root of this project to install the required Ferrum and Netrc gems.
## Usage
First, export the database from Libra and transfer it to the computer.
Then run the script to process the Libra CSV file. For example:
```
bundle exec import.rb Libra.csv 2020-09-01 2020-09-30
```
The first command line argument is the name of the export file from Libra.
The second and third arguments are the start and end dates (inclusive) of the range of data to import into DailyDiary. The export file can contain more data but only the rows in that date range will be processed. This allows you to import any portion of the data that you choose.