Skip to content

gabe-teaching-nyu-tandon/finalprojects23-stockpredict

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

79 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Review Assignment Due Date

Documentation Build Instructions for Jaccard Similarity

To build the documentation from the source code for Jaccard Similarity, please follow these steps:

Prerequisites

  • Python 3.x
  • Sphinx

Clone or Download

  1. Clone or download the source code repository.

Installation

  1. Open a terminal or command prompt and navigate to the project directory where the source code is located.
  2. Install the required Python packages by running the following command: pip install -r requirements.txt
  3. Run sphinx-quickstart
  4. I have included the index.rst file in this repo that basically creates a Documentation for Jaccard Similarity Code. You can replace this file with the original index.rst
  5. Also replace the conf.py that I have included in this repository with the original conf.py
  6. In conf.py, include this:
  • import os
  • import sys
  • sys.path.insert(0, os.path.abspath('.'))
  • sys.path.insert(0, os.path.abspath(r'/path/to/source/code.py')).

Make sure to replace the path to source code with your downloaded/cloned path. The ".py" should be "JaccardSimilarity.py"

Building the Documentation

  1. To build the HTML documentation, run the following command: make html

This command will generate the HTML output in the build/html directory.

  1. To generate a PDF version of the documentation, run the following command: make pdf

This command will convert the source files to a PDF format. The resulting PDF file will be available in the build/latex directory.

Accessing the Documentation

  1. To access and view the generated documentation:
  • For the HTML version, open a web browser and navigate to the build/html/index.html file.
  • For the PDF version, use a PDF viewer application to open the PDF file located at build/latex/<project_name>.pdf.

About

finalprojects23-stockpredict created by GitHub Classroom

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors