After I integrated Channels, Redis to my Django server I noticed I cannot access files inside my HTTP views.
For instance,
df = pd.read_csv(full_path, etc)
I am working on Windows 10, pipenv environment,
Django@3.1.7
Python@3.8.x
Channels@3.0.3
Channels-Redis@3.2.0
Once I remove the asgi declaration line and channels from the settings.py file everything works as expected.
After I integrated Channels, Redis to my Django server I noticed I cannot access files inside my HTTP views.
For instance,
df = pd.read_csv(full_path, etc)I am working on Windows 10, pipenv environment,
Django@3.1.7
Python@3.8.x
Channels@3.0.3
Channels-Redis@3.2.0
Once I remove the asgi declaration line and channels from the settings.py file everything works as expected.