Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mariostoev/producthunt-scraper
https://github.com/mariostoev/producthunt-scraper
Last synced: 29 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mariostoev/producthunt-scraper
- Owner: mariostoev
- Created: 2023-08-15T13:32:16.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-16T06:27:13.000Z (about 1 year ago)
- Last Synced: 2023-08-16T07:44:15.235Z (about 1 year ago)
- Language: Python
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ProductHunt - Products of the day scraper
This is a synchronous scraper that gets information about all products of the date from ProductHunt from a given date or list of dates.
## Usage
JSON Input
``{ "dates" : "2023/08/15"}``
or
``{ "dates" : ["2023/08/15", "2023/08/14", "2023/08/13"]}``
## Output
The output is a Python list of JSON objects that include the following information about each product:
```
{
"ph_url": "https://www.producthunt.com/posts/lottielab",
"company_url": "lottielab.com",
"name": "Lottielab",
"featured_date": "2023/08/15",
"tagline": "Create and ship lottie animations to sites and apps faster",
"description": "Create and export Lottie animations to your websites and apps easily!\n\n- Import SVGs, Lotties, from Figma or create from scratch\n- Animate with a simple but powerful timeline\n- Export as Lottie, Gif or MP4 to any platform\n- Collaborate with your team",
"ranking": "1",
"upvotes": 1048,
"product_category": "Design Tools",
"comments": 199,
"makers": [
"Alistair Thomson",
"Andrew Ologunebi",
"David Davidovi\u0107",
"Daryl Patigas",
"Hugo Daniel",
"Pius Chong",
"Erwan Ameil",
"Harvey",
"Ayo Oluwanusin"
]
}
```