Metadata-Version: 2.1
Name: mfg
Version: 1.0.0
Summary: Display a message on foreground
Home-page: https://github.com/Game-K-Hack/Message-Foreground
Author: Game K
Author-email: game_k@laposte.net
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/Game-K-Hack/Message-Foreground/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Message Foreground

[![License](https://img.shields.io/badge/License-MIT-blue)](#license)

This library allows you to create a message that is displayed in the foreground and above all other elements.


Simple Demo
-----------
```python
# Import the library
from mfg import foreground

# First create a instance with the following parameters
# 	Text: 'Hello World'
# 	Color: White
# 	No background
f = foreground('Hello World', '#fffffe')

# Displayed the message
f.display()
```


Requirement
---------------
- `tkinter`
- `win32api`
- `win32con`
- `threading`
- `pywintypes`


Development
-----------

This library can be improved and if you want to be part of it, contact me.


