{"id":21919447,"url":"https://github.com/dlrsp/django-service","last_synced_at":"2026-02-12T12:12:33.857Z","repository":{"id":264495015,"uuid":"893527622","full_name":"DLRSP/django-service","owner":"DLRSP","description":null,"archived":false,"fork":false,"pushed_at":"2025-01-04T21:25:27.000Z","size":58,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-30T20:07:41.664Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DLRSP.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":".github/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-11-24T17:12:29.000Z","updated_at":"2025-01-04T21:25:20.000Z","dependencies_parsed_at":"2024-11-24T18:37:14.198Z","dependency_job_id":"791bb594-0bef-4291-8e3b-897542d6c298","html_url":"https://github.com/DLRSP/django-service","commit_stats":null,"previous_names":["dlrsp/django-service"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/DLRSP/django-service","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DLRSP%2Fdjango-service","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DLRSP%2Fdjango-service/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DLRSP%2Fdjango-service/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DLRSP%2Fdjango-service/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DLRSP","download_url":"https://codeload.github.com/DLRSP/django-service/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DLRSP%2Fdjango-service/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273523636,"owners_count":25120864,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-03T02:00:09.631Z","response_time":76,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-28T20:07:57.474Z","updated_at":"2026-02-12T12:12:28.835Z","avatar_url":"https://github.com/DLRSP.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# django-service [![PyPi license](https://img.shields.io/pypi/l/django-service.svg)](https://pypi.python.org/pypi/django-service)\n\n[![PyPi status](https://img.shields.io/pypi/status/django-service.svg)](https://pypi.python.org/pypi/django-service)\n[![PyPi version](https://img.shields.io/pypi/v/django-service.svg)](https://pypi.python.org/pypi/django-service)\n[![PyPi python version](https://img.shields.io/pypi/pyversions/django-service.svg)](https://pypi.python.org/pypi/django-service)\n[![PyPi downloads](https://img.shields.io/pypi/dm/django-service.svg)](https://pypi.python.org/pypi/django-service)\n[![PyPi downloads](https://img.shields.io/pypi/dw/django-service.svg)](https://pypi.python.org/pypi/django-service)\n[![PyPi downloads](https://img.shields.io/pypi/dd/django-service.svg)](https://pypi.python.org/pypi/django-service)\n\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)\n\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)\n\n## Check Demo Project\n\n- Check the demo repo on [GitHub](https://github.com/DLRSP/example/tree/django-service)\n\n## Requirements\n\n- Python 3.8+ supported.\n- Django 4.2+ supported.\n\n## Setup\n1. Install from **pip**:\n   ```shell\n   pip install django-services\n   ```\n2. Modify `settings.py` by adding the app to `INSTALLED_APPS`:\n   ```python\n   INSTALLED_APPS = (\n       # ...\n       \"services\",\n       # ...\n   )\n   ```\n3. Finally, modify your project `urls.py` with handlers for all errors:\n   ```python\n   # ...other imports...\n\n   urlpatterns = [\n       # ...other urls...\n   ]\n   ```\n4. Execute Django's command `migrate` inside your project's root:\n   ```shell\n   python manage.py migrate\n   Running migrations:\n    Applying services.0001_initial... OK\n   ```\n\n## Run Example Project\n```shell\ngit clone --depth=50 --branch=django-services https://github.com/DLRSP/example.git DLRSP/example\ncd DLRSP/example\npython manage.py runserver\n```\n\nNow browser the app @ http://127.0.0.1:8000\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdlrsp%2Fdjango-service","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdlrsp%2Fdjango-service","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdlrsp%2Fdjango-service/lists"}