# python

DRAFT Inspect a DataFrame in the Middle of Method Chaining

How to display your pandas `DataFrame` in the middle of a sequence of method chaining.

Link

How to Get the Traceback of an Exception Outside of the Exception Block in Python

How to get the proper traceback message of an exception that has been caught and stored for use outside of the exception block (in python).

Link

How to Capture Network Traffic When Scraping with Selenium & Python

It's common when webscraping to need dynamically loaded content from the page, which can sometimes only be found within the network activity of the page. I'll show you how to capture the network traffic occurring on the page using python, selenium with chromedriver, and the logging features of the browser.

Link