PyMarvel Documentation

Size: px
Start display at page:

Download "PyMarvel Documentation"

Transcription

1 PyMarvel Documentation Release Garrett Pennington September 03, 2015

2

3 Contents 1 API Marvel API to PyMarvel Marvel Module 7 3 Core Module 11 4 Character Module 17 5 Comic Module 19 6 Creator Module 21 7 Story Module 23 8 Series Module 25 9 Event Module Documentation Installation Basic Usage Response Anatomy Related Resources Pagination Contributing Licensing 43 Python Module Index 45 i

4 ii

5 Python wrapper for the Marvel API Contents 1

6 2 Contents

7 CHAPTER 1 API Python wrapper for the Marvel API 1.1 Marvel API to PyMarvel get /v1/public/characters Fetches lists of characters. Marvel.get_characters() get /v1/public/characters/{characterid} Fetches a single character by id. Marvel.get_character() get /v1/public/characters/{characterid}/comics Fetches lists of comics filtered by a character id. Character.get_comics() get /v1/public/characters/{characterid}/events Fetches lists of events filtered by a character id. Character.get_events() get /v1/public/characters/{characterid}/series Fetches lists of series filtered by a character id. Character.get_series() get /v1/public/characters/{characterid}/stories Fetches lists of stories filtered by a character id. Character.get_stories() get /v1/public/comics Fetches lists of comics. X Marvel.get_comics() get /v1/public/comics/{comicid} Fetches a single comic by id. X Marvel.get_comic() get /v1/public/comics/{comicid}/characters Fetches lists of characters filtered by a comic id. Comic.get_characters() get /v1/public/comics/{comicid}/creators Fetches lists of creators filtered by a comic id. Comic.get_creators() get /v1/public/comics/{comicid}/events Fetches lists of events filtered by a comic id. Comic.get_events() 3

8 get /v1/public/comics/{comicid}/stories Fetches lists of stories filtered by a comic id. Comic.get_stories() get /v1/public/creators Fetches lists of creators. Marvel.get_creators() get /v1/public/creators/{creatorid} Fetches a single creator by id. Marvel.get_creator() get /v1/public/creators/{creatorid}/comics Fetches lists of comics filtered by a creator id. Creator.get_comics() get /v1/public/creators/{creatorid}/events Fetches lists of events filtered by a creator id. Creator.get_events() get /v1/public/creators/{creatorid}/series Fetches lists of series filtered by a creator id. Creator.get_series() get /v1/public/creators/{creatorid}/stories Fetches lists of stories filtered by a creator id. Creator.get_stories() get /v1/public/events Fetches lists of events. Marvel.get_events() get /v1/public/events/{eventid} Fetches a single event by id. Marvel.get_event() get /v1/public/events/{eventid}/characters Fetches lists of characters filtered by an event id. Event.get_characters() get /v1/public/events/{eventid}/comics Fetches lists of comics filtered by an event id. Event.get_comics() get /v1/public/events/{eventid}/creators Fetches lists of creators filtered by an event id. Event.get_creators() get /v1/public/events/{eventid}/series Fetches lists of series filtered by an event id. Event.get_series() get /v1/public/events/{eventid}/stories Fetches lists of stories filtered by an event id. Event.get_stories() get /v1/public/series Fetches lists of series. Marvel.get_series() get /v1/public/series/{seriesid} Fetches a single comic series by id. Marvel.get_series() get /v1/public/series/{seriesid}/characters Fetches lists of characters filtered by a series id. Series.get_characters() get /v1/public/series/{seriesid}/comics Fetches lists of comics filtered by a series id. Series.get_comics() 4 Chapter 1. API

9 get /v1/public/series/{seriesid}/creators Fetches lists of creators filtered by a series id. Series.get_creators() get /v1/public/series/{seriesid}/events Fetches lists of events filtered by a series id. Series.get_events() get /v1/public/series/{seriesid}/stories Fetches lists of stories filtered by a series id. Series.get_stories() get /v1/public/stories Fetches lists of stories. Marvel.get_stories() get /v1/public/stories/{storyid} Fetches a single comic story by id. Marvel.get_story() get /v1/public/stories/{storyid}/characters Fetches lists of characters filtered by a story id. Story.get_characters() get /v1/public/stories/{storyid}/comics Fetches lists of comics filtered by a story id. Story.get_comics() get /v1/public/stories/{storyid}/creators Fetches lists of creators filtered by a story id. Story.get_creators() get /v1/public/stories/{storyid}/events Fetches lists of events filtered by a story id. Story.get_events() genindex modindex search 1.1. Marvel API to PyMarvel 5

10 6 Chapter 1. API

11 CHAPTER 2 Marvel Module class marvel.marvel.marvel(public_key, private_key) Marvel API class This class provides methods to interface with the Marvel API >>> m = Marvel("acb123...", "efg456...") get_character(id) Fetches a single character by id. get /v1/public/characters Parameters id ID of Character Returns CharacterDataWrapper >>> m = Marvel(public_key, private_key) >>> cdw = m.get_character( ) >>> print cdw.data.count 1 >>> print cdw.data.results[0].name Wolverine get_characters(*args, **kwargs) Fetches lists of comic characters with optional filters. get /v1/public/characters/{characterid} Returns CharacterDataWrapper >>> m = Marvel(public_key, private_key) >>> cdw = m.get_characters(orderby="name,-modified", limit="5", offset="15") >>> print cdw.data.count 1401 >>> for result in cdw.data.results:... print result.name Aginar Air-Walker (Gabriel Lan) Ajak Ajaxis Akemi get_comic(id) Fetches a single comic by id. get /v1/public/comics/{comicid} 7

