Micropython compatibility

I am trying to set up a simple investment algorithm on a Raspberry Pi Pico W (micropython) but have ran into some issues and I was hoping you wonderful people might be able to help?

After installing the Alpaca API I was found that Micropython doesn’t have the uuid Python package. I have now installed this from the source code (uuid — UUID objects according to RFC 4122 — Python 3.11.3 documentation) but now get the following error:

Traceback (most recent call last):
  File "<stdin>", line 26, in <module>
  File "alpaca/trading/__init__.py", line 1, in <module>
  File "alpaca/trading/client.py", line 1, in <module>
  File "uuid.py", line 376, in _get_command_stdout
SyntaxError: *x must be assignment target

Does anyone know how to correct this? Thank you in advance!