Skip to content
Closed

? #57

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions chapter11/my_pillows
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from PIL import Image, ImageFilter

kitten = Image.open("C://Users/kohn/Pictures/G1.PNG")
blurryKitten = kitten.filter(ImageFilter.GaussianBlur)
blurryKitten.save("kitten_blurred.PNG")
blurryKitten.show()
kitten.show()
2 changes: 2 additions & 0 deletions chapter5/3-scrapeCsv.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
from urllib.request import urlopen
from bs4 import BeautifulSoup



html = urlopen("http://en.wikipedia.org/wiki/Comparison_of_text_editors")
bsObj = BeautifulSoup(html, "html.parser")
#The main comparison table is currently the first table on the page
Expand Down