22. Keyscrape

Scrapes keywords for a given page. If no page is given, it scrapes all pages. The output is written to stdout as a list of comma-separated values (CSV).

<<argparse_entries>>=
{"keyscrape", 9, p_keyscrape, NULL},
<<static_funcdefs>>=
static int p_keyscrape(int argc, char *argv[]);
<<functions>>=
int ww_keyscrape(int argc, char *argv[]);
static int p_keyscrape(int argc, char *argv[])
{
    return ww_keyscrape(argc, argv);
}



prev | home | next