├── .envrc ├── .gitignore ├── LICENSE ├── README.org ├── card_creator.py ├── create_one_card.py ├── kindle2anki.py ├── requirements.txt └── service.py /.envrc: -------------------------------------------------------------------------------- 1 | layout python3 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .direnv/ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psamim/kindle2anki/HEAD/LICENSE -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psamim/kindle2anki/HEAD/README.org -------------------------------------------------------------------------------- /card_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psamim/kindle2anki/HEAD/card_creator.py -------------------------------------------------------------------------------- /create_one_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psamim/kindle2anki/HEAD/create_one_card.py -------------------------------------------------------------------------------- /kindle2anki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psamim/kindle2anki/HEAD/kindle2anki.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psamim/kindle2anki/HEAD/requirements.txt -------------------------------------------------------------------------------- /service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psamim/kindle2anki/HEAD/service.py --------------------------------------------------------------------------------