Skip to content

ps428/PrintPosition-pip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 

Repository files navigation

Print Position

A cool python package to add the timestamp, file name and line number in the print statements. This small tool can be very helpful in debugging big Python projects.

Here is the project on pypi.

The current download stas are: Downloads Downloads

Motivation

To debug the Python code present in multiple files, it becomes difficult to track down the print statement calls in the different files. This small pip package can be highly useful in such cases, one can simply use the custom print statement defined in this package and see the filename and line number of the print calls.

How to install?

Just install the package using the command:

pip3 install print-position

Usage

Simply add this import statement on top of your python file to see the time, file name and line number of each print statement.

from print_position import print_pos as print

A simple example is (test_pos.py):

from print_position import print_pos as print
print("Test on line 2 from test.py")
print("Test on line 3 from test.py")

print("Test on line 7 from test.py")

The output is shown as:

@file_name:line_number
print_data

If you want to also see the timestamp, just use the print_pos_time function like this:

from print_position import print_pos_time as print

A simple example is (test_pos_time.py):

from print_position import print_pos_time as print
print("Test on line 2 from test.py")
print("Test on line 3 from test.py")

print("Test on line 7 from test.py")

The output is shown as:

time:@file_name:line_number
print_data

I believe this would be very helpful in tracking down errors during debugging, especially when you are working with someone else's code.

Changelog

2.0.1:

  • Added another function to print the time of the print call.
  • Restructured the project to improve imports.

Contact me

To raise any issues/requests you may refer the issue page here.

You may mail me here on my mail id.

Feel free to connect with me on my LinkedIn.

Please do check out my other projects on my GitHub here.

Also I have made many cool Firefox Add ons. They are pretty useful, you may want to check them out here.

If you like my work, you may want to buy me a book here.

About

The code base for the Print Position python package.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages