Metadata-Version: 1.1
Name: yql
Version: 1.0.1
Summary: python interface for yql
Home-page: https://github.com/plasmashadow/yql.git
Author: plasmashadow
Author-email: plasmashadowx@gmail.com
License: MIT
Description: ##YQL
        [![Build Status](https://travis-ci.org/plasmashadow/yql.svg?branch=master)](https://travis-ci.org/plasmashadow/yql)
        [![PyPI version](https://badge.fury.io/py/yql.svg)](http://badge.fury.io/py/yql)
        
        ##Description:
        YQL is a thin wrapper for Yahoo Query Language.
        
        ##Installation:
        
        ```python
           pip install yql
        
        ```
        
        ##Usage
        
        Inorder to create a yahoo request you can use a YRequest call from YQL.
        
        ```python
        from yql import YRequest
        import logging
        
        log = logging.getLogger(__name__)
        
        y = YRequest(table="html")
        y.add_filter("url", "http://en.wikipedia.org/wiki/Yahoo")
        response = y.json()
        log.info(response)
        
        ```
        Since yql comes with the Object mapper you can directly reference the
        sub keys of a json.
        
        ```python
        
        log.info(response.query.count)
        
        ```
        
        ##LICENSE
        MIT
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 1 - Planning
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
