Skip to main content

A collection of Python utilities

Project description

zutilities

A collection of Python utilities

Table of Contents

Prerequisites

You'll need to have Python installed in order to use zutilities. Start by downloading and installing Python.

Note: Python 3 is recommended, however zutilities will probably work just fine with most verions of Python 2

Installation

python -m pip install zutilities

Usage

zutilities.jprint(list_or_dict, indent=2)

Prints a list or dictionary as formatted JSON.

>>> zutilities.jprint([{'key1':'value1','key2':'value2'}])
[
  {
    "key1": "value1",
    "key2": "value2"
  }
]

zutilities.read_json_file(json_file)

Reads a JSON file from the filesystem and returns a list or dictionary.

j = zutilities.read_json_file('file.json')
>>> j
[{'key1': 'value1', 'key2': 'value2'}]

License

This project is licensed under the MIT License

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

zutilities-0.1.1.tar.gz (3.0 kB view hashes)

Uploaded Source

Built Distribution

zutilities-0.1.1-py2.py3-none-any.whl (3.2 kB view hashes)

Uploaded Python 2 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