GithubHelp home page GithubHelp logo

isabella232 / sqlalchemy_model_markdown_generator Goto Github PK

View Code? Open in Web Editor NEW

This project forked from neulandagentur/sqlalchemy_model_markdown_generator

0.0 0.0 0.0 6 KB

๐Ÿ“‹ Turn your SQLAlchemy model class into a markdown table.

License: MIT License

Python 100.00%

sqlalchemy_model_markdown_generator's Introduction

SQLAlchemy model markdown generator

Turn your sqlalchemy models into a markdown table.

Example

The generator turns this

from sqlalchemy import Column, Integer, String, Boolean
from sqlalchemy.ext.declarative import declarative_base
Model = declarative_base(name='Model')

class TestModel(Model):
    __tablename__ = 'test_model'

    id = Column(Integer, primary_key=True)
    name = Column(String, nullable=False)
    email = Column(String, unique=True)
    active = Column(Boolean)

into this:

name type unique nullable
id INTEGER None False
name VARCHAR None False
email VARCHAR True True
active BOOLEAN None True

with following script:

from generator import Generator
from test_model import TestModel

md_table_generator = Generator(TestModel, fields=('name','type', 'unique', 'nullable'))
md_table_generator.generate_file('table.md')

Usage

  • Download generator.py. (Maybe available via pip in the future).
  • Import it
  • Create and instance of the Generator class
  • First arg needs to be an sqlalchemy model
  • Seconds is a tuple of columns you want to show in your table
  • Call the generate_file method and pass the filename
  • Your ready to go!

sqlalchemy_model_markdown_generator's People

Contributors

janmarkuslanger avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.