Metadata-Version: 2.4
Name: diamondlib
Version: 2.0.0
Summary: DiamondLib
Author: Graham
License: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: colorama
Requires-Dist: ursina
Requires-Dist: pygame
Requires-Dist: requests
Dynamic: license-file

# \# DiamondLib

# 

# DiamondLib is a lightweight, modular, all‑in‑one Python framework designed to make development faster, easier, and more fun.  

# It bundles support for popular libraries, provides unified helper modules, and includes a full plugin system that lets you extend DiamondLib with your own features.

# 

# \*\*One lib. One big brain. Infinite possibilities.\*\*

# 

# \---

# 

# \## Features

# 

# \### ✔ Unified Support for Popular Libraries

# DiamondLib integrates cleanly with:

# \- Tkinter  

# \- Pygame  

# \- Ursina  

# \- AsyncIO  

# \- Requests  

# \- File I/O  

# \- Audio utilities  

# \- And more

# 

# You can build GUIs, games, tools, scripts, and apps without juggling dozens of imports.

# 

# \---

# 

# \## Plugin System

# 

# DiamondLib includes a built‑in plugin loader that allows you to extend the framework with your own modules.

# 

# \### Plugin Location

# Plugins are stored in: C:\\Users\\<you>\\AppData\\Local\\Programs\\Python\\<PythonVersion>\\Lib\\site-packages\\diamondlib\\plugins\\ 





# Simply drop your `.py` files into the folder and DiamondLib can load them dynamically:

# 

# ```python

# from diamondlib import plugins

# 

# p = plugins.load("myplugin")

# p.hello()





