"""# Favro Sync. Filesystem in User Space for Favro. Synchronize your local notes and your Favro. Uses the [Favro API](https://favro.com/developer/). Rate limiting depends upon your organization's payment plan. Uses [`python-fuse`](https://github.com/libfuse/python-fuse) library. Limitations: - Only cards in todolist is fetched at the moment. - Doesn't include title anywhere. - Tasks cannot be updated or changed. - Slow, due to inefficient use of caches. A more complete implementation will probably require a Markdown parser, to parse the saved input, and distribute it across the various Card fields (card name, description, tasks, etc...) ## Usage 1. Install dependencies `pip install -r requirements.txt` 2. Setup [secrets](https://gitfub.space/Jmaa/secret_loader]): `FAVRO_ORGANIZATION_ID`, `FAVRO_USERNAME`, `FAVRO_PASSWORD`. 3. Run `python -m favro_sync `. Use the `--help` argument to get an overview of all supported flags (there is a lot, because [`python-fuse`](https://github.com/libfuse/python-fuse) implements a whole bunch automatically.) """