Jurgis Pralgauskis
Jurgis Pralgauskis
Hi, I have composition of `SimpleHttpTask ----> requests.Session` that is not displayed: ``` class SimpleHttpTask(Task): url = None method = "GET" client = requests.Session() ```
in some cases sequence of task consuming is important -- most ofen people would expect fifo.
I'm using `before_sleep` with async - and I can see same function is being retried, but I'd like to see what arguments are for each retried function (as same fun...
hi when using ``` File "/home/jurgis/PycharmProjects/debitum-portfolio/notebooks/jurgis/sw_report.py", line 22, in my_report = sv.compare([df_A, "A"], [df_B, "B"]) File "/home/jurgis/anaconda3/envs/debitum-portfolio/lib/python3.8/site-packages/sweetviz/sv_public.py", line 22, in compare report = sweetviz.DataframeReport(source, target_feat, compare, File "/home/jurgis/anaconda3/envs/debitum-portfolio/lib/python3.8/site-packages/sweetviz/dataframe_report.py", line 256,...
Hi, our CTO prefers "composition over inheritance" and tries to avoid composition where possible. How complicated could it be to use class decorators instead of Mixin? idea explained here --...
Hi, I didn't notice support for https://json-schema.org/understanding-json-schema/reference/numeric.html#range How could this be achieved?
https://github.com/AlexTatiyants/pev demo http://tatiyants.com/postgres-query-plan-visualization/ ps.: related to https://github.com/jazzband/django-debug-toolbar/pull/323
### Context I want to track/investigate what were the failing requests. As it was done for Response (https://github.com/urllib3/urllib3/pull/848) if it is ConnectionError -- I just get MaxRetryError with no history....
Hi, for beginners it is important even in py :) I've seen it in Greenfoot.org Then in py based CodeCombat.com, Codesters.com http://www.mdpi.com/electronics/electronics-05-00033/article_deploy/html/images/electronics-05-00033-g005-1024.png https://adamasbasecs3.files.wordpress.com/2015/06/aaa.jpg
Hi, simple example ``` data = {'level1': {'level2': 2}} matcher_level2 = has_entries({'level2': 42}) ``` Why `has_entry` does not display (block) deeper cause?: > assert_that(data, has_entry('level1', matcher_level2)) ``` Expected: a dictionary...