Giter Club home page Giter Club logo

flickr's Introduction

= flickr

http://github.com/RaVbaker/flickr

== DESCRIPTION:

An insanely easy interface to the Flickr photo-sharing service. By Scott Raymond. (& updated May 2008 by Chris Taggart, http://pushrod.wordpress.com & updated May 2010 by Rafal Piekarski)

== FEATURES/PROBLEMS:

The flickr gem (famously featured in a RubyonRails screencast) had broken with Flickr's new authentication scheme and updated API.
This has now been largely corrected, though not all current API calls are supported yet.

== SYNOPSIS:

  require 'flickr'
  flickr = Flickr.new('some_flickr_api_key')    # create a flickr client (get an API key from http://api.flickr.com/services/api/)
  user = flickr.users('[email protected]')   # lookup a user
  user.name                                     # get the user's name
  user.location                                 # and location
  user.photos                                   # grab their collection of Photo objects...
  user.groups                                   # ...the groups they're in...
  user.contacts                                 # ...their contacts...
  user.favorites                                # ...favorite photos...
  user.photosets                                # ...their photo sets...
  user.tags                                     # ...their tags...
  user.popular_tags							  							# ...and their popular tags
  recentphotos = flickr.photos                  # get the 100 most recent public photos
  photo = recentphotos.first                    # or very most recent one
  photo.url                                     # see its URL,
  photo.title                                   # title,
  photo.description                             # and description,
  photo.owner                                   # and its owner.
  File.open(photo.filename, 'w') do |file|
    file.puts p.file                            # save the photo to a local file
  end
  flickr.photos.each do |p|                     # get the last 100 public photos...
    File.open(p.filename, 'w') do |f|
      f.puts p.file('Square')                   # ...and save a local copy of their square thumbnail
    end
  end                              

== REQUIREMENTS:

* Xmlsimple gem

== INSTALL:

  sudo gem install flickr.rb
  
* Gem homepage: http://rubygems.org/gems/flickr.rb

== CONFIGURING:

If you want to use this gem/plugin with Rails you can create configuration file in /config directory with specified api connection settings. For example:

  development:
    api_key: SomeLongApiKey
    shared_secret: secret!
    auth_token: authSecretToken
  
  beta:
    api_key: SomeLongApiKeyBeta
    shared_secret: secretBeta!
    auth_token: authSecretTokenBeta
    
  

== LICENSE:

(The MIT License)

Copyright (c) 2005-2010 Scott Raymond, Patrick Plattes, Chris Taggart, Rafal Piekarski

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

flickr's People

Contributors

granth avatar ravbaker avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.