Turn URL variables into models.
Project description
Dart turns URL variables into database models with a decorator.
That means you can do something like this:
@app.route('/user/<user_id>/tracks', methods=['GET'])
@dart.inject(User, 'user', from_var='user_id')
def user_tracks(user=None):
return jsonify(user.tracks)
If you’re smart, you might have a decorator that checks user authorization, something like @login_required. You can compose Dart with other decorators to simplify logic, while still keeping your code readable and concise:
def login_required(view):
@functools.wraps(view)
@dart.inject(User, 'user', from_var='user_id')
@dart.inject(User, 'current_user', from_val=lambda: session['user_id'])
def decorated_view(user=None, current_user=None, *args, **kwargs):
if current_user != user:
abort(403)
else:
return view(user=user, *args, **kwargs)
return decorated_view
@login_required
def view(user=None):
return '{} did it!'.format(user.name)
Of course, Dart isn’t just a Flask. It’s literally just a decorator that takes a keyword arg or lambda expression and queries the model class using it as the primary key. That means you can use the Dart decorator with any function.
For more info, check out the source code – it’s 27 lines.
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
Built Distribution
File details
Details for the file dart-1.0.tar.gz
.
File metadata
- Download URL: dart-1.0.tar.gz
- Upload date:
- Size: 2.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fdceb359ee781e7853186cfc39d061902fb2d2d8573f90430323a9ff784c2c06 |
|
MD5 | 983df0e6edd6b3b1bc57a2fd1878176d |
|
BLAKE2b-256 | 89f763c55a348968a67d8034b12d98c0b9213204722d7cccbfe296b185cd3bb6 |
File details
Details for the file dart-1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: dart-1.0-py2.py3-none-any.whl
- Upload date:
- Size: 3.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 967f3d0beb0db32f8c3cb868d701cf7b1e59227b94be305a955d59ac066173ab |
|
MD5 | 2e03a30f08f7eab3573141e5f653f17c |
|
BLAKE2b-256 | f2c4eb080648ebdee8f9342e5f8af59b9643f645123e4334b37e2c7684fa1435 |