Google Calendar Command Line Interface
Project description
Google Calendar Command Line Interface
gcalcli uses the Google Calendar API version 3.
Requirements
Google API Client Python 2 module
dateutil Python 2 module
gflags Python 2 module
A love for the command line!
Optional packages
- vobject Python module
Used for ics/vcal importing.
- parsedatetime Python module
Used for fuzzy dates/times like “now”, “today”, “eod tomorrow”, etc.
Installation
Check your OS distribution for packages.
Install from PyPI
pip install gcalcli
Install from source
git clone https://github.com/insanum/gcalcli.git
cd gcalcli
python setup.py install
Install optional packages
pip install vobject parsedatetime
Features
OAuth2 authention with your Google account
list your calendars
show an agenda using a specified start/end date and time
ascii text graphical calendar display with variable width
search for past and/or future events
“quick add” new events to a specified calendar
“add” a new event to a specified calendar (interactively or automatically)
“delete” event(s) from a calendar(s) (interactively or automatically)
“edit” event(s) interactively
import events from ICS/vCal files to a specified calendar
support for URL shortening via goo.gl
easy integration with your favorite mail client (attachment handler)
run as a cron job and execute a command for reminders
work against specific calendars (by calendar name w/ regex)
flag file support for specifying option defaults
colored output and unicode character support
super fun hacking with shell scripts, cron, screen, tmux, conky, etc
Screenshots
HowTo
Usage
gcalcli [options] command [command args or options] Commands: list list all calendars search <text> search for events - case insensitive search terms to find events that match these terms in any field, like traditional Google search with quotes, exclusion, etc. - for example to get just games: "soccer -practice" agenda [start] [end] get an agenda for a time period - start time default is 12am today - end time default is 5 days from start - example time strings: '9/24/2007' '24/09/2007' '24/9/07' 'Sep 24 2007 3:30pm' '2007-09-24T15:30' '2007-09-24T15:30-8:00' '20070924T15' '8am' calw <weeks> [start] get a week based agenda in a nice calendar format - weeks is the number of weeks to display - start time default is beginning of this week - note that all events for the week(s) are displayed calm [start] get a month agenda in a nice calendar format - start time default is the beginning of this month - note that all events for the month are displayed and only one month will be displayed quick <text> quick add an event to a calendar - a single --calendar must specified - the "--details url" option will show the event link - example text: 'Dinner with Eric 7pm tomorrow' '5pm 10/31 Trick or Treat' add add a detailed event to a calendar - a single --calendar must specified - the "--details url" option will show the event link - example: gcalcli --calendar 'Eric Davis' --title 'Analysis of Algorithms Final' --where UCI --when '12/14/2012 10:00' --duration 60 --description 'It is going to be hard!' --reminder 30 add delete <text> delete event(s) - case insensitive search terms to find and delete events, just like the 'search' command - deleting is interactive use the --iamaexpert option to auto delete THINK YOU'RE AN EXPERT? USE AT YOUR OWN RISK!!! - use the --details options to show event details edit <text> edit event(s) - case insensitive search terms to find and edit events, just like the 'search' command - editing is interactive import [file] import an ics/vcal file to a calendar - a single --calendar must specified - if a file is not specified then the data is read from standard input - if -v is given then each event in the file is displayed and you're given the option to import or skip it, by default everything is imported quietly without any interaction - if -d is given then each event in the file is displayed and is not imported, a --calendar does not need to be specified for this option remind <mins> <command> execute command if event occurs within <mins> minutes time ('%s' in <command> is replaced with event start time and title text) - <mins> default is 10 - default command: 'notify-send -u critical -a gcalcli %s' Options: --[no]cache: Execute command without using cache (default: 'true') --calendar: Which calendars to use; repeat this option to specify a list of values (default: '[]') --client_id: API client_id (default: '232867676714.apps.googleusercontent.com') --client_secret: API client_secret (default: '3tZSxItw6_VnZMezQwC8lUqy') --[no]color: Enable/Disable all color output (default: 'true') --color_border: Color of line borders (default: 'white') --color_date: Color for the date (default: 'yellow') --color_freebusy: Color for free/busy calendars (default: 'default') --color_now_marker: Color for the now marker (default: 'brightred') --color_owner: Color for owned calendars (default: 'cyan') --color_reader: Color for read-only calendars (default: 'magenta') --color_writer: Color for writable calendars (default: 'green') --configFolder: Optional directory to load/store all configuration information --[no]conky: Use Conky color codes (default: 'false') --defaultCalendar: Optional default calendar to use if no --calendar options are given; repeat this option to specify a list of values (default: '[]') --[no]default_reminders: If no --reminder is given, use the defaults. If this is false, do not create any reminders. (default: 'true') --description: Event description --[no]detail_all: Display all details (default: 'false') --[no]detail_attendees: Display event attendees (default: 'false') --[no]detail_calendar: Display calendar name (default: 'false') --[no]detail_description: Display description (default: 'false') --detail_description_width: Set description width (default: '80') (an integer) --[no]detail_length: Display length of event (default: 'false') --[no]detail_location: Display event location (default: 'false') --[no]detail_reminders: Display reminders (default: 'false') --detail_url: <long|short>: Set URL output --details: Which parts to display, can be: 'all', 'calendar', 'location', 'length', 'reminders', 'description', 'longurl', 'shorturl', 'url', 'attendees'; repeat this option to specify a list of values (default: '[]') -d,--[no]dump: Print events and don't import (default: 'false') --duration: Event duration (an integer) --flagfile: Insert flag definitions from the given file into the command line. (default: '') --[no]help: Show this help --[no]helpshort: Show command help only --[no]helpxml: like --help, but generates XML output --[no]iamaexpert: Probably not (default: 'false') --[no]includeRc: Whether to include ~/.gcalclirc when using configFolder (default: 'false') --[no]lineart: Enable/Disable line art (default: 'true') --locale: System locale --[no]military: Use 24 hour display (default: 'false') --[no]monday: Start the week on Monday (default: 'false') --[no]prompt: Prompt for missing data when adding events (default: 'true') --[no]refresh: Delete and refresh cached data (default: 'false') --reminder: Reminders in the form 'TIME METH' or 'TIME'. TIME is a number which may be followed by an optional 'w', 'd', 'h', or 'm' (meaning weeks, days, hours, minutes) and default to minutes. METH is a string 'popup', 'email', or 'sms' and defaults to popup.; repeat this option to specify a list of values (default: '[]') --[no]started: Show events that have started (default: 'true') --title: Event title --[no]tsv: Use Tab Seperated Value output (default: 'false') --undefok: comma-separated list of flag names that it is okay to specify on the command line even if the program does not define a flag with that name. IMPORTANT: flags in this list that have arguments MUST use the --flag=value format. (default: '') -v,--[no]verbose: Be verbose on imports (default: 'false') --[no]version: Show the version and exit (default: 'false') --when: Event time --where: Event location -w,--width: Set output width (default: '10') (an integer)
Login Information
HTTP Proxy Support
http_proxy https_proxy proxy-username or proxy_username proxy-password or proxy_password
Note that these environment variables must be lowercase.
Flag File
Example:
--military --duration=55 --details=calendar --details=location --details=length -w 10
Configuration Folders
Importing VCS/VCAL/ICS Files from Exchange (or other)
#!/bin/bash TERMINAL=evilvte CONFIG=~/.gcalclirc $TERMINAL -e bash -c "echo 'Importing invite...' ; \ gcalcli --detail-url=short \ --calendar='Eric Davis' \ import -v \"$1\" ; \ read -p 'press enter to exit: '"
Event Popup Reminders
Cron:
% crontab -l */10 * * * * /usr/bin/gcalcli remind
#!/bin/bash [[ -x /usr/bin/dunst ]] && /usr/bin/dunst -config ~/.dunstrc & if [ -x /usr/bin/gcalcli ]; then while true; do /usr/bin/gcalcli --calendar="davis" remind sleep 300 done & fi exec herbstluftwm # :-)
Agenda On Your Root Desktop
${execpi 300 gcalcli --conky agenda}
To also get a graphical calendar that shows the next three weeks add:
${execpi 300 gcalcli --conky calw 3}
Agenda Integration With tmux
set-option -g status-interval 60 set-option -g status-left "#[fg=blue,bright]#(gcalcli agenda | head -2 | tail -1)#[default]"
Agenda Integration With screen
% crontab -e
Then add the following line:
*/5 * * * * gcalcli --nocolor --nostarted agenda "`date`" > /tmp/gcalcli_agenda.txt
#!/bin/bash head -2 /tmp/gcalcli_agenda.txt | tail -1
backtick 1 60 60 screen_agenda hardstatus "[ %1` ]"
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
File details
Details for the file gcalcli-3.2.tar.gz
.
File metadata
- Download URL: gcalcli-3.2.tar.gz
- Upload date:
- Size: 26.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1a4dda5f0871846c45a5864114724a423e33d5942f933d83c57467589246ac01 |
|
MD5 | 5deba37645e07bc59c51d76b92da0697 |
|
BLAKE2b-256 | 0c5a7b21d0d5d0fc2b23e1eba204b4149565d5879ab6e04ed69a44e3b4b52810 |