Skip to main content

Parser for Different Python Models (Pydantic, Enums, ORMs: Tortoise, SqlAlchemy, GinoORM) to extract information about columns(attrs), model, table args,etc in one format.

Project description

Py-Models-Parser

badge1 badge2 badge3 workflow

It’s as second Parser that done by me, first is a https://github.com/xnuinside/simple-ddl-parser for SQL DDL with different dialects. Py-Models-Parser supports now ORM Sqlalchemy, Gino, Tortoise; Pydantic, Python Enum models & in nearest feature I plan to add Dataclasses & pure pyton classes. And next will be added other ORMs models.

Py-Models-Parser written with PEG parser and it’s python implementation - parsimonious. Py-Models-Parser take as input different Python code with Models and provide output in standard form:

[
    'name': 'ModelName',
    'parents': ['BaseModel'], # class parents that defined in (), for example: `class MaterialType(str, Enum):` parents - str, Enum
    'attrs':
{
    'type': 'integer',
    'name': 'attr_name',
    'default': 'default_value',
    'properties': {
        ...
    }
},
'properties': {
    'table_name': ...
}
]

For ORM models ‘attrs’ contains Columns of course.

3 keys - ‘type’, ‘name’, ‘default’ exists in parse result ‘attrs’ of all Models ‘properties’ key contains additional information for attribut or column depend on Model type, for example, in ORM models it can contains ‘foreign_key’ key if this column used ForeignKey, or ‘server_default’ if it is a SqlAlchemy model or GinoORM.

Model level ‘properties’ contains information relative to model, for example, if it ORM model - table_name

NOTE: it’s is a text parser, so it don’t import or load your code, parser work with source code as text, not objects in Python. So to run parser you DO NOT NEED install dependencies for models, that you tries to parse - only models.

How to install

pip install py-models-parser

How to use

Library detect automaticaly that type of models you tries to parse. You can check a lot of examples in test/ folder on the GitHub

You can parse models from python string:

from py_models_parser.core import parse

models_str =  """from gino import Gino

db = Gino()


class OrderItems(db.Model):

    __tablename__ = 'order_items'

    product_no = db.Column(db.Integer(), db.ForeignKey('products.product_no'), ondelete="RESTRICT", primary_key=True)
    order_id = db.Column(db.Integer(), db.ForeignKey('orders.order_id'), ondelete="CASCADE", primary_key=True)
    type = db.Column(db.Integer(), db.ForeignKey('types.type_id'), ondelete="RESTRICT", onupdate="CASCADE")

    """
result = parse(models_str)

It will produce the result:

[
    {
        "attrs": [
            {
                "default": None,
                "name": "product_no",
                "properties": {
                    "foreign_key": "'products.product_no'",
                    "ondelete": '"RESTRICT"',
                    "primary_key": "True",
                },
                "type": "db.Integer()",
            },
            {
                "default": None,
                "name": "order_id",
                "properties": {
                    "foreign_key": "'orders.order_id'",
                    "ondelete": '"CASCADE"',
                    "primary_key": "True",
                },
                "type": "db.Integer()",
            },
            {
                "default": None,
                "name": "type",
                "properties": {
                    "foreign_key": "'types.type_id'",
                    "ondelete": '"RESTRICT"',
                    "onupdate": '"CASCADE"',
                },
                "type": "db.Integer()",
            },
        ],
        "name": "OrderItems",
        "parents": ["db.Model"],
        "properties": {"table_name": "'order_items'"},
    }
]

TODO: in next Release

  1. Parse from file method

  2. Add cli

  3. Add more tests for supported models (and fix existed not covered cases): Pydantic, Enums, Dataclasses, SQLAlchemy Models, GinoORM models, TortoiseORM models

  4. Add support for pure Python classes

  5. Add support for pure SQLAlchemy Core Tables

Changelog

v0.1.1

  1. Added base parser logic & tests for Pydantic, Enums, SQLAlchemy Models, GinoORM models, TortoiseORM models

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

py-models-parser-0.1.1.tar.gz (7.4 kB view hashes)

Uploaded Source

Built Distribution

py_models_parser-0.1.1-py3-none-any.whl (7.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page