David Chen
David Chen
- [ ] I have tried with the newest version of editly: `npm i -g editly` or `npm i editly@latest` - [ ] I have tried ffmpeg newest stable version...
While I use freezegun with google storage api, I got the following error. `google.auth.exceptions.RefreshError: ('invalid_grant: Invalid JWT: Token must be a short-lived token (60 minutes) and in a reasonable timeframe....
httpx 0.20.0 https://github.com/encode/httpx/releases/tag/0.20.0 change default redirects behaviors that will break vcrpy. https://github.com/kevin1024/vcrpy/blob/8c0bb73658e300065eddfafc569e656e1ef6f7bf/vcr/stubs/httpx_stubs.py#L101 1. The parameter in httpx called `follow_redirects` not `allow_redirects` `respose = client.get(url, follow_redirects=True)` 2. the default value should...
fix #3709 by allowing json.load with strict=False
### First check - [X] I added a descriptive title to this issue. - [X] I used the GitHub search to look for a similar issue and didn't find it....
## Proposed change Add `.upload_file` method to `PhotosService`. The PR is based on https://github.com/picklepete/pyicloud/pull/354/files work but: 1. fix `KeyError: 'dsid'` error 2. focus on upload media ## Type of change...
Currently snapshottest won't raise Exception while there is no snapshot exists. It is not expect behavior during test. It would be useful if there is an options or flags to...
e.g. test case ``` def test_f(snapshot): x = {} snapshot.assert_match(x) # should be {} x["a"] = 1 snapshot.assert_match(x) ``` snapshot ``` snapshots['test_f 1'] = { 'a': 1 #
Looks like `taggit` doesn't yet support loaddata / dumpdata with natural keys. https://docs.djangoproject.com/en/3.1/topics/serialization/#natural-keys It will be great if django-taggit can add this feature.