معرفی شرکت ها


dj-services-2.0.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Bring services to Django
ویژگی مقدار
سیستم عامل -
نام فایل dj-services-2.0.0
نام dj-services
نسخه کتابخانه 2.0.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Artyom Loskan
ایمیل نویسنده artyom.groshev2017@gmail.com
آدرس صفحه اصلی https://github.com/artemowkin/dj-services
آدرس اینترنتی https://pypi.org/project/dj-services/
مجوز -
# dj-services [![Build Status](https://travis-ci.com/artemowkin/dj-services.svg?branch=main)](https://travis-ci.com/artemowkin/dj-services) [![Coverage Status](https://coveralls.io/repos/github/artemowkin/dj-services/badge.svg?branch=main)](https://coveralls.io/github/artemowkin/dj-services?branch=main) [![PEP8](https://img.shields.io/badge/code%20style-pep8-orange.svg)](https://www.python.org/dev/peps/pep-0008/) [![Documentation Status](https://readthedocs.org/projects/numpydoc/badge/?version=latest)](https://numpydoc.readthedocs.io/en/latest/?badge=latest) Thanks to this library, you can build your business logic in beautiful services, not in huge views and fat models. ## Getting Started Install this library using `pip` ``` $ pip install dj-services ``` Create `services.py` module in your Django app and create your first service ```python # services.py from djservices import CRUDService from .models import MyModel from .forms import MyForm class MyService(CRUDService): model = MyModel form = MyForm ``` After that you can use this service in `views.py` ```python # views.py from django.shortcuts import render from .services import MyService def list_entries(request): service = MyService() entries = service.get_all() return render(request, 'some_template.html', {'entries': entries}) ``` That's all. Now you can add business logic in your service. Let's go! ## Documentation You can read documentation in this repository [wiki](https://github.com/artemowkin/dj-services/wiki/About-this-project) ## Running the tests If you want to run the tests you need to run the following command: ``` $ ./manage.py test ``` ## Contributing Please read [CONTRIBUTING.md](https://github.com/artemowkin/dj-services/blob/0.2.0-stable/CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests to us. ## Versioning We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/artemowkin/dj-services/tags). ## Authors - **Artyom Loskan** - [artemowkin](https://github.com/artemowkin) See also the list of [contributors](https://github.com/artemowkin/dj-services/contributors) who participated in this project. ## License This project is licensed under the [GNU General Public License v3.0](https://github.com/artemowkin/dj-services/blob/0.2.0-stable/LICENSE)


نحوه نصب


نصب پکیج whl dj-services-2.0.0:

    pip install dj-services-2.0.0.whl


نصب پکیج tar.gz dj-services-2.0.0:

    pip install dj-services-2.0.0.tar.gz