https://github.com/ento/dynalist2markdown
Command line tool to export Dynalist documents in Markdown
https://github.com/ento/dynalist2markdown
dynalist markdown
Last synced: about 2 months ago
JSON representation
Command line tool to export Dynalist documents in Markdown
- Host: GitHub
- URL: https://github.com/ento/dynalist2markdown
- Owner: ento
- License: apache-2.0
- Created: 2019-11-09T06:32:04.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-09T07:05:40.000Z (over 6 years ago)
- Last Synced: 2025-05-14T08:11:42.387Z (about 1 year ago)
- Topics: dynalist, markdown
- Language: Python
- Size: 11.7 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dynalist2markdown
## Usage
Generate your API token at Dynalist's [Developer page](https://dynalist.io/developer).
If you have [Nix installed](https://nixos.org):
```sh
$ nix-shell
$ DYNALIST_SECRET_TOKEN= python3 dynalist2markdown.py --output
```
If not, make sure you have the `requests` package available in
the Python installation you'll be using.
## This isn't on PyPI?
I'm being lazy at the moment and pushing this up in a state that's
barely only usable for myself.
## Development
Managing fixtures and running tests:
```sh
$ nix-shell dev.nix
$ python -m fixtures update-all
$ python -m fixtures add --file-id --name
$ python -m pytest tests.py
```