Skip to content

Commit 6ad67d0

Browse files
author
CryptAPI
committed
typos
1 parent 9cec439 commit 6ad67d0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Requests >= 2.20
1414
## Install
1515

1616

17-
```
17+
```bash
1818
pip install django-cryptapi
1919
```
2020

@@ -25,7 +25,7 @@ or
2525

2626
Add to INSTALLED_APPS:
2727

28-
```
28+
```python
2929
INSTALLED_APPS = (
3030
'cryptapi',
3131
...
@@ -35,14 +35,14 @@ INSTALLED_APPS = (
3535

3636
Run migrations:
3737

38-
```
38+
```bash
3939
python3 manage.py migrate cryptapi
4040
```
4141

4242

4343
Add CryptAPI's URLs to your project's urls.py file:
4444

45-
```
45+
```python
4646
urlpatterns = [
4747
path('cryptapi/', include('cryptapi.urls')),
4848
...
@@ -61,7 +61,7 @@ You need to go into your Django Admin and create a new CryptAPI ``Provider`` for
6161

6262
In your order creation view, assuming ``user_order`` is your order object:
6363

64-
```
64+
```python
6565
from cryptapi import Invoice
6666
...
6767
def order_creation_view(request):
@@ -92,7 +92,7 @@ Where:
9292

9393
### Getting notified when the user pays
9494

95-
```
95+
```python
9696
from django.dispatch import receiver
9797
from cryptapi.signals import payment_complete
9898

0 commit comments

Comments
 (0)