Metadata-Version: 2.4
Name: definius
Version: 1.0.5
Summary: A 2D grid and matrix management library for Python.
Author-email: Xavier Gonzalez Erstine <xaviergonzalezerstine@gmail.com>
Project-URL: Homepage, https://github.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Dynamic: license-file

definius



A 2D grid and matrix management library for Python.



Installation

```bash

pip install -e .

```



Quick Start Usage Guide

```python

import definius as df

df.cr(10, 10, "a")

df.dp("a")

```



Functions

\* `cr(x, y, name, value=0)`(Creates a grid)

\* `rm(name)` (Removes a grid)

\* `rp(x, y, name, new_value)` (Replaces a cell with a new value)

\* `dp(name)` (Displays a grid)

\* `oc(name)` (Clears a grid)



License

MIT License.



