├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── python-package-conda.yml ├── .gitignore ├── .vscode └── extensions.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _Asset Library ├── AutoRefreshFlow.png ├── AutoRefreshWindowUIElement.png ├── AutoRefreshWindowUIElement2.png ├── IMDB_Oscar_Highlight.png ├── IMDB_Top250_Heatmap.png ├── IMDB_Top250_Trend.gif ├── IMDB_Top250_Trend.png ├── IMDB_Top_List.png ├── Layoffs_Card.png ├── Layoffs_MobileView.png ├── Layoffs_MonthlyDetail.png ├── Layoffs_Screenshot.png ├── Movies_Dashboard.png ├── Movies_Dependencies.png ├── Plex_Collection_Card.png ├── Plex_Movie_Card.png ├── Plex_Movie_Library.png ├── Source_Files │ ├── Baseline.pbit │ ├── IMDB_Charts.py │ ├── IMDB_Top_Lists.py │ ├── Layoffs.pbit │ ├── Movies.pbit │ ├── Plex_Movies.py │ ├── Unicorn.pbit │ └── WorldBank.pbit ├── Unicorn_Card.png ├── Unicorn_Screenshot.png ├── Unicorn_Trend.gif ├── WorldBank_Dependencies.png ├── WorldBank_GDP_Screenshot.png ├── WorldBank_WorldMap_Screenshot.png └── Worldbank_Life_Expectancy_Trend.gif └── docs ├── BasicData.md ├── FlowAutoRefresh.md ├── Layoffs.md ├── Movies.md ├── Unicorn.md ├── WorldBank.md ├── YahooFinanceAPI.md └── markdown-cheat-sheet.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/python-package-conda.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/.github/workflows/python-package-conda.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/README.md -------------------------------------------------------------------------------- /_Asset Library/AutoRefreshFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/AutoRefreshFlow.png -------------------------------------------------------------------------------- /_Asset Library/AutoRefreshWindowUIElement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/AutoRefreshWindowUIElement.png -------------------------------------------------------------------------------- /_Asset Library/AutoRefreshWindowUIElement2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/AutoRefreshWindowUIElement2.png -------------------------------------------------------------------------------- /_Asset Library/IMDB_Oscar_Highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/IMDB_Oscar_Highlight.png -------------------------------------------------------------------------------- /_Asset Library/IMDB_Top250_Heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/IMDB_Top250_Heatmap.png -------------------------------------------------------------------------------- /_Asset Library/IMDB_Top250_Trend.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/IMDB_Top250_Trend.gif -------------------------------------------------------------------------------- /_Asset Library/IMDB_Top250_Trend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/IMDB_Top250_Trend.png -------------------------------------------------------------------------------- /_Asset Library/IMDB_Top_List.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/IMDB_Top_List.png -------------------------------------------------------------------------------- /_Asset Library/Layoffs_Card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/Layoffs_Card.png -------------------------------------------------------------------------------- /_Asset Library/Layoffs_MobileView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/Layoffs_MobileView.png -------------------------------------------------------------------------------- /_Asset Library/Layoffs_MonthlyDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/Layoffs_MonthlyDetail.png -------------------------------------------------------------------------------- /_Asset Library/Layoffs_Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/Layoffs_Screenshot.png -------------------------------------------------------------------------------- /_Asset Library/Movies_Dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/Movies_Dashboard.png -------------------------------------------------------------------------------- /_Asset Library/Movies_Dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/Movies_Dependencies.png -------------------------------------------------------------------------------- /_Asset Library/Plex_Collection_Card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/Plex_Collection_Card.png -------------------------------------------------------------------------------- /_Asset Library/Plex_Movie_Card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/Plex_Movie_Card.png -------------------------------------------------------------------------------- /_Asset Library/Plex_Movie_Library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/Plex_Movie_Library.png -------------------------------------------------------------------------------- /_Asset Library/Source_Files/Baseline.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/Source_Files/Baseline.pbit -------------------------------------------------------------------------------- /_Asset Library/Source_Files/IMDB_Charts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/Source_Files/IMDB_Charts.py -------------------------------------------------------------------------------- /_Asset Library/Source_Files/IMDB_Top_Lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/Source_Files/IMDB_Top_Lists.py -------------------------------------------------------------------------------- /_Asset Library/Source_Files/Layoffs.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/Source_Files/Layoffs.pbit -------------------------------------------------------------------------------- /_Asset Library/Source_Files/Movies.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/Source_Files/Movies.pbit -------------------------------------------------------------------------------- /_Asset Library/Source_Files/Plex_Movies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/Source_Files/Plex_Movies.py -------------------------------------------------------------------------------- /_Asset Library/Source_Files/Unicorn.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/Source_Files/Unicorn.pbit -------------------------------------------------------------------------------- /_Asset Library/Source_Files/WorldBank.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/Source_Files/WorldBank.pbit -------------------------------------------------------------------------------- /_Asset Library/Unicorn_Card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/Unicorn_Card.png -------------------------------------------------------------------------------- /_Asset Library/Unicorn_Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/Unicorn_Screenshot.png -------------------------------------------------------------------------------- /_Asset Library/Unicorn_Trend.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/Unicorn_Trend.gif -------------------------------------------------------------------------------- /_Asset Library/WorldBank_Dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/WorldBank_Dependencies.png -------------------------------------------------------------------------------- /_Asset Library/WorldBank_GDP_Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/WorldBank_GDP_Screenshot.png -------------------------------------------------------------------------------- /_Asset Library/WorldBank_WorldMap_Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/WorldBank_WorldMap_Screenshot.png -------------------------------------------------------------------------------- /_Asset Library/Worldbank_Life_Expectancy_Trend.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/_Asset Library/Worldbank_Life_Expectancy_Trend.gif -------------------------------------------------------------------------------- /docs/BasicData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/docs/BasicData.md -------------------------------------------------------------------------------- /docs/FlowAutoRefresh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/docs/FlowAutoRefresh.md -------------------------------------------------------------------------------- /docs/Layoffs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/docs/Layoffs.md -------------------------------------------------------------------------------- /docs/Movies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/docs/Movies.md -------------------------------------------------------------------------------- /docs/Unicorn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/docs/Unicorn.md -------------------------------------------------------------------------------- /docs/WorldBank.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/docs/WorldBank.md -------------------------------------------------------------------------------- /docs/YahooFinanceAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/docs/YahooFinanceAPI.md -------------------------------------------------------------------------------- /docs/markdown-cheat-sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnneycao/PowerBI-Open-Data-for-fun/HEAD/docs/markdown-cheat-sheet.md --------------------------------------------------------------------------------