Metadata-Version: 2.1
Name: mediagrab
Version: 0.0.4
Summary: Python CLI for downloading videos from YouTube
Author-email: mrprikol <prikolus@proton.me>
License: MIT License
Project-URL: Repository, https://github.com/mrprikol/mediagrab
Keywords: python,cli
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pytube==15.0.0

# mediagrab
Python CLI to download videos from youtube

![PyPI - Version](https://img.shields.io/pypi/v/mediagrab)
![PyPI - License](https://img.shields.io/pypi/l/mediagrab)

## Installation
You can install the package using following command:
```sh
pip3 install mediagrab
```
(or)
```sh
pip install mediagrab
```

## Usage

### Getting help with command line arguments
```sh
mediagrab --help
```

### Main functionality
```sh
mediagrab <url>
```
url - link to a video from YouTube

## Development setup
Clone this repository and install packages listed in requirements.txt
```sh
pip3 install -r requirements.txt
```
