|
| | id = db.Column(db.Integer, primary_key=True) |
| |
| | search_term = db.Column(db.String(150), nullable=False) |
| |
| | subreddit = db.Column(db.String(150), nullable=True) |
| |
| | sort_order = db.Column(db.String(50), nullable=True) |
| |
| | time_filter = db.Column(db.String(50), nullable=True) |
| |
| | comment_sort_order = db.Column(db.String(50), nullable=True) |
| |
| | overall_sentiment = db.Column(db.String(50), nullable=False) |
| |
| | positive_percentage = db.Column(db.Float, nullable=False) |
| |
| | total_comments = db.Column(db.Integer, nullable=False) |
| |
| | created_at = db.Column(db.DateTime, default=get_utc_plus_one) |
| |
| | quick_sentiment_summary = db.Column(db.String(150), nullable=True) |
| |
| | analysis_description = db.Column(db.String(512), nullable=True) |
| |
| | sentiment_pie_chart_filename = db.Column(db.String(255), nullable=True) |
| |
| | word_cloud_filename = db.Column(db.String(255), nullable=True) |
| |
| | gpt_prompt_type = db.Column(db.String(100), nullable=True) |
| |
| | api_key |
| |
Definition at line 44 of file app.py.
◆ analysis_description
| app.SearchHistory.analysis_description = db.Column(db.String(512), nullable=True) |
|
static |
◆ api_key
| app.SearchHistory.api_key |
|
static |
◆ comment_sort_order
| app.SearchHistory.comment_sort_order = db.Column(db.String(50), nullable=True) |
|
static |
◆ created_at
◆ gpt_prompt_type
| app.SearchHistory.gpt_prompt_type = db.Column(db.String(100), nullable=True) |
|
static |
◆ id
| app.SearchHistory.id = db.Column(db.Integer, primary_key=True) |
|
static |
◆ overall_sentiment
| app.SearchHistory.overall_sentiment = db.Column(db.String(50), nullable=False) |
|
static |
◆ positive_percentage
| app.SearchHistory.positive_percentage = db.Column(db.Float, nullable=False) |
|
static |
◆ quick_sentiment_summary
| app.SearchHistory.quick_sentiment_summary = db.Column(db.String(150), nullable=True) |
|
static |
◆ search_term
| app.SearchHistory.search_term = db.Column(db.String(150), nullable=False) |
|
static |
◆ sentiment_pie_chart_filename
| app.SearchHistory.sentiment_pie_chart_filename = db.Column(db.String(255), nullable=True) |
|
static |
◆ sort_order
| app.SearchHistory.sort_order = db.Column(db.String(50), nullable=True) |
|
static |
◆ subreddit
| app.SearchHistory.subreddit = db.Column(db.String(150), nullable=True) |
|
static |
◆ time_filter
| app.SearchHistory.time_filter = db.Column(db.String(50), nullable=True) |
|
static |
◆ total_comments
| app.SearchHistory.total_comments = db.Column(db.Integer, nullable=False) |
|
static |
◆ word_cloud_filename
| app.SearchHistory.word_cloud_filename = db.Column(db.String(255), nullable=True) |
|
static |
The documentation for this class was generated from the following file:
- C:/Users/35387/Desktop/app1/app.py