Metadata-Version: 1.2
Name: imgur_scraper
Version: 0.1.2
Summary: Retrieve Imgur's viral posts from a given date (it goes back years).
Home-page: https://github.com/saadmanrafat/imgur-scraper
Author: Saadman Rafat
Author-email: saadmanhere@gmail.com
License: MIT
Description-Content-Type: UNKNOWN
Description: 
        Imgur Scraper
        =======================================
        Retrieve Imgur's viral posts from a specific date. No authentication required. Implemented using their frontend API.
        
        Usage
        ================
        
        .. code-block:: pycon
        
        	>>> from imgur_scraper import get_viral_posts_from
        	>>> for post in get_viral_posts_from(date="31/12/2015"):
        	>>>     print(post)
        	The most viral images from Wednesday, Dec 31 2015
        	{
        		'title': 'Tire went flat overnight and decided to have a little fun',
                	'url': 'https://imgur.com/gallery/SIQgS',
                	'points': '15,893',
        	 	'tags': 'funny'
        	}
        	… prints all 500 of them
        
        
        Installation
        ============
        
        .. code-block:: shell
        	
        	pip install imgur-scraper
        
        Python 3.6 is required
        
            
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0
