https://github.com/openuado/pymarvelsimple
A wrapper for Marvel API, easy to use.
https://github.com/openuado/pymarvelsimple
Last synced: about 2 months ago
JSON representation
A wrapper for Marvel API, easy to use.
- Host: GitHub
- URL: https://github.com/openuado/pymarvelsimple
- Owner: openuado
- Created: 2015-08-19T13:31:35.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-07-12T19:29:52.000Z (almost 9 years ago)
- Last Synced: 2025-01-22T16:32:24.472Z (3 months ago)
- Language: Python
- Size: 291 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG
Awesome Lists containing this project
README
Introduction
============.. image:: https://img.shields.io/pypi/v/pymarvelsimple.svg
:alt: Latest release on the Python Cheeseshop (PyPI)
:target: https://pypi.python.org/pypi/pymarvelsimple.. image:: https://travis-ci.org/hobbestigrou/pymarvelsimple.svg?branch=master
:alt: Build status of perf on Travis CI
:target: https://travis-ci.org/hobbestigrou/pymarvelsimplePyMarvelSimple is a wrapper for Marvel API. Abstract the authorization and API
call.Example:
.. code-block:: python
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.