Send To Kindle
Project description
stkclient implements a client for amazon’s “Send to Kindle” service. It allows python programs to send files to a kindle device without the 10mb limit that applies to email files.
Features
OAuth-based authorization
Send large (>10MB) files to Kindle devices
Requirements
TODO
Installation
You can install Send To Kindle via pip from PyPI:
$ pip install stkclient
Creating a Client
To create a client, you must authenticate the user. Currently the only supported authentication mechanism is OAuth2:
import stkclient
a = stkclient.OAuth2()
signin_url = a.get_signin_url()
# Open `signin_url` in a browser, sign in and authorize the application, pass
# the final redirect_url below
client = a.create_client(redirect_url)
Once a client is created, it can be serialized and deserialized using Client.load / Client.loads and client.dump / client.dumps
with open('client.json', 'w') as f:
client.dump(f)
with open('client.json', 'r') as f:
client = stkclient.Client.load(f)
Sending a File
Once you have a Client object, you can list devices and send files to specified devices.
devices = client.get_owned_devices()
destinations = [d.device_serial_number for d in devices.owned_devices]
client.send_file(filepath, destinations, author=author, title=title)
License
Distributed under the terms of the MIT license, Send To Kindle is free and open source software.
Credits
Project structure from @cjolowicz’s Hypermodern Python Cookiecutter template.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file stkclient-0.1.1.tar.gz.
File metadata
- Download URL: stkclient-0.1.1.tar.gz
- Upload date:
- Size: 12.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb88a6df239d5ac01f6c305b4cd32b8aaa5d6a9ccdaea7b8940bf0140a2104fa
|
|
| MD5 |
f0023cec2f67daacd0fdb43a0f17cef0
|
|
| BLAKE2b-256 |
d390cb9b4d756a34792a1bfd0853de566dc38c740c0f8bede782a7610594b504
|
File details
Details for the file stkclient-0.1.1-py3-none-any.whl.
File metadata
- Download URL: stkclient-0.1.1-py3-none-any.whl
- Upload date:
- Size: 13.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4a54268080771f56114fd226f37d981e50c4a9ccedff46afa2bed5015b8f221
|
|
| MD5 |
796e94e23395b5d04ba9c57042f84703
|
|
| BLAKE2b-256 |
9ab11b6c27c5e971379601adb02e5aa57f6544c011142c008473ca86ce3d21db
|