Mathieu Dhondt

Results 20 comments of Mathieu Dhondt

I'm using geofirex in a VueJS project and this seems to work for me: ``` import firebase from 'firebase/app' import 'firebase/firestore'; import * as geofirex from 'geofirex'; const firebaseConfig =...

Thanks for your reply! I'm still a bit stuck however... I've tried creating an `AdaptedBulkListSerializerMixin` with rest_framework's `ListSerializer`'s `to_internal_value` method adapted to include your code. ``` class AdaptedBulkListSerializerMixin(object): def to_internal_value(self,...

Thanks! You should try and get this in a PR. I had to add id = serializers.ReadOnlyField() to my model serializer because it's a `HyperlinkedModelSerializer`, but other than that, it...

Sorry @radokristof, but I haven't been using DRF for a long time now and I don't have the time to pick it up again. I hope you find a solution!

Great, thanks for pointing me in the right direction! Update: I just realized I probably should leave this ticket open so that the webargs team can have a look at...

Thank you for considering this. FWIW, I cobbled something together that serves my purpose, but it's far from a full parser of [qs generated querystrings](https://www.npmjs.com/package/qs). It doesn't handle complex nested...

`default` requires a function, so your Entity's first line should read: id = orm.PrimaryKey(uuid.UUID, default=uuid.uuid4)

Thanks for the quick followup! The full exception is ``` OSError: [Errno 30] Read-only file system: '/home/site/wwwroot/.python_packages/lib/site-packages/urlextract/data/tlds-alpha-by-domain.txt.lock' File "django/core/handlers/exception.py", line 47, in inner response = get_response(request) File "django/core/handlers/base.py", line 181,...

Oh, sure, no problem. I'm happy to manually update the file once in a while.

I've been looking through the code, and I believe it's not a problem with updating the file. The issue is that the [_load_cached_tlds function](https://github.com/lipoja/URLExtract/blob/638c0e2d4d8fec077b13b0eefb2c96ffaee112be/urlextract/cachefile.py#L218) tries to get a file lock...