Skip to content

Commit 520b556

Browse files
committed
Merge branch 'jac/py37'
2 parents 748d4e5 + 0064852 commit 520b556

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,15 @@
66

77
## Install
88

9-
With Pip:
9+
VirutalEnv QuickStart
1010

1111
```bash
12-
pip3 install blocknative-sdk
12+
$ virtualenv bn
13+
$ . ./bn/bin/activate
14+
(bn) $ pip3 install --upgrade pip
15+
(bn) $ pip3 install blocknative-sdk
16+
(bn) $ curl 'https://raw.githubusercontent.com/blocknative/python-sdk/main/examples/subscribe.py' > subscribe.py
17+
(bn) $ python3 subscribe.py myapikey.key
1318
```
1419

1520
Manual Install
@@ -158,4 +163,4 @@ stream.subscribe_address(pancakeswap_v2_address, txn_handler)
158163

159164
# Start the websocket connection and start receiving events!
160165
stream.connect()
161-
```
166+
```

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@
3434
url="https://github.com/blocknative/python-sdk",
3535
keywords="ethereum,api,transactions,blocknative",
3636
packages=["blocknative"],
37-
python_requires=">=3.9",
37+
python_requires=">=3.7",
3838
install_requires=requirements,
3939
)

0 commit comments

Comments
 (0)