I\'m using Py-StackExchange to get a list of recent questions from Stack Overflow. I know there is a way to get just a constant list of questions:
import sta
Use tagged keyword argument.
tagged
For example:
for question in so.questions(tagged=['python'], pagesize=10): print question assert 'python' in question.tags
Specifying tagged=['python', 'loops'] will filter question that is tagged both python and loops.
tagged=['python', 'loops']
python
loops