Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
AnimeWorld-API is an unofficial library for AnimeWorld (Italian anime site).
Questa libreria richiede Python 3.7 o superiore.
È Possibile installarare la libreria tramite pip:
pip install animeworld
Per ricercare un anime per nome nel sito di animeWolrd è possibile usare la funzione find().
import animeworld as aw
res = aw.find("No game no life")
print(res)
La funzione estituirà un dizionario contentente per chiave il nome dell'anime e per valore il link della pagina di animeworld.
{'name': 'No Game no Life', 'link': 'https://www.animeworld.so/play/no-game-no-life.IJUH1', ...}
È Possibile anche scaricare gli episodi di un anime.
import animeworld as aw
anime = aw.Anime(link="https://www.animeworld.so/play/danmachi-3.Ydt8-")
for episodio in anime.getEpisodes():
print("Episodio Numero: ", episodio.number)
if(episodio.download()):
print("scaricato")
else:
print("errore")
if x.number == '1': break
Episodio Numero: 1
scaricato
La documentazione completa è disponibile qui: Documentazione
Per una panoramica di tutte le nozioni di base, vai alla sezione QuickStart
Per argomenti più avanzati, vedere la sezione Advanced Usage
La sezione API Reference fornisce un riferimento API completo.
Se vuoi contribuire al progetto, vai alla sezione Contributing
FAQs
AnimeWorld UNOFFICIAL API
We found that animeworld demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.