Use GoogleCL to Upload Photos to Picasa Web Album

Productivity Sauce
If you are using Google's Picasa Web Album photo sharing service and you want to automate the process of uploading photos, the GoogleCL command-line toolset can come in rather handy. Once installed on your machine, you can use it to perform several tasks such as creating albums, uploading and tagging photos, downloading photos, etc. directly from the command-line. Better yet, GoogleCL is pretty straightforward in use. For example, you can upload all photos in a directory to a specific album using the following command:
google picasa post --title "Travel Photos" /home/user/photos/*.jpg
If the specified album doesn't exist, GoogleCL automatically creates it for you. When you run GoogleCL for the run, you have to authorize it for use with the Picasa Web Album service.
To automate the uploading process you can write a simple Bash script and create a cron job to run it on a regular basis. The script below uploads all photos in the /home/user/photos directory to the Travel Photos album and then empties the directory:
#!bin/bash google picasa post --title "Travel Photos" /home/user/photos/* echo "Photos have been uploaded." rm /home/user/photos/*.jpg
If you want to tag the photos during upload, then the command should look something like this:
google picasa post --title "Travel Photos" --tags berlin /home/user/photos/*
To run the script on a regular basis, you need to set up a cron job. Run the crontab -e command, specify the following cron job (replace the sample path with the actual path to the upload script) and save the modified crontab file:
@hourly /home/user/picasaupload.sh >> /home/user/picasaupload.log
This cron job will run the script every hour and log the result in the picasaupload.log file.
Comments
comments powered by DisqusSubscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.

News
-
TuxCare Announces Support for AlmaLinux 9.2
Thanks to TuxCare, AlmaLinux 9.2 (and soon version 9.6) now enjoys years of ongoing patching and compliance.
-
Go-Based Botnet Attacking IoT Devices
Using an SSH credential brute-force attack, the Go-based PumaBot is exploiting IoT devices everywhere.
-
Plasma 6.5 Promises Better Memory Optimization
With the stable Plasma 6.4 on the horizon, KDE has a few new tricks up its sleeve for Plasma 6.5.
-
KaOS 2025.05 Officially Qt5 Free
If you're a fan of independent Linux distributions, the team behind KaOS is proud to announce the latest iteration that includes kernel 6.14 and KDE's Plasma 6.3.5.
-
Linux Kernel 6.15 Now Available
The latest Linux kernel is now available with several new features/improvements and the usual bug fixes.
-
Microsoft Makes Surprising WSL Announcement
In a move that might surprise some users, Microsoft has made Windows Subsystem for Linux open source.
-
Red Hat Releases RHEL 10 Early
Red Hat quietly rolled out the official release of RHEL 10.0 a bit early.
-
openSUSE Joins End of 10
openSUSE has decided to not only join the End of 10 movement but it also will no longer support the Deepin Desktop Environment.
-
New Version of Flatpak Released
Flatpak 1.16.1 is now available as the latest, stable version with various improvements.
-
IBM Announces Powerhouse Linux Server
IBM has unleashed a seriously powerful Linux server with the LinuxONE Emperor 5.
Synchronizing rather than uploading
I wrote a small jar to solve this problem. It is available here: http://vincesoft.blogspot.c...automatically-synchronize.html
No error checking
for example, when an error:
"Loading file /home/user/photos/1.jpg to album Travel Photos
Failed to upload /home/user/photos/1.jpg. (400: Bad Request)
1 photos failed to upload"