Closed 01darshants closed 1 month ago
This pull request introduces a new 'analysis' app to the Django project, defining database models for sentiment analysis and adding necessary configurations. The changes include creating model classes for Company, KeywordSummary, Review, and Summary, as well as updating the project settings to include the new app.
sequenceDiagram
participant C as Company
participant KS as KeywordSummary
participant R as Review
participant S as Summary
C->>KS: has many
C->>R: has many
C->>S: has many
Note over C,S: All models have a ForeignKey to Company
Change | Details | Files |
---|---|---|
Add new 'analysis' app to the Django project |
|
SentimentAnalysis/SentimentAnalysis/settings.py SentimentAnalysis/analysis/apps.py SentimentAnalysis/analysis/__init__.py |
Define database models for sentiment analysis |
|
SentimentAnalysis/analysis/models.py |
Define constants for review sentiments |
|
SentimentAnalysis/SentimentAnalysis/constants.py |
Summary by Sourcery
Add a new 'analysis' app to the project, including models for managing sentiment analysis data such as companies, reviews, and summaries. Update the Django settings to include the new app.
New Features:
Enhancements: