{"id":18821239,"url":"https://github.com/vignesh1507/feel-flux","last_synced_at":"2026-03-07T03:01:24.128Z","repository":{"id":257418737,"uuid":"858211706","full_name":"vignesh1507/Feel-flux","owner":"vignesh1507","description":"This project is basically a sentiment analysis which will work in input and output format. The user will give an input in the form of a textual content and the the code will process every bit of it and generate the output accordingly. Output of the code will vary between 3 parameters that are positive, negative and neutral. ","archived":false,"fork":false,"pushed_at":"2025-04-29T15:19:49.000Z","size":136,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-06T13:51:52.076Z","etag":null,"topics":["artificial-intelligence","cpp","nlp-machine-learning"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vignesh1507.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["vignesh1507"],"patreon":"patreon.com/Asvix","open_collective":"vignesh-skanda","ko_fi":"vigneshskanda","community_bridge":"Medibot-ai","liberapay":"vigneshskanda","polar":"asvix","buy_me_a_coffee":"vigneshskanda","thanks_dev":"vignesh1507","custom":["https://razorpay.me/@asvix"]}},"created_at":"2024-09-16T14:01:49.000Z","updated_at":"2025-08-10T13:07:17.000Z","dependencies_parsed_at":"2025-04-29T16:35:43.339Z","dependency_job_id":null,"html_url":"https://github.com/vignesh1507/Feel-flux","commit_stats":null,"previous_names":["vignesh1507/feel-flux"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/vignesh1507/Feel-flux","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vignesh1507%2FFeel-flux","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vignesh1507%2FFeel-flux/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vignesh1507%2FFeel-flux/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vignesh1507%2FFeel-flux/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vignesh1507","download_url":"https://codeload.github.com/vignesh1507/Feel-flux/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vignesh1507%2FFeel-flux/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30206336,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T19:07:06.838Z","status":"online","status_checked_at":"2026-03-07T02:00:06.765Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["artificial-intelligence","cpp","nlp-machine-learning"],"created_at":"2024-11-08T00:36:19.002Z","updated_at":"2026-03-07T03:01:24.096Z","avatar_url":"https://github.com/vignesh1507.png","language":"C++","funding_links":["https://github.com/sponsors/vignesh1507","https://patreon.com/patreon.com/Asvix","https://opencollective.com/vignesh-skanda","https://ko-fi.com/vigneshskanda","https://funding.communitybridge.org/projects/Medibot-ai","https://liberapay.com/vigneshskanda","https://polar.sh/asvix","https://buymeacoffee.com/vigneshskanda","https://thanks.dev/vignesh1507","https://razorpay.me/@asvix"],"categories":[],"sub_categories":[],"readme":"# Feel-flux \n\nFeel-flux is a program written in **C++**. It reads positive, negative \u0026 neutral words from provided files and analyzes the sentiment of user input text, determining if the sentiment is **positive**, **negative**, or **neutral**. \n  \n## Features \n- **Sentiment Analysis Of The Text** based on positive, negative, and neutral word lists.\n- Detects **negation words** to flip sentiment where appropriate. \n- Provides a **sentiment score** and **sentiment label** (Positive, Negative or Neutral).\n\n## Installation\n\n1. **Clone the repository:**  \n\n   ```bash\n   git clone https://github.com/vignesh1507/Feel-flux.git\n   ```\n\n3. **Install a C++ compiler:**\n   Ensure you have a C++ compiler installed. You can use:\n   - **g++** for Linux/Windows (mingw)\n   - **clang** for macOS/Linux\n   - **MSVC** for Windows/macOS\n\n4. **Create or add positive and negative word files:**\n   The program requires text files containing positive and negative, neutral, and stop words.\n\n   - `positive words.txt`\n   - `negative words.txt`\n   - `neutral words.txt`\n   - `stop_list.txt`\n\n## Compilation\n\nTo compile the program, use the following commands:\n\n- **g++** (Linux/Windows):\n  ```bash\n  g++ -o Feel-flux main.cpp\n  ```\n\n- **clang** (macOS/Linux):\n  ```bash\n  clang++ -o Feel-flux main.cpp\n  ```\n\n- **MSVC** (Windows):\n  ```bash\n  cl main.cpp\n  ```\n\n## Usage\n\nOnce compiled, you can run the program from the command line:\n\n```bash\n./Feel-flux\n```\n\n### Input\n\nThe program prompts you to input a paragraph or sentence for sentiment analysis:\n\n```bash\nEnter text for sentiment analysis (press Ctrl+D to end input):\n```\n\nType in the text you want to analyze and press **Enter**.\n\n### Output\n\nThe program will output the **sentiment score** and **sentiment label** (Positive, Negative, Neutral):\n\n```bash\nSentiment Score: 3\nSentiment Label: Positive\n```\n\n## File Structure\n\n```\n.\n├── main.cpp         # Main C++ source code\n├── positive words.txt    # File containing positive words\n├── negative words.txt    # File containing negative words\n├── neutral words.txt     # File containing neutral words\n├── stop_list.txt         # File containing stop words\n└── README.md             # Project README file\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvignesh1507%2Ffeel-flux","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvignesh1507%2Ffeel-flux","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvignesh1507%2Ffeel-flux/lists"}