Skip to content

Commit 4b5823c

Browse files
authored
Update README.md
1 parent a523db0 commit 4b5823c

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,11 @@ from ravendev.client import RavenApi
2525
raven = RavenApi(auth_key="YOUR_AUTH_KEY")
2626

2727
raven.send(
28-
app_id="some-app-id",
28+
app_id="<raven_app_id>",
2929
event="event",
30+
user={
31+
email : "john.doe@xyz.com"
32+
},
3033
data={},
3134
)
3235
```
@@ -42,8 +45,11 @@ raven = AsyncRavenApi(auth_key="YOUR_AUTH_KEY")
4245

4346
async def send_event() -> None:
4447
await raven.send(
45-
app_id="some-app-id",
48+
app_id="<raven_app_id>",
4649
event="event",
50+
user={
51+
email : "john.doe@xyz.com"
52+
},
4753
data={},
4854
)
4955
```

0 commit comments

Comments
 (0)