Socket
Socket
Sign inDemoInstall

dumpit

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dumpit

Print python objects like a boss


Maintainers
1

dumpit

List all python object attributes with descriptions

PyPI version Build Status Codacy Badge

GitHub issues GitHub closed issues GitHub closed pull requests

PyPI - Python Version GitHub GitHub last commit

Terminal view

Installation

pip install dumpit

Usage

from dumpit import pdumpit, fdumpit

my_object = ...

# Print object to standard output
pdumpit(my_object)

#Print object to standard output in vertical view
pdumpit(my_object, view_='vertical') # vertical | table

# Export object to string as text
my_var = fdumpit(my_object)

# Disable colors in terminal output
pdumpit(my_object, colors=False) # False | terminal

# Enable colors in string output
my_var = fdumpit(my_object, colors='terminal')

# Show dunder methods (magic methods)
pdumpit(my_object, all_=True)

Changelog

0.6.0

Fixed in 0.6.0
  • all_ parameter default value is now False
  • code formatting

0.5.0

Fixed in 0.5.0
  • Python 3 compatibility

0.4.2

Fixed in 0.4.2
  • Dependency version changed: Click 6.7 -> Click 7.0

0.4.1

Fixed in 0.4.1
  • Dunder methods description formatting and new lines.

0.4.0

Added in 0.4.0
  • Descriptions for every objects attribute.
  • Separate dunders from other attributes.

0.3.0

Added in 0.3.0
  • Analyse is now view.
  • Table view support: Print object contents in table view in terminal.
  • Warnings: Prints warnings in terminal if unknown coloring or view is used.

0.2.0

Added 0.2.0
  • Coloring support: Terminal colors for object attributes.

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc