Skip to content

lagmoellertim/pyon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

30 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Pyon

Introduction

Pyon (Pythonic JSON) is a Python library which allows you to easily convert native objects into JSON objects.

It also supports filesystem-like path-structure, which allows you to easily construct you JSON objects just the way you like it.

Additionally, it uses recursion in order to also convert every connected object into a usable form.

Prerequisites

  • Python >= 3.2

Installation

The installation via pip is as easy as typing

pip install pyon-lib

If you want to install the newest version manually, you can also do this:

git clone https://github.com/lagmoellertim/pyon.git

cd pyon

python3 setup.py install

Build

git clone https://github.com/lagmoellertim/pyon.git

cd pyon

python3 setup.py sdist bdist_wheel

Usage

Import Pyon

from pyon import PyonObject

Create a basic Object

class Test(PyonObject):
    def __init__(self):
        self.var1 = "Variable 1"
        self.var2 = 5.5

Convert an object into JSON

test = Test()
json = test.dump()

And this is the output:

{'var1': 'Variable 1', 'var2': 5.5}

Write the JSON object to a file

test = Test()
json = test.dump(file_object=open("test.json","w+"), output_format="json")

Hide certain variables

Let's say your Test-Class only needs the variable var2 for it's own calculation, but you don't want it to end up in your final JSON object. You can avoid this by adding the prefix "_"

class Test(PyonObject):
    def __init__(self):
        self.var1 = "Variable 1"
        self._var2 = 5.5
        
test = Test()
json = test.dump()

And this is the output:

{'var1': 'Variable 1'}

Use multiple objects / classes

As an example, I use the concept of a store with products

class Store(PyonObject):
    def __init__(self, store_name):
        self.store_name = store_name
        self.products = [
            Product(0, "Smartphone"),
            Product(1, "Laptop")
        ]
        
class Product(PyonObject):
    def __init__(self, article_id, name):
        self.article_id = article_id
        self.name = name
        
store = Store("Generic Store")
json = store.dump()

And this is the output:

{
    'store_name': 'Generic Store',
    'products': 
        [
            {'article_id': 0, 'name': 'Smartphone'},
            {'article_id': 1, 'name': 'Laptop'}
        ]
}

Specifying object paths

This time, the JSON structure should not be based on the class structure, but rather on the path string that we supply.

Path Strings are very similar to your filesystem paths. You can navigate inside the JSON object using these Path Strings.

Here are some example:

path1 = "/store/"

path2 = "/test/../store/./" # Identical to path1 since ../ means one layer up and ./ can be ignored

path3 = "/store/products/*" #The star symbol tells pyon to create a list instead of a dict in this location

Let's modify our Store / Products Class in order for it to use custom paths

class Store(PyonObject):
    def __init__(self, store_name):
        super().__init__("/stores/*")
        self.store_name = store_name
        self.products = [
            Product(0, "Smartphone"),
            Product(1, "Laptop")
        ]
        
class Product(PyonObject):
    def __init__(self, article_id, name):
        super().__init__("products/*")
        self.article_id = article_id
        self.name = name
        
store = Store("Generic Store")
json = store.dump()

And this is the output:

{
    'stores':
    [
        {'store_name': 'Generic Store', 'products': 
            [
                {'article_id': 0, 'name': 'Smartphone'},
                {'article_id': 1, 'name': 'Laptop'}
            ]
        }
    ]
}

As you can see in the example above, relative paths are also possible as long as the object has a parent.

Use object variables for the Path String

To use object variables inside of you Path String, simply specify them in the String using brackets like this: {var1}

The value of {var1} is self.var1 , so you just leave the 'self.' away.

class Test(PyonObject):
    def __init__(self):
        super().__init__("/test/{var1}-{_var2}/")
        self.var1 = "Variable 1"
        self._var2 = 5.5
        
test = Test()
json = test.dump()

And this is the output:

{
    'test':
    {
        'Variable 1-5.5': {'var1': 'Variable 1'}
    }
}

Different dump methods

Pyon supports different methods for dumping the PyonObject. You can use the normal python dictionary ('json'), 'xml' or 'yaml'. Here are some usage examples:

json = test.dump(output_format="json") # JSON is default, so you can also leave it empty

xml = test.dump(output_format="xml")

yaml = test.dump(output_format="yaml")

Allow Overwrite

Finally, there is Overwrite Protection. Since Paths allow you to freely choose the location where the object should end up, it is possible for them to overlap. To allow / stop overwriting, you can do this:

json = test.dump(allow_overwrite=True)

The default value for allow_overwrite is False

Documentation

If you get stuck at some point while trying to use the API, take a look the code. It is fully commented and well-labeled, which should help you understand what's going on.

Contributing

If you are missing a feature or have new idea, go for it! That is what open-source is for!

Author

Tim-Luca LagmΓΆller (@lagmoellertim)

Donations / Sponsors

I'm part of the official GitHub Sponsors program where you can support me on a monthly basis.

GitHub Sponsors

You can also contribute by buying me a coffee (this is a one-time donation).

Ko-Fi Sponsors

Thank you for your support!

License

MIT License

Copyright Β© 2019-present, Tim-Luca LagmΓΆller

Have fun πŸŽ‰

About

The Pythonic way to use JSON - with native objects πŸ›  and path support πŸ“

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages