Having trouble with the import pigpio in micropython.
The pigpio.py file has lots of stuff micropython does not like.
But I did get the pigs command line stuff to work.
MicroPython is targeting full language compatibility to cPython at the core, but not on the module level. To be precise commonly used modules are offering subset of cPython modules with subset of functions, but these are intended to work on the same way if possible. Keep in mind that MicroPython is for microcontrollers with limited resources primarily.
There is an ongoing discussion at GitHub on the hw independent hardware layer module which will offer use of peripherial devices like I/O, serial line, i2c, spi, pwm, etc. Later this can be implemented for RPi too.
Now you can use os.system to call a command line tool from MicroPython.
Also you can make your own MicroPython module using libffi to interface external C libraries. Study source code of MicroPython.
MicroPython forum is another source of information, community is great and core developers are active there. Use it for MicroPython related stuff.