Rishikesh Agrawani

Results 11 comments of Rishikesh Agrawani

Hi @calinbule, #### Questions » 1. Dependency, you mean using **pip**? 2. Did you try `pip install psycopg2==2.7.3.2` to install **psycopg2** dependency? #### Better is to do like this »...

> First Run get, the same on Local, RunKit and Rel.it > Error: Cannot find module './dataType' > ![image](https://user-images.githubusercontent.com/45176371/72566092-39360680-3881-11ea-932c-615d56ed362f.png) Yeah, thank you. Actually, I have already fixed it. Just follow...

Follow the guide(related to delete the session data of Sublime text, it worked for my friend) available at https://kwilson.io/blog/fixing-sublime-text-has-stopped-working-on-windows-when-you-have-a-corrupted-session/ . Finally restart the computer.

Look at the following code snippet, it will clarify. ```python class Post(models.Model): title = models.CharField(max_length=50, blank=False) description = models.TextField() pic = models.URLField(max_length=1000) #default max_length is 200 created = models.DateTimeField(auto_now_add=True, auto_now=False)...

@lvtuben Yes it supports. We can check this at [Using MongoDB as your primary Django database](https://staltz.com/djangoconfi-mongoengine/#/).

Can you please check https://staltz.com/djangoconfi-mongoengine/#/9

> @hygull In which version, does it work? I am using `0.13.0` and It's not working in my case. Can you please check https://staltz.com/djangoconfi-mongoengine/#/9

@xubiuit , you will need to also set **MIME Type** for your post using the below line. ```python post.mime_type = "text\html"; ``` I had also faced this issue before. Just...