Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bangla-keyword-extractor

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bangla-keyword-extractor

Bangla keyword extraction library which extracts keywords from text or list of texts

  • 0.0.18
  • PyPI
  • Socket score

Maintainers
1

Bangla keyword extractor

This is keyword extractor that support both Bangla and English languages. For the keyword extraction from rake, we used Rake algorithm and for keyword extraction from pagerank, we used this research paper.

For using this bangla-keyword-extractor library, you need to, Install using pip

pip install bangla-keyword-extractor

For extracting keywords

from bangla_keyword_extractor.keyword_extractor import KeywordExtractor

text = "এটি একটি নমুনা বাক্য।"
extractor = KeywordExtractor(text, max_keywords = 5)
print(extractor.get_keywords_using_rake())
print(extractor.get_keywords_using_pagerank())

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc