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

Specify English Lang

parent 730d91aa
...@@ -11,23 +11,23 @@ class Url: ...@@ -11,23 +11,23 @@ class Url:
async def favorites(self): async def favorites(self):
if self.init == -1: if self.init == -1:
url = "https://mobile.twitter.com/{0.Username}/favorites?".format(self.config) url = "https://mobile.twitter.com/{0.Username}/favorites?lang=en".format(self.config)
else: else:
url = "https://mobile.twitter.com/{0.Username}/favorites?max_id={1.init}".format(self.config, self) url = "https://mobile.twitter.com/{0.Username}/favorites?max_id={1.init}&lang=en".format(self.config, self)
return url return url
async def followers(self): async def followers(self):
if self.init == -1: if self.init == -1:
url = "https://mobile.twitter.com/{0.Username}/followers?".format(self.config) url = "https://mobile.twitter.com/{0.Username}/followers?lang=en".format(self.config)
else: else:
url = "https://mobile.twitter.com/{0.Username}/followers?cursor={1.init}".format(self.config, self) url = "https://mobile.twitter.com/{0.Username}/followers?cursor={1.init}&lang=en".format(self.config, self)
return url return url
async def following(self): async def following(self):
if self.init == -1: if self.init == -1:
url = "https://mobile.twitter.com/{0.Username}/following?".format(self.config) url = "https://mobile.twitter.com/{0.Username}/following?lang=en".format(self.config)
else: else:
url = "https://mobile.twitter.com/{0.Username}/following?cursor={1.init}".format(self.config, self) url = "https://mobile.twitter.com/{0.Username}/following?cursor={1.init}&lang=en".format(self.config, self)
return url return url
async def search(self): async def search(self):
...@@ -80,7 +80,7 @@ async def Response(session, url): ...@@ -80,7 +80,7 @@ async def Response(session, url):
async def Username(userid): async def Username(userid):
connect = aiohttp.TCPConnector(verify_ssl=False) connect = aiohttp.TCPConnector(verify_ssl=False)
async with aiohttp.ClientSession(connector=connect) as session: async with aiohttp.ClientSession(connector=connect) as session:
r = await Response(session, "https://twitter.com/intent/user?user_id={}".format(userid)) r = await Response(session, "https://twitter.com/intent/user?user_id={}&lang=en".format(userid))
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