This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Created on Mon Sep 9 11:08:53 2019 | |
@author: qijia | |
""" | |
import requests | |
# A Google search for the term "Tim Berners-Lee". | |
r1 = requests.get('https://www.google.com/search?q=tim+berners-lee') | |
print (r1.content) | |
print (r1.status_code) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
""" | |
Created on Mon Sep 16 11:55:28 2019 | |
@author: qijia | |
""" | |
import requests | |
from bs4 import BeautifulSoup | |
import requests |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
""" | |
Created on Mon Sep 23 11:06:35 2019 | |
@author: qijia | |
""" | |
import queue | |
import re | |
import selenium | |
from urllib.parse import urlparse |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
""" | |
Created on Mon Oct 7 10:13:48 2019 | |
@author: qijia | |
""" | |
import spacy | |
import re | |
import requests |