Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 751 Bytes

README.md

File metadata and controls

31 lines (23 loc) · 751 Bytes

A Simple Dictionary


This is a simple web application implemented by Python and C:

  • Using Red-Black tree as data structure, which is implemented by C.
  • Using Flask, a microframework for Python, as the web server.
  • View the demo at here or compile and run it from source.

Installation

###requirements:

  • Python3

  • pip for Python3

  • install Flask from pip:

    $ pip install flask

###compile and run:

  • compile core module written by c:

    $ make

  • run server

    $ python3 server.py

Then the server will be running at http://localhost:5000