معرفی شرکت ها


bookrest-0.1.4


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

The easiest way to add a Django and DRF powered API to any project
ویژگی مقدار
سیستم عامل -
نام فایل bookrest-0.1.4
نام bookrest
نسخه کتابخانه 0.1.4
نگهدارنده []
ایمیل نگهدارنده []
نویسنده -
ایمیل نویسنده hello@agiliq.com
آدرس صفحه اصلی https://www.agiliq.com/apps/bookrest/
آدرس اینترنتی https://pypi.org/project/bookrest/
مجوز BSD
### Bookrest - The easiest way to add rest API to an arbitrary DB ![bookrest image](assets/bookrest.jpg) Bookrest allows you to add an API (and browsable htmls) to arbitrary databases -- well almost arbitrary, the tables must have PKs. The databases do not need to be managed by Django. #### Installation and usage ```bash pip install bookrest ``` Then in your `settings.py`, ```python INSTALLED_APPS = [ # ... "rest_framework", "bookrest", ] ``` Add a key to your `settings.DATABASES` named `bookrest`, and point it to the DB you want to expose as an API. Keep your `default` db as is, you can use it for user management and other Django apps. ```python DATABASES = { "default": { "ENGINE": "django.db.backends.sqlite3", "NAME": os.path.join(BASE_DIR, "db.sqlite3"), }, "bookrest": { "ENGINE": "django.db.backends.sqlite3", "NAME": os.path.join(BASE_DIR, "data/sample.sqlite3"), }, } ``` Connect your urls to `bookrest.urls` ```python urlpatterns = [ # ... path("api/", include("bookrest.urls")) ] ``` 🚀 Boom! You are in business. All your tables will have a full read/write API ![bookrest image](assets/bookrest.gif) ### Todo - [X] Test with Sqlite - [X] Publish on Pypi - [ ] Test with Postgres - [ ] Test with Mysql - [ ] Add setting to enable a read only API - [ ] Enable circleci - [ ] Silently drop tables with no PKs rather than failing (bad idea??) #### Inspired by This projects was inspired by [datasette](https://github.com/simonw/datasette). I loved datasette, but because DRF has a geat browsable API and Django has powerful introspection capabilities, I wanted to do it in Django+DRF. Bookrest gets all the power of DRF - browsable API, coreapi, filtering, pagination. Set a `REST_FRAMEWORK` setting in your `settings.py` and `bookrest` will apply it. #### Whats with the name? You can put the `bookrest` on table, and it makes reading simpler.


نحوه نصب


نصب پکیج whl bookrest-0.1.4:

    pip install bookrest-0.1.4.whl


نصب پکیج tar.gz bookrest-0.1.4:

    pip install bookrest-0.1.4.tar.gz