Metadata-Version: 1.0
Name: PyFlickrStreamr
Version: 0.1
Summary: PyFlickrStreamr provides a continuous, blocking python interface for streaming Flickr photos in near real-time. It is a wrapper around the Flickr photos.getRecent API.
Home-page: http://github.com/zacwitte/PyFlickrStreamr
Author: Zachary Witte
Author-email: zacwitte@gmail.com
License: MIT License
Download-URL: http://pypi.python.org/pypi/PyFlickrStreamr
Description: =============
        PyFlickrStreamr
        =============
        
        PyFlickrStreamr provides a continuous, blocking python interface for streaming Flickr photos in near real-time. It is a wrapper around the Flickr photos.getRecent API.
        
        Learn more about the Flickr API at:
        
        http://www.flickr.com/services/api/flickr.photos.getRecent.html
        
        --------------
        Installation
        --------------
        
        To install, download the archive at http://pypi.python.org/pypi/PyFlickrStreamr and decompress, run python setup.py install.
        
        -------
        Usage
        -------
        ::
        import PyFlickrStreamr
        
        fs = PyFlickrStreamr('your_api_key_here', extras=['date_upload','url_m'])
        for row in fs:
        print str(row['id'])+"   "+row['url_m']
        
        
Platform: Any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries :: Python Modules
