UNPKG

@makepad/school-names-turkey

Version:

A npm module that scrapes all the school names from turkish education ministry's page

10 lines (9 loc) 294 B
import { City } from './city-names'; export default class SchoolNameListScraper { private browser; private page; private config; init(headless?: boolean, args?: string[]): Promise<void>; getSchoolList(city: City): Promise<SchoolInformation[]>; close(): Promise<void>; }