beeminder-gcal-integration
beeminder-gcal-integration
TODO: Write a description here
Installation
TODO: Write installation instructions here
Usage
Access Tokens
Obtain your personal beeminder access token and create a file named secrets.toml
in one of the following directories, checked in order:
- working directory from which this program is run
$HOME/.beeminder-gcal
${XDG_DATA_HOME:$HOME/.local/share}/beeminder-gcal
It should look like
[beeminder]
user = "your_username"
auth_token = "your_auth_token"
Then, open Google's Developer Console. Create a new Project---I have one for "Generic script API access"---and select Library in the left sidebar. Search for "calendar" and select Google Calendar API. Click "Create Credentials" in the main view, select "Google Calendar API" from the Credential Type dropdown, and select "User data" in the radio buttons. Click "Next".
Fill in "beeminder-gcal-integration" for "App name" and select your own email under "User support email" and fill it in under "Developer contact information". Click "Save and continue" in the "Scopes" section. In the "OAuth Client ID" section, select "Desktop app" in the "Application type" dropdown and leave "Name" as "Desktop client 1".
Go to the Credentials section in the sidebar, and click the Name of the client ID you just created. Copy the Client ID and Client secret to your secrets.toml; it should now look like this:
[beeminder]
user = "your_username"
auth_token = "your_auth_token"
[google]
calendar_id = "your_calendar_id"
client_id = "your_client_id"
client_secret = "your_client_secret"
You can use your primary calendar id (your_email@gmail.com
, probably) or create a new calendar for beeminder-gcal-integration; it will only edit events that claim to be "Managed by beeminder-gcal-integration".
Development
Contributing
- Fork it (https://github.com/your-github-user/beeminder-gcal-integration/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Contributors
- Robert Perce - creator and maintainer
beeminder-gcal-integration
- 0
- 0
- 0
- 0
- 4
- over 3 years ago
- May 11, 2021
MIT License
Mon, 18 Nov 2024 06:16:55 GMT