Skip to content

Commit 414c697

Browse files
authored
Merge pull request #2 from andela-osule/word-check
Update README.
2 parents 72155ad + cb4c6d8 commit 414c697

File tree

13 files changed

+35
-35
lines changed

13 files changed

+35
-35
lines changed

README.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ cssdbpy
33

44
.. image:: https://img.shields.io/pypi/v/cssdbpy.svg?maxAge=2592000?style=flat
55
.. image:: https://img.shields.io/pypi/l/cssdbpy.svg?maxAge=2592000?style=flat
6-
.. image:: https://img.shields.io/gitter/room/cssdbpy/cssdbpy.svg?maxAge=2592000
6+
.. image:: https://img.shields.io/gitter/room/cssdbpy/cssdbpy.svg?maxAge=2592000
77
:target: https://gitter.im/deslum_projects/cssdbpy
88

9-
Cssdbpy is a simple SSDB client written on Cython. Faster standart SSDB client.
9+
Cssdbpy is a simple SSDB client written on Cython. Faster standard SSDB client.
1010

1111

1212
Install
@@ -29,7 +29,7 @@ Example
2929
from cssdbpy import Connection
3030
from time import time
3131
import md5
32-
32+
3333
if __name__ == '__main__':
3434
conn = Connection('127.0.0.1', 8888)
3535
for i in xrange(0, 1000):
@@ -56,7 +56,7 @@ MacBook Pro 2012 2,5 GHz Intel Core i5 4 ГБ 1600 МГц DDR3
5656

5757
.. image:: benchmark/bench.png
5858
:height: 100px
59-
:width: 200 px
60-
:scale: 50 %
59+
:width: 200px
60+
:scale: 50%
6161
:alt: alternate text
6262
:align: center

docs/_build/doctrees/code.doctree

6 Bytes
Binary file not shown.
8 Bytes
Binary file not shown.
-5 Bytes
Binary file not shown.

docs/_build/doctrees/index.doctree

69 Bytes
Binary file not shown.

docs/_build/html/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 86c36ab56b94cb00d7b7622af35d81ca
3+
config: 9678d3d110091a4e463b418f1e9129c0
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

docs/_build/html/_sources/code.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Client
99
.. autoclass:: StrictSSDB
1010

1111

12-
Key/Value
12+
Key/Value
1313
^^^^^^^^^
1414

1515
A container of (key, value) pairs in ssdb. A key name maps a string value.
@@ -243,11 +243,11 @@ Client
243243
""""""
244244
.. automethod:: StrictSSDB.hrscan
245245

246-
246+
247247
Zsets
248248
^^^^^
249249

250-
A sorted set in ssdb. It's contain keys with scores in ``zset``
250+
A sorted set in ssdb. It contains keys with scores in ``zset``
251251

252252
.. code-block:: python
253253

docs/_build/html/_sources/index.txt

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
Welcome to ssdbpy's documentation!
1+
Welcome to cssdbpy's documentation!
22
===================================
33

44
What is SSDB?
55
-------------
66

7-
SSDB is a high performace key-value(key-string, key-zset, key-hashmap) NoSQL database, an alternative to Redis.
8-
SSDB is stable, production-ready and is widely used by many Internet companies including QIHU 360. It's repository is https://github.com/ideawu/ssdb
7+
SSDB is a high performance key-value(key-string, key-zset, key-hashmap) NoSQL database, an alternative to Redis.
8+
SSDB is stable, production-ready and is widely used by many Internet companies including QIHU 360. Its repository is https://github.com/ideawu/ssdb
99

1010

1111
Features
@@ -22,33 +22,33 @@ Features
2222
* Built-in CLI nagios self-checks
2323

2424

25-
About ssdbpy
25+
About cssdbpy
2626
-------------
2727

28-
ssdbpy is a simple SSDB client written on Cython. 5x faster standart ssdb client.
29-
It's repository is https://github.com/deslum/ssdbpy
28+
cssdbpy is a simple SSDB client written on Cython. 5x faster standard ssdb client.
29+
Its repository is https://github.com/deslum/cssdbpy
3030

3131

3232
Install
3333
-------
3434

3535
.. code-block:: bash
3636

37-
pip install ssdbpy
37+
pip install cssdbpy
3838

3939
or
4040

4141
.. code-block:: bash
4242

43-
pip install https://github.com/deslum/ssdbpy
43+
pip install https://github.com/deslum/cssdbpy/archive/master.zip
4444

4545
Connection
4646
----------
4747

4848
.. code-block:: python
4949

50-
>>> from ssdbpy import SSDBPy
51-
>>> ssdb = SSDBPy('127.0.0.1', 8888)
50+
>>> from cssdbpy import Connection
51+
>>> ssdb = Connection('127.0.0.1', 8888)
5252

5353
hset
5454
---------------
@@ -61,7 +61,7 @@ Set the string value in argument as value of the key of a hashmap.
6161

6262
hget
6363
----
64-
Get the value related to the specified key of a hashmap
64+
Get the value related to the specified key of a hashmap.
6565

6666
.. code-block:: python
6767

@@ -91,7 +91,7 @@ Increment the number stored at key in a hashmap by num. The num argument could b
9191
hscan
9292
-----
9393

94-
List key-value pairs of a hashmap with keys in range (key_start, key_end]
94+
List key-value pairs of a hashmap with keys in range (key_start, key_end].
9595

9696
.. code-block:: python
9797

@@ -121,7 +121,7 @@ Return the number of key-value pairs in the hashmap.
121121
hlist
122122
-----
123123

124-
List hashmap names in range (name_start, name_end]
124+
List hashmap names in range (name_start, name_end].
125125

126126
.. code-block:: python
127127

docs/_build/html/objects.inv

1 Byte
Binary file not shown.

docs/_build/html/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)