Send your first event not working

Hi,

I am trying to check out sentry for my project and i have registered and trying to send some events to test and see how it looks, but i am not seeing the events in dashboards. Below is my simple python code i am trying to execute. no errors in the execution, but still i dont see the exception or even tin sentry dashboard.

import sentry_sdk

sentry_sdk.init(
    'XXX',
    max_breadcrumbs=50,
    debug=True,
)
i=0
while(i<9):
    sentry_sdk.capture_exception(Exception("This is an example of an error message."))