Metadata-Version: 2.4
Name: altray
Version: 1.0.6
Author: Pizeltray Studios
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.lic
Dynamic: author
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: requires-python

# Altray Library

Altray is a simple Python utility library made for learning and building small projects. It includes basic tools for text, math, games, patterns, and simple GUI windows.

---

# Installation

pip install altray

---

# Importing

from altray.main import *

Or import specific functions:

from altray import hello, greet, triangle

---

# Features

## Basic Functions

hello()  
greet("Marco")  
meow()  
bark()

---

## Date and Time

date()  
time()

---

## Drawing Tools

triangle(5)  
quadrilateral(4, 6, "*")  
bar(10)

---

## Window System

window(500, 800, "My App")

---

## Games and Random Tools

dice_roll()  
coin_flip()  
timer(5)

---

## Text Tools

reverse_text("hello")  
is_even(10)

---

# Example Usage

from altray.main import *

hello()  
triangle(5)

print(is_even(7))  
print(reverse_text("Marco"))

---

# Notes

- Some functions print output directly  
- Some functions return values for reuse  
- Requires Python 3.8+  

---

All Rights Reserved 2026
