Git Product home page Git Product logo

django-screener's Introduction

screener


is a screener website that allow you to view the basic information of a company the company is searched by it's ticker and the information is gathered from yahoo finance the information is taken thanks to the yahooquery library the informations are stored in a database, everytime a ticker is searched the info are stored in the db if they are not already present. if they are the basic infos are taken from the db and updated to the current date.

Quick start

this app is used inside the project NotFinancialAdvice and it need the following steps to be installed:

  1. clone the repo inside the Django project and change the name of the app from NFA_screener to screener

  2. inside settings.py insert 'screener' in the INSTALLED_APPS list

    INSTALLED_APPS = [
        ...
        'screener',
    ]
    
  3. run the script archive_creator.sh inside the app to create the folder necessary to hold the files

  4. call the collectstatic from manage.py

  5. include the url.py file inside the app in the main project you may want to add some url path inside the ''

    path('', include(('screener.urls', 'screener'), namespace="screener")),

  6. call the makemigrations / migrate from manage.py Run python manage.py migrate screener to create the screener models.

  7. Start the development server and visit http://127.0.0.1:8000/admin/ to create the models (you'll need the Admin app enabled).

  8. Visit http://127.0.0.1:8000 to see the website

the app use the following libraries:

  1. pandas
  2. numpy
  3. yahooquery

be sure to have them in the virtual env


screneer docs

if you want to use the URL links outside the app you need to use the namespace. it is always a good idea when having many apps inside a Django project to use the namespace. for example:

> <a href="{% url 'screener:URL' %}"</a>

django-screener's People

Contributors

leobitto avatar

Stargazers

 avatar

Watchers

Kostas Georgiou avatar  avatar

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.