Skip to content
This repository has been archived by the owner on Oct 24, 2023. It is now read-only.

Latest commit

 

History

History
26 lines (22 loc) · 1011 Bytes

README.md

File metadata and controls

26 lines (22 loc) · 1011 Bytes

nlpword

Word frequency implemented with Trie algorithm. The app is capable of receiving three types of input, simple string, Url or a file and allows you to count the frequency usage of each word in your text.(Language Processing)

File Structure ( The important ones :) )

.nlpword
├── flask - main folder
│   ├── app
│   │    └── static
│   │        └── template (templete for easy testing, 
│   │            ├── main page - inputs
│   │            ├── success.html - results
│   │            ├── ws.html - search
│   │        └── helper.py (all they helper function generic split, create trie store
│   │        └── main.py (main routes - /submit-string , /submit-url, /submit-file)
│   └── env
│   └── app.py - running the app.
├── nginx

General guidelines of the process

Untitled-Diagram.png