Metadata-Version: 1.2
Name: RemoveMedia
Version: 0.0.3
Summary: An application to remove file and folder in a given directory for a given treshold 
Home-page: https://github.com/Hatoris/RemoveMedia
Author: Florian Bernard
Author-email: florianxbernard@gmail.com
License: MIT
Project-URL: Documentation, https://hatoris.github.io/RemoveMedia/html/index.html
Project-URL: Source, https://github.com/Hatoris/RemoveMedia
Description: Use case
        =========
        
        .. image:: https://img.shields.io/travis/Hatoris/RemoveMedia.svg
        
        
        This script is attented to be use on server, as cli, to remove file older than a given differential. More specificly, to remove media on server with small capacity (FreeNAS/FreeBSD).
        
        For this reason, scrpt can refresh plex instance and send you notification via pushbullet.
        
        Instalation
        ===========
        
        .. code-block:: python
        
            pip install RemoveMedia
            git clone 
        
        Basic usage
        ===========
        
        You have two choice to use this application : 
        
            1. Generated a config file 
                1. By generating a default one and edit the config file by yourself
                2. Follow cli instruction to generate the config file
            2. Pass your paremters directly
        
        Generated config file
        ======================
        
        1. Generating default
        ----------------------
        
        Open your shell and run the following command
        
        .. code-block:: bash
        
            python RemoveMedia generate MyFirstConfig.ini -default=True
        
        This command will generate a empty config file inside the package : 
        
        .. code-block:: bash
        
            ~/RemoveMedia/configuration/config
        
        The generating default config file will look like this
        
        .. note::
        
            [folder]
            threshold = 
            path = 
            threshold_type = 
        
            [plex]
            ip = 
            token = 
            link = http://${plex:IP}:32400/library/sections/all/refresh?X-Plex-Token=${plex:token}
        
            [pushbullet]
            api_key = 
        
            [log]
            log_path = 
            log_filename = 
        
        .. warning::
        
            Remove an used parameters to prevent error
        
        
Keywords: filemanagement,datetime
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Development Status :: 3 - Alpha
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.6
