Skip to content

Commit

Permalink
fix:修复可能 print 出字符串的 Bug
Browse files Browse the repository at this point in the history
  • Loading branch information
FHU-yezi committed Apr 30, 2021
1 parent 62f2bc7 commit f807815
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions JianshuResearchTools/main.py
Original file line number Diff line number Diff line change
@@ -447,7 +447,6 @@ def GetUserFollowersList(user_url,pages = 1):
for page in range(pages):
page = page + 1
url = raw_url + str(page)
print(url)
html = requests.get(url,headers = request_UA)
source = bs4.BeautifulSoup(html.content,parser)
data_list = source.findAll("a",class_ = "name")
@@ -471,7 +470,6 @@ def GetUserFansList(user_url,pages = 1):
for page in range(pages):
page = page + 1
url = raw_url + str(page)
print(url)
html = requests.get(url,headers = request_UA)
source = bs4.BeautifulSoup(html.content,parser)
data_list = source.findAll("a",class_ = "name")

0 comments on commit f807815

Please sign in to comment.