animeplanet

Python Module for Interacting with Anime Planet


Keywords
animeplanet, anime, cli
License
MIT
Install
pip install animeplanet==0.1.0

Documentation

animeplanet CLI

Usage

CLI

python3 animeplanet.py set-episodes elfen-lied 2

The CLI uses credentials stored in ~/.animeplanet.conf in form USERNAME,PASSWORD.

python module

from animeplanet import AnimePlanetSession

session = AnimePlanetSession()
session.login('user', 'password')

session.set_episodes('elfen-lied', 2)

session.logout()