├── .coveragerc ├── .github └── workflows │ └── test.yml ├── .gitignore ├── HISTORY.md ├── LICENSE ├── Makefile ├── README.md ├── compilemessages.py ├── docs ├── Makefile ├── conf.py ├── index.rst ├── make.bat └── pages │ ├── philosophy.rst │ ├── reference.rst │ ├── support.rst │ └── usage.rst ├── locale ├── pt_BR │ └── LC_MESSAGES │ │ └── django.po └── ru_RU │ └── LC_MESSAGES │ └── django.po ├── makemessages.py ├── requirements-doc.txt ├── requirements.txt ├── runtests.py ├── service_objects ├── __init__.py ├── celery_services.py ├── errors.py ├── fields.py ├── services.py └── views.py ├── setup.py ├── test.db ├── tests ├── __init__.py ├── apps.py ├── forms.py ├── models.py ├── services.py ├── test_celery_services.py ├── test_fields.py ├── test_services.py └── test_views.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/.gitignore -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/README.md -------------------------------------------------------------------------------- /compilemessages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/compilemessages.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/pages/philosophy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/docs/pages/philosophy.rst -------------------------------------------------------------------------------- /docs/pages/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/docs/pages/reference.rst -------------------------------------------------------------------------------- /docs/pages/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/docs/pages/support.rst -------------------------------------------------------------------------------- /docs/pages/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/docs/pages/usage.rst -------------------------------------------------------------------------------- /locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/ru_RU/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/locale/ru_RU/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /makemessages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/makemessages.py -------------------------------------------------------------------------------- /requirements-doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/requirements-doc.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | django 2 | six 3 | celery 4 | mock 5 | 6 | flake8 7 | coverage 8 | tox 9 | twine 10 | -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/runtests.py -------------------------------------------------------------------------------- /service_objects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/service_objects/__init__.py -------------------------------------------------------------------------------- /service_objects/celery_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/service_objects/celery_services.py -------------------------------------------------------------------------------- /service_objects/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/service_objects/errors.py -------------------------------------------------------------------------------- /service_objects/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/service_objects/fields.py -------------------------------------------------------------------------------- /service_objects/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/service_objects/services.py -------------------------------------------------------------------------------- /service_objects/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/service_objects/views.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/setup.py -------------------------------------------------------------------------------- /test.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/tests/apps.py -------------------------------------------------------------------------------- /tests/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/tests/forms.py -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/tests/services.py -------------------------------------------------------------------------------- /tests/test_celery_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/tests/test_celery_services.py -------------------------------------------------------------------------------- /tests/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/tests/test_fields.py -------------------------------------------------------------------------------- /tests/test_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/tests/test_services.py -------------------------------------------------------------------------------- /tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/tests/test_views.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixxorz/django-service-objects/HEAD/tox.ini --------------------------------------------------------------------------------