Accompanies [app]s written in, or [library]s meant to be used from, the Python programming language
97
votes
9answers
9k views
Flack Overstow - Generate spam from Stack Exchange posts
Online demo courtesy of George Edison:
http://quickmediasolutions.com/flack
Note: this tool now works with all Stack Exchange sites. Just paste the URL of your profile and the app will ...
80
votes
1answer
9k views
StackPrinter: The Stack Exchange Printer Suite
UPDATE:
Version 1.1 - MySE section, PrettyPrint, StackPrinter API
Screenshot
App Homepage
Printable view
About
http://www.stackprinter.com
StackPrinter is a website that pulls the ...
76
votes
19answers
5k views
Py-StackExchange: An API wrapper for Python
A warm welcome to you, traveller. You have arrived at the home of Py-StackExchange, the library definitively proven† to be the best library for using the SE API from Python. If you are still ...
49
votes
6answers
3k views
Stack2Blog - Turning your answers into blogs (For “sale”)
Stack2Blog for Sale
Hi everyone!
Since we're working on a few other projects, we haven't worked on Stack2Blog in a while.
We still think it can be useful, especially with the rise of platforms ...
25
votes
4answers
3k views
StackTracker - Cross-platform desktop notification app
Screenshot / Code Snippet
Current Version: Beta build v1.0
About
StackTracker, a cross-platform desktop notifier for the StackExchange API built with PyQt4
The application displays a task ...
16
votes
3answers
2k views
StackTray: The Stack Overflow tray application
Screenshot
Icon on left
Hover over icon
Context menu
Reputation Alerts
About
This application sits in your system tray and periodically checks Stack Overflow for any new badges or ...
13
votes
0answers
441 views
Stackathlon: Users active on all three of SO, SF and SU
Screenshot
About
It's surprising how few people are active on all three of Stack Overflow, Server Fault and Super User. Well, maybe not so surprising. But it's a big world; you'd think there'd be ...
12
votes
3answers
493 views
Stack.PY - A Python Module for Accessing the Stack Exchange 2.1 API
Now on PyPI!
You can now find Stack.PY on PyPI, Python's package index. This means that you can install the package simply by running the following command in a terminal:
pip install ...
7
votes
0answers
534 views
Stacktistics: Show recent popular languages, mobile platforms and web techs based on question counts
Screenshot / Code Snippet
About
You may wonder what kind of languages, mobile platforms, or web technologies are most popular these days.
stacktistics shows popularity of programming ...
6
votes
1answer
190 views
SCombinator - Combined Questions of All the sites that API supported
Screenshot / Code Snippet
About
Just another combination of all the sites that API supported.
If you use all those sites, it would be very useful, because you can surf all at one place.
Almost ...
6
votes
0answers
246 views
LaServ - A Python/Twisted based flexible command line bot/framework for Stack Exchange
LaServ (a play on Lazers, The Bridge's feedbot and '*Serv' bots, which provide IRC services ) is a Python/Twisted project that I've been poking at since the Christmas break. It's still beta ...
5
votes
1answer
282 views
Stack-Trac - List stackoverflow/serverfault/… questions that are related to your Trac tickets
About
This little app will look at the summary from the currently viewed Trac ticket and find related questions & answers on stackoverflow, or other stackexchange sites.
Screenshot
(see full ...
5
votes
0answers
120 views
Quick Media Solutions - The First Tool to Take Advantage of Write Access in v2.1 of the API!
Website
http://quickmediasolutions.com
Screenshot
About
Quick Media Solutions is my personal website where most of the web services and tools I have written reside. I recently rewrote the ...
4
votes
1answer
670 views
pyso.py - Python Stack Overflow library
Screenshot / Code Snippet
import pyso
# Install the Server Fault API version 1.0.
pyso.install_site(pyso.APISite("api.serverfault.com", "1.0"))
# Get all the names of the moderators.
print ...
4
votes
0answers
68 views
StackIRC - Posting Questions from Stack Exchange Sites to IRC Channels
Screenshot
About
Similar to the Twitter feeds for each Stack Exchange site, this small IRC bot retrieves questions from any Stack Exchange site and regularly posts them to an IRC channel of ...
4
votes
0answers
346 views
sanction: a dead easy OAuth2 client Python implementation
Overview
sanction is a lightweight, dead simple (67 LOC!) client implementation of the OAuth2 protocol. The major goals of the library are:
Support multiple providers
Most providers have varying ...
4
votes
0answers
257 views
Stack Bragger (facebook app to post questions badges)
Screenshot / Code Snippet
About
Stack Bragger lets you brag to your Facebook friends whenever you ask new questions or earn new badges at StackOverflow, SuperUser or ServerFault.
I was looking ...
3
votes
0answers
210 views
Stackdump, an offline browser for StackExchange sites
Screenshots
About
Stackdump was conceived for those who work in environments that do not have easy access to the StackExchange family of websites. It allows you to host a read-only instance of ...
3
votes
0answers
141 views
Scrape the site list, show sites sorted by answer ratio
About
Display the list of Stack Exchange sites, with the number of questions and answers on each site, and the answer ratio (number of answers divided by the number of questions). The list is ...
3
votes
0answers
216 views
PyOverflow: Account statistics for Stack Overflow for Ubuntu!
I was bored, and I wanted to play with the API, so I came up with this little script:
It's coded in Python and has only a single image dependency.
Here is a screenshot:
Here's the source code ...
2
votes
0answers
86 views
Calibre recipe for StackExchange recent question feeds
The Calibre ebook manager has a recipe system to generate ebooks from websites/news feeds in order to read them offline.
The following recipe creates an ebook from all StackExchange news feeds:
...
2
votes
2answers
371 views
OAuth 2.0 implementation
Code Snippet
from sanction.client import Client
from sanction.adapters.google import Google
client = Client(Google, {
"google.client_id": "myclientid",
"google.client_secret": ...
2
votes
0answers
257 views
Stack Monthly - Best questions in the month
About
This website allows user to unearth gems which are hidden due to popular community questions. This is done by only showing most voted questions asked in that month.
It allows a user to ...
1
vote
2answers
149 views
Python library for the StackExchange v2 API?
So I'm aware of Py-StackExchange and pyso.py, but neither covers the v2.0 API. Does anyone know of a Python library for the 2.0 API?
1
vote
1answer
99 views
Non-verbatim search strings in py-stackexchange
Hello,
I am writing a python program with py-stackexchange that takes a query and returns a list of urls to questions with that query in the title. Here's the code:
#!c:/Python27/python.exe -u
...
1
vote
0answers
166 views
stack2py - A Python wrapper for API v2 [alpha]
About
stack2py is a library which wraps the SE API (v2.1) for Python. It aims to provide a clean and complete interface to the user, giving them complete control and accessibility.
Although, ...
1
vote
0answers
34 views
Attribute error while using the stackoverflow api wrapper for python on IDLE
This is the code that I use to access Stack Overflow:
from stackexchange import Site, StackOverflow
so = stackexchange.StackOverflow()
for q in so.questions(pagesize=50):
print q.title
It runs ...
1
vote
0answers
112 views
se-api-py - A lightwight Python wrapper for SE API
I've made a Python wrapper for Stack Exchange API.
About
A lightweight Python wrapper for StackExchange API v2.1.
Built with Requests.
Why yet another SE API Python wrapper? (I'm aware of Stack.PY ...
1
vote
1answer
326 views
API Implicit Authentication with Python
I am working on an desktop inbox notifier for StackOverflow, using the API with Python.
The script I am working on first logs the user in on StackExchange, and then requests authorisation for the ...
1
vote
0answers
42 views
Why user/top-answer-tags doesn't return any results?
I userd python to call
ansauthor=site.user(641)
in the cooking website.
then I used ansauthor.top-answer-tags
However, it doesn't return anything.
Then I called ansauthor.top-answer-tags.fetch()
It ...
0
votes
1answer
62 views
“client_id not provided” when trying to obtain an access_token
So I'm trying to authenticate with the v2 API via oauth2. I have a code, so I'm POSTing to https://stackexchange.com/oauth/access_token and ideally get an access_token back.
Instead I get an ...
