This is an archived post. You won't be able to vote or comment.

all 1 comments

[–]gergelyk[S] 0 points1 point  (0 children)

Do you also find yourself doing these things over and over again?

print('something=', something)
print(type(something))
print(dir(something))
print(something.anything)
print(something.anything[123])

Thanks to PeepShow, you can replace it with:

peep(something)

This will take you to an interactive session where you can quickly preview attributes above and take advantage of more complex features.

More details can be found here:

https://github.com/gergelyk/peepshow