Tagged Questions
1
vote
1answer
41 views
Possible to get more than 5 tags for /search? Or to use or-logic, for tags, in /questions?
This is the query I want to run:
...
1
vote
1answer
34 views
Is there a maximum on the number of search results returned (using the SO API)?
I was trying to do statistics on post from some not-too-popular tags like matlab, using the search method. It appears that it will never return a total larger than 2000. Is this a hard limit that ...
3
votes
1answer
39 views
API 'search' method with 'min' parameter
If you search for questions posted on time 1296897085 or later (by specifying sort=creation and min=1296897085), it may still return questions posted before that date:
...
5
votes
1answer
64 views
API 'search' method with 'tagged' parameter
From the docs for tagged paremeter:
List of tags delimited by semi-colons of which at least one must be on a question
Yet, when I execute this query ...
1
vote
1answer
100 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
...