12 Parameters id ID of Comic Returns ComicDataWrapper >>> m = Marvel(public_key, private_key) >>> cdw = m.get_comic( ) >>> print cdw.data.count 1 >>> print cdw.data.result.name Some Comic get_comics(*args, **kwargs) Fetches list of comics. get /v1/public/comics Returns ComicDataWrapper >>> m = Marvel(public_key, private_key) >>> cdw = m.get_comics(orderby="issuenumber,-modified", limit="10", offset="15") >>> print cdw.data.count 10 >>> print cdw.data.results[0].name Some Comic get_creator(id) Fetches a single creator by id. get /v1/public/creators/{creatorid} Parameters id ID of Creator Returns CreatorDataWrapper >>> m = Marvel(public_key, private_key) >>> cdw = m.get_creator(30) >>> print cdw.data.count 1 >>> print cdw.data.result.fullname Stan Lee get_creators(*args, **kwargs) Fetches lists of creators. get /v1/public/creators Returns CreatorDataWrapper >>> m = Marvel(public_key, private_key) >>> cdw = m.get_creators(lastname="lee", orderby="firstname,-modified", limit="5", offset="1 >>> print cdw.data.total 25 >>> print cdw.data.results[0].fullname Alvin Lee get_event(id) Fetches a single event by id. get /v1/public/event/{eventid} Parameters id ID of Event Returns EventDataWrapper 8 Chapter 2. Marvel Module

13 >>> m = Marvel(public_key, private_key) >>> response = m.get_event(253) >>> print response.data.result.title Infinity Gauntlet get_events(*args, **kwargs) Fetches lists of events. get /v1/public/events Returns EventDataWrapper >>> #Find all the events that involved both Hulk and Wolverine >>> #hulk's id: >>> #wolverine's id: >>> m = Marvel(public_key, private_key) >>> response = m.get_events(characters=" , ") >>> print response.data.total 38 >>> events = response.data.results >>> print events[1].title Age of Apocalypse get_series(*args, **kwargs) Fetches lists of events. get /v1/public/events Returns SeriesDataWrapper >>> #Find all the series that involved Wolverine >>> #wolverine's id: >>> m = Marvel(public_key, private_key) >>> response = m.get_series(characters=" ") >>> print response.data.total 435 >>> series = response.data.results >>> print series[0].title 5 Ronin (2010) get_single_series(id) Fetches a single comic series by id. get /v1/public/series/{seriesid} Parameters id ID of Series Returns SeriesDataWrapper >>> m = Marvel(public_key, private_key) >>> response = m.get_single_series(12429) >>> print response.data.result.title 5 Ronin (2010) get_stories(*args, **kwargs) Fetches lists of stories. get /v1/public/stories Returns StoryDataWrapper 9

14 >>> #Find all the stories that involved both Hulk and Wolverine >>> #hulk's id: >>> #wolverine's id: >>> m = Marvel(public_key, private_key) >>> response = m.get_stories(characters=" , ") >>> print response.data.total 4066 >>> stories = response.data.results >>> print stories[1].title Cover #477 get_story(id) Fetches a single story by id. get /v1/public/stories/{storyid} Parameters id ID of Story Returns StoryDataWrapper >>> m = Marvel(public_key, private_key) >>> response = m.get_story(29) >>> print response.data.result.title Caught in the heart of a nuclear explosion, mild-mannered scientist Bruce Banner finds himse 10 Chapter 2. Marvel Module

15 CHAPTER 3 Core Module class marvel.core.datacontainer(marvel, dict) Base DataContainer count The total number of results returned by this call. Returns int get_related_resource(_self, _Class, _ClassDataWrapper, *args, **kwargs) Takes a related resource Class and returns the related resource DataWrapper. For Example: Given a Character instance, return a ComicsDataWrapper related to that character. /character/{characterid}/comics Parameters _Class (core.marvelobject) The Resource class retrieve _ClassDataWrapper The Resource response object kwargs (dict) dict of query params for the API Returns DataWrapper DataWrapper for requested Resource limit The requested result limit. Returns int list_to_instance_list(_self, _list, _Class) Takes a list of resource dicts and returns a list of resource instances, defined by the _Class param. Parameters _self (core.marvelobject) Original resource calling the method _list (list) List of dicts describing a Resource. _Class (core.marvelobject) The Resource class to create a list of (Comic, Creator, etc). Returns list List of Resource instances (Comic, Creator, etc). offset The requested offset (number of skipped results) of the call. Returns int resource_url() Returns str Resource URL 11

16 result Returns the first item in the results list. Useful for methods that should return only one results. Returns marvel.marvelobject str_to_datetime(_str) Converts T17:40: format to datetime object to_dict() Returns datetime Returns dict Dictionary representation of the Resource total The total number of resources available given the current filter set. Returns int class marvel.core.datawrapper(marvel, dict, params=none) Base DataWrapper code The HTTP status code of the returned result. Returns int etag A digest value of the content returned by the call. Returns str get_related_resource(_self, _Class, _ClassDataWrapper, *args, **kwargs) Takes a related resource Class and returns the related resource DataWrapper. For Example: Given a Character instance, return a ComicsDataWrapper related to that character. /character/{characterid}/comics Parameters _Class (core.marvelobject) The Resource class retrieve _ClassDataWrapper The Resource response object kwargs (dict) dict of query params for the API Returns DataWrapper DataWrapper for requested Resource list_to_instance_list(_self, _list, _Class) Takes a list of resource dicts and returns a list of resource instances, defined by the _Class param. Parameters _self (core.marvelobject) Original resource calling the method _list (list) List of dicts describing a Resource. _Class (core.marvelobject) The Resource class to create a list of (Comic, Creator, etc). Returns list List of Resource instances (Comic, Creator, etc). resource_url() Returns str Resource URL status A string description of the call status. Returns str 12 Chapter 3. Core Module

17 to_dict() Returns dict Dictionary representation of the Resource class marvel.core.image(marvel, dict) extension The file extension for the image. Returns str get_related_resource(_self, _Class, _ClassDataWrapper, *args, **kwargs) Takes a related resource Class and returns the related resource DataWrapper. For Example: Given a Character instance, return a ComicsDataWrapper related to that character. /character/{characterid}/comics Parameters _Class (core.marvelobject) The Resource class retrieve _ClassDataWrapper The Resource response object kwargs (dict) dict of query params for the API Returns DataWrapper DataWrapper for requested Resource list_to_instance_list(_self, _list, _Class) Takes a list of resource dicts and returns a list of resource instances, defined by the _Class param. Parameters _self (core.marvelobject) Original resource calling the method _list (list) List of dicts describing a Resource. _Class (core.marvelobject) The Resource class to create a list of (Comic, Creator, etc). Returns list List of Resource instances (Comic, Creator, etc). path The directory path of to the image. Returns str resource_url() to_dict() Returns str Resource URL Returns dict Dictionary representation of the Resource class marvel.core.list(marvel, dict) Base List object available The number of total available resources in this list. Will always be greater than or equal to the returned value. Returns int collectionuri The path to the full list of resources in this collection. Returns str 13

18 get_related_resource(_self, _Class, _ClassDataWrapper, *args, **kwargs) Takes a related resource Class and returns the related resource DataWrapper. For Example: Given a Character instance, return a ComicsDataWrapper related to that character. /character/{characterid}/comics Parameters _Class (core.marvelobject) The Resource class retrieve _ClassDataWrapper The Resource response object kwargs (dict) dict of query params for the API Returns DataWrapper DataWrapper for requested Resource list_to_instance_list(_self, _list, _Class) Takes a list of resource dicts and returns a list of resource instances, defined by the _Class param. Parameters _self (core.marvelobject) Original resource calling the method _list (list) List of dicts describing a Resource. _Class (core.marvelobject) The Resource class to create a list of (Comic, Creator, etc). Returns list List of Resource instances (Comic, Creator, etc). resource_url() Returns str Resource URL returned The number of resources returned in this collection (up to 20). to_dict() Returns int Returns dict Dictionary representation of the Resource class marvel.core.marvelobject(marvel, dict) Base class for all Marvel API classes get_related_resource(_self, _Class, _ClassDataWrapper, *args, **kwargs) Takes a related resource Class and returns the related resource DataWrapper. For Example: Given a Character instance, return a ComicsDataWrapper related to that character. /character/{characterid}/comics Parameters _Class (core.marvelobject) The Resource class retrieve _ClassDataWrapper The Resource response object kwargs (dict) dict of query params for the API Returns DataWrapper DataWrapper for requested Resource list_to_instance_list(_self, _list, _Class) Takes a list of resource dicts and returns a list of resource instances, defined by the _Class param. Parameters _self (core.marvelobject) Original resource calling the method _list (list) List of dicts describing a Resource. 14 Chapter 3. Core Module

19 _Class (core.marvelobject) The Resource class to create a list of (Comic, Creator, etc). Returns list List of Resource instances (Comic, Creator, etc). classmethod resource_url() to_dict() Returns str Resource URL Returns dict Dictionary representation of the Resource class marvel.core.summary(marvel, dict) Base Summary object get_related_resource(_self, _Class, _ClassDataWrapper, *args, **kwargs) Takes a related resource Class and returns the related resource DataWrapper. For Example: Given a Character instance, return a ComicsDataWrapper related to that character. /character/{characterid}/comics Parameters _Class (core.marvelobject) The Resource class retrieve _ClassDataWrapper The Resource response object kwargs (dict) dict of query params for the API Returns DataWrapper DataWrapper for requested Resource list_to_instance_list(_self, _list, _Class) Takes a list of resource dicts and returns a list of resource instances, defined by the _Class param. Parameters _self (core.marvelobject) Original resource calling the method _list (list) List of dicts describing a Resource. _Class (core.marvelobject) The Resource class to create a list of (Comic, Creator, etc). Returns list List of Resource instances (Comic, Creator, etc). name The canonical name of the resource. Returns str resourceuri The path to the individual resource. Returns str resource_url() to_dict() Returns str Resource URL Returns dict Dictionary representation of the Resource class marvel.core.textobject(marvel, dict) get_related_resource(_self, _Class, _ClassDataWrapper, *args, **kwargs) Takes a related resource Class and returns the related resource DataWrapper. For Example: Given a Character instance, return a ComicsDataWrapper related to that character. /character/{characterid}/comics 15

20 Parameters _Class (core.marvelobject) The Resource class retrieve _ClassDataWrapper The Resource response object kwargs (dict) dict of query params for the API Returns DataWrapper DataWrapper for requested Resource language The IETF language tag denoting the language the text object is written in. Returns str list_to_instance_list(_self, _list, _Class) Takes a list of resource dicts and returns a list of resource instances, defined by the _Class param. Parameters _self (core.marvelobject) Original resource calling the method _list (list) List of dicts describing a Resource. _Class (core.marvelobject) The Resource class to create a list of (Comic, Creator, etc). Returns list List of Resource instances (Comic, Creator, etc). resource_url() text The text. to_dict() Returns str Resource URL Returns str Returns dict Dictionary representation of the Resource type The canonical type of the text object (e.g. solicit text, preview text, etc.). Returns str 16 Chapter 3. Core Module

21 CHAPTER 4 Character Module Coming Soon 17

22 18 Chapter 4. Character Module

23 CHAPTER 5 Comic Module Coming Soon 19

24 20 Chapter 5. Comic Module

25 CHAPTER 6 Creator Module Coming Soon 21

26 22 Chapter 6. Creator Module

27 CHAPTER 7 Story Module Coming Soon 23

28 24 Chapter 7. Story Module

29 CHAPTER 8 Series Module Coming Soon 25

30 26 Chapter 8. Series Module

31 CHAPTER 9 Event Module Coming Soon 27

32 28 Chapter 9. Event Module

33 CHAPTER 10 Documentation Read the full documentation. 29

34 30 Chapter 10. Documentation

35 CHAPTER 11 Installation Use pip: pip install PyMarvel or: easy_install PyMarvel Python Package Index. 31

36 32 Chapter 11. Installation

37 CHAPTER 12 Basic Usage Create a Marvel instance using your public and private api keys: >>> from marvel.marvel import Marvel >>> m = Marvel(public_key, private_key) >>> character_data_wrapper = m.get_characters(orderby="name,-modified", limit="5", offset="15") >>> print character_data_wrapper.status Ok >>> print character_data_wrapper.data.total 1402 >>> for character in character_data_wrapper.data.results >>> print character.name Aginar Air-Walker (Gabriel Lan) Ajak Ajaxis Akemi 33

38 34 Chapter 12. Basic Usage

39 CHAPTER 13 Response Anatomy Requesting a resource returns a DataWrapper, which containers information about the the success of response. The data property of a DataWrapper is a DataContainer, which contains information about the set of resources returned. The results property of a DataContainer is a List of Resources (Character, Comic, Event, etc). Note: The results property returns a List, even if only one item is returned. You can use result property to retrieve the first (or only) item in the list. This is useful for methods like get_comic(some_comic_id) where only only Comic is expected. result is equivalent to results[0]. >>> m = Marvel(public_key, private_key) >>> character_data_wrapper = m.get_characters(limit="10", offset="700") >>> print(character_data_wrapper) <marvel.character.characterdatawrapper object> >>> print(character_data_wrapper.data) <marvel.character.characterdatacontainer object> >>> print(character_data_wrapper.data.results[0]) <marvel.character.character object> The json response maps like this: { "code": 200, "status": "Ok", ---- CharacterDataWrapper "etag": "e59a70a964ab45cc40948dcd3fb7faa0783bcae7", "data": { \/ "offset": 700, "limit": 10, "total": 1402, ---- CharacterDataContainer "count": 10, "results": [ { \/ "id": , "name": "Magneto (X-Men: Battle of the Atom)", ---- Character "description": "", "modified": " T19:43: ",... 35

40 36 Chapter 13. Response Anatomy

41 CHAPTER 14 Related Resources Find Stan Lee s comics: >>> stan_lee = m.get_creator(30).data.result >>> comics = stan_lee.get_comics() You can chain methods into one line: >>> comics = m.get_creator(30).data.result.get_comics() or even: >>> events = self.m.get_series(characters=" ").data.result.get_characters().data.result.get_com would be the equivalent to calling:

42 38 Chapter 14. Related Resources

43 CHAPTER 15 Pagination >>> xmen = m.get_single_series(403).data.results.get_characters(limit=5) >>> for xm in xmen.data.results:... print xm.name Archangel Banshee Beast Bishop Black Panther >>> more_xmen = xmen.next() >>> for xm in more_xmen.data.results:... print xm.name Cable Cannonball Colossus Cyclops Emma Frost 39

44 40 Chapter 15. Pagination

45 CHAPTER 16 Contributing Clone the repo at Feel free to log issues in Github or, better yet, submit a Pull Request against the develop branch. 41

46 42 Chapter 16. Contributing

47 CHAPTER 17 Licensing PyMarvel is distributed under the MIT License. genindex modindex search 43

48 44 Chapter 17. Licensing

49 Python Module Index m marvel.core, 11 marvel.marvel, 7 45

50 46 Python Module Index

51 Index A available (marvel.core.list attribute), 13 C code (marvel.core.datawrapper attribute), 12 collectionuri (marvel.core.list attribute), 13 count (marvel.core.datacontainer attribute), 11 D DataContainer (class in marvel.core), 11 DataWrapper (class in marvel.core), 12 E etag (marvel.core.datawrapper attribute), 12 extension (marvel.core.image attribute), 13 G get_character() (marvel.marvel.marvel method), 7 get_characters() (marvel.marvel.marvel method), 7 get_comic() (marvel.marvel.marvel method), 7 get_comics() (marvel.marvel.marvel method), 8 get_creator() (marvel.marvel.marvel method), 8 get_creators() (marvel.marvel.marvel method), 8 get_event() (marvel.marvel.marvel method), 8 get_events() (marvel.marvel.marvel method), 9 get_related_resource() (marvel.core.datacontainer method), 11 get_related_resource() (marvel.core.datawrapper method), 12 get_related_resource() (marvel.core.image method), 13 get_related_resource() (marvel.core.list method), 13 get_related_resource() (marvel.core.marvelobject method), 14 get_related_resource() (marvel.core.summary method), 15 get_related_resource() (marvel.core.textobject method), 15 get_series() (marvel.marvel.marvel method), 9 get_single_series() (marvel.marvel.marvel method), 9 get_stories() (marvel.marvel.marvel method), 9 get_story() (marvel.marvel.marvel method), 10 I Image (class in marvel.core), 13 L language (marvel.core.textobject attribute), 16 limit (marvel.core.datacontainer attribute), 11 List (class in marvel.core), 13 list_to_instance_list() (marvel.core.datacontainer method), 11 list_to_instance_list() (marvel.core.datawrapper method), 12 list_to_instance_list() (marvel.core.image method), 13 list_to_instance_list() (marvel.core.list method), 14 list_to_instance_list() (marvel.core.marvelobject method), 14 list_to_instance_list() (marvel.core.summary method), 15 list_to_instance_list() (marvel.core.textobject method), 16 M Marvel (class in marvel.marvel), 7 marvel.core (module), 11 marvel.marvel (module), 7 MarvelObject (class in marvel.core), 14 N name (marvel.core.summary attribute), 15 O offset (marvel.core.datacontainer attribute), 11 P path (marvel.core.image attribute), 13 R resource_url() (marvel.core.datacontainer method), 11 resource_url() (marvel.core.datawrapper method), 12 47

52 resource_url() (marvel.core.image method), 13 resource_url() (marvel.core.list method), 14 resource_url() (marvel.core.marvelobject class method), 15 resource_url() (marvel.core.summary method), 15 resource_url() (marvel.core.textobject method), 16 resourceuri (marvel.core.summary attribute), 15 result (marvel.core.datacontainer attribute), 11 returned (marvel.core.list attribute), 14 S status (marvel.core.datawrapper attribute), 12 str_to_datetime() (marvel.core.datacontainer method), 12 Summary (class in marvel.core), 15 T text (marvel.core.textobject attribute), 16 TextObject (class in marvel.core), 15 to_dict() (marvel.core.datacontainer method), 12 to_dict() (marvel.core.datawrapper method), 12 to_dict() (marvel.core.image method), 13 to_dict() (marvel.core.list method), 14 to_dict() (marvel.core.marvelobject method), 15 to_dict() (marvel.core.summary method), 15 to_dict() (marvel.core.textobject method), 16 total (marvel.core.datacontainer attribute), 12 type (marvel.core.textobject attribute), Index

python-goodreads Documentation

python-goodreads Documentation python-goodreads Documentation Release 0.1.3 Paul Shannon October 20, 2015 Contents 1 No Longer Maintained 3 2 Goodreads 5 2.1 Features.................................................. 5 3 Installation

More information

smite-python Documentation

smite-python Documentation smite-python Documentation Release 1.0 r c2 Jayden Bailey February 06, 2017 Contents 1 API Reference 3 1.1 Main Functions.............................................. 3 1.2 Exceptions................................................

More information

Flask-Alembic. Release dev

Flask-Alembic. Release dev Flask-Alembic Release 2.0.1.dev20161026 October 26, 2016 Contents 1 Installation 3 2 Configuration 5 3 Basic Usage 7 4 Independent Named Branches 9 5 Command Line 11 6 Differences from Alembic 13 7 API

More information

python-yeelight Documentation

python-yeelight Documentation python-yeelight Documentation Release 0.3.3 Stavros Korokithakis Sep 18, 2017 Contents 1 Installation 3 2 Usage 5 3 Effects 9 3.1 Working with Flow............................................ 9 3.2 yeelight

More information

Extending GrimoireLab capabilities

Extending GrimoireLab capabilities Extending GrimoireLab capabilities GrimoireCon, Brussels, 02-02-2018 Alberto Pérez, Valerio Cosentino @alpgarcia, @_valcos_ [alpgarcia, valcos]@bitergia.com https://speakerdeck.com/bitergia GrimoireLab

More information

goodreads Documentation

goodreads Documentation goodreads Documentation Release 0.1.1 Sefa Kilic Aug 24, 2017 Contents 1 Dependencies 3 2 Installation 5 3 Getting Started 7 4 Examples 9 4.1 Books................................................... 9

More information

XMen: Age Of Apocalypse Volume 1: Alpha By Marvel Comics

XMen: Age Of Apocalypse Volume 1: Alpha By Marvel Comics XMen: Age Of Apocalypse Volume 1: Alpha By Marvel Comics If searching for a book XMen: Age of Apocalypse Volume 1: Alpha by Marvel Comics in pdf form, then you've come to the correct website. We present

More information

Shonku Documentation. Release 0.1. Kushal Das

Shonku Documentation. Release 0.1. Kushal Das Shonku Documentation Release 0.1 Kushal Das Jul 14, 2017 Contents 1 History of the project 3 2 Installation 5 2.1 Install golang............................................... 5 2.2 Install the dependencies.........................................

More information

igdb-api Documentation

igdb-api Documentation igdb-api Documentation Release 0.1.0 easy change Oct 26, 2017 Contents 1 igdb-api 3 1.1 Features.................................................. 3 2 Installation 5 2.1 From sources...............................................

More information

OpenFace Documentation

OpenFace Documentation OpenFace Documentation Release 0.1.1 Carnegie Mellon University Jun 18, 2018 Contents 1 openface package 3 1.1 openface.aligndlib class............................... 3 1.2 openface.torchneuralnet class...........................

More information

Marvel Recharge 1 Checklist

Marvel Recharge 1 Checklist Marvel Recharge 1 Checklist Card Name Rarity Card Number Ed. Spider-Man Rare 1 MR1 Daredevil Uncommon 2 MR1 Hulk Uncommon 3 MR1 Captain America Rare 4 MR1 Thor Uncommon 5 MR1 War Machine Uncommon 6 MR1

More information

pynes Documentation Release Guto Maia

pynes Documentation Release Guto Maia pynes Documentation Release 0.2.1 Guto Maia November 02, 2017 Contents 1 The Legend of pynes 3 2 pynes.asm 6502 Assembly Instructions 5 3 pynes.composer Composer 7 3.1 PyNesVisitor...............................................

More information

Service Pack Notes. Service Pack Notes for May 5, New Signing Experience Updates. Extended Transition Deadline

Service Pack Notes. Service Pack Notes for May 5, New Signing Experience Updates. Extended Transition Deadline Service Pack Notes Service Pack Notes for May 5, 2015 This document provides information about the updates deployed to the DocuSign Production environment as part of May 5, 2015 Service Pack. There are

More information

Ansible Tower Quick Setup Guide

Ansible Tower Quick Setup Guide Ansible Tower Quick Setup Guide Release Ansible Tower 3.1.3 Red Hat, Inc. Feb 27, 2018 CONTENTS 1 Quick Start 2 2 Login as a Superuser 3 3 Import a License 5 4 Examine the Tower Dashboard 7 5 The Settings

More information

EZLBot Documentation. Release 1.0. EZLBot

EZLBot Documentation. Release 1.0. EZLBot EZLBot Documentation Release 1.0 EZLBot Apr 21, 2017 Contents 1 Promotions 3 1.1 Text Promotion.............................................. 3 1.2 Photo Promotion.............................................

More information

Operating System Extended Service

Operating System Extended Service Operating System Extended Service Operating System Extended Service This read-only service shows you the list of specific operating system versions that you can target in the Profile Service. You can also

More information

Ansible Tower Quick Setup Guide

Ansible Tower Quick Setup Guide Ansible Tower Quick Setup Guide Release Ansible Tower 3.2.2 Red Hat, Inc. Mar 08, 2018 CONTENTS 1 Quick Start 2 2 Login as a Superuser 3 3 Import a License 5 4 Examine the Tower Dashboard 7 5 The Settings

More information

dominoes Documentation

dominoes Documentation dominoes Documentation Release 6.0.0 Alan Wagner January 13, 2017 Contents 1 Install 3 2 Usage Example 5 3 Command Line Interface 7 4 Artificial Intelligence Players 9 4.1 Players..................................................

More information

Ultimate X-Men: Ultimate Collection, Vol. 1 By Geoff Johns, Mark Millar READ ONLINE

Ultimate X-Men: Ultimate Collection, Vol. 1 By Geoff Johns, Mark Millar READ ONLINE Ultimate X-Men: Ultimate Collection, Vol. 1 By Geoff Johns, Mark Millar READ ONLINE Amazon.co.uk: ultimate x-men. Ultimate X-Men Vol. 2: Ultimate X- Men: Ultimate Collection Book 1 TPB: Ultimate Collection

More information

OpenFace Documentation

OpenFace Documentation OpenFace Documentation Release 0.1.1 Carnegie Mellon University Aug 17, 2017 Contents 1 openface package 3 1.1 openface.aligndlib class............................... 3 1.2 openface.torchneuralnet class...........................

More information

Grooveshark-Python Documentation

Grooveshark-Python Documentation Grooveshark-Python Documentation Release 3.2 Maximilian Köhl April 30, 2015 Contents i ii class grooveshark.client(session=none, proxies=none) A client for Grooveshark s API which supports: radio (songs

More information

ansible-workshop Documentation

ansible-workshop Documentation ansible-workshop Documentation Release 0.1 Praveen Kumar, Aditya Patawari May 11, 2017 Contents 1 Introduction 3 1.1 Requirements............................................... 3 1.2 Goal...................................................

More information

mapserver Documentation

mapserver Documentation mapserver Documentation Release Author September 19, 2015 Contents 1 For Spatially Aware Decision Making Algorithms 1 2 Intro 3 3 Install 5 4 Motivating Examples 7 4.1 mapserver package............................................

More information

The Incredible Hulk Jumbo Color & Activity Book By Marvel

The Incredible Hulk Jumbo Color & Activity Book By Marvel The Incredible Hulk Jumbo Color & Activity Book By Marvel Coloring Pages - Apart from all printable games coloring pages, we also provide many activity coloring pages to print for free. Hulk; Incredibles;

More information

py3exiv2 Documentation

py3exiv2 Documentation py3exiv2 Documentation Release 0.3.0 Vincent Vande Vyvre Dec 10, 2018 Contents 1 API documentation 3 1.1 pyexiv2.................................................. 3 1.2 pyexiv2.metadata.............................................

More information

A Guide to Mutant Classifications Version 2.0

A Guide to Mutant Classifications Version 2.0 A Guide to Mutant Classifications Version 2.0 Contact Information & Disclaimers: This unofficial resource was created for use with the Marvel Super Heroes Adventure Game SAGA Rules. While every effort

More information

DOWNLOAD OR READ : X MEN GRAND DESIGN X TINCTION PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : X MEN GRAND DESIGN X TINCTION PDF EBOOK EPUB MOBI DOWNLOAD OR READ : X MEN GRAND DESIGN X TINCTION PDF EBOOK EPUB MOBI Page 1 Page 2 x men grand design x tinction x men grand design pdf x men grand design x tinction Collecting X-Men: Grand Design - Second

More information

C Commands. Send comments to

C Commands. Send comments to This chapter describes the Cisco NX-OS Open Shortest Path First (OSPF) commands that begin with C. UCR-583 clear ip ospf neighbor clear ip ospf neighbor To clear neighbor statistics and reset adjacencies

More information

Using Geoprocessing Services with ArcGIS Web Mapping APIs

Using Geoprocessing Services with ArcGIS Web Mapping APIs Using Geoprocessing Services with ArcGIS Web Mapping APIs Monica Joseph, Scott Murray Please fill session survey. What is a Geoprocessing Service? A geoprocessing service is a set of geoprocessing tools

More information

GERRIT User Summit Robot Comments Edwin Kempin, Google

GERRIT User Summit Robot Comments Edwin Kempin, Google GERRIT User Summit 2016 Robot Comments Edwin Kempin, Google What are Robot Comments? Robot Comments = Comments generated by automated systems. What are Robot Comments? E.g. created by static analysis tools

More information

Adafruit PCA9685 Library Documentation

Adafruit PCA9685 Library Documentation Adafruit PCA9685 Library Documentation Release 1.0 Radomir Dopieralski Aug 25, 2018 Contents 1 Dependencies 3 2 Usage Example 5 3 Contributing 7 4 Building locally 9 4.1 Sphinx documentation..........................................

More information

DICOM Correction Proposal Form

DICOM Correction Proposal Form DICOM Correction Proposal Form Tracking Information - Administration Use Only Correction Proposal Number CP-270 STATUS Assigned Date of Last Update 2001/06/20 Person Assigned Andrei Leontiev andrei_leontiev@idx.com

More information

Adafruit NeoPixel Library Documentation

Adafruit NeoPixel Library Documentation Adafruit NeoPixel Library Documentation Release 1.0 Scott Shawcroft Damien P. George Mar 11, 2018 Contents 1 Dependencies 3 2 Usage Example 5 3 Contributing 7 4 Building locally 9 4.1 Sphinx documentation..........................................

More information

What does CyberRadio Solutions do?

What does CyberRadio Solutions do? What does CyberRadio Solutions do? CyberRadio s mission is to deliver cost-effective hardware solutions that combine high-end RF performance, embedded signal processing and standard network data interfaces

More information

Wolverine Old Man Logan Tpb Wolverine Marvel Quality Paper

Wolverine Old Man Logan Tpb Wolverine Marvel Quality Paper Wolverine Old Man Logan Tpb Wolverine Marvel Quality Paper We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your computer,

More information

1 Introduction 3. 3 Softwares 6

1 Introduction 3. 3 Softwares 6 CONTENTS Collapse Project Contents 1 Introduction 3 2 Concept and origins 5 3 Softwares 6 4 Levels 8 4.1 Components......................................... 8 4.1.1 White Cube.....................................

More information

Essential Warlock - Volume 1 (Marvel Essential (Numbered)) By Chris Claremont, Jim Starlin

Essential Warlock - Volume 1 (Marvel Essential (Numbered)) By Chris Claremont, Jim Starlin Essential Warlock - Volume 1 (Marvel Essential (Numbered)) By Chris Claremont, Jim Starlin Westfield's Roger Ash tells you why Marvel Comics' Essential Warlock Vol. 1 SC their plans for releasing Zero-numbered

More information

House Of M: Fantastic Four/Iron Man By Greg Pak, John Layman READ ONLINE

House Of M: Fantastic Four/Iron Man By Greg Pak, John Layman READ ONLINE House Of M: Fantastic Four/Iron Man By Greg Pak, John Layman READ ONLINE fantastic four iron man house of m trade paperback graphic novel nm #1 2 3. $4.99 0 bids + $4.00. new unread marvel iron man -the

More information

Contribute to CircuitPython with Git and GitHub

Contribute to CircuitPython with Git and GitHub Contribute to CircuitPython with Git and GitHub Created by Kattni Rembor Last updated on 2018-07-25 10:04:11 PM UTC Guide Contents Guide Contents Overview Requirements Expectations Grab Your Fork Clone

More information

Infoblox and Ansible Integration

Infoblox and Ansible Integration DEPLOYMENT GUIDE Infoblox and Ansible Integration Ansible 2.5 April 2018 2018 Infoblox Inc. All rights reserved. Ansible Deployment Guide April 2018 Page 1 of 12 Contents Overview... 3 Introduction...

More information

Jump-start Your IoT Implementation

Jump-start Your IoT Implementation Jump-start Your IoT Implementation IBM Code Tech Talk Dec 12 th 2017 https://developer.ibm.com/code/techtalks/jump-start-iot-implemen tation/ >> MARC-ARTHUR PIERRE LOUIS: We want to welcome you to our

More information

Comics, Superheroes, and Pop Culture in Your Library. Brian Real Public Services Librarian Calvert Library

Comics, Superheroes, and Pop Culture in Your Library. Brian Real Public Services Librarian Calvert Library Comics, Superheroes, and Pop Culture in Your Library Brian Real Public Services Librarian Calvert Library WHO AM I? Public Services Librarian, Calvert Library MLS, University of Maryland PhD, Information

More information

Inkpebble Documentation

Inkpebble Documentation Inkpebble Documentation Release 0.1 Philip James April 15, 2014 Contents i ii Inkpebble Documentation, Release 0.1 Contents: Contents 1 Inkpebble Documentation, Release 0.1 2 Contents CHAPTER 1 Prime

More information

Ansible Essentials 5 days Hands on

Ansible Essentials 5 days Hands on Ansible Essentials 5 days Hands on Ansible is growing in popularity for good reason, it is both easy to understand, far simpler than Python, and extremely powerful. While Python can be used to do just

More information

X-Men: Eve Of Destruction By Salvador Larroca, Scott Lobdell

X-Men: Eve Of Destruction By Salvador Larroca, Scott Lobdell X-Men: Eve Of Destruction By Salvador Larroca, Scott Lobdell "Eve of Destruction" is an X-Men crossover storyline in the fictional Marvel Comics Universe Buy X-Men: Eve Of Destruction TPB (X-Men (Marvel

More information

036-ShopDrawings hsbinoutput/shop Drawings

036-ShopDrawings hsbinoutput/shop Drawings 1 FUNCTION The function of this document is to provide information on how to use the shop drawings (hsbinoutput\shop drawings) in hsb2009+. In hsbcad you have Element drawings that can be generated automatically

More information

A collection of limited edition art OF iconic comic book covers. signed by Stan Lee

A collection of limited edition art OF iconic comic book covers. signed by Stan Lee S U P E R H E R O E S A collection of limited edition art OF iconic comic book covers signed by Stan Lee I want the work that my father started to continue, that's what he would want and that is what I

More information

DocuSign for Sugar 7 v1.0. Overview. Quick Start Guide. Published December 5, 2013

DocuSign for Sugar 7 v1.0. Overview. Quick Start Guide. Published December 5, 2013 Quick Start Guide DocuSign for Sugar 7 v1.0 Published December 5, 2013 Overview This guide provides information on installing and signing documents with DocuSign for Sugar7. The Release Notes for DocuSign

More information

Stan Lee Presents The Amazing Spider-man (Marvel Comics Series) By Stan Lee READ ONLINE

Stan Lee Presents The Amazing Spider-man (Marvel Comics Series) By Stan Lee READ ONLINE Stan Lee Presents The Amazing Spider-man (Marvel Comics Series) By Stan Lee READ ONLINE Find great deals on ebay for Stan Lee Presents in Books Marvel Comics Series Stan Lee Presents The Lee Presents The

More information

eegutils Documentation

eegutils Documentation eegutils Documentation Release ( 0.0.5,) Samuele Carcagno March 24, 2016 Contents 1 Introduction 3 2 eegutils Utilities for processing EEG recordings 5 3 Indices and tables 17 Python Module Index 19 i

More information

PaperCut PaperCut Payment Gateway Module Authorize.Net Quick Start Guide

PaperCut PaperCut Payment Gateway Module Authorize.Net Quick Start Guide PaperCut PaperCut Payment Gateway Module Authorize.Net Quick Start Guide This guide is designed to supplement the Payment Gateway Module documentation and provides a guide to installing, setting up, and

More information

Intro to Search Engine Optimization. Get a Bigger Piece of the Pie

Intro to Search Engine Optimization. Get a Bigger Piece of the Pie Intro to Search Engine Optimization Get a Bigger Piece of the Pie Scalable We grow revenue search for marketing tech companies for large with content measurable SEO and content marketing websites and venture-backed

More information

How To Draw X-Men (How To Draw) By Steve Behling READ ONLINE

How To Draw X-Men (How To Draw) By Steve Behling READ ONLINE How To Draw X-Men (How To Draw) By Steve Behling READ ONLINE If searching for the book by Steve Behling How to Draw X-Men (How to Draw) in pdf form, then you have come on to correct website. We present

More information

Batman: The Doom That Came To Gotham By Mike Mignola, Troy Nixey READ ONLINE

Batman: The Doom That Came To Gotham By Mike Mignola, Troy Nixey READ ONLINE Batman: The Doom That Came To Gotham By Mike Mignola, Troy Nixey READ ONLINE An excellent Lovecraftian Elseworlds 3-issue Prestige Format miniseries. This series brilliantly merges various Batman characters

More information

Lecture 5 Signals, Analog, HTTP Review

Lecture 5 Signals, Analog, HTTP Review 6.08: Interconnected Embedded Systems Lecture 5 Signals, Analog, HTTP Review Joe Steinmeyer, Joel Voldman, Stefanie Mueller iesc-s2.mit.edu/608/spring18 3/18/18 1 March 12, 2018 Administrative Exercise

More information

Zero Touch Provisioning of NIOS on Openstack using Ansible

Zero Touch Provisioning of NIOS on Openstack using Ansible DEPLOYMENT GUIDE Zero Touch Provisioning of NIOS on Openstack using Ansible NIOS version 8.3 Oct 2018 2018 Infoblox Inc. All rights reserved. Zero Touch Provisioning of NIOS on Openstack using Ansible

More information

Comic Book Encyclopedia: The Ultimate Guide To Characters, Graphic Novels, Writers, And Artists In The Comic Book Universe By Ron Goulart READ ONLINE

Comic Book Encyclopedia: The Ultimate Guide To Characters, Graphic Novels, Writers, And Artists In The Comic Book Universe By Ron Goulart READ ONLINE Comic Book Encyclopedia: The Ultimate Guide To Characters, Graphic Novels, Writers, And Artists In The Comic Book Universe By Ron Goulart READ ONLINE Get the best deals on Comic Book Encyclopedia The Ultimate

More information

Marvel Pop! List. PopVinyls.com. Updated June 2016

Marvel Pop! List. PopVinyls.com. Updated June 2016 Marvel Pop! List PopVinyls.com Updated June 2016 01 Thor 02 Loki 03 Spider-man 03 B&W Spider-man (Fugitive) 03 Metallic Spider-man (SDCC 11) 03 Red/Black Spider-man (HT) 04 Iron Man 04 Blue Stealth Iron

More information

Marvel Comics Marvel Zombie Comic Collection

Marvel Comics Marvel Zombie Comic Collection Marvel Comics Marvel Zombie Comic Collection 1 / 6 2 / 6 3 / 6 Marvel Comics Marvel Zombie Comic Marvel.com is the source for Marvel comics, digital comics, comic strips, and more featuring Iron Man, Spider-Man,

More information

The Destroyer (Marvel Comics) By Richard Sapir, Warren Murphy READ ONLINE

The Destroyer (Marvel Comics) By Richard Sapir, Warren Murphy READ ONLINE The Destroyer (Marvel Comics) By Richard Sapir, Warren Murphy READ ONLINE The Destroyer is a fictional magical object appearing in American comic books published by Marvel Comics. The Destroyer is usually

More information

THE ONCE AND FUTURE JUGGERNAUT PART ONE OF FOUR ARTIST JORGE FORNÉS WRITER CHRISTOPHER YOST COLORIST RACHELLE ROSENBERG

THE ONCE AND FUTURE JUGGERNAUT PART ONE OF FOUR ARTIST JORGE FORNÉS WRITER CHRISTOPHER YOST COLORIST RACHELLE ROSENBERG WITH THE RECENT DEATHS OF CHARLES XAVIER AND WOLVERINE, THE JEAN GREY SCHOOL FOR HIGHER LEARNING HAS BEEN LEFT IN CHAOS. THE X-MEN ARE SPLINTERED AND BROKEN, AND WITH THE FUTURE OF MUTANTKIND HANGING IN

More information

Essential Spider-Man, Vol. 8 (Marvel Essentials) By Bill Mantlo, Len Wein

Essential Spider-Man, Vol. 8 (Marvel Essentials) By Bill Mantlo, Len Wein Essential Spider-Man, Vol. 8 (Marvel Essentials) By Bill Mantlo, Len Wein If you are looking for a ebook Essential Spider-Man, Vol. 8 (Marvel Essentials) by Bill Mantlo, Len Wein in pdf form, then you've

More information

Benthic Photo Survey Documentation

Benthic Photo Survey Documentation Benthic Photo Survey Documentation Release 1.0.1 Jared Kibele December 18, 2014 Contents 1 Contents 3 1.1 Introduction............................................... 3 1.2 Installation................................................

More information

MARCO MALAVOLTI

MARCO MALAVOLTI MARCO MALAVOLTI (MARCO.MALAVOLTI@GARR.IT) We needed to find a way to help research institutions, interested to use federated resources, that haven t possibilities (in terms of people, hardware, knowledge,

More information

Internet of Things with Arduino and the CC3000

Internet of Things with Arduino and the CC3000 Internet of Things with Arduino and the CC3000 WiFi chip In this guide, we are going to see how to connect a temperature & humidity sensor to an online platform for connected objects, Xively. The sensor

More information

BRISSON ROSENBERG THOMPSON ASRAR ROSENBERG

BRISSON ROSENBERG THOMPSON ASRAR ROSENBERG 1 LGY#620 BRISSON ROSENBERG THOMPSON ASRAR ROSENBERG RATED T+ $7.99 US 0 0 1 1 1 7 59606 09134 8 BONUS DIGITAL EDITION DETAILS INSIDE! They were born mutants possessing powers of a genetic origin that

More information

Modern Provisioning and CI/CD with Terraform, Terratest & Jenkins. Duncan Hutty

Modern Provisioning and CI/CD with Terraform, Terratest & Jenkins. Duncan Hutty Modern Provisioning and CI/CD with Terraform, Terratest & Jenkins Duncan Hutty Overview 1. Introduction: Context, Philosophy 2. Provisioning Exercises 1. MVP 2. Testing 3. CI/CD 4. Refactoring 3. Coping

More information

bendis writer jake thomas & john denning assistant editors

bendis writer jake thomas & john denning assistant editors Previously in Age of ultron years Ago, founding Avenger Henry Pym invented the ArtificiAl intelligence known As ultron. once ultron became sentient, He dedicated His existence to destroying HumAnity. the

More information

Ansible F5 Workshop +

Ansible F5 Workshop + Ansible F5 Workshop + What You Will Learn What is Ansible, its common use cases How Ansible works and terminology Running Ansible playbooks Network modules An introduction to roles An introduction to Ansible

More information

Spring 06 Assignment 2: Constraint Satisfaction Problems

Spring 06 Assignment 2: Constraint Satisfaction Problems 15-381 Spring 06 Assignment 2: Constraint Satisfaction Problems Questions to Vaibhav Mehta(vaibhav@cs.cmu.edu) Out: 2/07/06 Due: 2/21/06 Name: Andrew ID: Please turn in your answers on this assignment

More information

Axelrod Documentation

Axelrod Documentation Axelrod Documentation Release 0.0.1 Vincent Knight November 23, 2015 Contents 1 Tutorials 1 1.1 Getting Started.............................................. 1 1.2 Further Topics..............................................

More information

Marvel's Avengers: Age Of Ultron: The Art Of The Movie Slipcase By Marvel Comics

Marvel's Avengers: Age Of Ultron: The Art Of The Movie Slipcase By Marvel Comics Marvel's Avengers: Age Of Ultron: The Art Of The Movie Slipcase By Marvel Comics If you are searched for the book Marvel's Avengers: Age of Ultron: The Art of the Movie Slipcase by Marvel Comics in pdf

More information

NI 272x Help. Related Documentation. NI 272x Hardware Fundamentals

NI 272x Help. Related Documentation. NI 272x Hardware Fundamentals Page 1 of 73 NI 272x Help September 2013, 374090A-01 This help file contains fundamental and advanced concepts necessary for using the National Instruments 272x programmable resistor modules. National

More information

Ansible + Hadoop. Deploying Hortonworks Data Platform with Ansible. Michael Young Solutions Engineer February 23, 2017

Ansible + Hadoop. Deploying Hortonworks Data Platform with Ansible. Michael Young Solutions Engineer February 23, 2017 Ansible + Hadoop Deploying Hortonworks Data Platform with Ansible Michael Young Solutions Engineer February 23, 2017 About Me Michael Young Solutions Engineer @ Hortonworks 16+ years of experience (Almost

More information

CodeBug I2C Tether Documentation

CodeBug I2C Tether Documentation CodeBug I2C Tether Documentation Release 0.3.0 Thomas Preston January 21, 2017 Contents 1 Installation 3 1.1 Setting up CodeBug........................................... 3 1.2 Install codebug_i2c_tether

More information

Assignment 1. Due: 2:00pm, Monday 14th November 2016 This assignment counts for 25% of your final grade.

Assignment 1. Due: 2:00pm, Monday 14th November 2016 This assignment counts for 25% of your final grade. Assignment 1 Due: 2:00pm, Monday 14th November 2016 This assignment counts for 25% of your final grade. For this assignment you are being asked to design, implement and document a simple card game in the

More information

RPG CREATOR QUICKSTART

RPG CREATOR QUICKSTART INTRODUCTION RPG CREATOR QUICKSTART So you've downloaded the program, opened it up, and are seeing the Engine for the first time. RPG Creator is not hard to use, but at first glance, there is so much to

More information

The Amazing Spider-Man: Civil War By Stan Lee, J. Michael Straczynski

The Amazing Spider-Man: Civil War By Stan Lee, J. Michael Straczynski The Amazing SpiderMan: Civil War By Stan Lee, J. Michael Straczynski Civil War II: Amazing SpiderMan #1 REVIEW Superior GOOD. Civil War II: Amazing SpiderMan #1 is a fun read that fits in nicely with the

More information

S.H.I.E.L.D. Vol. 1: Perfect Bullets By Marvel Comics READ ONLINE

S.H.I.E.L.D. Vol. 1: Perfect Bullets By Marvel Comics READ ONLINE S.H.I.E.L.D. Vol. 1: Perfect Bullets By Marvel Comics READ ONLINE If searching for a ebook by Marvel Comics S.H.I.E.L.D. Vol. 1: Perfect Bullets in pdf form, then you've come to correct site. We present

More information

pycarddeck Documentation

pycarddeck Documentation pycarddeck Documentation Release 1.3.0 David Jetelina Oct 01, 2017 Contents 1 API 3 1.1 pycarddeck............................................... 3 1.2 Types...................................................

More information

Carls-MacBook-Pro:Desktop carl$ exiftool -a -G1 EMMANUEL-MACRON-PORTRAIT-OFFICIEL.jpg [ExifTool] ExifTool Version Number : [System] File Name :

Carls-MacBook-Pro:Desktop carl$ exiftool -a -G1 EMMANUEL-MACRON-PORTRAIT-OFFICIEL.jpg [ExifTool] ExifTool Version Number : [System] File Name : Carls-MacBook-Pro:Desktop carl$ exiftool -a -G1 EMMANUEL-MACRON-PORTRAIT-OFFICIEL.jpg [ExifTool] ExifTool Version Number : 10.52 [System] File Name : EMMANUEL-MACRON-PORTRAIT-OFFICIEL.jpg [System] Directory

More information

Comics Creators On Spider-Man By Tom DeFalco

Comics Creators On Spider-Man By Tom DeFalco Comics Creators On Spider-Man By Tom DeFalco If looking for a ebook by Tom DeFalco Comics Creators on Spider-Man in pdf form, then you've come to correct website. We present the full variant of this book

More information

Marvel Pop! List. PopVinyls.com. Updated January 2, 2018

Marvel Pop! List. PopVinyls.com. Updated January 2, 2018 Marvel Pop! List PopVinyls.com Updated January 2, 2018 01 Thor 02 Loki 03 Spider-man 03 B&W Spider-man (Fugitive) 03 Metallic Spider-man (SDCC 11) 03 Red/Black Spider-man (HT) 04 Iron Man 04 Blue Stealth

More information

The power of Rest API

The power of Rest API The power of Rest API Olena Zhuk and Konrad Cłapa 12-12-2017 Atos Agenda Who are we? How to start your journey? What is REST API? VMware REST API? Beyond REST API Rest API best practices Quiz with gifts

More information

Ultimate X-Men, Vol. 4 By Brian Michael Bendis

Ultimate X-Men, Vol. 4 By Brian Michael Bendis Ultimate X-Men, Vol. 4 By Brian Michael Bendis If you are looking for the ebook by Brian Michael Bendis Ultimate X-Men, Vol. 4 in pdf format, then you've come to the correct website. We present complete

More information

Axelrod Documentation

Axelrod Documentation Axelrod Documentation Release 0.0.1 Vincent Knight April 13, 2016 Contents 1 Tutorials 1 1.1 Getting Started.............................................. 1 1.1.1 Getting started.........................................

More information

Not only web. Computing methods and tools originating from high energy physics experiments

Not only web. Computing methods and tools originating from high energy physics experiments Not only web Computing methods and tools originating from high energy physics experiments Oxana Smirnova Particle Physics (www.hep.lu.se) COMPUTE kick-off, 2012-03-02 High Energies start here Science of

More information

Iron Man Manual Marvel's Now 11 - >>>CLICK HERE<<<

Iron Man Manual Marvel's Now 11 - >>>CLICK HERE<<< Iron Man Manual Marvel's Now 11 - Book Review: The Road to Marvel's Avengers: Age of Ultron: The Art of the Marvel Cinematic Universe Update: Book review is now up at parkablogs.com/content/book-review-iron-manmanual.

More information

Cable/Deadpool Vol. 1: If Looks Could Kill By Fabian Nicieza, Mark Brooks

Cable/Deadpool Vol. 1: If Looks Could Kill By Fabian Nicieza, Mark Brooks Cable/Deadpool Vol. 1: If Looks Could Kill By Fabian Nicieza, Mark Brooks The 5 Comics You Have to Read Before Seeing Deadpool WIRED - but with great buddy-comedy timing. How to read it: Available digitally

More information

Important Note: All rankings are based off the assumption that the Champions are awakened.

Important Note: All rankings are based off the assumption that the Champions are awakened. Offense Tier List (A Champion You Play) = Champion relies on being awakened = Relies on High Signature Level God Tier Demi-God Tier Amazing Tier Good Tier Meh Tier Star-Lord Wolverine X-23 Nightcrawler

More information

Spring 06 Assignment 2: Constraint Satisfaction Problems

Spring 06 Assignment 2: Constraint Satisfaction Problems 15-381 Spring 06 Assignment 2: Constraint Satisfaction Problems Questions to Vaibhav Mehta(vaibhav@cs.cmu.edu) Out: 2/07/06 Due: 2/21/06 Name: Andrew ID: Please turn in your answers on this assignment

More information

Ansible Tower Quick Install

Ansible Tower Quick Install Ansible Tower Quick Install Release Ansible Tower 3.0 Red Hat, Inc. Jun 06, 2017 CONTENTS 1 Preparing for the Tower Installation 2 1.1 Installation and Reference guide.....................................

More information

MESA Cyber Robot Challenge: Robot Controller Guide

MESA Cyber Robot Challenge: Robot Controller Guide MESA Cyber Robot Challenge: Robot Controller Guide Overview... 1 Overview of Challenge Elements... 2 Networks, Viruses, and Packets... 2 The Robot... 4 Robot Commands... 6 Moving Forward and Backward...

More information

Bilingual Software Engineer Software Development Support Group

Bilingual Software Engineer Software Development Support Group Wii E-Commerce Updates Dylan Rhoads Bilingual Software Engineer Software Development Support Group Presentation Outline 1. Wii E-Commerce overview 2. Structure of Add-On Content (AOC) 3. Attributes, Items,

More information

PyAmiibo Documentation

PyAmiibo Documentation PyAmiibo Documentation Release 0.2.0 Toby Fleming Jan 11, 2019 Contents: 1 Usage 3 2 Development 5 3 Index 7 3.1 Master keys.............................................. 7 3.2 Amiibo................................................

More information

SAP Dynamic Edge Processing IoT Edge Console - Administration Guide Version 2.0 FP01

SAP Dynamic Edge Processing IoT Edge Console - Administration Guide Version 2.0 FP01 SAP Dynamic Edge Processing IoT Edge Console - Administration Guide Version 2.0 FP01 Table of Contents ABOUT THIS DOCUMENT... 3 Glossary... 3 CONSOLE SECTIONS AND WORKFLOWS... 5 Sensor & Rule Management...

More information

WUBRG: Web Application for Magic: The Gathering Card Game.

WUBRG: Web Application for Magic: The Gathering Card Game. Devon Brown Senior Project Paper Dr. Jeffrey Jackson WUBRG: Web Application for Magic: The Gathering Card Game https://github.com/devonb946/wubrg https://wubrg-mtg.herokuapp.com Background Magic: The Gathering

More information

Web of Things TD extended with iotschema.org

Web of Things TD extended with iotschema.org Web of Things TD extended with iotschema.org Darko Anicic, Michael Koster WoT F2F Meeting Burlingame, USA Motivation: Thing Discovery TD Directory Problem Statement Discovery of Things suitable for a WoT

More information

minicad5 QuickStart Tutorial Stage: 4 Plot the Job

minicad5 QuickStart Tutorial Stage: 4 Plot the Job minicad5 QuickStart Tutorial Stage: 4 Plot the Job Aim: Plot the job to both printer / plotter and DXF file. Figure 1 - The finished product Plotting and export to DXF We wish to produce a final paper

More information

Introduction to Computer Science - PLTW #9340

Introduction to Computer Science - PLTW #9340 Introduction to Computer Science - PLTW #9340 Description Designed to be the first computer science course for students who have never programmed before, Introduction to Computer Science (ICS) is an optional

More information