Metadata-Version: 2.4
Name: nixt
Version: 450
Summary: NIXT
Author-email: Nixt Niet <nixtniet@gmail.com>
License-Expression: Unlicense
Project-URL: home, https://pypi.org/project/nixt
Project-URL: bugs, https://github.com/nixtniet/nixt/issues
Project-URL: source, https://github.com/nixtniet/nixt
Classifier: Development Status :: 3 - Alpha
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Utilities
Description-Content-Type: text/x-rst

N I X T
=======


**NAME**

|
| ``NIXT`` - NIXT
|

**SYNOPSIS**

::

    >>> from nixt.defines import Object, dumps, loads
    >>> o = Object()
    >>> o.a = "b"
    >>> print(loads(dumps(o)))
    {'a': 'b'}


**DESCRIPTION**

NIXT has all you need to program a unix cli program, such as disk
perisistence for configuration files, event handler to handle the
client/server connection, etc.

NIXT contains python3 code to program objects in a functional
way. it provides an “clean namespace” Object class that only has
dunder methods, so the namespace is not cluttered with method names.
This makes storing and reading to/from json possible.


**INSTALL**

installation is done with pip

|
| ``$ pip install nixt``
|

**AUTHOR**

|
| Bart Thate <``nixtniet@gmail.com``>
|

**COPYRIGHT**

|
| ``NIXT`` is Public Domain.
|
