Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 18 days 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 (6 months ago)
- Default Branch: master
- Last Pushed: 2024-07-31T20:39:42.000Z (5 months ago)
- Last Synced: 2024-11-06T07:14:19.201Z (2 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.