Skip to content

File structure

Axel Gard edited this page Jun 24, 2021 · 6 revisions

example of the file structure for your project

cira-boilerplate by cira group

my-project
├── LICENSE
├── README.md
├── requirements.txt
└── src
    └── main.py

cira package filestructsure

cira
├── cira
│   ├── alpaca.py
│   ├── config.py
│   ├── exchange.py
│   ├── __init__.py
│   ├── logging.py
│   ├── portfolio.py
│   ├── stock.py
│   └── util.py
├── LICENSE.txt
├── MANIFEST.in
├── README.md
├── requirements.txt
├── setup.py
├── temp.py
└── tests
    └── test_cira.py
Clone this wiki locally