Skip to content
This repository was archived by the owner on Dec 10, 2018. It is now read-only.

Commit 349d58c

Browse files
author
Kristina Chodorow
committed
fix json package name
1 parent 16e1109 commit 349d58c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ Sleepy.Mongoose is a REST interface for MongoDB.
66

77
You need 3 things installed:
88

9-
1. MongoDB, which can be downloaded from [http://www.mongodb.org](http://www.mongodb.org).
9+
1. MongoDB, which can be downloaded from
10+
[http://www.mongodb.org](http://www.mongodb.org).
1011

11-
2. Pymongo, the MongoDB python driver. You can install this with easy_install:
12+
2. Pymongo, the MongoDB python driver. Sleepy.Mongoose requires pymongo version
13+
1.4 or greater. You can install this with easy_install:
1214

1315
$ sudo easy_install pymongo
1416

15-
Sleepy.Mongoose requires pymongo version 1.4 or greater.
16-
1717
3. The Python JSON package, which can also be installed with easy_install:
1818

19-
$ sudo easy_install json
19+
$ sudo easy_install python-json
2020

2121
## RUNNING
2222

@@ -49,8 +49,8 @@ You should make sure any options are URL escaped. You can easily do this with
4949
any JavaScript shell, including the mongo shell.
5050

5151
For example, to query for `{"x" : 1}`, we have the string `'{"x" : 1}'`. We run
52-
`escape('{"x" : 1}')` and get `"%7B%22x%22%20%3A%201%7D"`. We can now paste this beautful
53-
string into our URL:
52+
`escape('{"x" : 1}')` and get `"%7B%22x%22%20%3A%201%7D"`. We can now paste
53+
this beautful string into our URL:
5454

5555
http://localhost:27080/website/users/_find?criteria=%7B%22x%22%20%3A%201%7D
5656

0 commit comments

Comments
 (0)