Skip to main content

A package for reading, writing, and editing of JSON files, Python dictionaries, and such.

Project description

JSONifier


A package for reading, writing, and editing of JSON files, Python dictionaries, and such.


Classes

JSONifier

Build a JSONifier object from a dict or a readable file. (Params and usage below)

  ...

  Params
  ----------
  *These params are used in the initialization of an instance of this class.*

  mode : str
      Define the mode in which to read and parse the given `data`.

  data : Any
      The data for the JSONifier object.

  Attributes
  ----------
  mode : str
      *Set when a new instance of the class is made.*

  data : Any
      *Set when a new instance of the class is made.*

  valid_modes : list
      *List of valid modes for instantiating a new JSONifier object.*

  call_methods : list
      *List of valid methods for the call function.*

  call_return_methods : list
      *List of valid methods for specifying how to get the instance data back from the call method.*

  write_methods : list
      *List of valid methods for writing to a json file.*

  Methods
  -------
  call(self, ret) - _builtin_
      The call function (calling an instance as a function).  `ret` is the return method.

  init(self, mode: str = None, data: Any = None) - _builtin_
      *Make a new instance.  Refer to `params` for information on the parameters.*

  @classmethod
  create(cls, mode, data)
      *Alternative constructor for the class.*

  @classmethod
  fromFile(cls, file)
      *Alternative constructor from a file path.*

  @classmethod
  fromDict(cls, file)
      *Alternative constructor from a supplied dictionary.*

  get_data(self)
      *Return the instance's data.*

  replace(self, key=None, value=None)
      *Replace the specified key with the specified value.*

  @staticmethod
  write(method="json", file=None, data=None)
      *Write to a specific file the data supplied.

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

JSONifier-0.0.5.tar.gz (4.1 kB view hashes)

Uploaded Source

Built Distribution

JSONifier-0.0.5-py3-none-any.whl (4.3 kB view hashes)

Uploaded Python 3

Supported by

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