Py-StackExchange icon indicating copy to clipboard operation
Py-StackExchange copied to clipboard

A Python binding for the StackExchange API

Results 25 Py-StackExchange issues
Sort by recently updated
recently updated
newest added

Hey there, I'm tracing socli project and I find some error with it, and it seems to have something wrong in your object function questions.fetch(), I'm trying to find it...

For fun I wanted to add up all of the reputation across all users. Here is the code sample. ``` stack_auth = StackAuth() so = Site(StackOverflow, impose_throttling=True) # Get all...

While trying to take a look at an answers revisions, I encountered this: ``` import stackexchange se = stackexchange.Site("CodeReview", API_KEY) user = se.user(USER_ID) a = user.answers.fetch()[0] a.revisions.fetch() Traceback (most recent...

Hi, I want to call this endpoint using this library - https://api.stackexchange.com/docs/related-tags#filter=default&site=stackoverflow&run=true . I couldn't find any mention of it the code or docs. Is it currently supported?

Was using the user.reputation_detail, I tried to use members that apparently no longer exist. Printing the change.json, I see examples like: `{ u'user_id': 11111, u'on_date': 1444497094, u'vote_type': u'up_votes', u'post_id': 2222222,...

Adding keyword arguments to fetch, so as to be able to pass arguments like 'body=True' for fetching the body of the answer.

I sometimes get an error when I fetch the comments from answers It complains of missing key `user_id`, so the json must have an owner attr but the owner not...

As input, I've "access_token", how can I fetch the user and it's details using it.

I need the json to return "accepted_answer" as one of the fields, which requires me to send access_token when I call the StackExchange API. I'm getting this error: > stackexchange.core.StackExchangeError:...