Shrikrishna Singh
Shrikrishna Singh
[GooglePlayAPI](https://github.com/NoMore201/googleplay-api/blob/0ca0f65f7544b6da4c96496cf9ef46561e54c239/gpapi/googleplay.py#L65) should accept a custom requests object which can be send via user who is using it. Suppose that I want to `timeout` the [`login method`](https://github.com/NoMore201/googleplay-api/blob/0ca0f65f7544b6da4c96496cf9ef46561e54c239/gpapi/googleplay.py#L202) after few seconds if...
```python from wagtail.core.fields import RichTextField @register_snippet class TestSnippet(models.Model): title = models.CharField(max_length=50) description = RichTextField( blank=True ) panels = [ FieldPanel('title'), FieldPanel('description'), ] graphql_fields = [ GraphQLString('title', required=True), GraphQLString('description', required=True), ]...
```graphql type MainMenu { id: ID mainMenu: [StreamFieldInterface] } ``` In the doc or in the generated schema, whenever there is an StreamField, we see the StreamFieldInterface but clicking on...
Suppose I have these blocks: ```python @register_streamfield_block class MainMenuBlock(StreamBlock): main_menu_item = MainMenuItemBlock() @register_streamfield_block class MainMenuItemBlock(StructBlock): sub_menu_items = SubMenuBlock(required=False, null=True, blank=True) class Meta: icon = 'pick' template = "blocks/main_menu_item_block.html" graphql_fields =...
Suppose that you have a StreamField and you're using GraphQLStreamField to generate the schema. Now to make the field as required we should use the the [required parameter](https://wagtail-grapple.readthedocs.io/en/latest/general-usage/model-types.html#grapple.models.GraphQLStreamfield.required) as True....
Toward https://github.com/pythonindia/junction/issues/611 **Note: This PR has changes incompatible with Python 2.7 and is a part of the task involving Django 2.2 upgrade** - Upgrading [django-pagedown](https://github.com/timmyomahony/django-pagedown#requirements) to `1.0.6` because the latest...
Closes https://github.com/pythonindia/junction/issues/666
We are using `python_2_unicode_compatible` decorator at almost every model and also `__unicode__` at some of them which I think is not required as we are no longer on `Python 2`.
All the example scripts only support get methods, for now, It would be good if we have POST request also.
Hey @lwesterhof, I was wondering if it is possible to interact with the bot in `note to self`, if we have a linked device with the same number that signald...