Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcosrava/punch-crawler
https://github.com/marcosrava/punch-crawler
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/marcosrava/punch-crawler
- Owner: MarcosRava
- Created: 2014-05-22T00:24:53.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-07-24T21:49:40.000Z (over 8 years ago)
- Last Synced: 2023-12-15T02:19:31.498Z (about 1 year ago)
- Language: JavaScript
- Size: 961 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#PUNCH Crawler
A crawler to download your animes from http://punchsub.com using your vip account (require wget >= 1.15, nodejs >= 0.10 installed).
http://eternallybored.org/misc/wget/
* continue interrupted downloads
* download movies, episodes and ovas
* force login when session has expired##Usage
1. Put your anime code on data.json and resolution. example:
* One Piece:
* punch url: http://punchsub.com/principal#listar/8/episodios/hd/1
* code: 8
* data.json:
{
"8": {
"reso": {
"eps": "hd", //Episodes resolution,
"movies": "hd", //Movies resolution
}
}
}
* adding Soul Eater:
* punch url: http://punchsub.com/principal#listar/32/episodios/hd/1
* code: 32
* data.json:
{
"8": {
"reso": {
"eps": "hd", //Episodes resolution,
"movies": "hd", //Movies resolution
}
}
},
"32": {
"reso": {
"eps": "hd", //Episodes resolution,
}
}
}
2. adding download directory and punch credentials on config.js
module.exports = {
login: "fool",
password: "****",
downloadDir: "/home/Downloads/"
};
3. install modules
npm install
4. run it!
node index.js