psyco module in python

i am trying to use

import psyco

psyco.full()

in my python code but it gives a runtime error NZEC

Traceback (most recent call last):

File “./prog.py”, line 3, in

ModuleNotFoundError: No module named ‘psyco’

2 Likes

It’s not part of the Standard Library: The Python Standard Library — Python 3.11.3 documentation

You could instead submit standard Python code under Pypy which is a compiled version. Best to check that everything compiles and works in the IDE first.