Skip to content

Commit 170dc83

Browse files
authored
Working on the Blogger class
Working on the Blogger class
1 parent 1659870 commit 170dc83

File tree

1 file changed

+29
-4
lines changed

1 file changed

+29
-4
lines changed

netcrawler/netcrawler.py

+29-4
Original file line numberDiff line numberDiff line change
@@ -298,15 +298,40 @@ def get():
298298
return AtomReader.parse(url)
299299

300300
class Blogger:
301-
def __init__(self, key):
301+
def __init__(self, key, blog=None):
302302
self.key = key
303+
self.blog = blog
304+
305+
def check(self, url=None):
306+
if not url and not self.blog:
307+
raise ValueError("No value for URL supplied. Must either be passed as a constructor for the Blogger class, or a paramater to get*.")
303308

304-
def get(self, url):
309+
return url or self.blog
310+
def get(self, url=None):
311+
url = self.check(url)
305312
return requests.get(f"https://www.googleapis.com/blogger/v3/blogs/byurl?key={self.key}&url={url}").json()
306313

307-
def getPosts(self, url):
314+
def getPosts(self, url=None):
315+
url = self.check(url)
308316
d = self.get(url)['posts']['selfLink']
309-
return requests.get(f"{d}?key={self.key}").json()
317+
return requests.get(f"{d}?key={self.key}").json()
318+
319+
async def async_get(self, url=None):
320+
url = self.check(url)
321+
async with aiohttp.ClientSession() as session:
322+
async with session.get(f"https://www.googleapis.com/blogger/v3/blogs/byurl?key={self.key}&url={url}") as r:
323+
data = await r.json()
324+
return data
325+
326+
async def async_getPosts(self, url=None):
327+
url = self.check(url)
328+
d = await self.async_get(url)['posts']['selfLink']
329+
async with aiohttp.ClientSession() as session:
330+
async with session.get(f"{d}?key={self.key}") as r:
331+
data = await r.json()
332+
return data
333+
334+
310335
class IGDB:
311336
def __init__(self, token):
312337
self.payload = {

0 commit comments

Comments
 (0)