Metadata-Version: 1.1
Name: xls2db
Version: 0.0.7
Summary: Convert excel files following a particular schema into sqlite database files.
Home-page: https://github.com/jesusabdullah/xls2db
Author: Joshua Holbrook
Author-email: josh.holbrook@gmail.com
License: UNKNOWN
Description: xls2db
        ======
        
        xls2db is a python program that takes an excel spreadsheet following a certain
        schema into an sqlite database that can be opened using python's sqlite3 module.
        It can also be used as a module.
        
        Why??
        -----
        
        Because fuck you, that's why.
        
        But seriously: I was getting sick of doing data entry for this toy project of
        mine using cursor.execute()'s, so I figured I'd try entering the data into an
        excel spreadsheet, converting it into the db, and then manipulating it from
        there. Crazy, I know.
        
        Usage:
        --------
        
        As a script::
        
            xls2db infile.xls outfile.db
        
        As a module::
        
            from xls2db import xls2db
            xls2db("infile.xls", "outfile.db")
        
        For more, visit <https://github.com/jesusabdullah/xls2db> .
            
Keywords: excel,sqlite,probably_a_bad_idea,because_f_you_thats_why
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Other/Nonlisted Topic
