Metadata-Version: 1.0
Name: directory-to-sql
Version: 0.1.1
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.
        
        - Get file sizes and modification date.
        - Get folder sizes and file counts.
        - Get 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
