hamro patro scrapper
1.0.0
(HamroPatro.com) から任意の年から任意の月までの日、イベント、ティティをスクラップします。
ネパールのカレンダー API は、「ティティ」およびその他のネパール固有の情報を含む西暦とBS の両方の日付で構成されます。すでにダウンロードされたレコードの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
```