Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/iFamishedX/mapres/llms.txt

Use this file to discover all available pages before exploring further.

mapres is published to PyPI and can be installed with a single pip command. No build tools, no compiled extensions — just a pure-Python package that is ready to import the moment the install finishes.

Installation

pip install mapres

Requirements

mapres has the following requirements:
RequirementVersion
Python>= 3.9
requestslatest compatible
mcrconlatest compatible
PyYamllatest compatible
These dependencies are declared in pyproject.toml and are installed automatically by pip — you do not need to install them separately.
It is good practice to install mapres inside a virtual environment so its dependencies do not conflict with other projects on your system.
python -m venv .venv
source .venv/bin/activate   # Windows: .venv\Scripts\activate
pip install mapres

Verifying the installation

After installing, confirm that mapres is importable and check the version that was installed:
import mapres
print(mapres.__version__)
If the install succeeded you will see the installed version string printed to stdout. If Python raises ModuleNotFoundError, double-check that you are using the same Python environment in which you ran pip install.

Development install

To contribute to mapres or run the latest unreleased code, clone the repository and install the package in editable mode:
git clone https://github.com/iFamishedX/mapres
cd mapres
pip install -e .
Editable mode (-e) means Python imports the package directly from your local src/mapres directory, so any changes you make to the source files are reflected immediately without reinstalling.

Build docs developers (and LLMs) love