├── .gitignore ├── .travis.yml ├── Config └── trailers.example.conf ├── ConfigMapper ├── __init__.py └── configMapper.py ├── LICENSE ├── README.md ├── appveyor.yml ├── res └── poster.jpg └── theaterTrailers.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electronickss/TheaterTrailers/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electronickss/TheaterTrailers/HEAD/.travis.yml -------------------------------------------------------------------------------- /Config/trailers.example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electronickss/TheaterTrailers/HEAD/Config/trailers.example.conf -------------------------------------------------------------------------------- /ConfigMapper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ConfigMapper/configMapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electronickss/TheaterTrailers/HEAD/ConfigMapper/configMapper.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electronickss/TheaterTrailers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electronickss/TheaterTrailers/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electronickss/TheaterTrailers/HEAD/appveyor.yml -------------------------------------------------------------------------------- /res/poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electronickss/TheaterTrailers/HEAD/res/poster.jpg -------------------------------------------------------------------------------- /theaterTrailers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electronickss/TheaterTrailers/HEAD/theaterTrailers.py --------------------------------------------------------------------------------