Project

gphotos

0.0
No commit activity in last 3 years
No release in over 3 years
Use Selenium WebDriver to ease uploading files to Google Photos
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.13
~> 5.0
>= 0
~> 10.0

Runtime

 Project Readme

Gphotos

Use Selenium WebDriver to ease uploading files to Google Photos.

Installation

Add this line to your application's Gemfile:

gem 'gphotos'

And then execute:

$ bundle

Or install it yourself as:

$ gem install gphotos

Usage

Install ChromeDriver. On Debian:

# apt-get install chromium-driver

Command line options:

Usage: gphotos [options] file...

Specific options:
    -e, --email=EMAIL                Set email to EMAIL
    -p, --passwd=PASSWD              Set passwd to PASSWD
    -l, --list=FILE                  Read list of files to upload from FILE

Common options:
    -h, --help                       Show this message
    -V, --version                    Show version

Example:

$ gphotos -e foo@gmail.com -p bar /path/to/image.jpg /path/to/video.mp4

upload(2):
/path/to/image.jpg
/path/to/video.mp4

done:
2 uploaded

Set email and password in config file, ~/.gphotos/config.yml:

:email: foo@gmail.com
:passwd: foo

If you use password managers like pass, you can use :passwd_exec instead:

:passwd_exec: pass show foo@gmail.com

ChromeDriver user data(browser settings, cookies, cache) will be saved in ~/.gphotos/chromedriver, so you don't need to login every time. If you encounter any browser related problem, remove the user data directory and retry.

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake test to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/azuwis/ruby-gphotos.

License

The gem is available as open source under the terms of the MIT License.