AndCycle
AndCycle
well, you better try some alternative solution rather than screencapture, most no drm html5 video can be capture from direct download link or HLS with some assistant like `youtube-dl` or...
I just encounter same issue, this actually can be avoid by using "verify_backlog" option.
I have same idea, after I think about this idea twice it's not as simple as it looks, how do you implement a List over sql database? definitely involve save...
@aboutte IG just blocked any automation access that required login, now it's hopeless
some extra here, as I test `FileCache` under windows, the default `lock_class` `LockFile`, which use `LinkLockFile` internally is kind of broken under windows, as it stale while acquiring the lock,...
- urllib3/util/response.py ``` php def is_fp_closed(obj): """ Checks whether a given file-like object is closed. :param obj: The file-like object to check. """ try: # Check `isclosed()` first, in case...
@itamarst I haven't finished the full trace what path involve the issue, I just dig out which part raise the exception, as I wrote a custom sqlite backend which use...
@itamarst I am not really working on a giant pile of bytes, just some MPEG-DASH, this patch is a simple version to catch any incorrect implementation, we need a better...
write your own, and propose a pull req, I do have a sqlite cache that adapt CacheControl but it require some refactor to proper propose as pull req.
here is a minimal base that should work ``` class SQLiteCache(BaseCache): def __init__(self, db_path): self.conn = sqlite3.connect(db_path) db_init_script = f''' CREATE TABLE IF NOT EXISTS cache (key TEXT PRIMARY KEY,...