Metadata-Version: 2.4
Name: enginehub.sphinx_youtube
Version: 0.3.0
Summary: Embed YouTube videos in Sphinx documentation.
Author: shomah4a
License-Expression: LGPL-3.0-only
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Documentation
Requires-Dist: docutils>=0.22.4
Maintainer: Maddy Miller, Octavia Togami
Requires-Python: >=3.10
Project-URL: Repository, https://github.com/EngineHub/sphinxcontrib.youtube
Description-Content-Type: text/markdown

Based on https://github.com/edwardtheharris/sphinxcontrib.youtube, https://github.com/divi255/sphinxcontrib.youtube/,
and the original https://github.com/shomah4a/sphinxcontrib.youtube.

[![PyPI - Version](https://img.shields.io/pypi/v/enginehub.sphinx-youtube)](https://pypi.org/project/enginehub.sphinx-youtube/)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/enginehub.sphinx-youtube)

Install:

```shell
pip install enginehub.sphinx_youtube
```

Usage:

First of all, add `enginehub.sphinx_youtube` to sphinx extension list in conf.py:
```python
extensions = ['enginehub.sphinx_youtube']
```
then use `youtube` directive.

You can specify video by video url or video id:
```rst
.. youtube:: https://www.youtube.com/watch?v=Ql9sn3aLLlI

.. youtube:: Ql9sn3aLLlI
```
