Metadata-Version: 2.1
Name: twitter-video-tools
Version: 11.17.2022
Summary: Twitter Video Tools is a multi-processing supported video downloader, supports videos from twitter (or specific user from twitter) && monsnode.
Home-page: https://github.com/code-yeongyu/twitter_video_tools
License: MIT
Keywords: crawler,parser,downloader,monsnode,twitter,youtube_dl
Requires-Python: >=3.9,<4.0
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet :: WWW/HTTP :: Browsers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Testing :: Unit
Classifier: Topic :: Software Development :: Version Control
Classifier: Typing :: Typed
Requires-Dist: bs4 (>=0.0.1,<0.0.2)
Requires-Dist: playwright (>=1.27.1,<2.0.0)
Requires-Dist: requests (>=2.28.1,<3.0.0)
Requires-Dist: youtube_dl (>=2021.12.17,<2022.0.0)
Description-Content-Type: text/markdown

# Twitter Video Tools

- A multi-processing supported video downloader
- supports downloading videos from twitter (or specific user from twitter) && monsnode.

## Install

### PIP

```sh
pip install twitter-video-tools
```

### Poetry

```sh
poetry add twitter-video-tools
```

## Contribution

### Prerequisites

- Python 3.9
- poetry
- code editor (vscode recommended)

### Quick Info of setups

- strict type checking using mypy
- amazing linters & formatters (`yapf`, `pylint`, `isort`)
  - `unify` for forcing single-quote
- unit test using `pytest`
- vscode launch & formatting setups

### All-in-one

```sh
gh repo clone code-yeongyu/twitter_video_tools
python3 -m pip install poetry
poetry install # install dependencies
code --install-extension emeraldwalk.RunOnSave # to force single quote
```

Done!

### Test

```sh
poetry shell
inv test
```

