SmokeAPI

Library for interacting with the MetaSmoke API


Keywords
stackexchange
License
MIT
Install
pip install SmokeAPI==0.2.0

Documentation

This is a Python wrapper for the MetaSmoke API.

Build Status 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.

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 Posts Feedback. end point on MetaSmoke.

Much more detailed documentation is available on ReadTheDocs.