django-service


Namedjango-service JSON
Version 0.1.0 PyPI version JSON
download
home_pageNone
SummaryDjango application provide simple category/service details
upload_time2024-12-29 22:23:42
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseMIT License Copyright (c) 2010-present DLRSP (https://dlrsp.org) and other contributors. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords django services
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # django-service [![PyPi license](https://img.shields.io/pypi/l/django-service.svg)](https://pypi.python.org/pypi/django-service)

[![PyPi status](https://img.shields.io/pypi/status/django-service.svg)](https://pypi.python.org/pypi/django-service)
[![PyPi version](https://img.shields.io/pypi/v/django-service.svg)](https://pypi.python.org/pypi/django-service)
[![PyPi python version](https://img.shields.io/pypi/pyversions/django-service.svg)](https://pypi.python.org/pypi/django-service)
[![PyPi downloads](https://img.shields.io/pypi/dm/django-service.svg)](https://pypi.python.org/pypi/django-service)
[![PyPi downloads](https://img.shields.io/pypi/dw/django-service.svg)](https://pypi.python.org/pypi/django-service)
[![PyPi downloads](https://img.shields.io/pypi/dd/django-service.svg)](https://pypi.python.org/pypi/django-service)

## GitHub ![GitHub release](https://img.shields.io/github/tag/DLRSP/django-service.svg) ![GitHub release](https://img.shields.io/github/release/DLRSP/django-service.svg)

## Test [![codecov.io](https://codecov.io/github/DLRSP/django-service/coverage.svg?branch=main)](https://codecov.io/github/DLRSP/django-service?branch=main) [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/DLRSP/django-service/main.svg)](https://results.pre-commit.ci/latest/github/DLRSP/django-service/main) [![gitthub.com](https://github.com/DLRSP/django-service/actions/workflows/ci.yaml/badge.svg)](https://github.com/DLRSP/django-service/actions/workflows/ci.yaml)

## Check Demo Project

- Check the demo repo on [GitHub](https://github.com/DLRSP/example/tree/django-service)

## Requirements

- Python 3.8+ supported.
- Django 4.2+ supported.

## Setup
1. Install from **pip**:
   ```shell
   pip install django-services
   ```
2. Modify `settings.py` by adding the app to `INSTALLED_APPS`:
   ```python
   INSTALLED_APPS = (
       # ...
       "services",
       # ...
   )
   ```
3. Finally, modify your project `urls.py` with handlers for all errors:
   ```python
   # ...other imports...

   urlpatterns = [
       # ...other urls...
   ]
   ```
4. Execute Django's command `migrate` inside your project's root:
   ```shell
   python manage.py migrate
   Running migrations:
    Applying services.0001_initial... OK
   ```

## Run Example Project
```shell
git clone --depth=50 --branch=django-services https://github.com/DLRSP/example.git DLRSP/example
cd DLRSP/example
python manage.py runserver
```

Now browser the app @ http://127.0.0.1:8000

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "django-service",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "django, services",
    "author": null,
    "author_email": "DLRSP <dlrsp.dev@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/a4/aa/3bef4dec6d74def476b90fe042ed1f554707bec30fdcdcf5bd46e264483a/django_service-0.1.0.tar.gz",
    "platform": null,
    "description": "# django-service [![PyPi license](https://img.shields.io/pypi/l/django-service.svg)](https://pypi.python.org/pypi/django-service)\r\n\r\n[![PyPi status](https://img.shields.io/pypi/status/django-service.svg)](https://pypi.python.org/pypi/django-service)\r\n[![PyPi version](https://img.shields.io/pypi/v/django-service.svg)](https://pypi.python.org/pypi/django-service)\r\n[![PyPi python version](https://img.shields.io/pypi/pyversions/django-service.svg)](https://pypi.python.org/pypi/django-service)\r\n[![PyPi downloads](https://img.shields.io/pypi/dm/django-service.svg)](https://pypi.python.org/pypi/django-service)\r\n[![PyPi downloads](https://img.shields.io/pypi/dw/django-service.svg)](https://pypi.python.org/pypi/django-service)\r\n[![PyPi downloads](https://img.shields.io/pypi/dd/django-service.svg)](https://pypi.python.org/pypi/django-service)\r\n\r\n## GitHub ![GitHub release](https://img.shields.io/github/tag/DLRSP/django-service.svg) ![GitHub release](https://img.shields.io/github/release/DLRSP/django-service.svg)\r\n\r\n## Test [![codecov.io](https://codecov.io/github/DLRSP/django-service/coverage.svg?branch=main)](https://codecov.io/github/DLRSP/django-service?branch=main) [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/DLRSP/django-service/main.svg)](https://results.pre-commit.ci/latest/github/DLRSP/django-service/main) [![gitthub.com](https://github.com/DLRSP/django-service/actions/workflows/ci.yaml/badge.svg)](https://github.com/DLRSP/django-service/actions/workflows/ci.yaml)\r\n\r\n## Check Demo Project\r\n\r\n- Check the demo repo on [GitHub](https://github.com/DLRSP/example/tree/django-service)\r\n\r\n## Requirements\r\n\r\n- Python 3.8+ supported.\r\n- Django 4.2+ supported.\r\n\r\n## Setup\r\n1. Install from **pip**:\r\n   ```shell\r\n   pip install django-services\r\n   ```\r\n2. Modify `settings.py` by adding the app to `INSTALLED_APPS`:\r\n   ```python\r\n   INSTALLED_APPS = (\r\n       # ...\r\n       \"services\",\r\n       # ...\r\n   )\r\n   ```\r\n3. Finally, modify your project `urls.py` with handlers for all errors:\r\n   ```python\r\n   # ...other imports...\r\n\r\n   urlpatterns = [\r\n       # ...other urls...\r\n   ]\r\n   ```\r\n4. Execute Django's command `migrate` inside your project's root:\r\n   ```shell\r\n   python manage.py migrate\r\n   Running migrations:\r\n    Applying services.0001_initial... OK\r\n   ```\r\n\r\n## Run Example Project\r\n```shell\r\ngit clone --depth=50 --branch=django-services https://github.com/DLRSP/example.git DLRSP/example\r\ncd DLRSP/example\r\npython manage.py runserver\r\n```\r\n\r\nNow browser the app @ http://127.0.0.1:8000\r\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2010-present DLRSP (https://dlrsp.org) and other contributors.  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "Django application provide simple category/service details",
    "version": "0.1.0",
    "project_urls": null,
    "split_keywords": [
        "django",
        " services"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4ef68c8b53faf91d0a8a2a5a4de83d6f8b7c4b5f9bbb3e2e5f757291fd6b8ce",
                "md5": "920f6024cd94c00bd5e8105770765772",
                "sha256": "d105831440ea5679c44bd39a5c478190c1628ab5e75e0d2939f4f4e3077dc741"
            },
            "downloads": -1,
            "filename": "django_service-0.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "920f6024cd94c00bd5e8105770765772",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 15692,
            "upload_time": "2024-12-29T22:23:40",
            "upload_time_iso_8601": "2024-12-29T22:23:40.513196Z",
            "url": "https://files.pythonhosted.org/packages/d4/ef/68c8b53faf91d0a8a2a5a4de83d6f8b7c4b5f9bbb3e2e5f757291fd6b8ce/django_service-0.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4aa3bef4dec6d74def476b90fe042ed1f554707bec30fdcdcf5bd46e264483a",
                "md5": "6c973c2e75a672498eb06cb84c620a33",
                "sha256": "69f58d62b6dcac896826241d22f2cea69f3212d5f1bd6c7d0ffd2c5fe5010aea"
            },
            "downloads": -1,
            "filename": "django_service-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "6c973c2e75a672498eb06cb84c620a33",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 21310,
            "upload_time": "2024-12-29T22:23:42",
            "upload_time_iso_8601": "2024-12-29T22:23:42.265100Z",
            "url": "https://files.pythonhosted.org/packages/a4/aa/3bef4dec6d74def476b90fe042ed1f554707bec30fdcdcf5bd46e264483a/django_service-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-29 22:23:42",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "django-service"
}
        
Elapsed time: 0.90978s