1.0.0 • Published 3 years ago

@makepad/school-names-turkey v1.0.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
3 years ago

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' }));