Patrick Gerard

Results 34 comments of Patrick Gerard
trafficstars

did you try ``` import logging replication_logger = logging.getLogger("libsql_replication") remote_client_logger = logging.getLogger("libsql.replication.remote_client") # set the logger for liqsql_replication and remote client to WARNING only replication_logger.setLevel(logging.WARNING) remote_client_logger.setLevel(logging.WARNING) ``` Or you could...

hi @aniketmaurya have you already thought of an implementation of this? I'd be interested in implementing it.

> ```python > 'WEB_CREATOR' > ``` Changing it to `WEB_CREATOR` e.g. `self.video = YouTube(self.url, 'WEB_CREATOR')` worked for me.

> hello, in which module it must be done? I mean the 'WEB_CREATOR' ? this is how I use it ``` class YoutubeVideo: def __init__(self, url: str): self.url = url...