Metadata-Version: 2.1
Name: django-agora
Version: 0.3
Summary: A Django app to help integrating Video Calling Feature Using Agoro.io.
Home-page: https://www.agora.io/
Author: Sai Sandeep Rayanuthala
Author-email: rayanuthalas@gmail.xom
License: BSD-3-Clause  # Example license
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD 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.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content


============
Django-Agora
============

.. image:: https://badge.fury.io/py/django-agora.svg
    :target: https://badge.fury.io/py/django-agora
    :alt: Agora

.. image:: https://travis-ci.org/raysandeep/django-agora.svg
   :target: https://travis-ci.org/raysandeep/django-agora
   :alt: Build Status

Django-Agora is a Django app to help integrating Video Calling Feature Using Agoro.io .

Detailed documentation is in the "docs" directory.

Quick start
-----------

1. Add "agora" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...
        'agora',
    ]

2. Import Agora views in your project urls.py like this::

    from agora.views import Agora

3. Include the agora view in your project urls.py like this::

    path('agora/',Agora.as_view(
        app_id='<APP_ID>',
        channel='<CHANNEL_ID>'
    )),

4. Visit http://127.0.0.1:8000/agora/ to participate in the Video Call.


