Skip to main content

Adrest - Another Django REST. Simple application for quick build REST API.

Project description

Adrest is Another Django REST. Django application for simple make HTTP REST API.

Documentation in construction.

Build Status

Examples:

from adrest.api import Api
from adrest.views import ResourceView

class BookResource(ResourceView):
    allowed_methods = 'get', 'post'
    model = 'books.book'

api = Api(version(1, 0, 0))
api.register(BookResource)

urlpatterns = api.urls

Requirements

  • python >= 2.6

  • django >= 1.4.0

Installation

Adrest should be installed using pip:

pip install adrest

Setup

Adrest settings (default values):

# Enable logs
ADREST_ACCESS_LOG = False

# Auto create adrest access key for User
ADREST_AUTO_CREATE_ACCESSKEY = False

# Max resources per page in list views
ADREST_LIMIT_PER_PAGE = 50

# Display django standart technical 500 page
ADREST_DEBUG = False

# Limit request number per second from same identifier, null is not limited
ADREST_THROTTLE_AT = 120
ADREST_THROTTLE_TIMEFRAME = 60

# We do not restrict access for OPTIONS request
ADREST_AUTHENTICATE_OPTIONS_REQUEST = False

Use adrest

See test/examples in ADREST sources.

Bug tracker

If you have any suggestions, bug reports or annoyances please report them to the issue tracker at https://github.com/klen/adrest/issues

Contributing

Development of adrest happens at github: https://github.com/klen/adrest

Contributors

  • klen (Kirill Klenov)

License

Licensed under a GNU lesser general public license.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

adrest-2.0.3.tar.gz (66.0 kB view details)

Uploaded Source

File details

Details for the file adrest-2.0.3.tar.gz.

File metadata

  • Download URL: adrest-2.0.3.tar.gz
  • Upload date:
  • Size: 66.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for adrest-2.0.3.tar.gz
Algorithm Hash digest
SHA256 0ea5e74fa0baf47f170253c4b7f035f491aa0106b8e46f00d0044bff30373534
MD5 e6dd00e19aa980569fdf8fda6cbb6465
BLAKE2b-256 e34d04cc08678310d5c03669a90d04d82f05206f9f9c23c2d33c54dd4ef6f7af

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page