I'm trying to import a package in which one of the namespaces is the keyword 'import'. How is it best to do this? Would the folder need to be renamed?
Example:
import protobuf.import.import_enum_pb2 as importEnum
This gives an invalid syntax error.
I have started to look at using __ import __
function instead-but wondered if there is a better workaround I haven't found a quotation or escaping method that works.