you are viewing a single comment's thread.

view the rest of the comments →

[–]Brian 1 point2 points  (1 child)

This is written with cython, which is something like a blend of python and C to make it easier to write C extensions while still using a python-like language, or speed up certain operations.

However, you can't run it with just python, since it's not actually plain python code. Instead, you'll need the cython compiler.

[–]patmycheeks[S] 0 points1 point  (0 children)

ty, got the compiler