hamro patro scrapper
1.0.0
从 (HamroPatro.com) 截取任何给定年份到任何给定月份的日子、事件、tithi
尼泊尔日历 api 包含 AD 和 BS 日期以及“tithi”和其他尼泊尔特定信息。转到data
夹以获取已下载的记录
npm i
node index.js
data.json
查看结果转到文件index.js
// index.js
const recordsOfYears = [2075]; // Add or remove years you want data of.
const months = (() =>
Array(12)
.fill(true)
.map((item, index) => index + 1))(); // Months of year you want to scrap
```