# pydraw

## pydraw

- [Home](https://docs.pydraw.graphics/master.md): This site will provide guides, tutorials, and documentation for pyDraw and its submodules.
- [Documentation](https://docs.pydraw.graphics/documentation.md): This page will serve as a quick hub for documentation of pyDraw (Quick Reference and Full API)
- [Installation and Setup](https://docs.pydraw.graphics/guides/installation.md): In order to install pydraw you must, of course, have Python installed and added to the PATH.
- [Getting Started](https://docs.pydraw.graphics/guides/getting-started.md): Starter Template and an Example Program for pyDraw
- [Quickstart Examples](https://docs.pydraw.graphics/guides/quickstart.md): Some examples to quickly begin creating amazing things with pyDraw!
- [Screen](https://docs.pydraw.graphics/quick-reference/screen.md): The Screen is the base object for any pyDraw program, and can perform a variety of different tasks.
- [Color](https://docs.pydraw.graphics/quick-reference/color.md): All Color values are wrapped in pyDraw as to make constructors and methods more clear. Colors are immutable, and can be created from names, RGB values, or a hex string.
- [Location](https://docs.pydraw.graphics/quick-reference/location.md): All Locations in pyDraw are wrapped with this class, however some methods and constructors will automatically convert tuples to Locations automatically.
- [Renderable](https://docs.pydraw.graphics/quick-reference/renderable.md): Renderable serves as the base class for any object with a width and height (most notably excluding lines and dots). The Renderable class does extend the Object class which tracks location and updates.
- [Text](https://docs.pydraw.graphics/quick-reference/text.md): A brief reference to the Text class.
- [Line](https://docs.pydraw.graphics/quick-reference/line.md): A brief reference to the Line class.
- [Image](https://docs.pydraw.graphics/quick-reference/image.md): A brief reference to the Image class.
- [Input](https://docs.pydraw.graphics/quick-reference/input.md): The Quick Reference for Input just lists all methods available to be registered for input.
- [Scene](https://docs.pydraw.graphics/quick-reference/scene.md): Create containerized pyDraw programs and apply them to the Screen independently!
