Metadata-Version: 1.1
Name: katcr
Version: 0.0.2
Summary: Kickasstorrents search lib with python3.5
Home-page: https://github.com/XayOn/tqueues
Author: David Francos Cuartero
Author-email: opensource@davidfrancos.net
License: Apache-2
Description: Katcr
        -----
        
        Easy-as-it-gets python3.5 library to search magnets
        in kickasstorrents (kat.cr)
        
        Uses aiohttp to do paralell searches on kickasstorrents
        
        It also exports a nice text user interface:
        
        ::
        
           Usage:
               katcr --search <SEARCH_TERM> --pages <PAGES_NUM>
        
           Options:
               --search=<SEARCH_TERM>   Search term(s)
               --pages=<PAGES_NUM>      Number of pages to lookup
        
           Examples:
               katcr --search "Search terms" --pages 3
               katcr --search "Search terms" --pages 1
               katcr --pages 1
        
        
        Usage
        -----
        
        As a library, you can import the main coroutine with::
        
            from katcr import search_magnets
        
            loop = asyncio.get_event_loop()
            task = asyncio.ensure_future(search_magnets("what", 1, loop))
            loop.run_until_complete(task)
        
            for magnet in task.result():
                yield magnet
        
        
Keywords: kickasstorrents
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
