Giter VIP home page Giter VIP logo

text_analyzer's Introduction

Text Analyzer

A simple web app to analyze text and show words used and their frequency of use.

Dependencies

  • python 2.7
  • MySQL
  • Tornado python framework
  • Packages MySQL-python and torndb

Installation

Install the above dependencies

Setup

Connect to MySQL as a user that can create databases and users and create a database and user 'text_analyzer'

mysql -u root -p

Create a database named "text_analyzer":

mysql> CREATE DATABASE text_analyzer;

Allow the user "text_analyzer" to connect with password "text_analyzer":

mysql> GRANT ALL PRIVILEGES ON text_analyzer.* TO 'text_analyzer'@'localhost' IDENTIFIED BY 'text_analyzer';

Import the provided schema.sqll to create tables in the new database

mysql --user=text_analyzer --password=text_analyzer --database=text_analyzer < text_analyzer.sql

Run the application

cd to the app's directory

run chmod a+x application.py

run ./application.py

open http://localhost:8888/ from your browser

text_analyzer's People

Contributors

evanson avatar

Stargazers

Suri avatar

Watchers

James Cloos avatar  avatar

Forkers

pekoslaw

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.