API Documentation

class alchemy.MarkI

Mark I is the first Iron Man suit built by Tony Stark.

It is the original Iron Man suit featured in the first Iron Man movie.

Along with MarkII and MarkIII, Mark I is one of three starter suits available at the beginning of Iron Man movie.

class alchemy.MarkII

Mark II is an upgraded version of the Iron Man suit.

It features improved capabilities and enhancements compared to the original Mark I suit.

Along with MarkI and MarkIII, Mark II is one of three starter suits available in the Iron Man movie.

class alchemy.MarkIII

Mark III is a highly advanced Iron Man suit.

It features state-of-the-art technology and weaponry, making it one of the most powerful suits in Tony Stark’s arsenal.

Along with MarkI and MarkII, Mark III is one of three starter suits available in the Iron Man movie.

class alchemy.StarterSuit

This class defines one of the starter Iron Man suits built by Tony Stark at the beginning of the Iron Man movie series.

Actual suits can be created by calling the specific classes defining the Iron Man suit types. You can see more details about them at starter.

who_is_that_suit()

Shows the Iron Man suit name and its upgrades.

Usage:

>>> import ironman
>>> suit = ironman.MarkI()
>>> suit.who_is_that_suit()
This is Mark I Iron Man suit.
It will upgrade into Mark II, Mark III, Hulkbuster, and Infinity War Suit.
>>>