Esempio n. 1
0
def list(mal, args):
    """Show all the animes on the users list."""
    # . matches any character except line breaks
    # + matches one or more occurences of the previous character
    core.find(mal, '.+', args.section, extra=args.extend, user=args.user)
Esempio n. 2
0
def list(mal, args):
    """Show all the animes on the users list."""
    # . matches any character except line breaks
    # + matches one or more occurences of the previous character
    core.find(mal, '.+', args.section, extra=args.extend, user=args.user)
Esempio n. 3
0
def filter(mal, args):
    """Search and find an anime in the users list."""
    core.find(mal, args.anime_regex.lower(), extra=args.extend, user=args.user)
Esempio n. 4
0
def filter(mal, args):
    """Search and find an anime in the users list."""
    core.find(mal, args.anime_regex.lower(), extra=args.extend, user=args.user)