Metadata-Version: 1.0
Name: directory-to-sql
Version: 0.1.2
Summary: Get a SQL database of file directory data.
Home-page: http://github.com/hydrospanner/directory_to_sql
Author: John Tucker
Author-email: UNKNOWN
License: MIT
Description: directory_to_sql
        ======================
        
        Get a SQLite database of a directory tree.
        
        .. image:: https://travis-ci.com/hydrospanner/directory_to_sql.svg?branch=master
        
        The data retrived includes:
        
        - File sizes and modification date.
        - Folder sizes and file counts.
        - Recursive (including sub-folders) folder sizes and file counts.
        
        To create the database and execute some example queries
        listing largest files and folders::
        
          from directory_to_sql import get_db, top_10
          conn = get_db('\\', 'db.db')
          top_10(conn)
        
Platform: UNKNOWN
