Skip to content

Commit e226e30

Browse files
committed
Fix README
1 parent 547aec6 commit e226e30

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

README.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
Pusher Push Notifications Python server SDK
22
===========================================
3-
Full documentation for this SDK can be found `here <https://docs.pusher.com/push-notifications/reference/server-sdk-python>`_
3+
Full documentation for this SDK can be found `here <https://docs.pusher.com/push-notifications/reference/server-sdk-python>`__
44

55
Installation
66
------------
77
The Pusher Notifications Python server SDK is available on PyPi
8-
`here <https://pypi.python.org/pypi/pusher_push_notifications/>`_.
8+
`here <https://pypi.python.org/pypi/pusher_push_notifications/>`__.
99

1010
You can install this SDK by using
11-
`pip <https://pip.pypa.io/en/stable/installing/>`_:
11+
`pip <https://pip.pypa.io/en/stable/installing/>`__:
1212

13-
.. code:: bash
13+
.. code::
1414
1515
$ pip install pusher_push_notifications
1616
@@ -21,9 +21,9 @@ Usage
2121
Configuring the SDK for Your Instance
2222
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2323
Use your instance id and secret (you can get these from the
24-
`dashboard <https://dash.pusher.com>`_) to create a PushNotifications instance:
24+
`dashboard <https://dash.pusher.com>`__) to create a PushNotifications instance:
2525

26-
.. code:: python
26+
.. code::
2727
2828
from pusher_push_notifications import PushNotifications
2929
@@ -37,7 +37,7 @@ Publishing a Notification
3737

3838
Once you have created your PushNotifications instance you can publish a push notification to your registered & subscribed devices:
3939

40-
.. code:: python
40+
.. code::
4141
4242
response = pn_client.publish(interests=['hello'], publish_body={'apns': {'aps': {'alert': 'Hello!'}}})
4343

dev_requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
nose
22
pylint
33
requests-mock
4+
collective.checkdocs

pusher_push_notifications/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import requests
77
import six
88

9-
SDK_VERSION = '0.9.0'
9+
SDK_VERSION = '0.9.1'
1010
INTEREST_MAX_LENGTH = 164
1111
INTEREST_REGEX = re.compile('^(_|=|@|,|\\.|:|[A-Z]|[a-z]|[0-9])*$')
1212

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from codecs import open
33
from os import path
44

5-
__version__ = '0.9.0'
5+
__version__ = '0.9.1'
66

77
here = path.abspath(path.dirname(__file__))
88

0 commit comments

Comments
 (0)