@makepad/school-names-turkey
v1.0.0
Published
A npm module that scrapes all the school names from turkish education ministry's page
Downloads
21
Readme
school-names-turkey
A npm package that scrapes all school names in Turkey.
To install
npm i school-names-turkey
Usage example
import { writeFileSync } from 'fs';
import {default as getSchoolNames, SchoolInformation } from '@makepad/school-names-turkey';
getSchoolNames(true).then((result) => writeFileSync('result.json', JSON.stringify(result, undefined, 4), { encoding: 'utf-8' }));