예제 #1
0
 def test_page(self):
     posthog.page('distinct_id', 'https://posthog.com/contact')
     posthog.flush()
예제 #2
0
 def test_flush(self):
     posthog.flush()
예제 #3
0
 def test_identify(self):
     posthog.identify('distinct_id', {'email': '*****@*****.**'})
     posthog.flush()
예제 #4
0
 def test_alias(self):
     posthog.alias('previousId', 'distinct_id')
     posthog.flush()
예제 #5
0
 def test_track(self):
     posthog.capture('distinct_id', 'python module event')
     posthog.flush()
예제 #6
0
 def test_page(self):
     posthog.page("distinct_id", "https://posthog.com/contact")
     posthog.flush()
예제 #7
0
 def test_alias(self):
     posthog.alias("previousId", "distinct_id")
     posthog.flush()
예제 #8
0
 def test_identify(self):
     posthog.identify("distinct_id", {"email": "*****@*****.**"})
     posthog.flush()
예제 #9
0
 def test_track(self):
     posthog.capture("distinct_id", "python module event")
     posthog.flush()