Skip to main content

An API wrapper for Stack Overflow for Teams

Project description

Stack Overflow for Teams API Wrapper

A Python wrapper for the Stack Overflow for Teams API, replicating the functionality of the Stack Overflow for Teams API in a more user-friendly way.

Full documentation for the API can be found at one of the following locations:

Table of Contents

Setup

Install

Install the package using pip:

python3 -m pip install so4t_api

If you're running Windows, you'll probably need to use py instead of python3

API Authentication

To authenticate with the Stack Overflow API, you will need to generate a valid access token.

NOTE: For Enterprise, if you'll be performing any API tasks that require posting or editing content (i.e. anything beyond just getting/reading content), you'll need to make sure to include the write_access scope when generating your token; otherwise, you will not be able to make the necessary updates to content via the API.

ANOTHER NOTE: For Enterprise, if you'll be using any of the impersonation methods, this will additionally require an API key, which will be submitted as an argument when instantiating StackClient. It will also require enabling impersonation, which involves sending a request to support@stackoverflow.com.

Usage

A basic example of how to use the wrapper in an application:

import os
from so4t_api import StackClient

# instantiate the StackClient
stack = StackClient(url=os.environ["SO_URL"], token=os.environ["SO_TOKEN"]) 

# get all questions
questions = stack.get_questions() 

# Calculate total page views
total_views = 0
for question in questions:
    total_views += question["viewCount"]
print(f"Total page views across {len(questions)} questions: {total_views}")

At this time, most/all the documentation for wrapper methods is documented along side the methods (i.e. in the code)

Support

Disclaimer: the creator of this project works at Stack Overflow, but it is a labor of love that comes with no formal support from Stack Overflow.

If you run into issues using the script, please open an issue. You are also welcome to edit the script to suit your needs, steal the code, or do whatever you want with it.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

so4t_api-0.1.3.tar.gz (31.0 kB view details)

Uploaded Source

Built Distribution

so4t_api-0.1.3-py3-none-any.whl (18.8 kB view details)

Uploaded Python 3

File details

Details for the file so4t_api-0.1.3.tar.gz.

File metadata

  • Download URL: so4t_api-0.1.3.tar.gz
  • Upload date:
  • Size: 31.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.11.3

File hashes

Hashes for so4t_api-0.1.3.tar.gz
Algorithm Hash digest
SHA256 5d8adb4ec0bed5473f20129eed5cd171077d6c99b512c861189bd492aa1e191d
MD5 e0cb59f23ad19ee9a8c0362d4855eab3
BLAKE2b-256 4d636a0d90c180d8b0687f8b2b37caa44fe4c1b6b6a31219c35234989d1fc8ec

See more details on using hashes here.

File details

Details for the file so4t_api-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: so4t_api-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 18.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.11.3

File hashes

Hashes for so4t_api-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 54e6148bf1ce30e783b59a5ab886a1c1115b880892bf5480866f6af803847f2f
MD5 a715cf1efcd09be4d527b1b658900c19
BLAKE2b-256 400219b7bdfe6f456df8765ef67db664e8d8f3fc9ece298777b2013a6dd7b370

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page