23
loading...
This website collects cookies to deliver better user experience
Talk is cheap. Show me the code -- Linus Trovalds
Python 3+ installed on your machine
Git clone or download the repository on to your machine
Obtain Trello token + Key + board_id
Update the config file with your details.
├── config.yaml <- Config file to be updated
│ ├── planner <- tag not be messed up
│ ├── trello:
│ token: abc123 <- trello token obtained in previous step
│ key: zyx123 <- trello API key obtained in previous step
│ board_id: zyx123 <- trello baord _id obtained in previous step
│ ├── dates:
│ start_date: 2021-08-09 <- user specific start date from where the
planning is to be started
│ end_date: 2021-12-30 <- user specific end date from where the
planning is to end
{
"LISTS": [
{
"MONDAY": {
"CARDS": [
{
"name": "4:45 AM Wake UP",
"desc": "To wake up everyday to exercise at 5 AM",
"pos": "top",
"due": "",
"idList": ""
},
{
"name": "10:30 PM SLEEP",
"desc": "Wind off the day and sleep",
"due": "",
"idList": ""
}
]
}},{"TUESDAY": {
"CARDS": [
{
"name": "4:45 AM Wake UP",
"desc": "To wake up everyday to exercise at 5 AM",
"pos": "top",
"due": "",
"idList": ""
},
{
"name": "7 AM - 8 AM household chores",
"desc": "To do some household chores",
"due": "",
"idList": ""
},
]
}},{"WEDNESDAY": {
"CARDS": [
{
"name": "4:45 AM Wake UP",
"desc": "To wake up everyday to exercise at 5 AM",
"pos": "top",
"due": "",
"idList": ""
}
]}
}
]
}
Open the clone or downloaded git repo in your fav IDE, mine is Pycharm Visual Studio Code works too.
Open terminal tab inside the IDE
python3 -m venv trelloPlanner
python -m venv trelloPlanner
Start the newly created virtualenv
source trelloPlanner/bin/activate
.\trelloPlanner\Scripts\activate
Install all the required packages/dependencies
pip install -r requirements.txt
Once started execute the below cmd and the let the magic unfold
python main.py