Ganesh Prasad Rao
Ganesh Prasad Rao
Thank you for pynecone. I was looking for a webframework to build a landing page and webapp for my startup, and stumbled upon pynecone, looking at the vast capabilities I...
All screens are broken after migrating to the latest version 1.1.0 I tried to fix it temporarily by providing width ResponsiveScaledBox: ```dart DevicePreview.appBuilder( context ResponsiveScaledBox( width: width * 1.15, child:...
Facing issue while serializing a model with GenericForeignKey My model looks something like this: ```Python class MyModel(models.Model): obj_content_type = models.ForeignKey( ContentType, null=True, blank=True, related_name='notify_object', on_delete=models.CASCADE, verbose_name=_('Content type of action object'))...
Inspecting with django-toolbar I found that taggit makes n*2 queries for adding n number of tags. Is there any way to optimize this?