Skip to content

bedus-creation/python_dd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python dd

The missing dd function in python. The dd function is abbreviation of die and dump, which means prints the variable and stop the executions. Here, another, dump function is provided, which just prints the variable, and doesn't stop the execution.

Installation

pip install python_dd

Uses

from python_dd.dd import dd

dd("Hello")
dd(1)
dd(True, True, False, 1, 2)

or

from python_dd.dd import dump

dump("Hello")
dump(1)
dump(True, False, 1, 2)

About

The missing dd function in python

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published