hamro-patro-scraper
Version:
A package to scrape Nepali date, time, daily horoscope, gold and silver rates and exchange rates from Hamro Patro.
12 lines (10 loc) • 381 B
JavaScript
const getNepaliDateAndTime = require("./routes/date");
const getRashifal = require("./routes/rashifal");
const getGoldPrices = require("./routes/gold");
const getExchangeRates = require("./routes/exchangeRates");
module.exports = {
hamroPatro: getNepaliDateAndTime,
getRashifal: getRashifal,
getGoldPrices: getGoldPrices,
getExchangeRates: getExchangeRates,
};