Skip to content
This repository has been archived by the owner on Nov 24, 2024. It is now read-only.

heheleo/vce.rocks-scraper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vce.rocks Web Scraper

This is a web scraper for vce.rocks, built with bun 1.1.34. Currently it only scrapes the exam papers and their solutions.

This scraper is not affiliated with vce.rocks in any way, nor does it store or make copies of the data. It is only to obtain links. It is intended for informational purposes only.

We fully support the creator of vce.rocks and encourage you to visit their website for the best experience. The amount of effort and time they have put into the library is truly amazing and honestly life-saving.

Types

The JSON file contains an array of Folders.

export interface File {
	name: string;
	url: string;
}

export interface Folder {
	name: string;
	url: string;
	children: Array<Folder | File>;
}

Installation

⚠️ Disclaimer: Please do not scrape too often as it may strain the server.

Prerequisites:

  • bun (^1.1.26)
bun install
bun run scrape

Data: cutoff date 09/11/2024

https://raw.githubusercontent.com/heheleo/vce.rocks-scraper/main/data/data-09-11-2024.json

About

Web scraper for vce.rocks

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published