https://github.com/simonefelici/vixsrc-scraper
https://github.com/simonefelici/vixsrc-scraper
Last synced: 19 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/simonefelici/vixsrc-scraper
- Owner: SimoneFelici
- License: mit
- Created: 2026-05-27T09:34:47.000Z (21 days ago)
- Default Branch: main
- Last Pushed: 2026-05-28T21:07:20.000Z (19 days ago)
- Last Synced: 2026-05-28T22:00:40.978Z (19 days ago)
- Language: Python
- Size: 83 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vixsrc_scraper
Small scraper for VixSrc
## Usage
### Movie
```bash
vixsrc-scraper -t movie -id MOVIE_ID --name "Movie Name" --year 2019
```
## TV
```bash
vixsrc-scraper -t tv -id SERIES_ID --name "Series Name" --year 2010 --season 1 -ep 3
```
## Examples
Download episodes 1 to 10 from season 1:
```bash
for ep in {1..10}; do vixsrc-scraper -t tv -id SERIES_ID --name "Series Name" --year 2010 --season 1 -ep "$ep"; done
```
## Options
```bash
-t, --type Content type: movie or tv
-id TMDB ID (https://www.themoviedb.org/)
--name Output name
--year Optional output year
--season Season number, default: 1
-ep Episode number, default: 1
--audiolang Optional audio language, ex: (ita, eng)
--sublang Optional subtitle language
```