Skip to content

Commit b982557

Browse files
committed
Update examples in the README
1 parent 182705f commit b982557

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,18 @@ USERLIST_PUSH_KEY=401e5c498be718c0a38b7da7f1ce5b409c56132a49246c435ee296e07bf2be
2525
**Configuration during initialization**
2626

2727
```python
28-
from userlist import Push
28+
from userlist import Userlist
2929

30-
userlist = Push(push_key='401e5c498be718c0a38b7da7f1ce5b409c56132a49246c435ee296e07bf2be39')
30+
userlist = Userlist(push_key='401e5c498be718c0a38b7da7f1ce5b409c56132a49246c435ee296e07bf2be39')
3131
```
3232

3333
## Usage
3434

3535
Before tracking user or event data, create a new push client. If you configured your push key via environment variables there's nothing to add. Otherwise, see the example above.
3636

3737
```python
38-
from userlist import Push
39-
userlist = Push()
38+
from userlist import Userlist
39+
userlist = Userlist()
4040
```
4141

4242
### Tracking Users

0 commit comments

Comments
 (0)