Skip to main content

A simple JSON string creator that takes whatever you have and transform it into a String

Project description

jsonwhatever

jsonwhatever is a library that creates a string, just putting a name and the object as arguments.

Installation

Use the package manager pip to install jsonwhatever.

pip install jsonwhatever

Usage

from jsonwhatever import JsonWhatEver

thisdict = {
  "brand": "Ford",
  "model": "Mustang",
  "year": 1964
}

class Dog:
  def __init__(self) -> None:
    self.id = 0
    self.name = 'fido'
    self.size = 5.3

class Person:
  def __init__(self, id, name, dog) -> None:
    self.id = id
    self.name = name
    self.dog = dog

dog_a = Dog()

complex_number = 5+9j
list_b = [4,5,6,8]
list_a = [2,3,'hello',7,list_b]
list_c = [4,5,thisdict,8,complex_number]
empty_list = []
none_var = None
bool_var = True
set_example_empty = set()
set_example = {1,2,3,4}
class_example = Person(9,'john',dog_a)
bytes_example = bytes(4)
bytearray_example = bytearray(4)

#########################
jsonwe = JsonWhatEver()
#########################

#prints {"list_example":[4,5,6,8]}
print(jsonwe.jsonwhatever('list_example',list_b))

#prints {"name":"john"}
print(jsonwe.jsonwhatever('name','john'))

#prints {"size":1.7}
print(jsonwe.jsonwhatever('size',1.7))

#prints {"empty_list":[]}
print(jsonwe.jsonwhatever('empty_list',empty_list))

#prints {"none_example":null}
print(jsonwe.jsonwhatever('none_example',none_var))

#prints {"boolean":True}
print(jsonwe.jsonwhatever('boolean',bool_var))

#prints {"empty_set":[]}
print(jsonwe.jsonwhatever('empty_set',set_example_empty))

#prints {"set_example":[1,2,3,4]}
print(jsonwe.jsonwhatever('set_example',set_example))

#prints {"brand":"Ford","model":"Mustang","year":1964}
print(jsonwe.jsonwhatever('thisdict',thisdict))

#prints {"id":9,"name":"juan",{"id":0,"name":"perro","size":5.3}}
print(jsonwe.jsonwhatever('person_class',class_example))

#prints {"bytes_example":"b'\x00\x00\x00\x00'"}
print(jsonwe.jsonwhatever('bytes_example',bytes_example))

#prints {"bytearray_example":"b'\x00\x00\x00\x00'"}
print(jsonwe.jsonwhatever('bytearray_example',bytearray_example))

#prints {"crazy_list":[4,5,{"brand":"Ford","model":"Mustang","year":1964},8,"(5+9j)"]}
print(jsonwe.jsonwhatever('crazy_list',list_c))

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

Things to know about

  1. You always have to put some name on the first argument of the jsonwhatever function, otherwise the function will return a string that does not match the json standard.

  2. The jsonwhatever function can allow recursivity on a list until the level 800, after that, it will rise the RecursionError exception.

  3. The jsonwhatever function allows you to recieve a json without the curly braces at the beginning and in the end of the phrase. By default it will be in True.

#prints "name":"john"
print(jsonwe.jsonwhatever('name','john',False))

#prints {"name":"john"}
print(jsonwe.jsonwhatever('name','john',True))
print(jsonwe.jsonwhatever('name','john'))

Release Notes

  1. The main structure in the library is an object class.
  2. Now a few attributes are private, like the datatypes.
  3. The class can detect the ammount of levels of recursions.
  4. The maximum level of recursions are 800, after that it will raise a RecursionError exception.
  5. We fixed a bug in the recursion counter, that stops the recursion after the number 800.
  6. The Big O notation is O(n), but after 2 million items the behavior stops being linear.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jsonwhatever-1.1.1.tar.gz (4.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

jsonwhatever-1.1.1-py3-none-any.whl (5.1 kB view details)

Uploaded Python 3

File details

Details for the file jsonwhatever-1.1.1.tar.gz.

File metadata

  • Download URL: jsonwhatever-1.1.1.tar.gz
  • Upload date:
  • Size: 4.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for jsonwhatever-1.1.1.tar.gz
Algorithm Hash digest
SHA256 c2f76b070e1c302300cf3f9901eb29d4c6da404c4d6b0a63ac9e83f140d432b3
MD5 c7107d31c49f7dc4424c5bf49553fe10
BLAKE2b-256 8836f206f7292cb70356ced3d5b84b68688ef77a31bf73b1a9b234852ac4a937

See more details on using hashes here.

File details

Details for the file jsonwhatever-1.1.1-py3-none-any.whl.

File metadata

  • Download URL: jsonwhatever-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 5.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for jsonwhatever-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b30e85214f4df22a19e56f1d0730b415623daf44c28a6265781c7b8eec5bceb3
MD5 6aca82c1479ef5cee3bb457f64741df3
BLAKE2b-256 43bec35cf7f8458f61b04f87233745554cb22110c72ae63d59b00bf0ab867acb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page