django-model-viewer


Namedjango-model-viewer JSON
Version 1.1.3 PyPI version JSON
download
home_pagehttps://github.com/lysykot/django-model-viewer
SummaryA useful tool for viewing Django models, their relationships and functions.
upload_time2024-09-07 09:38:31
maintainerNone
docs_urlNone
authorMikołaj Łysakowski
requires_pythonNone
licenseThis software may be used, modified, and distributed freely for personal, educational, or research purposes. Commercial use, including but not limited to selling or offering the software as part of a product or service, is prohibited without prior written permission from the author.
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# django-model-viewer

An application that facilitates identification and operation on models. 

It searches for all available models in the project and allows you to select and view details about them by holding the mouse on the parameter of interest. 

After selecting the path between models through relations, after clicking CREATE we will get a path that allows you to get to the last model. 

It is also possible to select a model and click on its name and it will take you to Visual Studio Code to the file and line of the given model.


## Installation



```bash
  pip install django-model-viewer
```

Open your project settings and add:

```py
INSTALLED_APPS = [
    ***
    'django_model_viewer',
    ***
]
```

Add path to main urls file

```py
urlpatterns = [
    path('models-view/', include('django_model_viewer.urls')),
    ***
]
```

### Run server and use at '/models-view' url

## Authors

- self




            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/lysykot/django-model-viewer",
    "name": "django-model-viewer",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "Miko\u0142aj \u0141ysakowski",
    "author_email": "mikolaj.lysakowski01@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/cc/08/9e42e7ddadd8de129e305b17510ddee62097397b2514fad040aa2fcc2d5d/django-model-viewer-1.1.3.tar.gz",
    "platform": null,
    "description": "\n# django-model-viewer\n\nAn application that facilitates identification and operation on models. \n\nIt searches for all available models in the project and allows you to select and view details about them by holding the mouse on the parameter of interest. \n\nAfter selecting the path between models through relations, after clicking CREATE we will get a path that allows you to get to the last model. \n\nIt is also possible to select a model and click on its name and it will take you to Visual Studio Code to the file and line of the given model.\n\n\n## Installation\n\n\n\n```bash\n  pip install django-model-viewer\n```\n\nOpen your project settings and add:\n\n```py\nINSTALLED_APPS = [\n    ***\n    'django_model_viewer',\n    ***\n]\n```\n\nAdd path to main urls file\n\n```py\nurlpatterns = [\n    path('models-view/', include('django_model_viewer.urls')),\n    ***\n]\n```\n\n### Run server and use at '/models-view' url\n\n## Authors\n\n- self\n\n\n\n",
    "bugtrack_url": null,
    "license": "This software may be used, modified, and distributed freely for personal, educational, or research purposes. Commercial use, including but not limited to selling or offering the software as part of a product or service, is prohibited without prior written permission from the author.",
    "summary": "A useful tool for viewing Django models, their relationships and functions.",
    "version": "1.1.3",
    "project_urls": {
        "Homepage": "https://github.com/lysykot/django-model-viewer"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d6d42485435e70c08487aed4325d97a6ef46d5143a81dd909df1e8c554fa994",
                "md5": "bf210410417fa4883b8f246c639231de",
                "sha256": "099b68682889e69fa0044088af31d11813be1940dfd7701e27ac46dc621cc63a"
            },
            "downloads": -1,
            "filename": "django_model_viewer-1.1.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "bf210410417fa4883b8f246c639231de",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 23392,
            "upload_time": "2024-09-07T09:38:30",
            "upload_time_iso_8601": "2024-09-07T09:38:30.089242Z",
            "url": "https://files.pythonhosted.org/packages/2d/6d/42485435e70c08487aed4325d97a6ef46d5143a81dd909df1e8c554fa994/django_model_viewer-1.1.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc089e42e7ddadd8de129e305b17510ddee62097397b2514fad040aa2fcc2d5d",
                "md5": "9ae4d9b6a675e15ddc1ca625b0d2354e",
                "sha256": "57ff2370f49e60b5aaaae91bc6f645b9cfeb19ae9eb3e8d622cc354f50e06ec7"
            },
            "downloads": -1,
            "filename": "django-model-viewer-1.1.3.tar.gz",
            "has_sig": false,
            "md5_digest": "9ae4d9b6a675e15ddc1ca625b0d2354e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 6612,
            "upload_time": "2024-09-07T09:38:31",
            "upload_time_iso_8601": "2024-09-07T09:38:31.771557Z",
            "url": "https://files.pythonhosted.org/packages/cc/08/9e42e7ddadd8de129e305b17510ddee62097397b2514fad040aa2fcc2d5d/django-model-viewer-1.1.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-07 09:38:31",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "lysykot",
    "github_project": "django-model-viewer",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "django-model-viewer"
}
        
Elapsed time: 0.56670s