posthog 7.0.0__py3-none-any.whl → 7.0.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
posthog/client.py CHANGED
@@ -295,8 +295,9 @@ class Client(object):
295
295
  # to call flush().
296
296
  if send:
297
297
  atexit.register(self.join)
298
- for n in range(thread):
299
- self.consumers = []
298
+
299
+ self.consumers = []
300
+ for _ in range(thread):
300
301
  consumer = Consumer(
301
302
  self.queue,
302
303
  self.api_key,
@@ -969,19 +969,30 @@ def _serialize_variable_value(value, limiter, max_length=1024):
969
969
  return result
970
970
  except Exception:
971
971
  try:
972
- fallback = f"<{type(value).__name__}>"
973
- fallback_size = len(fallback)
974
- if not limiter.can_add(fallback_size):
972
+ result = repr(value)
973
+ if len(result) > max_length:
974
+ result = result[: max_length - 3] + "..."
975
+
976
+ result_size = len(result)
977
+ if not limiter.can_add(result_size):
975
978
  return None
976
- limiter.add(fallback_size)
977
- return fallback
979
+ limiter.add(result_size)
980
+ return result
978
981
  except Exception:
979
- fallback = "<unserializable object>"
980
- fallback_size = len(fallback)
981
- if not limiter.can_add(fallback_size):
982
- return None
983
- limiter.add(fallback_size)
984
- return fallback
982
+ try:
983
+ fallback = f"<{type(value).__name__}>"
984
+ fallback_size = len(fallback)
985
+ if not limiter.can_add(fallback_size):
986
+ return None
987
+ limiter.add(fallback_size)
988
+ return fallback
989
+ except Exception:
990
+ fallback = "<unserializable object>"
991
+ fallback_size = len(fallback)
992
+ if not limiter.can_add(fallback_size):
993
+ return None
994
+ limiter.add(fallback_size)
995
+ return fallback
985
996
 
986
997
 
987
998
  def _is_simple_type(value):
@@ -96,7 +96,7 @@ def test_code_variables_capture(tmpdir):
96
96
  assert b"'my_number': 42" in output
97
97
  assert b"'my_bool': 'True'" in output
98
98
  assert b'"my_dict": "{\\"name\\": \\"test\\", \\"value\\": 123}"' in output
99
- assert b'"my_obj": "<UnserializableObject>"' in output
99
+ assert b"<__main__.UnserializableObject object at" in output
100
100
  assert b"'my_password': '$$_posthog_redacted_based_on_masking_rules_$$'" in output
101
101
  assert b"'__should_be_ignored':" not in output
102
102
 
@@ -332,3 +332,77 @@ def test_code_variables_enabled_then_disabled_in_context(tmpdir):
332
332
  assert '"code_variables":' not in output
333
333
  assert "'my_var'" not in output
334
334
  assert "'important_value'" not in output
335
+
336
+
337
+ def test_code_variables_repr_fallback(tmpdir):
338
+ app = tmpdir.join("app.py")
339
+ app.write(
340
+ dedent(
341
+ """
342
+ import os
343
+ import re
344
+ from datetime import datetime, timedelta
345
+ from decimal import Decimal
346
+ from fractions import Fraction
347
+ from posthog import Posthog
348
+
349
+ class CustomReprClass:
350
+ def __repr__(self):
351
+ return '<CustomReprClass: custom representation>'
352
+
353
+ posthog = Posthog(
354
+ 'phc_x',
355
+ host='https://eu.i.posthog.com',
356
+ debug=True,
357
+ enable_exception_autocapture=True,
358
+ capture_exception_code_variables=True,
359
+ project_root=os.path.dirname(os.path.abspath(__file__))
360
+ )
361
+
362
+ def trigger_error():
363
+ my_regex = re.compile(r'\\d+')
364
+ my_datetime = datetime(2024, 1, 15, 10, 30, 45)
365
+ my_timedelta = timedelta(days=5, hours=3)
366
+ my_decimal = Decimal('123.456')
367
+ my_fraction = Fraction(3, 4)
368
+ my_set = {1, 2, 3}
369
+ my_frozenset = frozenset([4, 5, 6])
370
+ my_bytes = b'hello bytes'
371
+ my_bytearray = bytearray(b'mutable bytes')
372
+ my_memoryview = memoryview(b'memory view')
373
+ my_complex = complex(3, 4)
374
+ my_range = range(10)
375
+ my_custom = CustomReprClass()
376
+ my_lambda = lambda x: x * 2
377
+ my_function = trigger_error
378
+
379
+ 1/0
380
+
381
+ trigger_error()
382
+ """
383
+ )
384
+ )
385
+
386
+ with pytest.raises(subprocess.CalledProcessError) as excinfo:
387
+ subprocess.check_output([sys.executable, str(app)], stderr=subprocess.STDOUT)
388
+
389
+ output = excinfo.value.output.decode("utf-8")
390
+
391
+ assert "ZeroDivisionError" in output
392
+ assert "code_variables" in output
393
+
394
+ assert "re.compile(" in output and "\\\\d+" in output
395
+ assert "datetime.datetime(2024, 1, 15, 10, 30, 45)" in output
396
+ assert "datetime.timedelta(days=5, seconds=10800)" in output
397
+ assert "Decimal('123.456')" in output
398
+ assert "Fraction(3, 4)" in output
399
+ assert "{1, 2, 3}" in output
400
+ assert "frozenset({4, 5, 6})" in output
401
+ assert "b'hello bytes'" in output
402
+ assert "bytearray(b'mutable bytes')" in output
403
+ assert "<memory at" in output
404
+ assert "(3+4j)" in output
405
+ assert "range(0, 10)" in output
406
+ assert "<CustomReprClass: custom representation>" in output
407
+ assert "<lambda>" in output
408
+ assert "<function trigger_error at" in output
posthog/version.py CHANGED
@@ -1,4 +1,4 @@
1
- VERSION = "7.0.0"
1
+ VERSION = "7.0.1"
2
2
 
3
3
  if __name__ == "__main__":
4
4
  print(VERSION, end="") # noqa: T201
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: posthog
3
- Version: 7.0.0
3
+ Version: 7.0.1
4
4
  Summary: Integrate PostHog into any python application.
5
5
  Home-page: https://github.com/posthog/posthog-python
6
6
  Author: Posthog
@@ -1,17 +1,17 @@
1
1
  posthog/__init__.py,sha256=3nTRvobcwGbU55ltU3tK1JjrzjO-l8NOG1JA3ceh9k8,27660
2
2
  posthog/args.py,sha256=JUt0vbtF33IzLt3ARgsxMEYYnZo3RNS_LcK4-CjWaco,3298
3
- posthog/client.py,sha256=FPCykXYOJ1jtiqxxmoe_dbvw5HKJH14wDHFJQyXSLjU,74076
3
+ posthog/client.py,sha256=RIznw46uGjDXVvcyNpdP2nz9oVUMfytu--1a9mZ9mT4,74073
4
4
  posthog/consumer.py,sha256=fdteMZ-deJGMpaQmHyznw_cwQG2Vvld1tmN9LUkZPrY,4608
5
5
  posthog/contexts.py,sha256=22z4KySFCTwPbz4OYsd_8EJpoc2H91NiLq9cscSvFfw,12600
6
6
  posthog/exception_capture.py,sha256=pmKtjQ6QY6zs4u_-ZA4H1gCyR3iI4sfqCQG_jwe_bKo,1774
7
- posthog/exception_utils.py,sha256=-pvsDuDlsTORFLLYAEhiii5VBKie3jbFgadMFSaix-g,31858
7
+ posthog/exception_utils.py,sha256=VZX9-kAVMA7nZvMTKtGJqV-PArFjirtJOCQ6I2qRFaI,32264
8
8
  posthog/feature_flags.py,sha256=4xAcYEpa97b5Lv9bIo5JHbCO6lhYBnH5EmJ2MrjbU3k,22517
9
9
  posthog/poller.py,sha256=jBz5rfH_kn_bBz7wCB46Fpvso4ttx4uzqIZWvXBCFmQ,595
10
10
  posthog/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
11
  posthog/request.py,sha256=CaONBN7a5RD8xiSShVMgHEd9XxKWM6ZQTLZypiqABhA,6168
12
12
  posthog/types.py,sha256=Dl3aFGX9XUR0wMmK12r2s5Hjan9jL4HpQ9GHpVcEq5U,10207
13
13
  posthog/utils.py,sha256=-0w-OLcCaoldkbBebPzQyBzLJSo9G9yBOg8NDVz7La8,16088
14
- posthog/version.py,sha256=edN2hQk_R2GiV1TUr0Bsk7x67QYn6M0-GFUrIuzjNPg,87
14
+ posthog/version.py,sha256=ZfiYBXIQYezxNQNk7A-r-5eweGxqiibXq2GrABvtV2Y,87
15
15
  posthog/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
16
  posthog/ai/sanitization.py,sha256=owipZ4eJYtd4JTI-CM_klatclXaeaIec3XJBOUfsOnQ,5770
17
17
  posthog/ai/types.py,sha256=arX98hR1PIPeJ3vFikxTlACIh1xPp6aEUw1gBLcKoB0,3273
@@ -38,7 +38,7 @@ posthog/test/test_before_send.py,sha256=3546WKlk8rF6bhvqhwcxAsjJovDw0Hf8yTvcYGbr
38
38
  posthog/test/test_client.py,sha256=F-jUA0uKgHpVLOdnen2j6WSTp6whlJcpZdSecLoREFg,96273
39
39
  posthog/test/test_consumer.py,sha256=HRDXSH0IPpCfo5yHs23n-0VzFyGSjWBKLEa8XNtU3_Y,7080
40
40
  posthog/test/test_contexts.py,sha256=GDYpQNGhdzyA3--ia3WPao_4dqyLUpkWm1NMVm2L-So,7004
41
- posthog/test/test_exception_capture.py,sha256=tit980vqCvAq8W2UGJN-Mcz_BIKI4XZzmEU4y1Y4YaI,8939
41
+ posthog/test/test_exception_capture.py,sha256=pAL_GV6viFoPris2d6B6k20yMKI4MEl5GozQtzA5TUk,11305
42
42
  posthog/test/test_feature_flag.py,sha256=yIMJkoRtdJr91Y6Rb0PPlpZWBIR394TgWhccnlf-vYE,6815
43
43
  posthog/test/test_feature_flag_result.py,sha256=jbdTgqlFbgvUlAoRWjguk3IvuzXgN2qbfn77gF_SqJU,15871
44
44
  posthog/test/test_feature_flags.py,sha256=JCSFtHhh60WoClmmuBMctSAOchFNqnZPlpfdi37zTMw,217298
@@ -47,8 +47,8 @@ posthog/test/test_request.py,sha256=l19WVyZQc4Iqmh_bpnAFOj4nGRpDK1iO-o5aJDQfFdo,
47
47
  posthog/test/test_size_limited_dict.py,sha256=Wom7BkzpHmusHilZy0SV3PNzhw7ucuQgqrx86jf8euo,765
48
48
  posthog/test/test_types.py,sha256=csLuBiz6RMV36cpg9LVIor4Khq6MfjjGxYXodx5VttY,7586
49
49
  posthog/test/test_utils.py,sha256=NUs2bgqrVuMdnKRq52syizgglt5_7wxxZl3dDMun-Tg,9602
50
- posthog-7.0.0.dist-info/licenses/LICENSE,sha256=wGf9JBotDkSygFj43m49oiKlFnpMnn97keiZKF-40vE,2450
51
- posthog-7.0.0.dist-info/METADATA,sha256=kKD5z5ydkTz6-JjikDZaPRY407cZ68f9lJIrr0U9n-c,5959
52
- posthog-7.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
53
- posthog-7.0.0.dist-info/top_level.txt,sha256=7FBLsRjIUHVKQsXIhozuI3k-mun1tapp8iZO9EmUPEw,8
54
- posthog-7.0.0.dist-info/RECORD,,
50
+ posthog-7.0.1.dist-info/licenses/LICENSE,sha256=wGf9JBotDkSygFj43m49oiKlFnpMnn97keiZKF-40vE,2450
51
+ posthog-7.0.1.dist-info/METADATA,sha256=ggEshkRO5eiRzS5Iog-ILAgW3nSma789M_wg3HNj8Dk,5959
52
+ posthog-7.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
53
+ posthog-7.0.1.dist-info/top_level.txt,sha256=7FBLsRjIUHVKQsXIhozuI3k-mun1tapp8iZO9EmUPEw,8
54
+ posthog-7.0.1.dist-info/RECORD,,