I need to use the django-emoji and the emoji library in a single Django project. Both installed via pip. Both of these libraries get imported from a package named emoji:
When importing from django-emoji:
from emoji import Emoji
When importing from emoji:
from emoji.core import get_emoji_regexp
Any idea how to rename the package a library installs to and yet still have it installed via pip?