Metadata-Version: 2.1
Name: libobj
Version: 540
Summary: object library
Author-email: libbot <libbotx@gmail.com>
License: Public Domain
Project-URL: home, https://pypi.org/project/libobj
Project-URL: bugs, https://github.com/botlibx/libobj/issues
Project-URL: source, https://github.com/botlibx/libobj
Classifier: Development Status :: 3 - Alpha
Classifier: License :: Public Domain
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Topic :: Utilities
Description-Content-Type: text/x-rst

NAME

::

   LIBOBJ - object library


DESCRIPTION

::

   LIBOBJ provides an obj namespace that allows for easy json save//load
   to/from disk of objects. 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.


SYNOPSIS

::

   >>> from obj import Object
   >>> o = Object()
   >>> o.a = "b"
   >>> write(o, "test")
   >>> oo = Object()
   >>> read(oo, "test")
   >>> oo
   {"a": "b"}  


INSTALL

::

   $ pip install libobj


AUTHOR

::

   libbot <libbotx@gmail.com>


COPYRIGHT

::

   LIBOBJ is Public Domain.
