/StockApp

Django : A simple Stock Data fetching Application

Primary LanguagePython

Stock App

This is a simple Web application using Django (A python Based Database Framework) to fetch Stocks data From IEXcloud.io for the given ticker.

Functionality this App Includes are

  • Searching of Stock
  • Adding Stock to List
  • Deleting Stock From List

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Prerequisites

Make Sure you Have the following things Installed on your Machines.

  • Python
  • pip
  • Django

Follow this link to setup Django project.

Running the App

open the Terminal and make sure you are in Right Directory /Stock_app/ containing manage.py file and run below commands.

  • First install requests . Its a Library to make HTTP requests.

    pip install requests

  • Now Run the Server

    python manage.py runserver

Default IP would be http://127.0.0.1:8000/ or just check your terminal Starting development server at http://___ .

You will see Something similar to this.

Home Page

Add Stock Page