├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.rst ├── sendKindle.py └── setup.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kparal/sendKindle/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kparal/sendKindle/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kparal/sendKindle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kparal/sendKindle/HEAD/README.rst -------------------------------------------------------------------------------- /sendKindle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kparal/sendKindle/HEAD/sendKindle.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kparal/sendKindle/HEAD/setup.py --------------------------------------------------------------------------------