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
```