Metadata-Version: 2.1
Name: pyopenvidu
Version: 0.2.1
Summary: Python interface to the OpenVidu WebRTC videoconference library.
Home-page: https://github.com/marcsello/pyopenvidu
Author: Marcell Pünkösd
Author-email: punkosdmarcell@rocketmail.com
License: MIT license
Project-URL: Documentation, https://pyopenvidu.readthedocs.io/
Project-URL: Code, https://github.com/marcsello/pyopenvidu
Project-URL: Issue tracker, https://github.com/marcsello/pyopenvidu/issues
Keywords: pyopenvidu
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Environment :: Web Environment
Classifier: Operating System :: OS Independent
Classifier: Topic :: Communications
Classifier: Topic :: Communications :: Conferencing
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.7
License-File: LICENSE
License-File: AUTHORS.rst

==========
PyOpenVidu
==========


.. image:: https://img.shields.io/pypi/v/pyopenvidu.svg
        :target: https://pypi.python.org/pypi/pyopenvidu

.. image:: https://img.shields.io/travis/marcsello/pyopenvidu.svg
        :target: https://travis-ci.com/marcsello/pyopenvidu

.. image:: https://readthedocs.org/projects/pyopenvidu/badge/?version=latest
        :target: https://pyopenvidu.readthedocs.io/en/latest/?badge=latest
        :alt: Documentation Status

.. image:: https://codecov.io/gh/marcsello/pyopenvidu/branch/master/graph/badge.svg
        :target: https://codecov.io/gh/marcsello/pyopenvidu

.. image:: https://api.codacy.com/project/badge/Grade/53a97676fca041f9bfcaa6a7bc69ac1f
        :target: https://www.codacy.com/manual/marcsello/pyopenvidu?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=marcsello/pyopenvidu&amp;utm_campaign=Badge_Grade


Python interface to the OpenVidu_ WebRTC videoconference framework.

.. _OpenVidu: https://openvidu.io/

* Free software: MIT license
* Documentation: https://pyopenvidu.readthedocs.io.
* Flask extension: https://pypi.org/project/flask-openvidu/

Features
--------

* Use OpenVidu API objects as native Python objects
* Supports Python 3.7 and above
* Depends on nothing more than `requests` and `requests-toolbelt`

Credits
-------

This implementation is inspired by the original Java implementation by the OpenVidu team.
https://openvidu.io/docs/reference-docs/openvidu-java-client/

This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage


=======
History
=======

0.2.1 (2022-03-10)
------------------

* Added `cert` and `verify` options to the OpenVidu object constructor.
* Various fixes in the documentation
* Included Python 3.10 in the test suite

0.2.0 (2020-12-30)
------------------

* Implemented OpenVidu REST API version 2.16.0.
* Removed inter-object update
* Changed Base URL
* Removed broken "Thread safety" approach
* See the "Migrating" section of the documentation on how to update your code.

0.1.4 (2020-05-24)
------------------

* Added timeouts.
* Added possibility to disable initial fetching.
* Fixed some mistakes in the documentation.
* Reached 100% code coverage.


0.1.3 (2020-04-26)
------------------

* Implemented thread safety for the dynamic objects.
* Added IPCAM publishing option.
* Updated and restructured documentation.

0.1.2 (2020-04-07)
------------------

* Removed publisher property of the OpenViduSubscriber object, as it was removed from the OpenVidu Server as well.

0.1.1 (2020-04-04)
------------------

* Fixed dependencies not being automatically installed.
* Updated classifiers and URLs for PyPI.
* Added more tests and updated existing ones.

0.1.0 (2020-04-03)
------------------

* First release on PyPI.
* Implemented support for most of the endpoints except recording and IPCam stuff.


