# Python Questions on Stack Overflow

**Use case:** 

Find Python questions from Stack Overflow with titles, tags, scores, answers, views, activity dates, and question URLs.

## Input

```json
{
  "searchQueries": [
    "async await"
  ],
  "tags": [
    "python"
  ],
  "questionIds": [],
  "userIds": [],
  "sort": "activity",
  "includeBody": false,
  "maxResults": 10,
  "site": "stackoverflow",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "questionId": {
    "label": "ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "answerCount": {
    "label": "Answers",
    "format": "number"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "isAnswered": {
    "label": "Answered",
    "format": "boolean"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  },
  "ownerName": {
    "label": "Author",
    "format": "text"
  },
  "ownerReputation": {
    "label": "Author Rep",
    "format": "number"
  },
  "createdAt": {
    "label": "Created",
    "format": "date"
  },
  "lastActivityAt": {
    "label": "Last Activity",
    "format": "date"
  },
  "link": {
    "label": "URL",
    "format": "link"
  },
  "site": {
    "label": "Site",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Stack Overflow Scraper - Questions & Users](https://apify.com/fascinating_lentil/stack-overflow-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fascinating_lentil/stack-overflow-scraper) to learn more, explore other use cases, and run it yourself.