You are trying to save the object twice, and telling it to force the second time, causing the error. objects.create() implicitly calls .save() When you then try save(force_insert=True) it hits a unique error.
If you want to have the comment that is being created/saved for later use you should do:
comment, created = Comment.objects.get_or_create(comment_title=title, comment_content=content, comment_score=score
, comment_date=review_date, website=website_id)
comment will be your comment and created will be a boolean - True if the comment was created, false if it was already in the db and was just fetched.
Kirby