Metadata-Version: 1.1
Name: aiodcard
Version: 0.1.0
Summary: Dcard crawler using asyncio(coroutine)
Home-page: https://github.com/carlcarl/aiodcard
Author: carlcarl
Author-email: carlcarlking@gmail.com
License: MIT
Description: aiodcard
        ==============
        
        Dcard crawler using asyncio(coroutine)
        
        
        Feature
        -------
        | Get article list and content using coroutine
        
        
        Dependencies
        ------------
        * Python 3.3 and :mod:`asyncio` or Python 3.4+
        * aiohttp
        
        
        Installation
        ------------
        ::
        
        	python setup.py install
        
        or 
        
        ::
        
            pip install aiodcard
        
        
        Example
        -------
        
        ::
        
            import asyncio
        
            import aiohttp
            import aiodcard
        
            @asyncio.coroutine
            def get_funny_articles():
                session = aiohttp.ClientSession()
                forum_name = 'funny'
                page_index = 1
                result = yield from aiodcard.get_articles_of_page(session, forum_name, page_index)
                print(result)
        
            def main():
                loop = asyncio.get_event_loop()
                loop.run_until_complete(get_funny_articles())
        
            if __name__ == '__main__':
                main()
        
        
        Todo
        ----
        * test all functions
          
        
        Authors and License
        -------------------
        The ``aiodcard`` package is written by Chien-Wei Huang. It’s MIT licensed and freely available.
        
        Feel free to improve this package and send a pull request to GitHub.
        
        
Keywords: dcard,crawler,coroutine
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development :: Libraries
