Metadata-Version: 1.1
Name: smartframes
Version: 1.1.0
Summary: Enhanced Python Dataframes for Spark/PySpark
Home-page: https://github.com/dondrake/smartframes
Author: Don Drake
Author-email: don@drakeconsulting.com
License: Apache
Description: smartframes
        ===========
        Enhanced Python Dataframes for Spark/PySpark
        
        Motivation
        ----------
        
        Spark DataFrames provide a nice interface to datasets that have a schema.  Getting data from your code into a DataFrame in Python means creating a Row() object with field names and respective values.  Given that you already have a schema with data types per field, it would be nice to easily take an object that represents the row and create the Row() object automatically.
        
        Smartframes allow you to define a class by just creating the schema that represents the fields and datatypes.  You can then create an object and set the values like any other Python class.  When you are ready to store that in a DataFrame, just call the createRow() method.  
        
        The createRow() method will coerce any values into the correct data types, for example, if a field is defined as an IntegerType and the value set in the class is a String, it will attempt to convert the string to an Integer before creating the Row().
        
        This was written when creating Row()'s with Long datatypes and finding that Spark did not handle converting integers as longs when passing values to the JVM.  I needed a consistent manner to create Row() for all of my DataFrames.
        
        
        Installation
        ------------
        
        .. code::
        
            pip install smartframes
        
        
        Example
        -------
        
        Simply create a class that extends from SmartFrame and define the schema as a sorted list of StructFields.  It's important that the schema is sorted as Spark gets upset if the Row() object is created with fields that are in a different order. Strange, but true.
        
        The skipSelectedFields is a list of field names that you normally would not select when creating a select() statement. 
        
        .. code:: python
        
            class SimpleTable(SmartFrames):
                schema = StructType( sorted(
                    [
                    StructField("pk_id", IntegerType()),
                    StructField("first_name", StringType()),
                    ],
                    key = lambda x: x.name))
                skipSelectedFields = []
        
            ...
        
                    s1 = SimpleTable()
                    s1.pk_id = 1
                    s1.first_name = 'Don'
        
                    s2 = SimpleTable()
                    s2.pk_id = 2
                    s2.first_name = 'Dan'
                    df = self.sqlCtx.createDataFrame(self.sc.parallelize([s1.createRow(), s2.createRow()]), s1.schema)
        
        
        Releases
        --------
        
        =======     =========   =============================
        Version     Date        Notes
        =======     =========   =============================
        1.1.0       10/6/2015   Performance improvements
        1.0.1       10/3/2015   First release of smartframes
        =======     =========   =============================
        
Keywords: Spark PySpark DataFrame
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
