https://github.com/krisluczka/scrapium.h
Simple, light and fast C++ webscraping library.
https://github.com/krisluczka/scrapium.h
cpp http scraping scrapping webscraping webscrapping
Last synced: 3 months ago
JSON representation
Simple, light and fast C++ webscraping library.
- Host: GitHub
- URL: https://github.com/krisluczka/scrapium.h
- Owner: krisluczka
- License: mit
- Created: 2024-07-29T21:08:16.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-07-31T20:39:42.000Z (11 months ago)
- Last Synced: 2025-04-15T08:59:00.756Z (3 months ago)
- Topics: cpp, http, scraping, scrapping, webscraping, webscrapping
- Language: C++
- Homepage: https://krisluczka.github.io/scrapium.h/
- Size: 48.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# scrapium.h
The simplest C++ library to scrape data from the Web.```cpp
#include "scrapium.h"int main() {
scrapium::contents content = scrapium::scrape( "https://www.example.com/", "a");content.print( scrapium::print_type::JSON );
}
```One command to rule them all.