This Python script asynchronously fetches random words, checks if they are valid English dictionary words, and verifies their availability as Minecraft usernames using the Mojang API.
- Random Word Generation: Fetches random words from APIs.
- Username Availability Check: Uses Mojang and Ashcon APIs to check if a Minecraft username is available.
- Dictionary Check: Verifies if a username is a valid dictionary word using NLTK's WordNet.
- Asynchronous Execution: Utilizes
asynciofor efficient concurrent operations.
-
Clone this repository.
-
Install the required Python libraries:
pip install aiohttp nltk