Skip to content

openuado/pymarvelsimple

Repository files navigation

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.

About

A wrapper for Marvel API, easy to use.

Resources

Stars

Watchers

Forks

Packages

No packages published