Metadata-Version: 2.1
Name: django-discordbot
Version: 1.0.0
Summary: Ein Discordbot für Django
Home-page: https://github.com/rafaelurben/django-discordbot/
Author: Rafael Urben
Author-email: rafaelurben@gmail.com
License: MIT
Project-URL: GitHub, https://github.com/rafaelurben/django-discordbot
Project-URL: Issues, https://github.com/rafaelurben/django-discordbot/issues
Description: # Discordbot
        
        A Discordbot to run in a django-environment.
        
        ## Requirements
        
        Django Admin is installed and activated.
        
        ## Quick start
        
        1.  Add "discordbot" to your INSTALLED_APPS setting like this::
        
            ```python
            INSTALLED_APPS = [
                ...
                'discordbot',
            ]
            ```
        
        2.  Include the discordbot URLconf in your project urls.py like this::
        
            ```python
            path('discordbot/', include('discordbot.urls')),
            ```
        
        3.  Run `python manage.py migrate` to create the models.
        
        4.  Visit <http://127.0.0.1:8000/admin/discordbot/>
        
        5.  Run the bot via `python manage.py run-discordbot`
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.8
Description-Content-Type: text/markdown
