Metadata-Version: 2.1
Name: redecanais
Version: 1.0.3
Summary: Busque,selecione e assista filmes do site https://www.redecanais.com a partir do prompt de comando.
Home-page: https://github.com/cleitonleonel/redecanais.git
Author: Cleiton Leonel Creton
Author-email: cleiton.leonel@gmail.com
License: MIT
Download-URL: https://github.com/cleitonleonel/redecanais/archive/v_01.tar.gz
Description: O **redecanais** ajuda você a assistir vários filmes via linha de comando com *facilidade*:
        
        # Instalação:
        ```shell script
        pip install redecanais ou pip install git+https://github.com/cleitonleonel/redecanais.git
        ```
        
        # Uso dentro do módulo:
        ```shell script
        python redecanais.py --url <name>...
        python redecanais.py --all <name>... 
        python redecanais.py --category <name>...
        python redecanais.py --genre <name>...
        python redecanais.py --page <name>...
        python redecanais.py --host <name>...                             
        python redecanais.py --stream <name>...
        python redecanais.py --search <name>...
        python redecanais.py --select <name>...
        python redecanais.py (-h | --help)
        python redecanais.py --version
        ```      
        
        # Opções:
            
        ```shell script
        python -m redecanais <options>
        
        '-u', '--url', help='Use o link de uma determinada página para extrair informações...'
        '-a', '--all', help='Use True ou False para extrair ou não todo conteúdo de uma determinada página...'
        '-c', '--category', help='Use para definir uma categoria.'
        '-g', '--genre', help='Use para definir um gênero.'
        '-p', '--page', help='Use para especificar uma página.'
        '--host', help='Defina o host.'
        '--stream', help='Use com um link embed para abrir o vídeo.'
        '--search', help='Use para buscar filmes por título.'
        '--select', help='Use True ou False para abrir o menu de seleçao dos filmes...'
        ```
        
        # Recomendado:
        
        ```shell script
        python -m redecanais --page 2 --all --select
        
        python -m redecanais --search batman --select
        
        python -m redecanais -g terror -c dublado --page 1 --select
        ```
        
        
        # Importando o módulo:
        ```python
        from redecanais.redecanais import ChannelsNetwork
        
        
        if __name__ == '__main__':
            cn = ChannelsNetwork()
            film = cn.search('batman')
            print(film)
        ```
Keywords: SOME,MEANINGFULL,KEYWORDS
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
