67#23
Open
Beavermon wants to merge 14 commits into
Open
Conversation
…vent loop policy set
SSL verification disabled globally:
warnings.filterwarnings('ignore', message='Unverified HTTPS request')
ssl._create_default_https_context = ssl._create_unverified_context
Event loop policy set: asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy()) - moved from commented code to active code
Modified ClientSession creation: Changed from:
python session = ClientSession(loop=loop)
to:
python session = ClientSession(loop=loop, connector=aiohttp.TCPConnector(verify_ssl=False))
This disables SSL verification for the aiohttp session specifically
… compatibility - Remove deprecated quart.flask_patch import (no longer needed in Quart 0.19+) - Implement manual sync_wait method using nest_asyncio to allow nested event loops - This provides the same functionality as flask_patch but with explicit control - nest_asyncio is particularly important for Windows compatibility where nested loops are common - Convert index route to async/await pattern for consistency with other routes The flask_patch module was primarily used to add a loop.sync_wait method for QuartDecoratorProvider. This change maintains that functionality while moving to a more modern approach that's compatible with current Quart versions (as previous ones a depricated) nest_asyncio.apply() patches asyncio to allow re-entrant event loops
Add manual_auth.py script to facilitate initial Xbox Live authentication setup This script provides an interactive way to authenticate with Xbox Live and generate the initial tokens.json file required by the main application.
Fix type hint: change dict[Type] to List[Type] for register_batch parameter The parameter is actually a list/sequence, not a dict, type hint now reflects this
Update README.md
Update README.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.