├── .deepsource.toml ├── .github └── config.yml ├── .gitignore ├── LICENSE ├── README.md ├── TODO.md ├── app.py ├── config ├── __init__.py ├── cfg.ini ├── cfg_handler.py └── cfg_utils.py ├── framework ├── justext │ ├── __init__.py │ ├── __main__.py │ ├── _compat.py │ ├── core.py │ ├── doc │ │ ├── core_algorithm.rst │ │ ├── cs_classification_example.png │ │ └── doc.rst │ ├── htmlparagraph.py │ ├── stoplists │ │ └── English.txt │ └── utils.py └── parser │ ├── __init__.py │ ├── doc │ └── parser_readme.rst │ ├── paragraph.py │ ├── parser.py │ └── utils.py ├── implementation ├── __init__.py └── word_frequency_summarize_parser.py ├── requirements.txt ├── screens ├── screen_webpage_1.png └── screen_webpage_2.png ├── static └── assets │ ├── css │ ├── bootstrap.css │ └── main.css │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff │ ├── ico │ └── favicon.ico │ └── js │ ├── bootstrap.min.js │ └── main.js ├── templates └── index.html └── wsgi.py /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/TODO.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/app.py -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/cfg.ini: -------------------------------------------------------------------------------- 1 | [backend] 2 | base_url=http://localhost:5000/v1/summarize 3 | -------------------------------------------------------------------------------- /config/cfg_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/config/cfg_handler.py -------------------------------------------------------------------------------- /config/cfg_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/config/cfg_utils.py -------------------------------------------------------------------------------- /framework/justext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/framework/justext/__init__.py -------------------------------------------------------------------------------- /framework/justext/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/framework/justext/__main__.py -------------------------------------------------------------------------------- /framework/justext/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/framework/justext/_compat.py -------------------------------------------------------------------------------- /framework/justext/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/framework/justext/core.py -------------------------------------------------------------------------------- /framework/justext/doc/core_algorithm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/framework/justext/doc/core_algorithm.rst -------------------------------------------------------------------------------- /framework/justext/doc/cs_classification_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/framework/justext/doc/cs_classification_example.png -------------------------------------------------------------------------------- /framework/justext/doc/doc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/framework/justext/doc/doc.rst -------------------------------------------------------------------------------- /framework/justext/htmlparagraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/framework/justext/htmlparagraph.py -------------------------------------------------------------------------------- /framework/justext/stoplists/English.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/framework/justext/stoplists/English.txt -------------------------------------------------------------------------------- /framework/justext/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/framework/justext/utils.py -------------------------------------------------------------------------------- /framework/parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/parser/doc/parser_readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/framework/parser/doc/parser_readme.rst -------------------------------------------------------------------------------- /framework/parser/paragraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/framework/parser/paragraph.py -------------------------------------------------------------------------------- /framework/parser/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/framework/parser/parser.py -------------------------------------------------------------------------------- /framework/parser/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/framework/parser/utils.py -------------------------------------------------------------------------------- /implementation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /implementation/word_frequency_summarize_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/implementation/word_frequency_summarize_parser.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/requirements.txt -------------------------------------------------------------------------------- /screens/screen_webpage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/screens/screen_webpage_1.png -------------------------------------------------------------------------------- /screens/screen_webpage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/screens/screen_webpage_2.png -------------------------------------------------------------------------------- /static/assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/static/assets/css/bootstrap.css -------------------------------------------------------------------------------- /static/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/static/assets/css/main.css -------------------------------------------------------------------------------- /static/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/static/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/static/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/static/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/static/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/assets/ico/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/static/assets/ico/favicon.ico -------------------------------------------------------------------------------- /static/assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/static/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/static/assets/js/main.js -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/templates/index.html -------------------------------------------------------------------------------- /wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashp1712/summarize-webpage/HEAD/wsgi.py --------------------------------------------------------------------------------