Created
January 28, 2016 09:47
-
-
Save nicholasamorim/92866b0bb392f345fe5a to your computer and use it in GitHub Desktop.
Importing all SqlAlchemy models classes dynamically - look in a module for all subclasses of specific class and import it into localnamespace
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import inspect | |
import pkgutil | |
def import_all_subclasses_of(module_to_scan, baseclass, scope): | |
""" | |
:param module_to_scan: Module to scan. | |
:param baseclass: A base class to check. | |
:param scope: globals(), locals() or a dict-like object. | |
""" | |
path = module_to_scan.__path__ | |
for mod in pkgutil.iter_modules(path): | |
module = mod[0].find_module(mod[1]).load_module(mod[1]) | |
for name, obj in inspect.getmembers(module, inspect.isclass): | |
if issubclass(obj, baseclass) and name != baseclass.__name__: | |
scope[name] = obj | |
# You could use it like this: | |
# from app import models | |
# from sqlalchemy.ext.declarative import declarative_base | |
# Model = declarative_base(name='Model') | |
# def init_db(): | |
# import_all_subclasses_of(models, Model, locals()) | |
# Model.metadata.create_all(bind=engine) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment