An open API service indexing awesome lists of open source software.

https://github.com/makepad-fr/school-names-turkey

Turkey school names scraper
https://github.com/makepad-fr/school-names-turkey

automation bot educational scraper turkey typescript

Last synced: 11 months ago
JSON representation

Turkey school names scraper

Awesome Lists containing this project

README

          

# school-names-turkey

A npm package that scrapes all school names in Turkey.

## To install

```sh
npm i school-names-turkey
```

## Usage example

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