MouseTools
An unofficial, async Python wrapper for Disney's undocumented API. Data is pulled directly from Disney, and this package makes no attempt to access data that would require individual user authentication — public data only. Supports Walt Disney World and Disneyland Resort.
Install
You can install using pip:
pip install mousetools
You can also install directly from this repo in case of any changes not uploaded to Pypi.
pip install git+https://gitlab.com/caratozzoloxyz/public/MouseTools
Quick example
import asyncio
import mousetools
from mousetools import WALT_DISNEY_WORLD
async def main() -> None:
# Build an unloaded handle via the destination front-door (no I/O yet).
attraction = WALT_DISNEY_WORLD.get_attraction("80010177") # Pirates of the Caribbean
# Loading is EXPLICIT — attribute access does NOT auto-load.
await attraction.load()
print(attraction.name) # str
wait = attraction.wait_time # WaitTime | None
if wait is not None:
print("Standby (min):", wait.standby_minutes)
print("Status:", wait.status)
park = await attraction.theme_park() # ThemePark | None
if park is not None:
print("In park:", park.name)
await mousetools.aclose() # close the shared default client(s)
asyncio.run(main())
License
This project is distributed under the MIT license. For more information see LICENSE
Disclaimer
This project is in no way affiliated with The Walt Disney Company and all use of Disney Services is subject to the Disney Terms of Use.
About Project
MouseTools is a passion project I've been working on since 2018 when I was first learning Python. The package has evolved and been rewritten multiple times as I've become a better developer and as the Disney API has changed. There is a lot of time exploring Disney's API and figuring out how all the pieces work before any code is even written. I work on this project when I have time or when I have an idea for another project that could use this data.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mousetools-6.0.0.tar.gz.
File metadata
- Download URL: mousetools-6.0.0.tar.gz
- Upload date:
- Size: 140.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.2.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf3ab6faffd1e664bb7a9bf7472777891bc1b0ca445608fc439b23d904b8419a
|
|
| MD5 |
88113204b190dac587468e6fc6baf777
|
|
| BLAKE2b-256 |
28b15951109b14c67b9f68b114839c1aa510e32e534a719426377e38b351d652
|
File details
Details for the file mousetools-6.0.0-py3-none-any.whl.
File metadata
- Download URL: mousetools-6.0.0-py3-none-any.whl
- Upload date:
- Size: 155.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.2.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
513dd71525ee3007c536c7d6fabab6295d7215042cd5de36bdaf54f40d6bf4e9
|
|
| MD5 |
6acd0596c5cb942866b3bbc962776dc5
|
|
| BLAKE2b-256 |
ac57a34df9fc637e0ce72f2d14dc31cf6aa189b0f02e85b3582f1186b2b3ca30
|