Indices and tables

Introduction

Latest release on the Python Cheeseshop (PyPI) Build status of perf on Travis CI

PyMarvelSimple is a wrapper for Marvel API. Abstract the authorization and API call.

Example:

from pymarvelsimple.marvel import Marvel

marvel = Marvel(self.public, self.private)
characters = marvel.characters_list()

for character in characters.data.results:
    print(character.name)

print(characters.last_page)

character = marvel.characters_detail_by_name(u'Thor')
print(character.data.results.name)

Play with marvel.

ACKNOWLEDGEMENTS

Thanks to PyMarvel for the inspiration. Thanks to avidity for the idea.