Metadata-Version: 1.1
Name: naegin
Version: 1.0.3
Summary: API Wrapper em Python para Naegin
Home-page: https://github.com/Naegin/naegin
Author: Naegin
Author-email: UNKNOWN
License: MIT License
Description: 
        Naegin
        ======
        
        Naegin é uma API Wrapper para o site `naeg.in`_.
        
        A API tem o objetivo de fornecer Imagens para desenvolvedores de bots
        fazerem uso das mesmas em seus respectivos projetos.
        
        Você precisa de um token para fazer uso desse serviço. Entre no
        `Discord`_ do site para requisitar um.
        
        Instalação
        ==========
        
        Através do pip, você pode facilmente instalar a Wrapper, basta digitar
        **``pip install naegin``** no terminal.
        
        Certifique-se de estar usando o **Python 3.6+**.
        
        Uso
        ===
        
        .. code:: python
        
           import naegin
        
           #Cria uma instância para ser usada
           naegin = naegin.Client('token')
        
           #Pegar todas as tags disponíveis em uma list
           async def tags():
              tags = await naegin.get_all_tags()
              print(tags)
        
           #Pegar a URL de uma Imagem aleatória, com uma Tag especifica
           async def random(tag):
              image = await naegin.get_random(tag)
              print(image.url)
        
        .. _naeg.in: https://naeg.in/
        .. _Discord: https://discord.gg/kdb4Hvd3
        
Keywords: naegin,api,wrapper,images,pt-br,brazilian,portuguese
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: Portuguese (Brazilian)
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Internet
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development :: Libraries :: Python Modules
