https://github.com/RohanGautam/supernote-sync-tool
Simple terminal app to sync supernote notes to a local directory and convert them to a pdf
https://github.com/RohanGautam/supernote-sync-tool
Last synced: about 1 year ago
JSON representation
Simple terminal app to sync supernote notes to a local directory and convert them to a pdf
- Host: GitHub
- URL: https://github.com/RohanGautam/supernote-sync-tool
- Owner: RohanGautam
- License: apache-2.0
- Created: 2021-11-16T02:24:51.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-25T01:29:40.000Z (over 3 years ago)
- Last Synced: 2024-08-02T10:19:42.322Z (almost 2 years ago)
- Language: Python
- Homepage:
- Size: 312 KB
- Stars: 53
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-supernote - Supernote local sync app
README
# Supernote local sync app
## Install
Due to the library spec of [textual](https://github.com/willmcgugan/textual), this currently works on Macos/linux **only**.
```bash
# clone the repo, including submodules (ssh url example)
git clone --recurse-submodules git@github.com:RohanGautam/supernote-tool.git
# create a python environment (one-time)
conda create --name supernote python=3.7
conda activate supernote
# install dependencies
pip install -r requirements.txt
# Make a copy of the config template
cp config-template.env config.env
# MODIFY `config.env` with paths to your supernote and local sync directory!!
#-----
# Run the main file
python supernote-app.py
```
## Todo
- [ ] remove git submodule and use the new supernote pip library install instead.
## References
- u/fbalobanov on reddit, in [this post](https://www.reddit.com/r/Supernote/comments/qrxngb/python_script_for_desktop_note_files_viewer/) for the inspiration.