Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
pjwerneck committed Dec 9, 2023
1 parent 8857613 commit 9dbf3a8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ For example, in a Flask HTTP API with a users collection endpoint querying the `
from urllib.parse import unquote
from flask import request

from rqlalchemy import select

@app.route('/users')
def get_users_collection():
qs = unquote(request.query_string.decode(request.charset))
Expand All @@ -44,6 +46,8 @@ RQLAlchemy offers limit/offset pagination with the `rql_paginate()` method, retu
from urllib.parse import unquote
from flask import request

from rqlalchemy import select

@app.route('/users')
def get_users_collection():
qs = unquote(request.query_string.decode(request.charset))
Expand Down

0 comments on commit 9dbf3a8

Please sign in to comment.