Metadata-Version: 2.0
Name: cinefiles
Version: 1.1.0
Summary: Organize your movie folder and files
Home-page: https://github.com/hgibs/cinefiles
Author: Holland Gibson
Author-email: cinefiles-hgibs@googlegroups.com
License: Apache 2.0
Keywords: movies organization folder
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: End Users/Desktop
Classifier: Topic :: Desktop Environment :: File Managers
Classifier: Topic :: Games/Entertainment
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: google-api-python-client (<2,>=1.6.2)
Requires-Dist: guessit (>=2.1.1,<3)
Requires-Dist: lxml (<4,>=3.7.3)
Requires-Dist: pycountry (<18,>=17.0.0)
Requires-Dist: requests (>=2.4.3,<3)
Requires-Dist: youtube-dl (>=2017.2.17)
Provides-Extra: dev
Requires-Dist: twine; extra == 'dev'
Requires-Dist: wheel; extra == 'dev'
Provides-Extra: test
Requires-Dist: codecov; extra == 'test'
Requires-Dist: pytest; extra == 'test'
Requires-Dist: pytest-console-scripts; extra == 'test'
Requires-Dist: pytest-cov; extra == 'test'
Requires-Dist: pytest-pep8; extra == 'test'


============
cinefiles
============

.. image:: https://travis-ci.org/hgibs/cinefiles.svg?branch=master
.. image:: https://img.shields.io/codecov/c/github/hgibs/cinefiles/master.svg

Organizes, indexes, and pulls relevant info for your movie library presented in a clean, locally-resourced, set of webpages.

Installation
===============

1) Install `cinefiles`_
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

::

    pip install cinefiles


Usage
=====

Downloading to appropriaatly named folders (each folder's name is the name of the movie it holds)
NOTE: Folders can contain subfolders with movies in them i.e. => "James Bond Movies/Goldeneye"

::

    import cinefiles.cinefiles as cf
    directory = "/Volumes/HDD/Movies"
    search = cf.Cinefiles(searchfolder=directory)
    search.run()


To rename folders automatically:
(this can't be undone automatically yet)

::

    import cinefiles.cinefiles as cf
    directory = "/Volumes/HDD/jumble_of_movies"
    organize = cf.Cinefolders(searchfolder=directory)
    organize.organizefolder()



To remove all the added files:
==============================

::

    import cinefiles.cinefiles as cf
    clear_run = cf.Cinefiles(configfile='cinefiles.ini')
    clear_run.clear_run.purgecinefiles()




