Yonatan Bitton

Results 22 comments of Yonatan Bitton

Same today ![image](https://user-images.githubusercontent.com/20026896/138292951-92127d05-2353-429d-95bc-feb9ebdf780f.png)

Maybe will better to implement a GitHub login based and store the onetab data on secret gists.

> it's obvious that this project is no longer update (since last update is 2020.6) Maybe it's time to fork and create a **better**-better-onetab extension... :wink:

This is my solution on our code, until `furl` is fixed. ```python import furl def urlsplit_based_on_urllib3(url): """ Returns same values as `urllib.parse.urlsplit` returns before Python3.9 >>> urlsplit_based_on_urllib3('127.0.0.1:8329') (None, None, '127.0.0.1:8329',...

Just FYI for anyone else - Found that it is now easier to just use GitHub Pages for that. 1. Enable GitHub Pages for your repository 2. Choose the `main`...

@BrewerJack @npezolano Seems like this fork https://github.com/tobinus/python-podgen is active ![image](https://user-images.githubusercontent.com/20026896/139141907-e4a03205-e113-4ad9-9ff2-38ecb4c51981.png) [Source](https://techgaun.github.io/active-forks/index.html#lkiesow/python-feedgen)

> @sl0thentr0py is there any update? :) > > We are currently thinking how to extend our contextual logging (works in similar fashion as scope stacking in Sentry), but we...

Ok, I came up with this context manager to handle sentry tags - ```python @contextmanager def sentry_tags_session(logger=None, **tags): with sentry_sdk.configure_scope() as scope: try: curr_tags = scope._tags.copy() for k, v in...

Hey, My use case for the `redownload` option, is to fix corrupted downloads. I have multiple cases and I would like to select a bunch of them and send them...