Deepak Mishra
Deepak Mishra
@kevinmachstudio did you find anyway to seed auth.User model?
@Brobin is self referencing foreign key issue solved? https://github.com/Brobin/django-seed/blob/6643565b52cd96f78d17709293b533b1464c089a/django_seed/seeder.py#L24 This line is checking .null, but still seeder is throwing the SeederException. parent = models.ForeignKey("self", null=True, blank=True, related_name="children")
Even I am facing the same problem. Can you help me parse this feed? It's working fine on feedparser==4.1 but not on latest one. https://www.prabhasakshi.com/feed.aspx?cat_id=14
Yes, you can close it. I found a workaround. p = feedparser.parse(url) if not p['entries'] and "not well-formed" in str(p['bozo_exception']): rss1 = requests.get(url).content.decode("utf-16") rss1 = rss1.replace("utf-16","unicode") p = feedparser.parse(rss1) entries...