sobolevn
sobolevn
Hi! I am using `glom` as a part of my REST API, it is used to serialize and deserialize requests when API does not 100% match existing objects. And I...
Sometimes we need to move data from key to key. ```python def format_data(webhook_data): return glom(webhook_data, ( Assign('object_attributes.project', Spec('project')), )) ``` And then using it: ```python webhook_data = {'project': {'uid': 1},...
Related to https://github.com/mahmoud/glom/issues/81 The same problem I have with other attributes in dicts that must be renamed before actually working with them. ```python def tranform_data(webhook): return glom(webhook_data, ( Assign('project.id', Spec('project.uid')),...
I write about `python`, `elixir`, and `js`. I also have a little bit of management and general thoughts. I also like to write about functional programming and tools that I...
I am looking forward to use this plugin together with https://www.npmjs.com/package/hyperminimal But, I can not get reed off the header when to tabs are opened. Is it even possible? ![2018-11-07...
Hi, thanks for this wonderful library. I am using with great pleasure for both closed and opened source projects. But, currently I am developing a new REST framework for `django`....
Hi, thanks for this awesome package. I really enjoy using it. But I have a question about how to use this package without a `request` instance? Here are some examples...
I end up importing `shortcuts` in almost every module. I guess, that it would much more convenient to use: ```python def test_with_some_date(fakery, shortcuts): ... ``` I hope this is a...
Imagine that we have a model like so: ```python class User(models.Model): profile = models.ForeignKey('UserProfile') is_active = models.BooleanField() ``` And later I want to use it like so: ```python active_user_factory =...