servo/python/mach
2023-11-29 16:45:51 +00:00
..
mach Fix build script error.because starting with Python 3.9, the util module was moved from importlib to a separate top-level module called importlib.util. Therefore, if you are using Python 3.9 or later and you receive an AttributeError stating that module 'importlib' has no attribute 'util', it is likely due to a compatibility issue with your code. You can fix this issue by updating your code to import importlib.util directly (#30796) 2023-11-29 16:45:51 +00:00
mach.egg-info Vendor mach-1.0.0. 2021-12-21 10:57:18 -05:00
PKG-INFO Vendor mach-1.0.0. 2021-12-21 10:57:18 -05:00
README.rst Vendor mach-1.0.0. 2021-12-21 10:57:18 -05:00
setup.cfg Vendor mach-1.0.0. 2021-12-21 10:57:18 -05:00
setup.py Stop using distutils (#30638) 2023-10-28 17:17:57 +00:00

====
mach
====

Mach (German for *do*) is a generic command dispatcher for the command
line.

To use mach, you install the mach core (a Python package), create an
executable *driver* script (named whatever you want), and write mach
commands. When the *driver* is executed, mach dispatches to the
requested command handler automatically.

To learn more, read the docs in ``docs/``.