A utility to create cards in a reading board in Trello out of new items saved to Pocket
pip install -r requirements.txt
Create a new Pocket app with "Retrieve" permission and save the generated consumer key for later use.
Visit here to get your Trello API key and save it for later use.
A configuration file config.json
should be placed in the same directory as the code files.
Here is an example of how the initial configuration file should look:
{
"authentication": {
"pocket_consumer_key": "YOUR-POCKET-CONSUMER-KEY",
"trello_api_key": "YOUR-TRELLO-API-KEY",
},
"trello_list_id": "YOUR-TRELLO-LIST-ID"
}
Authorize with Pocket:
python authorize_pocket.py
Authorize with Trello:
python authorize_trello.py
python main.py
You can create a cron job with the following configuration to run the app every 10 minutes:
*/10 * * * * python /path/to/repository/Pocket-To-Trello/main.py