@@ -389,52 +389,6 @@ async def lore_search(self, query, language="en"):
389389 async with self .session .get (url , params = params ) as response :
390390 return await self .process_response (response )
391391
392- @timed
393- async def lodestone_all (self ):
394- """|coro|
395- Request all categories of Lodestone posts. This function is recommended because it returns a cached (every 15 minutes) collection of
396- information and will return much quicker.
397- """
398- url = f'{ self .base_url } /lodestone?private_key={ self .api_key } '
399- async with self .session .get (url ) as response :
400- return await self .process_response (response )
401-
402- @timed
403- async def lodestone_news (self ):
404- """|coro|
405- Request posts under the topics Lodestone category.
406- """
407- url = f'{ self .base_url } /lodestone/news?private_key={ self .api_key } '
408- async with self .session .get (url ) as response :
409- return await self .process_response (response )
410-
411- @timed
412- async def lodestone_notices (self ):
413- """|coro|
414- Request posts under the notices Lodestone category.
415- """
416- url = f'{ self .base_url } /lodestone/notices?private_key={ self .api_key } '
417- async with self .session .get (url ) as response :
418- return await self .process_response (response )
419-
420- @timed
421- async def lodestone_maintenance (self ):
422- """|coro|
423- Request posts under the maintenance Lodestone category.
424- """
425- url = f'{ self .base_url } /lodestone/maintenance?private_key={ self .api_key } '
426- async with self .session .get (url ) as response :
427- return await self .process_response (response )
428-
429- @timed
430- async def lodestone_updates (self ):
431- """|coro|
432- Request posts under the updates Lodestone category.
433- """
434- url = f'{ self .base_url } /lodestone/updates?private_key={ self .api_key } '
435- async with self .session .get (url ) as response :
436- return await self .process_response (response )
437-
438392 @timed
439393 async def lodestone_worldstatus (self ):
440394 """|coro|
@@ -444,42 +398,6 @@ async def lodestone_worldstatus(self):
444398 async with self .session .get (url ) as response :
445399 return await self .process_response (response )
446400
447- @timed
448- async def lodestone_devblog (self ):
449- """|coro|
450- Request posts under the developer blog Lodestone category.
451- """
452- url = f'{ self .base_url } /lodestone/devblog?private_key={ self .api_key } '
453- async with self .session .get (url ) as response :
454- return await self .process_response (response )
455-
456- @timed
457- async def lodestone_devposts (self ):
458- """|coro|
459- Request developer posrs from the official FFXIV forums.
460- """
461- url = f'{ self .base_url } /lodestone/devposts?private_key={ self .api_key } '
462- async with self .session .get (url ) as response :
463- return await self .process_response (response )
464-
465- @timed
466- async def lodestone_deepdungeon (self ):
467- """|coro|
468- Request Deep Dungeon post from the Lodestone.
469- """
470- url = f'{ self .base_url } /lodestone/deepdungeon?private_key={ self .api_key } '
471- async with self .session .get (url ) as response :
472- return await self .process_response (response )
473-
474- @timed
475- async def lodestone_feasts (self ):
476- """|coro|
477- Request Feast post from the Lodestone.
478- """
479- url = f'{ self .base_url } /lodestone/feasts?private_key={ self .api_key } '
480- async with self .session .get (url ) as response :
481- return await self .process_response (response )
482-
483401 async def process_response (self , response ):
484402 __log__ .info (f'{ response .status } from { response .url } ' )
485403
0 commit comments