Merge pull request #1095 from matheusfelipeog/feat/py2-to-py3-in-scraping-section

Update examples to Python 3 in scrape section
This commit is contained in:
Dan Bader
2021-02-23 09:10:39 -08:00
committed by GitHub
+2 -2
View File
@@ -87,8 +87,8 @@ Let's see what we got exactly:
.. code-block:: python
print 'Buyers: ', buyers
print 'Prices: ', prices
print('Buyers: ', buyers)
print('Prices: ', prices)
::