Metadata-Version: 1.1
Name: dirtools
Version: 0.1.0
Summary: Description
Home-page: https://github.com/tsileo/dirtools
Author: Thomas Sileo
Author-email: thomas.sileo@gmail.com
License: MIT
Description: ==========
         Dirtools
        ==========
        
        Dirtools is a little Python package aimed to provide the following features:
        
        * Exclude/ignore files in a directory, using .gitignore like syntax (unix filename pattern matching).
        * Generate a hash for a directory tree in order to check if a directory has been modified.
        * Search recursively for all subidirs containing a given filename (all projects directory inside a dir).
        
        Installation
        ============
        
        .. code-block::
        
            $ pip install dirtools
        
        
        Getting Started
        ===============
        
        Excluding files
        ---------------
        
        Dirtools let you exlude files using .gitignore like syntax (unix filename pattern matching), by default ``dirtools`` will look for a ``.exclude`` file at root.
        
        Here is how to check if a file should be excluded:
        
        .. code-block:: python
        
            from dirtools import Dir
        
            d = Dir('/path/to/dir', exclude_file='.gitignore')
            d.is_excluded('/path/to/dir/script.pyc')
        
        
        Using dirtools to exclude files with tarfile
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        .. code-block:: python
        
            import tarfile
            from dirtools import Dir
        
            d = Dir('/path/to/mydir', exclude_file='.gitignore')
        
            with tarfile.open(fileobj=out, mode="w:gz")) as tar:
                tar.add(filename, arcname=arcname, exclude=d.is_excluded)
        
        
        Hashdir
        -------
        
        The hashdir represent the state of every files in a directory. It compute the hash of the hash of each file recursively.
        
        Here is how to compute the hash of a directory, excluded files ares skipped if any.
        
        .. code-block:: python
        
            from dirtools import Dir
        
            d = Dir('/path/to/dir')
            hashdir = d.hash()
        
        
        Find directories containing a file
        ----------------------------------
        
        We'll call these directories **project**, ``find_projects`` will search recursively for subdirectories with a ``file_identifier`` file in it.
        
        .. code-block:: python
        
            from dirtools import Dir
        
            d = Dir('/path/to/dir')
            projects = d.find_projects(".project")
        
        
        Helpers
        -------
        
        All methods/properties exclude files and directories based on patterns in ``exclude_file`` and the ``excludes`` list.
        
        Custom Walker
        ~~~~~~~~~~~~~
        
        If you need to perform operations on files or directories, you can use ``Dir.walk``, it works exactly like ``os.walk``, except it will skip excluded files/directories on the fly.
        
        .. code-block:: python
        
            from dirtools import Dir
        
            d = Dir('/path/to/dir')
            
            for root, dirs, files in self.walk():
                # do something
        
        
        List all subdirectories of a directory
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        .. code-block:: python
        
            from dirtools import Dir
        
            d = Dir('/path/to/dir')
        
            dirs = d.subdirs()
        
        
        List all files recusively
        ~~~~~~~~~~~~~~~~~~~~~~~~~
        
        .. code-block:: python
        
            from dirtools import Dir
        
            d = Dir('/path/to/dir')
        
            files = d.files()
        
        
        License (MIT)
        =============
        
        Copyright (c) 2013 Thomas Sileo
        
        Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
        
Keywords: some keyword
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
