Giphy / giphy-python-client

The GIPHY Core SDK is a wrapper around the GIPHY API
https://developers.giphy.com
Mozilla Public License 2.0
50 stars 9 forks source link

"print" call in README has two p's #2

Closed DGKSK8LIFE closed 4 years ago

DGKSK8LIFE commented 4 years ago

image

Brodan commented 4 years ago

Hey @DGKSK8LIFE, this is not by mistake. Notice at the top of this code snippet is: from pprint import pprint

This is calling Python's pprint (also known as pretty-print) module. pprint is used to make blocks of text like this api_response more readable.

DGKSK8LIFE commented 4 years ago

ah ok; my bad; tysm @Brodan