gen-data-model


Namegen-data-model JSON
Version 2.3.2 PyPI version JSON
download
home_pagehttps://vroncevic.github.io/gen_data_model/
SummaryPython App/Tool/Script Utilities
upload_time2023-12-27 18:13:26
maintainer
docs_urlNone
authorVladimir Roncevic
requires_python>=3.10
licenseGPL 2017 - 2024 Free software to use and distributed it.
keywords data model django flask sqlalchemy
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <img align="right" src="https://raw.githubusercontent.com/vroncevic/gen_data_model/dev/docs/gen_data_model_logo.png" width="25%">

# Generate Data Model (Django/Flask/SQLAlchemy)

**gen_data_model** is tool generator of data model for

* Django FWK
* Flask FWK
* SQLAlchemy FWK

Developed in **[python](https://www.python.org/)** code.

The README is used to introduce the modules and provide instructions on
how to install the modules, any machine dependencies it may have and any
other information that should be provided before the modules are installed.

[![gen_data_model python checker](https://github.com/vroncevic/gen_data_model/actions/workflows/gen_data_model_python_checker.yml/badge.svg)](https://github.com/vroncevic/gen_data_model/actions/workflows/gen_data_model_python_checker.yml) [![gen_data_model package checker](https://github.com/vroncevic/gen_data_model/actions/workflows/gen_data_model_package_checker.yml/badge.svg)](https://github.com/vroncevic/gen_data_model/actions/workflows/gen_data_model_package.yml) [![GitHub issues open](https://img.shields.io/github/issues/vroncevic/gen_data_model.svg)](https://github.com/vroncevic/gen_data_model/issues) [![GitHub contributors](https://img.shields.io/github/contributors/vroncevic/gen_data_model.svg)](https://github.com/vroncevic/gen_data_model/graphs/contributors)

<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of Contents**

- [Installation](#installation)
    - [Install using pip](#install-using-pip)
    - [Install using build](#install-using-build)
    - [Install using py setup](#install-using-py-setup)
    - [Install using docker](#install-using-docker)
- [Dependencies](#dependencies)
- [Tool structure](#tool-structure)
- [Docs](#docs)
- [Contributing](#contributing)
- [Copyright and licence](#copyright-and-licence)

<!-- END doctoc generated TOC please keep comment here to allow auto update -->

### Installation

Used next development environment

![debian linux os](https://raw.githubusercontent.com/vroncevic/gen_data_model/dev/docs/debtux.png)

[![gen_data_model python3 build](https://github.com/vroncevic/gen_data_model/actions/workflows/gen_data_model_python3_build.yml/badge.svg)](https://github.com/vroncevic/gen_data_model/actions/workflows/gen_data_model_python3_build.yml)

Currently there are three ways to install tool
* Install process based on using pip mechanism
* Install process based on build mechanism
* Install process based on setup.py mechanism
* Install process based on docker mechanism

##### Install using pip

Python is located at **[pypi.org](https://pypi.org/project/gen_data_model/)**.

You can install by using pip

```bash
#python3
pip3 install gen_data_model
```

##### Install using build

Navigate to **[release page](https://github.com/vroncevic/gen_data_model/releases)** download and extract release archive.

To install **gen_data_model** run

```bash
tar xvzf gen_data_model-x.y.z.tar.gz
cd gen_data_model-x.y.z
# python3
wget https://bootstrap.pypa.io/get-pip.py
python3 get-pip.py 
python3 -m pip install --upgrade setuptools
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade build
pip3 install -r requirements.txt
python3 -m build --no-isolation --wheel
pip3 install dist/gen_data_model-x.y.z-py3-none-any.whl
rm -f get-pip.py
```

##### Install using py setup

Navigate to **[release page](https://github.com/vroncevic/gen_data_model/releases)** download and extract release archive.

To install **gen_data_model** locate and run setup.py

```bash
tar xvzf gen_data_model-x.y.z.tar.gz
cd gen_data_model-x.y.z
#python2
pip install -r requirements.txt
python setup.py install_lib
python setup.py install_egg_info
python setup.py install_data
#python3
pip3 install -r requirements.txt
python3 setup.py install_lib
python3 setup.py install_egg_info
python3 setup.py install_data
```

##### Install using docker

You can use Dockerfile to create image/container.

### Dependencies

**gen_data_model** requires next modules and libraries

* [ats-utilities - Python App/Tool/Script Utilities](https://vroncevic.github.io/gen_data_model)

### Tool structure

**gen_data_model** is based on OOP

Generator structure

```bash
gen_data_model/
    ├── conf/
    │   ├── gen_data_model.cfg
    │   ├── gen_data_model.logo
    │   ├── gen_data_model_util.cfg
    │   ├── model_types.yaml
    │   └── template/
    │       ├── django_base_model.template
    │       ├── django.template
    │       ├── flask_base_model.template
    │       ├── flask.template
    │       ├── sqlalchemy_base_model.template
    │       └── sqlalchemy.template
    ├── __init__.py
    ├── log/
    │   └── gen_data_model.log
    ├── pro/
    │   ├── __init__.py
    │   ├── read_template.py
    │   └── write_template.py
    └── run/
        └── gen_data_model_run.py
    
    6 directories, 16 files
```

### Docs

[![Documentation Status](https://readthedocs.org/projects/gen_data_model/badge/?version=latest)](https://gen-data-model.readthedocs.io/projects/gen_data_model/en/latest/?badge=latest)

More documentation and info at

* [gen_data_model.readthedocs.io](https://gen-data-model.readthedocs.io/en/latest/)
* [www.python.org](https://www.python.org/)

### Contributing

[Contributing to gen_data_model](CONTRIBUTING.md)

### Copyright and licence

[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

Copyright (C) 2017 - 2024 by [vroncevic.github.io/gen_data_model](https://vroncevic.github.io/gen_data_model/)

**gen_data_model** is free software; you can redistribute it and/or modify
it under the same terms as Python itself, either Python version 3.x or,
at your option, any later version of Python 3 you may have available.

Lets help and support PSF.

[![Python Software Foundation](https://raw.githubusercontent.com/vroncevic/gen_data_model/dev/docs/psf-logo-alpha.png)](https://www.python.org/psf/)

[![Donate](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.python.org/psf/donations/)

            

Raw data

            {
    "_id": null,
    "home_page": "https://vroncevic.github.io/gen_data_model/",
    "name": "gen-data-model",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": "",
    "keywords": "data model,django,flask,sqlalchemy",
    "author": "Vladimir Roncevic",
    "author_email": "elektron.ronca@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/42/0a/1598a0b5cc3d33cb7e2e3a184f59f3aad8e2bb7c811f33d1f83826a69ccb/gen_data_model-2.3.2.tar.gz",
    "platform": "POSIX",
    "description": "<img align=\"right\" src=\"https://raw.githubusercontent.com/vroncevic/gen_data_model/dev/docs/gen_data_model_logo.png\" width=\"25%\">\n\n# Generate Data Model (Django/Flask/SQLAlchemy)\n\n**gen_data_model** is tool generator of data model for\n\n* Django FWK\n* Flask FWK\n* SQLAlchemy FWK\n\nDeveloped in **[python](https://www.python.org/)** code.\n\nThe README is used to introduce the modules and provide instructions on\nhow to install the modules, any machine dependencies it may have and any\nother information that should be provided before the modules are installed.\n\n[![gen_data_model python checker](https://github.com/vroncevic/gen_data_model/actions/workflows/gen_data_model_python_checker.yml/badge.svg)](https://github.com/vroncevic/gen_data_model/actions/workflows/gen_data_model_python_checker.yml) [![gen_data_model package checker](https://github.com/vroncevic/gen_data_model/actions/workflows/gen_data_model_package_checker.yml/badge.svg)](https://github.com/vroncevic/gen_data_model/actions/workflows/gen_data_model_package.yml) [![GitHub issues open](https://img.shields.io/github/issues/vroncevic/gen_data_model.svg)](https://github.com/vroncevic/gen_data_model/issues) [![GitHub contributors](https://img.shields.io/github/contributors/vroncevic/gen_data_model.svg)](https://github.com/vroncevic/gen_data_model/graphs/contributors)\n\n<!-- START doctoc generated TOC please keep comment here to allow auto update -->\n<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->\n**Table of Contents**\n\n- [Installation](#installation)\n    - [Install using pip](#install-using-pip)\n    - [Install using build](#install-using-build)\n    - [Install using py setup](#install-using-py-setup)\n    - [Install using docker](#install-using-docker)\n- [Dependencies](#dependencies)\n- [Tool structure](#tool-structure)\n- [Docs](#docs)\n- [Contributing](#contributing)\n- [Copyright and licence](#copyright-and-licence)\n\n<!-- END doctoc generated TOC please keep comment here to allow auto update -->\n\n### Installation\n\nUsed next development environment\n\n![debian linux os](https://raw.githubusercontent.com/vroncevic/gen_data_model/dev/docs/debtux.png)\n\n[![gen_data_model python3 build](https://github.com/vroncevic/gen_data_model/actions/workflows/gen_data_model_python3_build.yml/badge.svg)](https://github.com/vroncevic/gen_data_model/actions/workflows/gen_data_model_python3_build.yml)\n\nCurrently there are three ways to install tool\n* Install process based on using pip mechanism\n* Install process based on build mechanism\n* Install process based on setup.py mechanism\n* Install process based on docker mechanism\n\n##### Install using pip\n\nPython is located at **[pypi.org](https://pypi.org/project/gen_data_model/)**.\n\nYou can install by using pip\n\n```bash\n#python3\npip3 install gen_data_model\n```\n\n##### Install using build\n\nNavigate to **[release page](https://github.com/vroncevic/gen_data_model/releases)** download and extract release archive.\n\nTo install **gen_data_model** run\n\n```bash\ntar xvzf gen_data_model-x.y.z.tar.gz\ncd gen_data_model-x.y.z\n# python3\nwget https://bootstrap.pypa.io/get-pip.py\npython3 get-pip.py \npython3 -m pip install --upgrade setuptools\npython3 -m pip install --upgrade pip\npython3 -m pip install --upgrade build\npip3 install -r requirements.txt\npython3 -m build --no-isolation --wheel\npip3 install dist/gen_data_model-x.y.z-py3-none-any.whl\nrm -f get-pip.py\n```\n\n##### Install using py setup\n\nNavigate to **[release page](https://github.com/vroncevic/gen_data_model/releases)** download and extract release archive.\n\nTo install **gen_data_model** locate and run setup.py\n\n```bash\ntar xvzf gen_data_model-x.y.z.tar.gz\ncd gen_data_model-x.y.z\n#python2\npip install -r requirements.txt\npython setup.py install_lib\npython setup.py install_egg_info\npython setup.py install_data\n#python3\npip3 install -r requirements.txt\npython3 setup.py install_lib\npython3 setup.py install_egg_info\npython3 setup.py install_data\n```\n\n##### Install using docker\n\nYou can use Dockerfile to create image/container.\n\n### Dependencies\n\n**gen_data_model** requires next modules and libraries\n\n* [ats-utilities - Python App/Tool/Script Utilities](https://vroncevic.github.io/gen_data_model)\n\n### Tool structure\n\n**gen_data_model** is based on OOP\n\nGenerator structure\n\n```bash\ngen_data_model/\n    \u251c\u2500\u2500 conf/\n    \u2502\u00a0\u00a0 \u251c\u2500\u2500 gen_data_model.cfg\n    \u2502\u00a0\u00a0 \u251c\u2500\u2500 gen_data_model.logo\n    \u2502\u00a0\u00a0 \u251c\u2500\u2500 gen_data_model_util.cfg\n    \u2502\u00a0\u00a0 \u251c\u2500\u2500 model_types.yaml\n    \u2502\u00a0\u00a0 \u2514\u2500\u2500 template/\n    \u2502\u00a0\u00a0     \u251c\u2500\u2500 django_base_model.template\n    \u2502\u00a0\u00a0     \u251c\u2500\u2500 django.template\n    \u2502\u00a0\u00a0     \u251c\u2500\u2500 flask_base_model.template\n    \u2502\u00a0\u00a0     \u251c\u2500\u2500 flask.template\n    \u2502\u00a0\u00a0     \u251c\u2500\u2500 sqlalchemy_base_model.template\n    \u2502\u00a0\u00a0     \u2514\u2500\u2500 sqlalchemy.template\n    \u251c\u2500\u2500 __init__.py\n    \u251c\u2500\u2500 log/\n    \u2502\u00a0\u00a0 \u2514\u2500\u2500 gen_data_model.log\n    \u251c\u2500\u2500 pro/\n    \u2502\u00a0\u00a0 \u251c\u2500\u2500 __init__.py\n    \u2502\u00a0\u00a0 \u251c\u2500\u2500 read_template.py\n    \u2502\u00a0\u00a0 \u2514\u2500\u2500 write_template.py\n    \u2514\u2500\u2500 run/\n        \u2514\u2500\u2500 gen_data_model_run.py\n    \n    6 directories, 16 files\n```\n\n### Docs\n\n[![Documentation Status](https://readthedocs.org/projects/gen_data_model/badge/?version=latest)](https://gen-data-model.readthedocs.io/projects/gen_data_model/en/latest/?badge=latest)\n\nMore documentation and info at\n\n* [gen_data_model.readthedocs.io](https://gen-data-model.readthedocs.io/en/latest/)\n* [www.python.org](https://www.python.org/)\n\n### Contributing\n\n[Contributing to gen_data_model](CONTRIBUTING.md)\n\n### Copyright and licence\n\n[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n\nCopyright (C) 2017 - 2024 by [vroncevic.github.io/gen_data_model](https://vroncevic.github.io/gen_data_model/)\n\n**gen_data_model** is free software; you can redistribute it and/or modify\nit under the same terms as Python itself, either Python version 3.x or,\nat your option, any later version of Python 3 you may have available.\n\nLets help and support PSF.\n\n[![Python Software Foundation](https://raw.githubusercontent.com/vroncevic/gen_data_model/dev/docs/psf-logo-alpha.png)](https://www.python.org/psf/)\n\n[![Donate](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.python.org/psf/donations/)\n",
    "bugtrack_url": null,
    "license": "GPL 2017 - 2024 Free software to use and distributed it.",
    "summary": "Python App/Tool/Script Utilities",
    "version": "2.3.2",
    "project_urls": {
        "Homepage": "https://vroncevic.github.io/gen_data_model/"
    },
    "split_keywords": [
        "data model",
        "django",
        "flask",
        "sqlalchemy"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e59a39ef07b3453c56e62cdc2d5c16f562dc5a8064ae309a061b4300904897db",
                "md5": "62df903b1796c21ccb54a9343ff0e269",
                "sha256": "311697d83077be6e35443e8db7b1a18b5578af57b108c9de4de22c78d5181893"
            },
            "downloads": -1,
            "filename": "gen_data_model-2.3.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "62df903b1796c21ccb54a9343ff0e269",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 33701,
            "upload_time": "2023-12-27T18:13:24",
            "upload_time_iso_8601": "2023-12-27T18:13:24.420959Z",
            "url": "https://files.pythonhosted.org/packages/e5/9a/39ef07b3453c56e62cdc2d5c16f562dc5a8064ae309a061b4300904897db/gen_data_model-2.3.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "420a1598a0b5cc3d33cb7e2e3a184f59f3aad8e2bb7c811f33d1f83826a69ccb",
                "md5": "8864c5e3852de363f382b474cf1b37fb",
                "sha256": "920a9676fb025a2188701a3420060c1f9dd6b809b1a217131eaf5deef1483d27"
            },
            "downloads": -1,
            "filename": "gen_data_model-2.3.2.tar.gz",
            "has_sig": false,
            "md5_digest": "8864c5e3852de363f382b474cf1b37fb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 24878,
            "upload_time": "2023-12-27T18:13:26",
            "upload_time_iso_8601": "2023-12-27T18:13:26.256168Z",
            "url": "https://files.pythonhosted.org/packages/42/0a/1598a0b5cc3d33cb7e2e3a184f59f3aad8e2bb7c811f33d1f83826a69ccb/gen_data_model-2.3.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-27 18:13:26",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "gen-data-model"
}
        
Elapsed time: 0.25519s