Metadata-Version: 2.1
Name: django-discordbot
Version: 1.2.5
Summary: Ein Discordbot für Django
Home-page: https://github.com/rafaelurben/django-discordbot/
Author: Rafael Urben
Author-email: github@rafaelurben.ch
License: MIT
Project-URL: GitHub, https://github.com/rafaelurben/django-discordbot
Project-URL: Issues, https://github.com/rafaelurben/django-discordbot/issues
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
Requires-Dist: Django (>=3.2)
Requires-Dist: gunicorn (>=20.0.4)
Requires-Dist: requests (>=2.24.0)
Requires-Dist: discord.py (>=1.5.1)
Requires-Dist: opuslib (>=3.0.1)
Requires-Dist: ffmpeg (>=1.4)
Requires-Dist: fuzzywuzzy[speedup] (>=0.18.0)
Requires-Dist: youtube-dl (>=2020.9.6)
Requires-Dist: rich (>=9.0.1)
Requires-Dist: tqdm (>=4.43.0)
Requires-Dist: dnspython (>=2.0.0)

# Discordbot

![PyPI](https://img.shields.io/pypi/v/django-discordbot)
![PyPI - Django Version](https://img.shields.io/pypi/djversions/django-discordbot)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/django-discordbot)
![PyPI - License](https://img.shields.io/pypi/l/django-discordbot)

![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/rafaelurben/django-discordbot)
![GitHub lines of code](https://img.shields.io/tokei/lines/github.com/rafaelurben/django-discordbot)
![GitHub issues](https://img.shields.io/github/issues/rafaelurben/django-discordbot)
![GitHub pull requests](https://img.shields.io/github/issues-pr/rafaelurben/django-discordbot)

A Discordbot to run in a django environment.

Planned features can be found in the [project board](https://github.com/rafaelurben/django-discordbot/projects/1?fullscreen=true).

Feel free to open an issue or start a pull request. ;)

## 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/> to manage the stored data

5.  Run the bot via `python manage.py run-discordbot`


