Metadata-Version: 1.1
Name: dogehouse
Version: 2.1.0
Summary: A Python wrapper for the Dogehouse API.
Home-page: https://github.com/Arthurdw/dogehouse.py
Author: Arthurdw
Author-email: mail@arthurdw.com
License: MIT
Download-URL: https://github.com/Arthurdw/dogehouse.py/archive/2.1.0.tar.gz
Description: .. image:: https://img.shields.io/badge/pypi-dogehouse-blue
         :target: https://pypi.org/project/dogehouse
        .. image:: https://img.shields.io/pypi/v/dogehouse
         :target: https://pypi.org/project/dogehouse
        .. image:: https://static.pepy.tech/personalized-badge/dogehouse?period=total&units=international_system&left_color=gray&right_color=blue&left_text=Downloads
         :target: https://pepy.tech/project/dogehouse
        .. image:: https://img.shields.io/pypi/pyversions/dogehouse
         :target: https://pypi.org/project/dogehouse
        
        Python wrapper for the dogehouse API
        ====================================
        
        Documentation
        -------------
        
        You can find the documentation at `dogehouse.arthurdw.com <http://dogehouse.arthurdw.com/>`_
        
        Installation
        ------------
        
        ``pip install dogehouse``
        
        
        Example
        --------
        
        .. code-block:: python
        
            from dogehouse import DogeClient, event, command
            from dogehouse.entities import Message
        
        
            class Client(DogeClient):
                @event
                async def on_ready(self):
                    print(f"Successfully connected as {self.user}!")
                    await self.create_room("Hello World!")
                
                @command
                async def foo(self, ctx: Message):
                    await self.send("bar")
        
                
            if __name__ == "__main__":
                Client("YourToken", "YourRefreshToken", prefix="!").run()
        
        
        
        Tokens
        --------
        - Go to https://dogehouse.tv
        - Open Developer options (F12 or Ctrl+Shift+I)
        - Go to Application > Local Storage > dogehouse.tv
        - There lies your TOKEN and REFRESH_TOKEN
        
Keywords: dogehouse
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
