Metadata-Version: 2.1
Name: renderer_pypi
Version: 0.0.1
Summary: A simple Python package
Home-page: https://github.com/navinxqz/Renderer-PyPI-Package
Author: navinxqz
Author-email: navinmdnawshin@gmail.com
License: MIT
Project-URL: Bug Tracker, https://github.com/navinxqz/Renderer-PyPI-Package/issues
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: ensure==1.0.2
Requires-Dist: py-youtube==1.1.7

# Renderer-PyPI-Package

This repo contains the source code for the Renderer package, which is available on PyPI. The Renderer package provides tools and utilities for rendering youtube videos and any web page over the jupyter notebook/colab and visualization in Python applications.

# How to run the package
1. Create a virtual environment:
   ```bash
   conda create -n renderer python=3.8 -y 
   ```
   or to create in a specific path:
   ```bash
    conda create -p ./envs/renderer python=3.8 -y 
    ```
2. Activate the virtual environment:
   ```bash
    conda activate renderer
    ```
    or if created in a specific path:
    ```bash
    conda activate ./envs/renderer
    ```
3. Install the required packages:
    ```bash
    pip install -r requirements_dev.txt
    ```
