-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(Documentation): Adding of class diagram templates.
- Loading branch information
Showing
9 changed files
with
86 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
[<< Back](./design.md) | ||
|
||
# Class Diagrams & ERDs | ||
![Class Diagram](./designs/root.class.drawio.png) | ||
## Managers | ||
### IExampleManager | ||
A description of the example manager. | ||
|
||
**+ ExamplePublicFunc<type>(someVariable: string): returnType** | ||
|
||
A description for the example public function. | ||
|
||
## Engines | ||
### IExampleEngine | ||
A description of the example engine. | ||
|
||
**+ ExamplePublicFunc<type>(someVariable: string): returnType** | ||
|
||
A description for the example public function. | ||
|
||
## Data Access | ||
### IExampleDataAccess | ||
A description of the example data access. | ||
|
||
**+ ExamplePublicFunc<type>(someVariable: string): returnType** | ||
|
||
A description for the example public function. | ||
|
||
## Models | ||
### Model1 | ||
Model 1 description | ||
|
||
[<< Back](./design.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,33 @@ | ||
# environments | ||
[<< Back](../README.md) | ||
|
||
# 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](./conda/README.md) page. | ||
|
||
## Getting Started | ||
### Local | ||
- Python >= 3.7 required. | ||
- [Setup your environment.](./environments/README.md) | ||
|
||
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](https://github.com/faGH/fa.intelligence.notebooks/tree/main/examples).) | ||
``` | ||
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 | ||
- Install Miniforge from [their GitHub page](https://github.com/conda-forge/miniforge). In our case [Miniforge3-Windows-x86_64](https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Windows-x86_64.exe). | ||
|
@@ -26,14 +49,4 @@ In addition, this directory provides various conda environments that can be used | |
- [Run this notebook to check library versions post-setup](./scripts/check_version.ipynb). | ||
- Now you can run any notebooks just like you did the above. Remember to choose your environment that you registered in the setup stage, as your Python interpreter of choice. | ||
## Contribute | ||
In order to contribute, simply fork the repository, make changes and create a pull request. | ||
|
||
## Support | ||
If you enjoy FrostAura open-source content and would like to support us in continuous delivery, please consider a donation via a platform of your choice. | ||
|
||
| Supported Platforms | Link | | ||
| ------------------- | ---- | | ||
| PayPal | [Donate via Paypal](https://www.paypal.com/donate/?hosted_button_id=SVEXJC9HFBJ72) | | ||
|
||
For any queries, contact [email protected]. | ||
[<< Back](../README.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,21 @@ | ||
# fa.templates | ||
# fa.intelligence.notebooks | ||
## Description | ||
This is an empty template repository that can be forked for any new projects that should follow FrostAura repository standards. | ||
FrostAura Intelligence provides a range of open-source notebooks for Python-based machine learning solutions like: | ||
- Utilities | ||
- Environments | ||
- Labs | ||
- Experiments | ||
|
||
## Status | ||
| Project | Status | Platform | ||
| --- | --- | --- | | ||
| \<APPLICATION> | [![Containerization Workflow](https://github.com/faGH/fa.templates/actions/workflows/containerization_workflow.yml/badge.svg)](https://github.com/faGH/fa.templates/actions/workflows/containerization_workflow.yml) | GitHub Actions | ||
| FrostAura Components PIP Package | [![Package FrostAura Components Workflow](https://github.com/faGH/fa.intelligence.notebooks/actions/workflows/package_components_workflow.yml/badge.svg)](https://github.com/faGH/fa.intelligence.notebooks/actions/workflows/package_components_workflow.yml) | GitHub Actions | ||
|
||
## Documentation | ||
| Content | Description | ||
| -- | -- | | ||
| [Repo Structure](.docs/repo_structure.md) | The structuring of the repo. | ||
| [Getting Started](.docs/getting_started.md) | Start using the repo. | ||
| [Design](.docs/design.md) | The software architecture diagram(s) and design(s). | ||
| [Workflow](.docs/workflow.md) | The software automated software pipeline(s). | ||
| [Docker Support](.docs/docker_support.md) | Details about how docker is set up for this repo. | ||
| [Support & Contribute](.docs/support_contribute.md) | Basic queries, constributing to the repo and supporting the team(s) working on this open-source repo. |
This file was deleted.
Oops, something went wrong.