Skip to content

krisluczka/scrapium.h

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

scrapium.h

The simplest C++ library to scrape data from the Web.

#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.