All Projects → code-yeongyu → TrackPurchase

code-yeongyu / TrackPurchase

Licence: MIT license
단 몇줄의 코드로 다양한 쇼핑 플랫폼에서 결제 내역을 긁어오자!

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to TrackPurchase

super-anime-downloader
A program which takes an Anime name or URL and downloads the specified range of episodes.
Stars: ✭ 26 (+36.84%)
Mutual labels:  webscraper, webscraping
aws-pdf-textract-pipeline
🔍 Data pipeline for crawling PDFs from the Web and transforming their contents into structured data using AWS textract. Built with AWS CDK + TypeScript
Stars: ✭ 141 (+642.11%)
Mutual labels:  webscraping, puppeteer
Soup
Web Scraper in Go, similar to BeautifulSoup
Stars: ✭ 1,685 (+8768.42%)
Mutual labels:  webscraper, webscraping
gotor
This program provides efficient web scraping services for Tor and non-Tor sites. The program has both a CLI and REST API.
Stars: ✭ 97 (+410.53%)
Mutual labels:  webcrawler, webscraping
fBrowser
Helpful Selenium functions to make web-scraping easier and faster
Stars: ✭ 16 (-15.79%)
Mutual labels:  webscraper, webscraping
CoWin-Vaccine-Notifier
Automated Python Script to retrieve vaccine slots availability and get notified when a slot is available.
Stars: ✭ 102 (+436.84%)
Mutual labels:  webscraper, webscraping
Mimo-Crawler
A web crawler that uses Firefox and js injection to interact with webpages and crawl their content, written in nodejs.
Stars: ✭ 22 (+15.79%)
Mutual labels:  webcrawler, webscraping
BookingScraper
🌎 🏨 Scrape Booking.com 🏨 🌎
Stars: ✭ 68 (+257.89%)
Mutual labels:  webscraper, webscraping
browser-automation-api
Browser automation API for repetitive web-based tasks, with a friendly user interface. You can use it to scrape content or do many other things like capture a screenshot, generate pdf, extract content or execute custom Puppeteer, Playwright functions.
Stars: ✭ 24 (+26.32%)
Mutual labels:  webscraping, puppeteer
anime-scraper
[partially working] Scrape and add anime episode stream URLs to uGet (Linux) or IDM (Windows) ~ Python3
Stars: ✭ 21 (+10.53%)
Mutual labels:  webscraper, webscraping
opensea-scraper
Scrapes nft floor prices and additional information from opensea. Used for https://nftfloorprice.info
Stars: ✭ 129 (+578.95%)
Mutual labels:  puppeteer
pappet
A command-line tool to crawl websites using puppeteer.
Stars: ✭ 95 (+400%)
Mutual labels:  puppeteer
xstate-marionettist
Model based testing with Jest, XState and Puppeteer or Playwright made easy
Stars: ✭ 23 (+21.05%)
Mutual labels:  puppeteer
scrapism
a work-in-progress guide to web scraping as an artistic and critical practice
Stars: ✭ 43 (+126.32%)
Mutual labels:  webscraping
repository.colossus
Colossus Repository for Kodi Addons - Kodi is a registered trademark of the XBMC Foundation. We are not connected to or in any other way affiliated with Kodi - DMCA: [email protected]
Stars: ✭ 13 (-31.58%)
Mutual labels:  webscraping
gcf-packs
Library packs for google cloud functions
Stars: ✭ 48 (+152.63%)
Mutual labels:  webscraper
newspaperjs
News extraction and scraping. Article Parsing
Stars: ✭ 59 (+210.53%)
Mutual labels:  webscraping
puppeteer-report
Convert HTML to PDF by Puppeteer with support of adding a custom header, footer, and page number
Stars: ✭ 90 (+373.68%)
Mutual labels:  puppeteer
naos
📉 Uptime and error monitoring CLI
Stars: ✭ 30 (+57.89%)
Mutual labels:  puppeteer
docker-google-lighthouse-puppeteer
Google Lighthouse + Puppeteer / Docker Image
Stars: ✭ 29 (+52.63%)
Mutual labels:  puppeteer

credit card emoji

TrackPurchase

NPM version codecov codecov

단 몇줄의 코드로 다양한 쇼핑 플랫폼에서 결제 내역을 긁어오자!

🛒 지원 플랫폼 목록

  • 지원 플랫폼은 계속해서 추가될 예정입니다.

Naver Pay

📦 설치

yarn add trackpurchase

🚀 사용

네이버 페이

import { NaverApp } from "trackpurchase";
const browser = await puppeteer.launch();
const page = await browser.newPage();

const module = NaverApp.NaverModuleFactory.create(page);
const crawlService = new NaverApp.NaverService(module);

await crawlService.normalLogin(id, password, 100);
const history = await crawlService.getHistory();
browser.close();

console.log(history);
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].