Commit e0e7705e authored by Cody Zacharias's avatar Cody Zacharias Committed by GitHub

Ignore ssl verify

parent a54ec5ab
...@@ -94,7 +94,7 @@ async def getFeed(init): ...@@ -94,7 +94,7 @@ async def getFeed(init):
Returns html for Tweets and position id. Returns html for Tweets and position id.
''' '''
async with aiohttp.ClientSession() as session: async with aiohttp.ClientSession(connector=aiohttp.TCPConnector(verify_ssl=False)) as session:
response = await fetch(session, await getUrl(init)) response = await fetch(session, await getUrl(init))
feed = [] feed = []
try: try:
...@@ -237,7 +237,7 @@ async def getUsername(): ...@@ -237,7 +237,7 @@ async def getUsername():
This function uses a Twitter ID search to resolve a Twitter User This function uses a Twitter ID search to resolve a Twitter User
ID and return it's corresponding username. ID and return it's corresponding username.
''' '''
async with aiohttp.ClientSession() as session: async with aiohttp.ClientSession(connector=aiohttp.TCPConnector(verify_ssl=False)) as session:
r = await fetch(session, "https://twitter.com/intent/user?user_id={0.userid}".format(arg)) r = await fetch(session, "https://twitter.com/intent/user?user_id={0.userid}".format(arg))
soup = BeautifulSoup(r, "html.parser") soup = BeautifulSoup(r, "html.parser")
return soup.find("a", "fn url alternate-context")["href"].replace("/", "") return soup.find("a", "fn url alternate-context")["href"].replace("/", "")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment