{"id":22429852,"url":"https://github.com/justcodeit7/streamlit_101","last_synced_at":"2025-10-10T23:19:45.698Z","repository":{"id":266453522,"uuid":"896271089","full_name":"JustCodeIt7/Streamlit_101","owner":"JustCodeIt7","description":"Code for youtube videos on streamlit","archived":false,"fork":false,"pushed_at":"2025-06-25T10:33:06.000Z","size":383,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-25T10:47:54.284Z","etag":null,"topics":["python","streamlit","tutorial","tutorial-code"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JustCodeIt7.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-11-29T23:32:57.000Z","updated_at":"2025-06-25T10:33:10.000Z","dependencies_parsed_at":"2024-12-04T11:18:35.761Z","dependency_job_id":"2704691c-73ff-49f3-b2b4-0a5bff88a5a8","html_url":"https://github.com/JustCodeIt7/Streamlit_101","commit_stats":null,"previous_names":["justcodeit7/streamlit_101"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/JustCodeIt7/Streamlit_101","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JustCodeIt7%2FStreamlit_101","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JustCodeIt7%2FStreamlit_101/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JustCodeIt7%2FStreamlit_101/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JustCodeIt7%2FStreamlit_101/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JustCodeIt7","download_url":"https://codeload.github.com/JustCodeIt7/Streamlit_101/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JustCodeIt7%2FStreamlit_101/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279005552,"owners_count":26083918,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["python","streamlit","tutorial","tutorial-code"],"created_at":"2024-12-05T21:05:57.474Z","updated_at":"2025-10-10T23:19:45.692Z","avatar_url":"https://github.com/JustCodeIt7.png","language":"Python","readme":"# Streamlit 101 - Tutorial Code Repository\n\nThis repository contains the code examples and applications for the \"Streamlit 101\" YouTube tutorial series. It's designed to help you learn Streamlit by exploring various features and building a comprehensive multi-page stock analysis dashboard.\n\n## Project Overview\n\nThe primary goal of this repository is to provide hands-on code for viewers of the Streamlit 101 tutorial series. It includes:\n- Numerous small examples focusing on specific Streamlit functionalities (widgets, layout, data display, etc.).\n- A flagship multi-page stock analysis dashboard (`Part_18_Multipage_Stock_Dashboard`) showcasing a more complex, real-world application.\n\n## Directory Structure\n\nThe repository is organized into parts, where each `Part_X_...` directory corresponds to a segment of the tutorial series and contains the relevant Streamlit code examples.\n\n- **`Part_1_write/` to `Part_17_Advanced_MultiPage_Nav/`**: These directories contain focused examples demonstrating specific Streamlit features such as text elements, data display, input widgets, media embedding, charting, layout options, chat elements, status indicators, navigation techniques, state management, connection secrets, caching, and custom components.\n- **`Part_18_Multipage_Stock_Dashboard/`**: This directory houses a comprehensive multi-page stock analysis dashboard.\n- **`Part_18_Multipage_Stock_Dashboard-dev/`**: A development or alternative version of the stock dashboard.\n- **`context_portal/`**: Contains files related to a context portal, possibly for managing or accessing data.\n- Root directory: Contains general project files like `.gitignore`, `LICENSE`, and a global `requirments.txt` for some of the simpler examples.\n\n## Stock Dashboard (`Part_18_Multipage_Stock_Dashboard`)\n\nThis is the main application built throughout the tutorial series, demonstrating how to create a sophisticated, interactive multi-page Streamlit app.\n\n### Key Features:\n- **Stock Overview**: Real-time metrics, interactive candlestick charts, volume analysis, and performance summaries.\n- **Custom Ticker Input**: Analyze any publicly traded stock by entering its ticker symbol.\n- **Real-Time Data**: Fetches live market data from Yahoo Finance.\n- **Technical Analysis**: Includes 15+ technical indicators (RSI, MACD, Bollinger Bands, etc.) with customizable parameters, trading signals, and trend analysis.\n- **Financial Statements**: Analysis of income statements, balance sheets, and cash flow statements, along with key financial ratios and a financial health assessment. (Note: Full detailed statements are primarily for sample data; real-time data provides key metrics and ratios).\n- **Sentiment Analysis**: News and social media sentiment tracking, market impact correlation, and sentiment trend visualization.\n- **Price Prediction**: Machine learning models (ARIMA, Prophet, Linear Regression, Ensemble) for stock price forecasting, including model performance comparison and feature importance.\n\n### Setup and Running the Stock Dashboard:\n1. Navigate to the dashboard directory:\n   ```bash\n   cd Part_18_Multipage_Stock_Dashboard\n   ```\n2. Install the specific dependencies for the dashboard:\n   ```bash\n   pip install -r requirements.txt\n   ```\n   Key dependencies include: `streamlit, pandas, numpy, plotly, ta-lib, pandas-ta, scikit-learn, prophet, yfinance`.\n3. Run the Streamlit application:\n   ```bash\n   streamlit run 18_app.py\n   ```\n4. Open your web browser and go to `http://localhost:8501`.\n\nRefer to `Part_18_Multipage_Stock_Dashboard/README.md` for more detailed information on this specific application.\n\n## Other Tutorial Parts\n\nThe directories named `Part_1_write`, `Part_2_Text`, `Part_3_Data_Elements`, etc., contain smaller, self-contained Streamlit applications. These are designed to illustrate individual Streamlit functionalities covered in the tutorials. Users are encouraged to explore these parts to understand specific features in isolation.\n\n## General Usage\n\nTo run any of the individual Streamlit apps within the subdirectories (e.g., `Part_1_write`):\n1. Navigate to the specific part's directory:\n   ```bash\n   cd Part_X_Directory_Name\n   ```\n2. Run the Streamlit application, which is typically named `app.py` or follows a `pX_... .py` pattern:\n   ```bash\n   streamlit run app.py\n   ```\n   (Replace `app.py` with the actual main Python file name if different for a particular part).\n\n## Dependencies\n\n- Basic dependencies for some of the simpler tutorial parts are listed in the root `requirments.txt` file (e.g., `streamlit, pandas, numpy, matplotlib`). You can install these using:\n  ```bash\n  pip install -r requirments.txt\n  ```\n- More complex applications, particularly the **`Part_18_Multipage_Stock_Dashboard`**, have their own `requirements.txt` file within their respective directories. These should be used to install dependencies for that specific part to ensure all necessary libraries are available.\n\n## Contributing\n\nWe welcome contributions and suggestions!\n- If you find any issues or have ideas for improvements, please open an issue on the GitHub repository.\n- If you'd like to contribute code, please fork the repository and submit a pull request with your changes.\n\n## License\n\nThis project is licensed under the terms of the `LICENSE` file. Please see the `LICENSE` file for more details.\n---\n\nHappy Streamlit-ing!\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjustcodeit7%2Fstreamlit_101","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjustcodeit7%2Fstreamlit_101","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjustcodeit7%2Fstreamlit_101/lists"}