Metadata-Version: 1.1
Name: redwing
Version: 0.0.2
Summary: Inspect a CSV file and determine data types to build a table to contain it.
Home-page: https://github.com/briandailey/redwing
Author: Brian Dailey
Author-email: brian@realm3.com
License: MIT
Description: #### Redwing: Python Type-Inference for CSV Files
        
        This script reads CSV file and infers data types.
        
        It does a few other things, too, like determining max length for character fields.
        
        It expects a CSV with a header row.
        
        Currently, it works like this:
        
        
            redwing csvfile.csv --tablename=tablename
        
        Output is a SQL creation script.
        
            CREATE TABLE tablename (
            id INTEGER,
            name VARCHAR(5)
            )
        
Keywords: data csv sql
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.5
