Metadata-Version: 1.1
Name: mucri
Version: 0.0.3
Summary: Quickly scrape multiple pages
Home-page: https://github.com/meain/mucri
Author: Abin Simon
Author-email: abinsimon10@gmail.com
License: UNKNOWN
Description: 
        Mucri
        =====
        
        Quickly fetch a lot of pages/apis using python ``asyncio``.
        
        Installation
        ------------
        
        ..
        
           Only python 3.6+
        
        
        .. code-block:: sh
        
           pip isntall mucri
        
        Usage
        -----
        
        .. code-block:: python
        
           from mucri import fetch_links
        
           links = [
               "http://meain.github.io",
               { "url": "http://somelink" },
               {
                   "url": "http://fakelink",
                   "action": "get", # get | post
                   "data": {},
                   "headers": {},
                   "resp_type": "text", # text | json
               }
           ]
        
           results = fetch_links(links) # fetches all of them asynchronously
        
Keywords: asyncio,scraper,aiohttp
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
