Skip to content

Instantly share code, notes, and snippets.

View atreidesend's full-sized avatar

Jared Meek atreidesend

  • Vienna, Austria
View GitHub Profile
@atreidesend
atreidesend / create_scratch_nfos.py
Last active September 6, 2017 03:53
IMDbPY NFO File Generator
import os
import glob
import imdb
import webbrowser
movies_scratch = glob.glob('*/*.mkv')
ia = imdb.IMDb()
for movie_path in movies_scratch:
new_outpath = movie_path[0:-4]+'.nfo'