https://github.com/codeasashu/moviemeta
A movie meta generator in python. Inspired by https://github.com/praateekmahajan/movie-meta-fetch
https://github.com/codeasashu/moviemeta
Last synced: 10 months ago
JSON representation
A movie meta generator in python. Inspired by https://github.com/praateekmahajan/movie-meta-fetch
- Host: GitHub
- URL: https://github.com/codeasashu/moviemeta
- Owner: codeasashu
- License: mit
- Created: 2016-06-30T03:05:19.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-06-30T03:51:37.000Z (over 9 years ago)
- Last Synced: 2024-10-06T00:41:15.671Z (over 1 year ago)
- Language: Python
- Homepage: http://aboutashu.com
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# moviemeta
A movie meta generator in python. Inspired by https://github.com/praateekmahajan/movie-meta-fetch
This is a command line utility which generates metadata of the movies in directories, using IMDB Api.
Basic usage is simple. Just run this script and open `index.html` in your favourite web browser.
## Useage
### help
`$moviemeta.py -h`
### Mention a directory
*NOTE* - Always mention absolute path to directories.
`$moviemeta.py -d "C:\movies`
### Sub directories
In some cases, you might not want few directories within your directory to be counted as movies. For example, You might have a directory called **Godfather** having all three godfather series. To mark directories as sub-directories, please add them to `subdir.txt` in comma seperated string format, like:
`godfather,hannibal`
`matrix`
### Sequential requests(Optional)
By default, this program runs in parallel mode. If you want it to run sequentially, pass `-s` switch anytime.
`$moviemeta.py -d "C:\movies" -s`