Django App Name Conflict with Dash Package

So, I have a django app named dash. And I want to include dash plotly package into dash django app using this. When I import dash, it imported my django app instead of dash plotly package.

>>> import dash
>>> dash
<module 'dash' from '/Users/username/Documents/project_folder/project_name/dash/__init__.py'>

How to solve it without rename the whole django app name (because I have to change everything like model, table, migration, etc.)?

I think you will have to rename the app, can’t have two package with same name.