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
- Host: GitHub
- URL: https://github.com/makepad-fr/school-names-turkey
- Owner: Makepad-fr
- License: apache-2.0
- Created: 2021-07-01T14:27:29.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T11:40:14.000Z (over 2 years ago)
- Last Synced: 2024-05-01T11:25:09.544Z (about 2 years ago)
- Topics: automation, bot, educational, scraper, turkey, typescript
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/@makepad/school-names-turkey
- Size: 84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Codeowners: CODEOWNERS
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' }));
```