Metadata-Version: 1.1
Name: grabflickr
Version: 0.1.0
Summary: Download photoset of flickr, support single process, multiprocess and gevent(Asynchronous I/O)
Home-page: https://github.com/carlcarl/grabflickr
Author: carlcarl
Author-email: carlcarlking@gmail.com
License: MIT
Description: grabflickr
        ==========
        Download photoset of flickr, support single process, multithread and gevent(Asynchronous I/O)
        
        Installation
        ------------
        ::
        
        	sudo python setup.py install
        
        or::
        
            sudo pip install grabflickr
        
        
        gevent
        ~~~~~~
        
        Notice: Without libevent, grabflickr will fallback to normal multithread download
        
        In Mac
        ++++++
        ::
        
            brew install libevent
        
        In Linux
        ++++++++
        ::
        
            apt-get install libevent-dev
            apt-get install python-all-dev 
        
        Usage
        -----
        ::
        
            # Enter your api key
            gf -u
        
            # Download photoset
            gf -g <photoset id>
        
        Method Benchmark(sec)
        ----------------------------
        
        :: 
        
            /usr/bin/time -p ./grabflickr.py -g xxxxxxxxx -O num -s 6
        
        single multiprocess
        ~~~~~~~~~~~~~~~~~~~
        * 31.37
        
        multiprocess
        ~~~~~~~~~~~~
        * 9.91
        * 8.24
        * 7.49
        
        gevent
        ~~~~~~
        * 7.87
        * 7.94
        * 7.66
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2 :: Only
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development :: Libraries
