Accompanies [app]s written in, or [library]s meant to be used from, the Python programming language
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": ...
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 ...
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
0answers
245 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
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
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
345 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
206 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
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
0answers
165 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
33 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
111 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
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 ...
