The Bootcamp Module 7 Challenge - Managing Pasive Income : SQL Financial Databases in Python aims to create a web application that analyzes the performance of a hypothetical fintech ETF. The application utilizes SQL, Python, and the Voilà library to provide insights into the daily and cumulative returns of the ETF's constituent stocks.
The following list includes the main technologies and tools using during the preparation and deployment of the solution:
1. Python - Programming language used to code the solution. Version 3.7.13 was used. Required libraries and frames listed in the Installation section below
2. GitHub - Reposotory for code deployment, version management and documentation of the presented solution
3. Jupyter Labs - IDE tool for coding, code testing/debugging and solution documentation. Version V3.4.4 was used
4. Git Bash console - Local console used to test the coded solution and sync wiht GitHub Version 2.40.0.windows.1 was utilized
5. Slack - Collaboration tool to communicate and brainstorm with other FinTech Bootcamp participants
7. pandas - Pandas is a popular Python library for data manipulation and analysis. It provides data structures like DataFrames for handling and analyzing structured data effectively. In the code, Pandas is used to display the PyChain ledger as a DataFrame. Indysllation details below.
8. hvPlot - hvPlot is a high-level plotting library that provides an interface to generate interactive visualizations using the HoloViews library. It allows you to create visualizations with just a few lines of code and is especially well-suited for data analysis in Jupyter notebooks.
9. Voilà - Voilà is a library that helps you turn Jupyter notebooks into interactive web applications. It allows you to deploy your Jupyter notebooks as standalone web applications without the need for any additional coding.
For additional details, please refer to the watermark output at the bottom of the etf_analyzer.ipynb
Jupyter Notebook
pip install pandas
pip install hvplot
Note Keep in mind that hvPlot is built on top of HoloViews and other libraries. Depending on your needs, you might need to install additional libraries. For example, if you want to use the interactive features, you might also need to install Bokeh:
pip install bokeh
pip install voila
The 7.PasiveInvesting repository in GitHub contains the solution components. The repository consists of the following folders and contents as described below:
1. gitignore : Instructions for which files/file types to exclude from the sync process between GitHub and the local environment.
2. README.md : The present file containing this outline of the challenge and its components and results.
4. etf_analyzer.ipynb: This is the Jupyter Notebook containing the Python code for the challenge solution.
voila etf_analyzer.ipynb