Adds a new class for fetching information from RSI's Community Hub's GraphQL API, including basic user profile data. See the following example
py
import asyncio
from spectrum import CommunityHubClient
async def run():
client = CommunityHubClient()
print(await client.fetch_user_profile("Khuzdul"))
asyncio.run(run())