diff options
| author | phalt | 2014-12-02 10:16:41 +0000 | 
|---|---|---|
| committer | phalt | 2014-12-02 10:16:41 +0000 | 
| commit | 515060a6ab71e1ef22f4a1e03cb23dbad28a7b23 (patch) | |
| tree | 8ffef6b0431a5bba0b0bbf07e97d7e7e098f8a52 /docs | |
| parent | 34b5db62e560e73516fb569eaf9b71ea5562958f (diff) | |
| download | django-rest-framework-515060a6ab71e1ef22f4a1e03cb23dbad28a7b23.tar.bz2 | |
Only show pip install for httpie
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/tutorial/1-serialization.md | 6 | 
1 files changed, 1 insertions, 5 deletions
| diff --git a/docs/tutorial/1-serialization.md b/docs/tutorial/1-serialization.md index 3ef65116..dc4fddf9 100644 --- a/docs/tutorial/1-serialization.md +++ b/docs/tutorial/1-serialization.md @@ -332,16 +332,12 @@ Quit out of the shell...  In another terminal window, we can test the server. -We could use `curl`, but let's use a nicer tool called [httpie][httpie] to test our server. It has much nicer formatting and makes our output easier to read. This is especially useful when testing. +We can test our API using using `curl` or [httpie][httpie]. Httpie is a user friendly http client that's written in Python. Let's install that.  You can install httpie on all operating systems using pip:      pip install httpie -It can also be installed through [Homebrew][brew] on Mac: - -    brew install httpie -  Finally, we can get a list of all of the snippets:  	http http://127.0.0.1:8000/snippets/ --body | 
