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 DisqusIssue 272/2023
Buy this issue as a PDF
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
News
-
An All-Snap Version of Ubuntu is In The Works
Along with the standard deb version of the open-source operating system, Canonical will release an-all snap version.
-
Mageia 9 Beta 2 Ready for Testing
The latest beta of the popular Mageia distribution now includes the latest kernel and plenty of updated applications.
-
KDE Plasma 6 Looks to Bring Basic HDR Support
The KWin piece of KDE Plasma now has HDR support and color management geared for the 6.0 release.
-
Bodhi Linux 7.0 Beta Ready for Testing
The latest iteration of the Bohdi Linux distribution is now available for those who want to experience what's in store and for testing purposes.
-
Changes Coming to Ubuntu PPA Usage
The way you manage Personal Package Archives will be changing with the release of Ubuntu 23.10.
-
AlmaLinux 9.2 Now Available for Download
AlmaLinux has been released and provides a free alternative to upstream Red Hat Enterprise Linux.
-
An Immutable Version of Fedora Is Under Consideration
For anyone who's a fan of using immutable versions of Linux, the Fedora team is currently considering adding a new spin called Fedora Onyx.
-
New Release of Br OS Includes ChatGPT Integration
Br OS 23.04 is now available and is geared specifically toward web content creation.
-
Command-Line Only Peropesis 2.1 Available Now
The latest iteration of Peropesis has been released with plenty of updates and introduces new software development tools.
-
TUXEDO Computers Announces InfinityBook Pro 14
With the new generation of their popular InfinityBook Pro 14, TUXEDO upgrades its ultra-mobile, powerful business laptop with some impressive specs.
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"