Metadata-Version: 1.1
Name: livy
Version: 0.1.0
Summary: A Python client for Apache Livy
Home-page: https://github.com/acroz/pylivy
Author: Andrew Crozier
Author-email: wacrozier@gmail.com
License: MIT
Description: pylivy
        ======
        
        `Livy <https://livy.incubator.apache.org/>`_ is an open source REST interface
        for interacting with `Spark <http://spark.apache.org/>`_. `pylivy` is a Python
        client for Livy, enabling easy remote code execution on a Spark cluster:
        
        .. code:: python
            
            from livy import Livy
            
            with Livy('http://spark.example.com:8998') as client:
                # Run some code on the remote cluster
                client.run("filtered = df.filter(df.name == 'Bob')")
                # Retrieve the result
                local_df = client.read('filtered')
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
