An open API service indexing awesome lists of open source software.

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

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
```