# Best Python Tutorial Posts from Hacker News

**Use case:** 

Scrape top Hacker News posts on Python tutorials with at least 50 points. Get details like title, author, and URL in a structured format.

## Input

```json
{
  "query": "Python tutorial guide learn",
  "itemType": "story",
  "sortBy": "date",
  "minPoints": 50,
  "maxItems": 200
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "points": {
    "label": "Points",
    "format": "number"
  },
  "numComments": {
    "label": "Comments",
    "format": "number"
  },
  "createdAt": {
    "label": "Created",
    "format": "date"
  },
  "url": {
    "label": "Link",
    "format": "link"
  },
  "hnUrl": {
    "label": "HN Item",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Hacker News API Scraper - Stories, Comments & Polls](https://apify.com/logiover/hacker-news-search-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/hacker-news-search-scraper) to learn more, explore other use cases, and run it yourself.