Skip to main content

Provides programmatic access to MyAnimeList resources.

Project description

Build Status
Travis Travis Build Status

python3-mal pypi download pypi download

Provides programmatic access to MyAnimeList data. This is a fork of python-mal. It uses lxml instead of beautifulsoup, and it's working with python 3. There are automatic travis and teamcity builds on every last sunday of the month to ensure that the package is working fine with the current version of MAL.

Dependencies

  • python 3.* (tested with 3.7 and 3.8)
  • pytz
  • requests
  • lxml
  • nose (only if you want to run tests, though!)
  • cssselect

Installation

After cloning the repository, navigate to the directory and run python setup.py install.

Getting Started

The myanimelist.session.Session class handles requests to MAL, so you'll want to create one first:

from myanimelist.session import Session
s = Session()

Then if you want to fetch an anime, say, Cowboy Bebop:

bebop = s.anime(1)
print bebop

Objects in python-mal are lazy-loading: they won't go out and fetch MAL info until you first-request it. So here, if you want to retrieve, say, the things related to Cowboy Bebop:

for how_related,items in bebop.related.iteritems():
  print how_related
  print "============="
  for item in items:
    print item
  print ""

You'll note that there's a pause while Cowboy Bebop's information is fetched from MAL.

Documentation

To find out more about what python-mal is capable of, visit the docs here.

Testing

Testing requires nose. To run the tests that come with python-mal:

  1. Navigate to the python-mal directory
  2. Create a textfile named credentials.txt and put your MAL username and password in it, separated by a comma, or set environment variables named MAL_USERNAME and MAL_PASSWORD with the appropriate values.
  3. Run nosetests.

Make sure you don't spam the tests too quickly! One of the tests involves POSTing invalid credentials to MAL, so you're likely to be IP-banned if you do this too much in too short a span of time.

Differences from the original repo

  • Instead of beautiful soup this module uses lxml
  • There are scheduled tests every sunday.
  • I've removed some of the functionalities: popular tags parsing and favourite parsing on user profiles because they were unstable.

Change log

0.2.7 - Adapted MAL changes: characters and staff on datasheets have absolute urls. Staff table has been changed to multiple table elements.
0.2.6 - added broadcast time parsing for currently aired anime shows and added some minor fixes.
0.2.5 - added promotion video parsing on anime datasheets
0.2.4 - Adapted to the new MAL ssl enforcement
0.2.3.1 - upgraded to requests 2.11
0.2.3.0 - performance improvements in xpath queries.
0.2.2 - adapted to new SEO url rule changes and DOM changes on MAL.
0.2.1 - replaced beautifulsoup with lxml.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

python3_mal-0.2.21-py3-none-any.whl (40.1 kB view details)

Uploaded Python 3

File details

Details for the file python3_mal-0.2.21-py3-none-any.whl.

File metadata

  • Download URL: python3_mal-0.2.21-py3-none-any.whl
  • Upload date:
  • Size: 40.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for python3_mal-0.2.21-py3-none-any.whl
Algorithm Hash digest
SHA256 3dd0af9151068e5cc5dc4576bb46d3e960198179ad83cc370b10a2abb296c5a9
MD5 ff72d404df0dc6f785b4a6ee6962354b
BLAKE2b-256 4d6f505491ef039fa69e3dd9413fe32f032fbbe32151171f143e9e0ee6e28bc8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page