Skip to content

KschoolClick/schoolinfo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

schoolinfo

Installing

Using npm:

npm install schoolinfo

Using yarn:

yarn add schoolinfo

Example

import { getSchoolInfo, searchSchool } from "schoolinfo";

// Search schools with a given query
searchSchool("유성").then((res) => {
  console.log(res);
  res.data.forEach((school) => {
    // Get school detail info
    getSchoolInfo(school as string).then((info) => {
      console.log(info);
    });
  });
});

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors