A npm package that scrapes all school names in Turkey.
npm i school-names-turkey
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' }));