Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 843 Bytes

README.md

File metadata and controls

37 lines (23 loc) · 843 Bytes

Simple CRUD-Web using MongoDB and Flask

This is a simple example of Python Flask's usage as a simple "Task Manager". The Database Management System is MongoDB. The python-MongoDB connector is PyMongo.

Installation

First, you should install MongoDB

then install all dependencies by running the following command:

$ sudo pip install -r requirements.txt

It will install Flask, Flask-WTF, and PyMongo.

Usage

To run the program, first you should make sure MongoDB is running, start it using:

$ sudo service mongod start

then, run the program:

$ python run.py

Open your browser and go to localhost:5000 to see the running program.

External References: