Skip to main content

A Python package for sentiment analysis

Project description

sentianaylib (sentimental analysis library)

Overview

This Python package, developed by Chameleonlabs.org, performs sentiment analysis on a web page based on a specified keyword.

Developer Credits

This package was developed by: Riyesh Poolanchalil (@riyeshp) Rahul Poolanchalil (@rahulp_1986)

Installation

You can install the package via pip:

Usage

To use the package, import the sentianaylib class from the package and create an instance with the required driver. Then, call the dataprocessor() method with the URL,keyword and current_directory parameters.

from selenium import webdriver
from selenium.webdriver.chrome.service import Service as ChromeService
from selenium.webdriver.chrome.options import Options as ChromeOptions
from webdriver_manager.chrome import ChromeDriverManager
from sentianaylib import sentianaylib

driver = webdriver.Chrome(service=ChromeService(ChromeDriverManager().install()), options=chrome_options)

current_directory = os.path.dirname(os.path.abspath(__file__))
# Initialize sentianalib with the appropriate driver
sentianaylib_instance = sentianaylib(driver)

# Perform sentiment analysis on a webpage
url = 'https://example.com'
keyword = 'air pollution'
sentianaylib_instance.dataprocessor(url, keyword, current_directory)

Parameters

url: The URL of the webpage to analyze. keyword: The keyword to use for sentiment analysis. current_directory: The location of main file where other related files can generated.

Dependencies

This package relies on the following external libraries:

Beautiful Soup: For parsing HTML content. TextBlob: For sentiment analysis. Selenium: For automated web browsing.

License

This package is licensed under the MIT License. See the LICENSE file for details.

Issues

If you encounter any issues or have suggestions for improvement, please open an issue.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sentianaylib-1.0.2.tar.gz (4.1 kB view hashes)

Uploaded Source

Built Distribution

sentianaylib-1.0.2-py3-none-any.whl (5.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page