Latest Senses
Sences tagged with "Cythonized"
Published on Jan. 21, 2023 by haradhansharma
/
Python
/
Cythonized
/
Cython
/
We demonstrate how to convert Python modules into Cythonized ones in this sense.
Typically, when using Cython, only a few selected modules of the program are Cythonized.
Examining a very basic Python module that we could put in `wsgi.py`.
import os
import sys
if os.name != 'nt':
path = '/home/usr/public_html'
python_path = '/home/user/env/lib/python3.9/site-packages'
sys.path.append(path)
sys.path.append(python_path)
os.environ['DJANGO_SETTINGS_MODULEā¦
293 views