Rendered at 17:53:12 GMT+0000 (Coordinated Universal Time) with Cloudflare Workers.
whinvik 31 minutes ago [-]
Thanks. I heard the word ABI so many times but only finally understood it after reading this blog.
On another topic, I also feel like quansight blog is usually a high quality resource for Python related stuff. Usually its more for numpy/scipy kind of stuff, but this one is an example of more general Python related stuff.
voidUpdate 3 hours ago [-]
> import numpy
> np.array([1,2])
NameError: name 'np' is not defined
I think the article probably wanted "import numpy as np"
gregdaniels421 1 hours ago [-]
I mean it was part of a picture, and `import numpy as np` is literally used everywhere. The rest of the article seems generally accurate, and not too AI-y
auntienomen 1 hours ago [-]
Glad to see that Cython got a shout out here. It's not that widely used, but it's a lovely experience. It uses the CPython ABI to drastically reduce the friction of switching between C & Python.
On another topic, I also feel like quansight blog is usually a high quality resource for Python related stuff. Usually its more for numpy/scipy kind of stuff, but this one is an example of more general Python related stuff.
> np.array([1,2])
NameError: name 'np' is not defined
I think the article probably wanted "import numpy as np"