
Security News
Researcher Exposes Zero-Day Clickjacking Vulnerabilities in Major Password Managers
Hacker Demonstrates How Easy It Is To Steal Data From Popular Password Managers
addic7ed-api
Advanced tools
API to search and download TV show subtitles files from www.addic7ed.com database.
Like every other npm package, run the command
npm install addic7ed-api
Search completed subtitles file for South Park season 25 episode 4. Download and save the first result.
import { search, download } from 'addic7ed-api';
const subtitlesList = await search('South Park', 25, 4);
const subInfo = subtitlesList && subtitlesList[0];
if (subInfo) {
await download(subInfo, './South.Park.S25E04.srt');
console.log('Subtitles file downloaded.');
}
Search completed subtitles file for Deadpool (2016). Download and save the first result.
import { search, download } from 'addic7ed-api';
const subtitlesList = await search('Deadpool 2016');
const subInfo = subtitlesList && subtitlesList[0];
if (subInfo) {
await download(subInfo, './deadpool.2016.srt');
console.log('Subtitles file downloaded.');
}
Search and return a list of completed subtitles.
null for movies.null for movies.Returns a promise which is resolved when the search is complete. This promise returns a list of object containing the subtitles file language, lang code, version and download link. Distribution (BLURAY, WEB-DL or HDTV) and team (i.e. KILLERS) are extracted from version if possible.
Download and save a subtitles file.
Returns a promise which is resolved when the file is written.
Return a list of all available show titles.
Returns a promise which is resolved when the get operation is complete. This promise returns a list of show titles.
FAQs
API to search and download subtitles files from addic7ed.com
The npm package addic7ed-api receives a total of 53 weekly downloads. As such, addic7ed-api popularity was classified as not popular.
We found that addic7ed-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Hacker Demonstrates How Easy It Is To Steal Data From Popular Password Managers

Security News
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.

Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.