Layout tweaks

This commit is contained in:
David Watson
2015-12-22 01:26:23 -05:00
parent ca2e140c30
commit bdfb0a7680
+6 -5
View File
@@ -1,9 +1,5 @@
## Accessing PostgREST API using Python Requests and Requests-JWT ## Accessing PostgREST API using Python Requests and Requests-JWT
The following HTTP client example should work on Python 3.x. If you're using python < 3.x you may need to change the print functions to statements or use:
from __future__ import print_function
This code relies on setting up the PostgreSQL auth functions and grants correctly first. Follow these instructions: This code relies on setting up the PostgreSQL auth functions and grants correctly first. Follow these instructions:
http://postgrest.com/examples/users/ http://postgrest.com/examples/users/
@@ -13,7 +9,7 @@ After completing the configuration, be sure to create a user with email, passwor
Install the required libraries Install the required libraries
pip install requests pip install requests
pip install Requests-jwt pip install requests-jwt
Then, from a python interpreter or script: Then, from a python interpreter or script:
@@ -34,4 +30,9 @@ Then, from a python interpreter or script:
raise Exception() raise Exception()
for each in r.json(): for each in r.json():
# do as you wish with each row
print(each) print(each)
The preceding HTTP client example should work on Python 3.x. If you're using python < 3.x you may need to change the print functions to statements or use:
from __future__ import print_function