Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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.