Skip to content

WellyngtonF/FinanceFollower

Repository files navigation

Finance Follower


Setting the ambient


Install conda

Get anaconda installer on https://www.anaconda.com/products/distribution

Download and install the latest version of conda.


Creating environment for the project

This file contains all necessary package for the project.

conda env create -f ff.yml

Linter

Install any linter for the project.


#Coding standards

###This project uses the PEP8 style guide convention. For any doubts, please refer to the official PEP8 style guide.


Naming types

  • b (single lowercase letter)

  • B (single uppercase letter)

  • lowercase

  • lower_case_with_underscores

  • UPPERCASE

  • UPPER_CASE_WITH_UNDERSCORES

  • CapitalizedWords (or CapWords, or CamelCase – so named because of the bumpy look of its letters [4]).

  • mixedCase (differs from CapitalizedWords by initial lowercase character!) Capitalized_Words_With_Underscores

Naming guide

  • Packages and Module Names - lowercase

  • Class Names - CamelCase

  • Global Variable Names - lower_case_with_underscores

  • Function and Variable Names - lower_case_with_underscores

  • Constants - UPPER_CASE_WITH_UNDERSCORES

  • Attribute - lower_case_with_underscores


#Usefull commands:

Exporting the environment

  • Linux:
conda env export --no-builds | grep -v "prefix" > ff.yml
  • Windows:
conda env export --no-builds | findstr -v "prefix" > ff.yml

Deleting and Creating the environment

conda deactivate 
conda remove -n FinanceFollower --all
conda env create --file ff.yml
conda activate FinanceFollower

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published