@@ -298,15 +298,40 @@ def get():
298
298
return AtomReader .parse (url )
299
299
300
300
class Blogger :
301
- def __init__ (self , key ):
301
+ def __init__ (self , key , blog = None ):
302
302
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*." )
303
308
304
- def get (self , url ):
309
+ return url or self .blog
310
+ def get (self , url = None ):
311
+ url = self .check (url )
305
312
return requests .get (f"https://www.googleapis.com/blogger/v3/blogs/byurl?key={ self .key } &url={ url } " ).json ()
306
313
307
- def getPosts (self , url ):
314
+ def getPosts (self , url = None ):
315
+ url = self .check (url )
308
316
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
+
310
335
class IGDB :
311
336
def __init__ (self , token ):
312
337
self .payload = {
0 commit comments