Skip to main content

Print Object in Python

Project description

Print Object in Python3.x

  • Print your variable/object in beautiful way
  • It's easier way to print variable name & it's value
  • pobj print any type of value. Like int, str, bool, list, dict, django request, dataframe, ... few more

Install with pip

pip install pobj

Upgrade with pip

pip install pobj --upgrade

How to implement

  1. install package by pip install pobj
  2. import pobj by from pobj import pobj in class.py
  3. use pobj in your code as bellow standards...
pobj(your_variable)

Demo / Example

Source Code/File:

class Fruits:

    def get_apple_detail(self, price: float = 0.0):
        result = {
            'fruit': 'Apple',
            'price': price or 120,
            'quantity': 2,
            'available': True
        }
        pobj(result)
        return result

OutPut:

---result---type:dict---size:240-bytes---
{
  "available": true,
  "fruit": "Apple",
  "price": 120,
  "quantity": 2
}

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

pobj-1.2.1.tar.gz (2.1 kB view hashes)

Uploaded Source

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