Metadata-Version: 2.4
Name: FoxDotM
Version: 0.1.0.post0
Summary: 'Alias' to `Master()` with the functionality to reset old values
License-Expression: CC-BY-SA-4.0
License-File: LICENSE
Author: taconi
Author-email: igor.taconi@protonmail.com
Requires-Python: ~=3.11
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Description-Content-Type: text/markdown

# FoxDotM - "Alias" to `Master()` with the functionality to reset old values

> Inspired by the [`masterAll()`](https://crashserver.fr/blog/the-ultimate-crash-server-foxdot-python-custom-functions/#globalfunction) duo Crash Server function.

## Instalation

``` shell
pip install FoxDotM
# or
pip install git+https://codeberg.org/FoxDotExtensions/FoxDotM
```

## Usage

Import lib

``` python
from FoxDotM import m
```

Set value

``` python
m.oct = 5
```

Reset value

``` python
~m.oct
```

Reset all values

``` python
~m
```

Create event

``` python
m.every(2, 'jump')
```

Cancel event

``` python
m.never('jump')
```

