This is a Python wrappers for the Stack Exchange API. This library supports Stack Exchange API v2.2.
This library has support for:
- The Stack Exchange backoff parameter. It will automatically force a delay to match the parameter.
- Read and 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.
from stackapi import StackAPI SITE = StackAPI('stackoverflow') comments = SITE.fetch('comments')
The above, will issue a call to the
comments
. end point on Stack Overflow.
Much more detailed documentation is available on ReadTheDocs.