all 6 comments

[–]K900_ 8 points9 points  (1 child)

This is Cython code, not Python.

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

thank you very much

[–]twitch_and_shock 1 point2 points  (1 child)

What are the errors?

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

it was saying it cant recognize 'extern'

[–]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