
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
animeworld
Advanced tools
AnimeWorld-API is an unofficial library for AnimeWorld (Italian anime site).
This library requires Python 3.11 or later.
You can install the library using pip:
pip install animeworld
To search for an anime by name on the AnimeWorld site, you can use the find() function.
import animeworld as aw
res = aw.find("No game no life")
print(res)
The function will return a dictionary with the anime name as the key and the link to the anime world page as the value.
{'name': 'No Game no Life', 'link': 'https://www.animeworld.ac/play/no-game-no-life.IJUH1E', ...}
You can also download episodes of an anime.
import animeworld as aw
anime = aw.Anime(link="https://www.animeworld.ac/play/danmachi-3.Ydt8-")
for episode in anime.getEpisodes():
print("Episode Number: ", episode.number)
if(episode.download()):
print("Downloaded")
else:
print("Error")
if episode.number == '1': break
Episode Number: 1
Downloaded
The complete documentation is available here: Documentation
For an overview of all the basics, go to the QuickStart section.
For more advanced topics, see the Advanced Usage section.
The API Reference section provides a complete API reference.
If you want to contribute to the project, visit the Contributing section.
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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.