Skip to content

Latest commit

 

History

History
52 lines (44 loc) · 2.5 KB

getting_started.md

File metadata and controls

52 lines (44 loc) · 2.5 KB

<< Back

Getting Started

Description

This page describes how to set up Windows and Mac environments for working with this repo.

In addition, this directory provides various conda environments that can be used cross-platform to work with various libraries and versioning restrictions that may come with them. For this you can refer to the conda page.

Getting Started

Local

To build the Python package locally, from the root of the project, run python -m build (Legacy way: python setup.py sdist bdist_wheel).

PIP Installation

pip install -U --no-cache-dir frostaura

Example Usage (See all the examples here.)

from frostaura import (models,
                       data_access,
                       engines,
                       managers)

html_data_access = data_access.HtmlDataAccess()
engine = engines.FinvizAssetValuationEngine(html_data_access=html_data_access)

vars(engine.valuate(symbol='AAPL', company_name='Apple Inc.'))

MiniForge (conda)

Windows

Apple Silicon

  • Install Homebrew (https://brew.sh)
  • Install XCode
  • Install XCode command line tools: xcode-select --install
  • Install Miniforge via Homebrew: brew install miniforge

Next Steps

<< Back