keeping it backwards compatible + conditional warning similar to https://github.com/karlicoss/HPI/pull/179 follow up for https://github.com/seanbreckenridge/HPI/pull/18 for now without the __path__ hacking, will do it in bulk later too lazy to run test_import_warnings.sh on CI for now, but figured I'd commit it for the reference anyway
56 lines
1.9 KiB
Python
56 lines
1.9 KiB
Python
"""
|
|
This is here temporarily, for backwards compatibility purposes
|
|
It should be removed in the future, and you should replace any imports
|
|
like:
|
|
from my.fbmessenger import ...
|
|
to:
|
|
from my.fbmessenger.export import ...
|
|
since that allows for easier overriding using namespace packages
|
|
https://github.com/karlicoss/HPI/issues/102
|
|
"""
|
|
# TODO ^^ later, replace the above with from my.fbmessenger.all, when we add more data sources
|
|
|
|
# For now, including this here, since importing the module
|
|
# causes .export to be imported, which requires fbmessengerexport
|
|
REQUIRES = [
|
|
'git+https://github.com/karlicoss/fbmessengerexport',
|
|
]
|
|
|
|
import re
|
|
import inspect
|
|
|
|
|
|
mname = 'fbmessenger' # todo infer from __name__?
|
|
|
|
|
|
# allow stuff like 'import my.module.submodule' and such
|
|
imported_as_parent = False
|
|
|
|
# allow stuff like 'from my.module import submodule'
|
|
importing_submodule = False
|
|
|
|
# some hacky traceback to inspect the current stack
|
|
# to see if the user is using the old style of importing
|
|
for f in inspect.stack():
|
|
# seems that when a submodule is imported, at some point it'll call some internal import machinery
|
|
# with 'parent' set to the parent module
|
|
# if parent module is imported first (i.e. in case of deprecated usage), it won't be the case
|
|
args = inspect.getargvalues(f.frame)
|
|
if args.locals.get('parent') == f'my.{mname}':
|
|
imported_as_parent = True
|
|
|
|
# this we can only detect from the code I guess
|
|
line = '\n'.join(f.code_context or [])
|
|
if re.match(rf'from\s+my\.{mname}\s+import\s+export', line):
|
|
# todo 'export' is hardcoded, not sure how to infer allowed objects anutomatically..
|
|
importing_submodule = True
|
|
|
|
warn = not (imported_as_parent or importing_submodule)
|
|
|
|
if warn:
|
|
from my.core import warnings as W
|
|
# TODO: add link to instructions to migrate
|
|
W.high("DEPRECATED! Instead of my.fbmessengerexport, import from my.fbmessengerexport.export")
|
|
|
|
|
|
from .export import *
|