Metadata-Version: 1.1
Name: SmokeAPI
Version: 0.1.0
Summary: Library for interacting with the MetaSmoke API
Home-page: https://github.com/AWegnerGitHub/SmokeAPI
Author: Andrew Wegner
Author-email: pypi@andrewwegner.com
License: MIT
Description: This is a Python wrapper for the `MetaSmoke API <https://github.com/Charcoal-SE/metasmoke/wiki/API-Documentation>`__.
        
        .. image:: https://travis-ci.org/AWegnerGitHub/smokeapi.svg?branch=master
          :target: https://travis-ci.org/AWegnerGitHub/smokeapi
          :alt: Build Status
        
        .. image:: https://readthedocs.org/projects/smokeapi/badge/
          :target: http://smokeapi.readthedocs.io/en/latest/?badge=latest
          :alt: Documentation Status
        
        This library has support for:
        
        -  Read and (soon) write functionality via the API.
        -  Can retrieve multiple pages of results with a single call and merges
           all the results into a single response.
        -  Throws exceptions returned by the API for easier troubleshooting.
        -  Utilizes `Requests <http://docs.python-requests.org/>`__.
        
        
        Example usage:
        ==============
        
        Connect to MetaSmoke and gather posts that have been marked "Not an answer"
        ---------------------------------------------------------------------------
        
        ::
        
            from smokeapi import SmokeAPI
            SMOKE = SmokeAPI('your_api_key')
            posts = SMOKE.fetch('posts/feedback', type="naa-")
        
        The above, will issue a call to the
        |PostsFeedback|_. end point on MetaSmoke.
        
        .. |PostsFeedback| replace:: ``Posts Feedback``
        .. _PostsFeedback: https://github.com/Charcoal-SE/metasmoke/wiki/Posts-by-Feedback
        
        Much more detailed documentation is available on
        `ReadTheDocs <http://smokeapi.readthedocs.io/>`__.
Keywords: stackexchange
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
