├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── work-to-do.md └── workflows │ └── spellcheck.yml ├── .gitignore ├── .spellcheck.yml ├── .wordlist.txt ├── README.md ├── documentation ├── Change_Log.md ├── Developing_PaperPi.md ├── Frame_Cable_Case.md ├── Plugins.md ├── Troubleshooting.md ├── developing_plugins.md ├── images │ ├── Finshed_Cable.jpg │ ├── JST_end.jpg │ ├── Molex_end.jpg │ ├── PaperPi_Demo_frame.gif │ ├── frame_backing_board.jpg │ ├── frame_board_cutout.jpg │ ├── frame_board_mounted.jpg │ ├── frame_completed.jpg │ ├── frame_mounting_tape.jpg │ ├── frame_spacer_cutout.jpg │ ├── paperpiV3.gif │ ├── paperpiV3.jpg │ ├── paperpi_playing.jpg │ ├── sbs_configuration.jpg │ ├── sbs_daemon.jpg │ ├── sbs_deb_packages.jpg │ ├── sbs_install_packages.jpg │ ├── sbs_paste_command.jpg │ ├── sbs_sudo_password.jpg │ ├── trouble_bad_text.jpg │ └── trouble_streaks.jpg ├── source │ ├── Plugins.md │ └── Plugins_post.md └── step_by_step_instructions.md ├── install ├── install.sh ├── install_exclude.txt ├── install_include.txt ├── paperpi ├── paperpi-daemon.service ├── paperpi.ini ├── remote_install.sh ├── remote_install_development.sh └── requirements.txt ├── jupytext.toml ├── paperpi ├── config │ ├── logging.cfg │ ├── paperpi.ini │ └── paperpi_base.ini ├── debian_packages-paperpi.txt ├── fonts │ ├── ABeeZee │ │ ├── ABeeZee-Italic.ttf │ │ ├── ABeeZee-Regular.ttf │ │ └── OFL.txt │ ├── Anton │ │ ├── Anton-Regular.ttf │ │ └── OFL.txt │ ├── BenchNine │ │ ├── BenchNine-Bold.ttf │ │ ├── BenchNine-Light.ttf │ │ ├── BenchNine-Regular.ttf │ │ └── OFL.txt │ ├── Dosis │ │ ├── Dosis-VariableFontwght.ttf │ │ ├── OFL.txt │ │ ├── README │ │ └── static │ │ │ ├── Dosis-Bold.ttf │ │ │ ├── Dosis-ExtraBold.ttf │ │ │ ├── Dosis-ExtraLight.ttf │ │ │ ├── Dosis-Light.ttf │ │ │ ├── Dosis-Medium.ttf │ │ │ ├── Dosis-Regular.ttf │ │ │ └── Dosis-SemiBold.ttf │ ├── Economica │ │ ├── Economica-Bold.ttf │ │ ├── Economica-BoldItalic.ttf │ │ ├── Economica-Italic.ttf │ │ ├── Economica-Regular.ttf │ │ └── OFL.txt │ ├── Josefin_Sans │ │ ├── JosefinSans-Bold.ttf │ │ ├── JosefinSans-BoldItalic.ttf │ │ ├── JosefinSans-ExtraLight.ttf │ │ ├── JosefinSans-ExtraLightItalic.ttf │ │ ├── JosefinSans-Italic-VariableFont_wght.ttf │ │ ├── JosefinSans-Italic.ttf │ │ ├── JosefinSans-Light.ttf │ │ ├── JosefinSans-LightItalic.ttf │ │ ├── JosefinSans-Medium.ttf │ │ ├── JosefinSans-MediumItalic.ttf │ │ ├── JosefinSans-Regular.ttf │ │ ├── JosefinSans-SemiBold.ttf │ │ ├── JosefinSans-SemiBoldItalic.ttf │ │ ├── JosefinSans-Thin.ttf │ │ ├── JosefinSans-ThinItalic.ttf │ │ └── JosefinSans-VariableFont_wght.ttf │ ├── Kanit │ │ ├── Kanit-Black.ttf │ │ ├── Kanit-BlackItalic.ttf │ │ ├── Kanit-Bold.ttf │ │ ├── Kanit-BoldItalic.ttf │ │ ├── Kanit-ExtraBold.ttf │ │ ├── Kanit-ExtraBoldItalic.ttf │ │ ├── Kanit-ExtraLight.ttf │ │ ├── Kanit-ExtraLightItalic.ttf │ │ ├── Kanit-Italic.ttf │ │ ├── Kanit-Light.ttf │ │ ├── Kanit-LightItalic.ttf │ │ ├── Kanit-Medium.ttf │ │ ├── Kanit-MediumItalic.ttf │ │ ├── Kanit-Regular.ttf │ │ ├── Kanit-SemiBold.ttf │ │ ├── Kanit-SemiBoldItalic.ttf │ │ ├── Kanit-Thin.ttf │ │ ├── Kanit-ThinItalic.ttf │ │ └── OFL.txt │ ├── Lato │ │ ├── Lato-Black.ttf │ │ ├── Lato-BlackItalic.ttf │ │ ├── Lato-Bold.ttf │ │ ├── Lato-BoldItalic.ttf │ │ ├── Lato-Italic.ttf │ │ ├── Lato-Light.ttf │ │ ├── Lato-LightItalic.ttf │ │ ├── Lato-Regular.ttf │ │ ├── Lato-Thin.ttf │ │ ├── Lato-ThinItalic.ttf │ │ └── Lato.zip │ ├── LibreCaslonText │ │ ├── LibreCaslonText-Bold.ttf │ │ ├── LibreCaslonText-Italic.ttf │ │ └── LibreCaslonText-Regular.ttf │ ├── Montserrat │ │ ├── Montserrat-Black.ttf │ │ ├── Montserrat-BlackItalic.ttf │ │ ├── Montserrat-Bold.ttf │ │ ├── Montserrat-BoldItalic.ttf │ │ ├── Montserrat-ExtraBold.ttf │ │ ├── Montserrat-ExtraBoldItalic.ttf │ │ ├── Montserrat-ExtraLight.ttf │ │ ├── Montserrat-ExtraLightItalic.ttf │ │ ├── Montserrat-Italic.ttf │ │ ├── Montserrat-Light.ttf │ │ ├── Montserrat-LightItalic.ttf │ │ ├── Montserrat-Medium.ttf │ │ ├── Montserrat-MediumItalic.ttf │ │ ├── Montserrat-Regular.ttf │ │ ├── Montserrat-SemiBold.ttf │ │ ├── Montserrat-SemiBoldItalic.ttf │ │ ├── Montserrat-Thin.ttf │ │ ├── Montserrat-ThinItalic.ttf │ │ ├── Montserrat.zip │ │ └── OFL.txt │ ├── OFL.txt │ ├── Open_Sans │ │ ├── LICENSE.txt │ │ ├── OpenSans-Bold.ttf │ │ ├── OpenSans-BoldItalic.ttf │ │ ├── OpenSans-ExtraBold.ttf │ │ ├── OpenSans-ExtraBoldItalic.ttf │ │ ├── OpenSans-Italic.ttf │ │ ├── OpenSans-Light.ttf │ │ ├── OpenSans-LightItalic.ttf │ │ ├── OpenSans-Regular.ttf │ │ ├── OpenSans-SemiBold.ttf │ │ └── OpenSans-SemiBoldItalic.ttf │ ├── Oswald │ │ ├── Oswald-VariableFont_wght.ttf │ │ ├── README.txt │ │ └── static │ │ │ ├── Oswald-Bold.ttf │ │ │ ├── Oswald-ExtraLight.ttf │ │ │ ├── Oswald-Light.ttf │ │ │ ├── Oswald-Medium.ttf │ │ │ ├── Oswald-Regular.ttf │ │ │ └── Oswald-SemiBold.ttf │ └── Sarabun │ │ ├── OFL.txt │ │ ├── Sarabun-Bold.ttf │ │ ├── Sarabun-BoldItalic.ttf │ │ ├── Sarabun-ExtraBold.ttf │ │ ├── Sarabun-ExtraBoldItalic.ttf │ │ ├── Sarabun-ExtraLight.ttf │ │ ├── Sarabun-ExtraLightItalic.ttf │ │ ├── Sarabun-Italic.ttf │ │ ├── Sarabun-Light.ttf │ │ ├── Sarabun-LightItalic.ttf │ │ ├── Sarabun-Medium.ttf │ │ ├── Sarabun-MediumItalic.ttf │ │ ├── Sarabun-Regular.ttf │ │ ├── Sarabun-SemiBold.ttf │ │ ├── Sarabun-SemiBoldItalic.ttf │ │ ├── Sarabun-Thin.ttf │ │ └── Sarabun-ThinItalic.ttf ├── library │ ├── CacheFiles.ipynb │ ├── CacheFiles.py │ ├── InterruptHandler.ipynb │ ├── InterruptHandler.py │ ├── Plugin.ipynb │ ├── Plugin.py │ ├── PluginTools.ipynb │ ├── PluginTools.py │ ├── __init__.py │ ├── get_help.ipynb │ ├── get_help.py │ ├── run_module.ipynb │ └── run_module.py ├── my_constants.py ├── paperpi.ipynb ├── paperpi.py ├── plugins │ ├── __init__.py │ ├── basic_clock │ │ ├── README.md │ │ ├── __init__.py │ │ ├── basic_clock.basic_clock-L-sample.png │ │ ├── basic_clock.ipynb │ │ ├── basic_clock.layout-L-sample.png │ │ ├── basic_clock.py │ │ ├── constants.py │ │ ├── layout.py │ │ ├── requirements-basic_clock.txt │ │ └── sample.py │ ├── debugging │ │ ├── README.md │ │ ├── __init__.py │ │ ├── constants.ipynb │ │ ├── constants.py │ │ ├── debugging.debugging_basic-L-sample.png │ │ ├── debugging.ipynb │ │ ├── debugging.layout-L-sample.png │ │ ├── debugging.py │ │ ├── layout.ipynb │ │ ├── layout.py │ │ ├── requirements-debugging.txt │ │ ├── sample.ipynb │ │ └── sample.py │ ├── dec_binary_clock │ │ ├── README.md │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── dec_binary_clock.dec_binary_clock-L-sample.png │ │ ├── dec_binary_clock.ipynb │ │ ├── dec_binary_clock.layout-L-sample.png │ │ ├── dec_binary_clock.py │ │ ├── layout.py │ │ ├── requirements-dec_binary_clock.txt │ │ └── sample.py │ ├── default │ │ ├── README.md │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── default.default-L-sample.png │ │ ├── default.ipynb │ │ ├── default.layout-L-sample.png │ │ ├── default.py │ │ ├── layout.py │ │ ├── requirements-default.txt │ │ └── sample.py │ ├── demo_plugin │ │ ├── README.md │ │ ├── README_additional.md │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── demo_plugin.ipynb │ │ ├── demo_plugin.layout-L-sample.png │ │ ├── demo_plugin.my_layout_one-L-sample.png │ │ ├── demo_plugin.py │ │ ├── image.jpg │ │ ├── layout.py │ │ ├── requirements-demo_plugin.txt │ │ └── sample.py │ ├── librespot_client │ │ ├── README.md │ │ ├── README_additional.md │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── layout.py │ │ ├── librespot_client.album_art_title-L-sample.png │ │ ├── librespot_client.album_art_title-RGB-sample.png │ │ ├── librespot_client.cover_art_only-L-sample.png │ │ ├── librespot_client.cover_art_only-RGB-sample.png │ │ ├── librespot_client.ipynb │ │ ├── librespot_client.layout-L-sample.png │ │ ├── librespot_client.layout-RGB-sample.png │ │ ├── librespot_client.py │ │ ├── librespot_client.three_rows_text_only-L-sample.png │ │ ├── librespot_client.two_column_three_row-L-sample.png │ │ ├── librespot_client.two_column_three_row-RGB-sample.png │ │ ├── librespot_client.two_rows_text_only-L-sample.png │ │ ├── requirements-librespot_client.txt │ │ └── sample.py │ ├── lms_client │ │ ├── README.md │ │ ├── README_additional.md │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── layout.py │ │ ├── lms_client.album_art_title-L-sample.png │ │ ├── lms_client.album_art_title-RGB-sample.png │ │ ├── lms_client.cover_art_only-L-sample.png │ │ ├── lms_client.cover_art_only-RGB-sample.png │ │ ├── lms_client.ipynb │ │ ├── lms_client.layout-L-sample.png │ │ ├── lms_client.layout-RGB-sample.png │ │ ├── lms_client.py │ │ ├── lms_client.three_rows_text_only-L-sample.png │ │ ├── lms_client.two_column_three_row-L-sample.png │ │ ├── lms_client.two_column_three_row-RGB-sample.png │ │ ├── lms_client.two_rows_text_only-L-sample.png │ │ ├── requirements-lms_client.txt │ │ └── sample.py │ ├── met_no │ │ ├── LICENSE │ │ ├── README.md │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── images │ │ │ ├── symbol_codes │ │ │ │ ├── clearsky_day.jpeg │ │ │ │ ├── clearsky_night.jpeg │ │ │ │ ├── clearsky_polartwilight.jpeg │ │ │ │ ├── cloudy.jpeg │ │ │ │ ├── fair_day.jpeg │ │ │ │ ├── fair_night.jpeg │ │ │ │ ├── fair_polartwilight.jpeg │ │ │ │ ├── fog.jpeg │ │ │ │ ├── heavyrain.jpeg │ │ │ │ ├── heavyrainandthunder.jpeg │ │ │ │ ├── heavyrainshowers_day.jpeg │ │ │ │ ├── heavyrainshowers_night.jpeg │ │ │ │ ├── heavyrainshowers_polartwilight.jpeg │ │ │ │ ├── heavyrainshowersandthunder_day.jpeg │ │ │ │ ├── heavyrainshowersandthunder_night.jpeg │ │ │ │ ├── heavyrainshowersandthunder_polartwilight.jpeg │ │ │ │ ├── heavysleet.jpeg │ │ │ │ ├── heavysleetandthunder.jpeg │ │ │ │ ├── heavysleetshowers_day.jpeg │ │ │ │ ├── heavysleetshowers_night.jpeg │ │ │ │ ├── heavysleetshowers_polartwilight.jpeg │ │ │ │ ├── heavysleetshowersandthunder_day.jpeg │ │ │ │ ├── heavysleetshowersandthunder_night.jpeg │ │ │ │ ├── heavysleetshowersandthunder_polartwilight.jpeg │ │ │ │ ├── heavysnow.jpeg │ │ │ │ ├── heavysnowandthunder.jpeg │ │ │ │ ├── heavysnowshowers_day.jpeg │ │ │ │ ├── heavysnowshowers_night.jpeg │ │ │ │ ├── heavysnowshowers_polartwilight.jpeg │ │ │ │ ├── heavysnowshowersandthunder_day.jpeg │ │ │ │ ├── heavysnowshowersandthunder_night.jpeg │ │ │ │ ├── heavysnowshowersandthunder_polartwilight.jpeg │ │ │ │ ├── lightrain.jpeg │ │ │ │ ├── lightrainandthunder.jpeg │ │ │ │ ├── lightrainshowers_day.jpeg │ │ │ │ ├── lightrainshowers_night.jpeg │ │ │ │ ├── lightrainshowers_polartwilight.jpeg │ │ │ │ ├── lightrainshowersandthunder_day.jpeg │ │ │ │ ├── lightrainshowersandthunder_night.jpeg │ │ │ │ ├── lightrainshowersandthunder_polartwilight.jpeg │ │ │ │ ├── lightsleet.jpeg │ │ │ │ ├── lightsleetandthunder.jpeg │ │ │ │ ├── lightsleetshowers_day.jpeg │ │ │ │ ├── lightsleetshowers_night.jpeg │ │ │ │ ├── lightsleetshowers_polartwilight.jpeg │ │ │ │ ├── lightsnow.jpeg │ │ │ │ ├── lightsnowandthunder.jpeg │ │ │ │ ├── lightsnowshowers_day.jpeg │ │ │ │ ├── lightsnowshowers_night.jpeg │ │ │ │ ├── lightsnowshowers_polartwilight.jpeg │ │ │ │ ├── lightssleetshowersandthunder_day.jpeg │ │ │ │ ├── lightssleetshowersandthunder_night.jpeg │ │ │ │ ├── lightssleetshowersandthunder_polartwilight.jpeg │ │ │ │ ├── lightssnowshowersandthunder_day.jpeg │ │ │ │ ├── lightssnowshowersandthunder_night.jpeg │ │ │ │ ├── lightssnowshowersandthunder_polartwilight.jpeg │ │ │ │ ├── partlycloudy_day.jpeg │ │ │ │ ├── partlycloudy_night.jpeg │ │ │ │ ├── partlycloudy_polartwilight.jpeg │ │ │ │ ├── rain.jpeg │ │ │ │ ├── rainandthunder.jpeg │ │ │ │ ├── rainshowers_day.jpeg │ │ │ │ ├── rainshowers_night.jpeg │ │ │ │ ├── rainshowers_polartwilight.jpeg │ │ │ │ ├── rainshowersandthunder_day.jpeg │ │ │ │ ├── rainshowersandthunder_night.jpeg │ │ │ │ ├── rainshowersandthunder_polartwilight.jpeg │ │ │ │ ├── sleet.jpeg │ │ │ │ ├── sleetandthunder.jpeg │ │ │ │ ├── sleetshowers_day.jpeg │ │ │ │ ├── sleetshowers_night.jpeg │ │ │ │ ├── sleetshowers_polartwilight.jpeg │ │ │ │ ├── sleetshowersandthunder_day.jpeg │ │ │ │ ├── sleetshowersandthunder_night.jpeg │ │ │ │ ├── sleetshowersandthunder_polartwilight.jpeg │ │ │ │ ├── snow.jpeg │ │ │ │ ├── snowandthunder.jpeg │ │ │ │ ├── snowshowers_day.jpeg │ │ │ │ ├── snowshowers_night.jpeg │ │ │ │ ├── snowshowers_polartwilight.jpeg │ │ │ │ ├── snowshowersandthunder_day.jpeg │ │ │ │ ├── snowshowersandthunder_night.jpeg │ │ │ │ └── snowshowersandthunder_polartwilight.jpeg │ │ │ └── wind_barbs │ │ │ │ ├── 00_wind_barbpng.png │ │ │ │ ├── 01_wind_barbpng.png │ │ │ │ ├── 02_wind_barbpng.png │ │ │ │ ├── 03_wind_barbpng.png │ │ │ │ ├── 04_wind_barbpng.png │ │ │ │ ├── 05_wind_barbpng.png │ │ │ │ ├── 06_wind_barbpng.png │ │ │ │ ├── 07_wind_barbpng.png │ │ │ │ ├── 08_wind_barbpng.png │ │ │ │ ├── 09_wind_barbpng.png │ │ │ │ ├── 10_wind_barbpng.png │ │ │ │ ├── 11_wind_barbpng.png │ │ │ │ ├── 12_wind_barbpng.png │ │ │ │ ├── 13_wind_barbpng.png │ │ │ │ ├── 14_wind_barbpng.png │ │ │ │ ├── 15_wind_barbpng.png │ │ │ │ ├── 16_wind_barbpng.png │ │ │ │ ├── 17_wind_barbpng.png │ │ │ │ ├── 18_wind_barbpng.png │ │ │ │ ├── 19_wind_barbpng.png │ │ │ │ ├── 20_wind_barbpng.png │ │ │ │ ├── 21_wind_barbpng.png │ │ │ │ └── 99_wind_barbpng.png │ │ ├── layout.bak.py │ │ ├── layout.py │ │ ├── met_no.ipynb │ │ ├── met_no.layout-L-sample.png │ │ ├── met_no.layout-RGB-sample.png │ │ ├── met_no.py │ │ ├── met_no.three_column_icon_wind_temp_precip-L-sample.png │ │ ├── met_no.three_column_icon_wind_temp_precip-RGB-sample.png │ │ ├── met_no.three_row_icon_wind_temp-L-sample.png │ │ ├── met_no.three_row_icon_wind_temp-RGB-sample.png │ │ ├── met_no.two_column_icon_wind_temp_precip-L-sample.png │ │ ├── met_no.two_column_icon_wind_temp_precip-RGB-sample.png │ │ ├── open_weather.ipynb │ │ ├── requirements-met_no.txt │ │ └── sample.py │ ├── moon_phase │ │ ├── README.md │ │ ├── README_additional.md │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── images │ │ │ ├── 0.0.jpeg │ │ │ ├── 1.8.jpeg │ │ │ ├── 10.8.jpeg │ │ │ ├── 100.8.jpeg │ │ │ ├── 102.6.jpeg │ │ │ ├── 104.4.jpeg │ │ │ ├── 106.2.jpeg │ │ │ ├── 108.0.jpeg │ │ │ ├── 109.8.jpeg │ │ │ ├── 111.6.jpeg │ │ │ ├── 113.4.jpeg │ │ │ ├── 115.2.jpeg │ │ │ ├── 117.0.jpeg │ │ │ ├── 118.8.jpeg │ │ │ ├── 12.6.jpeg │ │ │ ├── 120.6.jpeg │ │ │ ├── 122.4.jpeg │ │ │ ├── 124.2.jpeg │ │ │ ├── 126.0.jpeg │ │ │ ├── 127.8.jpeg │ │ │ ├── 129.6.jpeg │ │ │ ├── 131.4.jpeg │ │ │ ├── 133.2.jpeg │ │ │ ├── 135.0.jpeg │ │ │ ├── 136.8.jpeg │ │ │ ├── 138.6.jpeg │ │ │ ├── 14.4.jpeg │ │ │ ├── 140.4.jpeg │ │ │ ├── 142.2.jpeg │ │ │ ├── 144.0.jpeg │ │ │ ├── 145.8.jpeg │ │ │ ├── 147.6.jpeg │ │ │ ├── 149.4.jpeg │ │ │ ├── 151.2.jpeg │ │ │ ├── 153.0.jpeg │ │ │ ├── 154.8.jpeg │ │ │ ├── 156.6.jpeg │ │ │ ├── 158.4.jpeg │ │ │ ├── 16.2.jpeg │ │ │ ├── 160.2.jpeg │ │ │ ├── 162.0.jpeg │ │ │ ├── 163.8.jpeg │ │ │ ├── 165.6.jpeg │ │ │ ├── 167.4.jpeg │ │ │ ├── 169.2.jpeg │ │ │ ├── 171.0.jpeg │ │ │ ├── 172.8.jpeg │ │ │ ├── 174.6.jpeg │ │ │ ├── 176.4.jpeg │ │ │ ├── 178.2.jpeg │ │ │ ├── 18.0.jpeg │ │ │ ├── 180.0.jpeg │ │ │ ├── 181.8.jpeg │ │ │ ├── 183.6.jpeg │ │ │ ├── 185.4.jpeg │ │ │ ├── 187.2.jpeg │ │ │ ├── 189.0.jpeg │ │ │ ├── 19.8.jpeg │ │ │ ├── 190.8.jpeg │ │ │ ├── 192.6.jpeg │ │ │ ├── 194.4.jpeg │ │ │ ├── 196.2.jpeg │ │ │ ├── 198.0.jpeg │ │ │ ├── 199.8.jpeg │ │ │ ├── 201.6.jpeg │ │ │ ├── 203.4.jpeg │ │ │ ├── 205.2.jpeg │ │ │ ├── 207.0.jpeg │ │ │ ├── 208.8.jpeg │ │ │ ├── 21.6.jpeg │ │ │ ├── 210.6.jpeg │ │ │ ├── 212.4.jpeg │ │ │ ├── 214.2.jpeg │ │ │ ├── 216.0.jpeg │ │ │ ├── 217.8.jpeg │ │ │ ├── 219.6.jpeg │ │ │ ├── 221.4.jpeg │ │ │ ├── 223.2.jpeg │ │ │ ├── 225.0.jpeg │ │ │ ├── 226.8.jpeg │ │ │ ├── 228.6.jpeg │ │ │ ├── 23.4.jpeg │ │ │ ├── 230.4.jpeg │ │ │ ├── 232.2.jpeg │ │ │ ├── 234.0.jpeg │ │ │ ├── 235.8.jpeg │ │ │ ├── 237.6.jpeg │ │ │ ├── 239.4.jpeg │ │ │ ├── 241.2.jpeg │ │ │ ├── 243.0.jpeg │ │ │ ├── 244.8.jpeg │ │ │ ├── 246.6.jpeg │ │ │ ├── 248.4.jpeg │ │ │ ├── 25.2.jpeg │ │ │ ├── 250.2.jpeg │ │ │ ├── 252.0.jpeg │ │ │ ├── 253.8.jpeg │ │ │ ├── 255.6.jpeg │ │ │ ├── 257.4.jpeg │ │ │ ├── 259.2.jpeg │ │ │ ├── 261.0.jpeg │ │ │ ├── 262.8.jpeg │ │ │ ├── 264.6.jpeg │ │ │ ├── 266.4.jpeg │ │ │ ├── 268.2.jpeg │ │ │ ├── 27.0.jpeg │ │ │ ├── 270.0.jpeg │ │ │ ├── 271.8.jpeg │ │ │ ├── 273.6.jpeg │ │ │ ├── 275.4.jpeg │ │ │ ├── 277.2.jpeg │ │ │ ├── 279.0.jpeg │ │ │ ├── 28.8.jpeg │ │ │ ├── 280.8.jpeg │ │ │ ├── 282.6.jpeg │ │ │ ├── 284.4.jpeg │ │ │ ├── 286.2.jpeg │ │ │ ├── 288.0.jpeg │ │ │ ├── 289.8.jpeg │ │ │ ├── 291.6.jpeg │ │ │ ├── 293.4.jpeg │ │ │ ├── 295.2.jpeg │ │ │ ├── 297.0.jpeg │ │ │ ├── 298.8.jpeg │ │ │ ├── 3.6.jpeg │ │ │ ├── 30.6.jpeg │ │ │ ├── 300.6.jpeg │ │ │ ├── 302.4.jpeg │ │ │ ├── 304.2.jpeg │ │ │ ├── 306.0.jpeg │ │ │ ├── 307.8.jpeg │ │ │ ├── 309.6.jpeg │ │ │ ├── 311.4.jpeg │ │ │ ├── 313.2.jpeg │ │ │ ├── 315.0.jpeg │ │ │ ├── 316.8.jpeg │ │ │ ├── 318.6.jpeg │ │ │ ├── 32.4.jpeg │ │ │ ├── 320.4.jpeg │ │ │ ├── 322.2.jpeg │ │ │ ├── 324.0.jpeg │ │ │ ├── 325.8.jpeg │ │ │ ├── 327.6.jpeg │ │ │ ├── 329.4.jpeg │ │ │ ├── 331.2.jpeg │ │ │ ├── 333.0.jpeg │ │ │ ├── 334.8.jpeg │ │ │ ├── 336.6.jpeg │ │ │ ├── 338.4.jpeg │ │ │ ├── 34.2.jpeg │ │ │ ├── 340.2.jpeg │ │ │ ├── 342.0.jpeg │ │ │ ├── 343.8.jpeg │ │ │ ├── 345.6.jpeg │ │ │ ├── 347.4.jpeg │ │ │ ├── 349.2.jpeg │ │ │ ├── 351.0.jpeg │ │ │ ├── 352.8.jpeg │ │ │ ├── 354.6.jpeg │ │ │ ├── 356.4.jpeg │ │ │ ├── 358.2.jpeg │ │ │ ├── 36.0.jpeg │ │ │ ├── 360.0.jpeg │ │ │ ├── 37.8.jpeg │ │ │ ├── 39.6.jpeg │ │ │ ├── 41.4.jpeg │ │ │ ├── 43.2.jpeg │ │ │ ├── 45.0.jpeg │ │ │ ├── 46.8.jpeg │ │ │ ├── 48.6.jpeg │ │ │ ├── 5.4.jpeg │ │ │ ├── 50.4.jpeg │ │ │ ├── 52.2.jpeg │ │ │ ├── 54.0.jpeg │ │ │ ├── 55.8.jpeg │ │ │ ├── 57.6.jpeg │ │ │ ├── 59.4.jpeg │ │ │ ├── 61.2.jpeg │ │ │ ├── 63.0.jpeg │ │ │ ├── 64.8.jpeg │ │ │ ├── 66.6.jpeg │ │ │ ├── 68.4.jpeg │ │ │ ├── 7.2.jpeg │ │ │ ├── 70.2.jpeg │ │ │ ├── 72.0.jpeg │ │ │ ├── 73.8.jpeg │ │ │ ├── 75.6.jpeg │ │ │ ├── 77.4.jpeg │ │ │ ├── 79.2.jpeg │ │ │ ├── 81.0.jpeg │ │ │ ├── 82.8.jpeg │ │ │ ├── 84.6.jpeg │ │ │ ├── 86.4.jpeg │ │ │ ├── 88.2.jpeg │ │ │ ├── 9.0.jpeg │ │ │ ├── 90.0.jpeg │ │ │ ├── 91.8.jpeg │ │ │ ├── 93.6.jpeg │ │ │ ├── 95.4.jpeg │ │ │ ├── 97.2.jpeg │ │ │ ├── 99.0.jpeg │ │ │ └── error_message.jpg │ │ ├── layout.py │ │ ├── moon_phase.ipynb │ │ ├── moon_phase.layout-L-sample.png │ │ ├── moon_phase.moon_data-L-sample.png │ │ ├── moon_phase.moon_only-L-sample.png │ │ ├── moon_phase.py │ │ ├── requirements-moon_phase.txt │ │ └── sample.py │ ├── newyorker │ │ ├── README.md │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── images │ │ │ └── shruggy.jpg │ │ ├── layout.py │ │ ├── newyorker.default-L-sample.png │ │ ├── newyorker.ipynb │ │ ├── newyorker.layout-L-sample.png │ │ ├── newyorker.py │ │ ├── requirements-newyorker.txt │ │ └── sample.py │ ├── reddit_quote │ │ ├── README.md │ │ ├── README_additional.md │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── images │ │ │ └── rabbitsq.png │ │ ├── layout.py │ │ ├── reddit_quote.ipynb │ │ ├── reddit_quote.layout-L-sample.png │ │ ├── reddit_quote.layout-RGB-sample.png │ │ ├── reddit_quote.py │ │ ├── reddit_quote.quote-L-sample.png │ │ ├── reddit_quote.quote-RGB-sample.png │ │ ├── reddit_quote.quote_inverse-L-sample.png │ │ ├── reddit_quote.quote_inverse-RGB-sample.png │ │ ├── reddit_quote.quote_small_screen-L-sample.png │ │ ├── reddit_quote.quote_small_screen-RGB-sample.png │ │ ├── requirements-reddit_quote.txt │ │ └── sample.py │ ├── slideshow │ │ ├── README.md │ │ ├── README_additional.md │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── fallback_images │ │ │ ├── README.md │ │ │ ├── agarcus_muscarius.jpg │ │ │ ├── cochlitoma.jpg │ │ │ ├── elephant.jpg │ │ │ ├── fish.jpg │ │ │ ├── papilio_priamus.jpg │ │ │ ├── stegosarus.jpg │ │ │ ├── toxodon.jpg │ │ │ └── zebra.jpg │ │ ├── layout.py │ │ ├── requirements-slideshow.txt │ │ ├── sample.py │ │ ├── slideshow-framed-black_silver_matted.png │ │ ├── slideshow-framed-dim_gray_and_silver_matted.png │ │ ├── slideshow-framed-none.png │ │ ├── slideshow-framed-thick_black.png │ │ ├── slideshow-framed-thick_black_matted.png │ │ ├── slideshow-framed-thin_black.png │ │ ├── slideshow-framed-thin_black_matted.png │ │ ├── slideshow.image_only_centered_blackbkground-L-sample.png │ │ ├── slideshow.image_only_centered_blackbkground-RGB-sample.png │ │ ├── slideshow.image_only_centered_whitebkground-L-sample.png │ │ ├── slideshow.image_only_centered_whitebkground-RGB-sample.png │ │ ├── slideshow.image_time_centered_blackbkground-L-sample.png │ │ ├── slideshow.image_time_centered_blackbkground-RGB-sample.png │ │ ├── slideshow.image_time_centered_whitebkground-L-sample.png │ │ ├── slideshow.image_time_centered_whitebkground-RGB-sample.png │ │ ├── slideshow.ipynb │ │ ├── slideshow.layout-L-sample.png │ │ ├── slideshow.layout-RGB-sample.png │ │ └── slideshow.py │ ├── splash_screen │ │ ├── README.md │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── layout.py │ │ ├── requirements-splash_screen.txt │ │ ├── sample.py │ │ ├── splash_screen.ipynb │ │ ├── splash_screen.layout-L-sample.png │ │ └── splash_screen.py │ ├── system_info │ │ ├── README.md │ │ ├── README_additional.md │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── images │ │ │ ├── chip.jpg │ │ │ └── hdd.jpg │ │ ├── layout.py │ │ ├── requirements-system_info.txt │ │ ├── sample.py │ │ ├── system_info.basic_layout-L-sample.png │ │ ├── system_info.basic_layout-RGB-sample.png │ │ ├── system_info.ipynb │ │ ├── system_info.layout-L-sample.png │ │ ├── system_info.layout-RGB-sample.png │ │ └── system_info.py │ ├── word_clock │ │ ├── README.md │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── layout.py │ │ ├── requirements-word_clock.txt │ │ ├── sample.py │ │ ├── word_clock.ipynb │ │ ├── word_clock.layout-L-sample.png │ │ ├── word_clock.layout-RGB-sample.png │ │ ├── word_clock.py │ │ ├── word_clock.word_clock-L-sample.png │ │ ├── word_clock.word_clock-RGB-sample.png │ │ ├── word_clock.word_clock_lg-L-sample.png │ │ └── word_clock.word_clock_lg-RGB-sample.png │ └── xkcd_comic │ │ ├── README.md │ │ ├── README_additional.md │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── layout.py │ │ ├── requirements-xkcd_comic.txt │ │ ├── sample.py │ │ ├── xkcd_comic.comic_only-L-sample.png │ │ ├── xkcd_comic.comic_title-L-sample.png │ │ ├── xkcd_comic.comic_title_alttext-L-sample.png │ │ ├── xkcd_comic.ipynb │ │ ├── xkcd_comic.layout-L-sample.png │ │ └── xkcd_comic.py └── waveshare_epd │ ├── __init__.py │ ├── epd13in3k.py │ ├── epd1in02.py │ ├── epd1in54.py │ ├── epd1in54_V2.py │ ├── epd1in54b.py │ ├── epd1in54b_V2.py │ ├── epd1in54c.py │ ├── epd1in64g.py │ ├── epd2in13.py │ ├── epd2in13_V2.py │ ├── epd2in13_V3.py │ ├── epd2in13_V4.py │ ├── epd2in13b_V3.py │ ├── epd2in13b_V4.py │ ├── epd2in13bc.py │ ├── epd2in13d.py │ ├── epd2in13g.py │ ├── epd2in36g.py │ ├── epd2in66.py │ ├── epd2in66b.py │ ├── epd2in66g.py │ ├── epd2in7.py │ ├── epd2in7_V2.py │ ├── epd2in7b.py │ ├── epd2in7b_V2.py │ ├── epd2in9.py │ ├── epd2in9_V2.py │ ├── epd2in9b_V3.py │ ├── epd2in9b_V4.py │ ├── epd2in9bc.py │ ├── epd2in9d.py │ ├── epd3in0g.py │ ├── epd3in52.py │ ├── epd3in7.py │ ├── epd4in01f.py │ ├── epd4in2.py │ ├── epd4in26.py │ ├── epd4in2_V2.py │ ├── epd4in2b_V2.py │ ├── epd4in2bc.py │ ├── epd4in37g.py │ ├── epd5in65f.py │ ├── epd5in83.py │ ├── epd5in83_V2.py │ ├── epd5in83b_V2.py │ ├── epd5in83bc.py │ ├── epd7in3f.py │ ├── epd7in3g.py │ ├── epd7in5.py │ ├── epd7in5_HD.py │ ├── epd7in5_V2.py │ ├── epd7in5_V2_fast.py │ ├── epd7in5_V2_old.py │ ├── epd7in5b_HD.py │ ├── epd7in5b_V2.py │ ├── epd7in5bc.py │ ├── epdconfig.py │ └── epdconfig.py_bak ├── plugins_depricated └── crypto │ ├── README.md │ ├── README_additional.md │ ├── __init__.py │ ├── constants.py │ ├── crypto.ipynb │ ├── crypto.layout-L-sample.png │ ├── crypto.py │ ├── crypto.ticker_hd-L-sample.png │ ├── crypto.ticker_simple-L-sample.png │ ├── debian_packages-crypto.txt │ ├── images │ └── unknown.png │ ├── layout.py │ ├── requirements-crypto.txt │ ├── requirements-crypto_hidden.txt │ └── sample.py ├── requirements.txt └── utilities ├── create_docs_old.ipynb ├── create_documentation.ipynb ├── create_documentation.py ├── debian_packages-jupyter_devel.txt ├── find_imports.sh ├── init_devel_environment.sh ├── install_waveshare_libs.sh ├── package.sh ├── requirements-devel.txt └── requirements-jupyter_devel.txt /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/work-to-do.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/.github/ISSUE_TEMPLATE/work-to-do.md -------------------------------------------------------------------------------- /.github/workflows/spellcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/.github/workflows/spellcheck.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/.gitignore -------------------------------------------------------------------------------- /.spellcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/.spellcheck.yml -------------------------------------------------------------------------------- /.wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/.wordlist.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/README.md -------------------------------------------------------------------------------- /documentation/Change_Log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/Change_Log.md -------------------------------------------------------------------------------- /documentation/Developing_PaperPi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/Developing_PaperPi.md -------------------------------------------------------------------------------- /documentation/Frame_Cable_Case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/Frame_Cable_Case.md -------------------------------------------------------------------------------- /documentation/Plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/Plugins.md -------------------------------------------------------------------------------- /documentation/Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/Troubleshooting.md -------------------------------------------------------------------------------- /documentation/developing_plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/developing_plugins.md -------------------------------------------------------------------------------- /documentation/images/Finshed_Cable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/images/Finshed_Cable.jpg -------------------------------------------------------------------------------- /documentation/images/JST_end.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/images/JST_end.jpg -------------------------------------------------------------------------------- /documentation/images/Molex_end.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/images/Molex_end.jpg -------------------------------------------------------------------------------- /documentation/images/PaperPi_Demo_frame.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/images/PaperPi_Demo_frame.gif -------------------------------------------------------------------------------- /documentation/images/frame_backing_board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/images/frame_backing_board.jpg -------------------------------------------------------------------------------- /documentation/images/frame_board_cutout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/images/frame_board_cutout.jpg -------------------------------------------------------------------------------- /documentation/images/frame_board_mounted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/images/frame_board_mounted.jpg -------------------------------------------------------------------------------- /documentation/images/frame_completed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/images/frame_completed.jpg -------------------------------------------------------------------------------- /documentation/images/frame_mounting_tape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/images/frame_mounting_tape.jpg -------------------------------------------------------------------------------- /documentation/images/frame_spacer_cutout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/images/frame_spacer_cutout.jpg -------------------------------------------------------------------------------- /documentation/images/paperpiV3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/images/paperpiV3.gif -------------------------------------------------------------------------------- /documentation/images/paperpiV3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/images/paperpiV3.jpg -------------------------------------------------------------------------------- /documentation/images/paperpi_playing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/images/paperpi_playing.jpg -------------------------------------------------------------------------------- /documentation/images/sbs_configuration.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/images/sbs_configuration.jpg -------------------------------------------------------------------------------- /documentation/images/sbs_daemon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/images/sbs_daemon.jpg -------------------------------------------------------------------------------- /documentation/images/sbs_deb_packages.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/images/sbs_deb_packages.jpg -------------------------------------------------------------------------------- /documentation/images/sbs_install_packages.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/images/sbs_install_packages.jpg -------------------------------------------------------------------------------- /documentation/images/sbs_paste_command.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/images/sbs_paste_command.jpg -------------------------------------------------------------------------------- /documentation/images/sbs_sudo_password.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/images/sbs_sudo_password.jpg -------------------------------------------------------------------------------- /documentation/images/trouble_bad_text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/images/trouble_bad_text.jpg -------------------------------------------------------------------------------- /documentation/images/trouble_streaks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/images/trouble_streaks.jpg -------------------------------------------------------------------------------- /documentation/source/Plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/source/Plugins.md -------------------------------------------------------------------------------- /documentation/source/Plugins_post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/source/Plugins_post.md -------------------------------------------------------------------------------- /documentation/step_by_step_instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/documentation/step_by_step_instructions.md -------------------------------------------------------------------------------- /install/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/install/install.sh -------------------------------------------------------------------------------- /install/install_exclude.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/install/install_exclude.txt -------------------------------------------------------------------------------- /install/install_include.txt: -------------------------------------------------------------------------------- 1 | ../paperpi 2 | ./install 3 | -------------------------------------------------------------------------------- /install/paperpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/install/paperpi -------------------------------------------------------------------------------- /install/paperpi-daemon.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/install/paperpi-daemon.service -------------------------------------------------------------------------------- /install/paperpi.ini: -------------------------------------------------------------------------------- 1 | ../paperpi/config/paperpi.ini -------------------------------------------------------------------------------- /install/remote_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/install/remote_install.sh -------------------------------------------------------------------------------- /install/remote_install_development.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/install/remote_install_development.sh -------------------------------------------------------------------------------- /install/requirements.txt: -------------------------------------------------------------------------------- 1 | pipenv>=2023.6.26 -------------------------------------------------------------------------------- /jupytext.toml: -------------------------------------------------------------------------------- 1 | formats = "ipynb,py:light" -------------------------------------------------------------------------------- /paperpi/config/logging.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/config/logging.cfg -------------------------------------------------------------------------------- /paperpi/config/paperpi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/config/paperpi.ini -------------------------------------------------------------------------------- /paperpi/config/paperpi_base.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/config/paperpi_base.ini -------------------------------------------------------------------------------- /paperpi/debian_packages-paperpi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/debian_packages-paperpi.txt -------------------------------------------------------------------------------- /paperpi/fonts/ABeeZee/ABeeZee-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/ABeeZee/ABeeZee-Italic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/ABeeZee/ABeeZee-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/ABeeZee/ABeeZee-Regular.ttf -------------------------------------------------------------------------------- /paperpi/fonts/ABeeZee/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/ABeeZee/OFL.txt -------------------------------------------------------------------------------- /paperpi/fonts/Anton/Anton-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Anton/Anton-Regular.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Anton/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Anton/OFL.txt -------------------------------------------------------------------------------- /paperpi/fonts/BenchNine/BenchNine-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/BenchNine/BenchNine-Bold.ttf -------------------------------------------------------------------------------- /paperpi/fonts/BenchNine/BenchNine-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/BenchNine/BenchNine-Light.ttf -------------------------------------------------------------------------------- /paperpi/fonts/BenchNine/BenchNine-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/BenchNine/BenchNine-Regular.ttf -------------------------------------------------------------------------------- /paperpi/fonts/BenchNine/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/BenchNine/OFL.txt -------------------------------------------------------------------------------- /paperpi/fonts/Dosis/Dosis-VariableFontwght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Dosis/Dosis-VariableFontwght.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Dosis/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Dosis/OFL.txt -------------------------------------------------------------------------------- /paperpi/fonts/Dosis/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Dosis/README -------------------------------------------------------------------------------- /paperpi/fonts/Dosis/static/Dosis-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Dosis/static/Dosis-Bold.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Dosis/static/Dosis-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Dosis/static/Dosis-ExtraBold.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Dosis/static/Dosis-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Dosis/static/Dosis-ExtraLight.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Dosis/static/Dosis-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Dosis/static/Dosis-Light.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Dosis/static/Dosis-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Dosis/static/Dosis-Medium.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Dosis/static/Dosis-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Dosis/static/Dosis-Regular.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Dosis/static/Dosis-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Dosis/static/Dosis-SemiBold.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Economica/Economica-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Economica/Economica-Bold.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Economica/Economica-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Economica/Economica-BoldItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Economica/Economica-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Economica/Economica-Italic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Economica/Economica-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Economica/Economica-Regular.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Economica/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Economica/OFL.txt -------------------------------------------------------------------------------- /paperpi/fonts/Josefin_Sans/JosefinSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Josefin_Sans/JosefinSans-Bold.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Josefin_Sans/JosefinSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Josefin_Sans/JosefinSans-BoldItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Josefin_Sans/JosefinSans-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Josefin_Sans/JosefinSans-ExtraLight.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Josefin_Sans/JosefinSans-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Josefin_Sans/JosefinSans-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Josefin_Sans/JosefinSans-Italic-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Josefin_Sans/JosefinSans-Italic-VariableFont_wght.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Josefin_Sans/JosefinSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Josefin_Sans/JosefinSans-Italic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Josefin_Sans/JosefinSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Josefin_Sans/JosefinSans-Light.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Josefin_Sans/JosefinSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Josefin_Sans/JosefinSans-LightItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Josefin_Sans/JosefinSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Josefin_Sans/JosefinSans-Medium.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Josefin_Sans/JosefinSans-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Josefin_Sans/JosefinSans-MediumItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Josefin_Sans/JosefinSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Josefin_Sans/JosefinSans-Regular.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Josefin_Sans/JosefinSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Josefin_Sans/JosefinSans-SemiBold.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Josefin_Sans/JosefinSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Josefin_Sans/JosefinSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Josefin_Sans/JosefinSans-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Josefin_Sans/JosefinSans-Thin.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Josefin_Sans/JosefinSans-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Josefin_Sans/JosefinSans-ThinItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Josefin_Sans/JosefinSans-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Josefin_Sans/JosefinSans-VariableFont_wght.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Kanit/Kanit-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Kanit/Kanit-Black.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Kanit/Kanit-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Kanit/Kanit-BlackItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Kanit/Kanit-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Kanit/Kanit-Bold.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Kanit/Kanit-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Kanit/Kanit-BoldItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Kanit/Kanit-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Kanit/Kanit-ExtraBold.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Kanit/Kanit-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Kanit/Kanit-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Kanit/Kanit-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Kanit/Kanit-ExtraLight.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Kanit/Kanit-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Kanit/Kanit-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Kanit/Kanit-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Kanit/Kanit-Italic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Kanit/Kanit-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Kanit/Kanit-Light.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Kanit/Kanit-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Kanit/Kanit-LightItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Kanit/Kanit-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Kanit/Kanit-Medium.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Kanit/Kanit-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Kanit/Kanit-MediumItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Kanit/Kanit-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Kanit/Kanit-Regular.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Kanit/Kanit-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Kanit/Kanit-SemiBold.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Kanit/Kanit-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Kanit/Kanit-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Kanit/Kanit-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Kanit/Kanit-Thin.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Kanit/Kanit-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Kanit/Kanit-ThinItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Kanit/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Kanit/OFL.txt -------------------------------------------------------------------------------- /paperpi/fonts/Lato/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Lato/Lato-Black.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Lato/Lato-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Lato/Lato-BlackItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Lato/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Lato/Lato-Bold.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Lato/Lato-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Lato/Lato-BoldItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Lato/Lato-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Lato/Lato-Italic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Lato/Lato-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Lato/Lato-Light.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Lato/Lato-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Lato/Lato-LightItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Lato/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Lato/Lato-Regular.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Lato/Lato-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Lato/Lato-Thin.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Lato/Lato-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Lato/Lato-ThinItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Lato/Lato.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Lato/Lato.zip -------------------------------------------------------------------------------- /paperpi/fonts/LibreCaslonText/LibreCaslonText-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/LibreCaslonText/LibreCaslonText-Bold.ttf -------------------------------------------------------------------------------- /paperpi/fonts/LibreCaslonText/LibreCaslonText-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/LibreCaslonText/LibreCaslonText-Italic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/LibreCaslonText/LibreCaslonText-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/LibreCaslonText/LibreCaslonText-Regular.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Montserrat/Montserrat-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Montserrat/Montserrat-Black.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Montserrat/Montserrat-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Montserrat/Montserrat-BlackItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Montserrat/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Montserrat/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Montserrat/Montserrat-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Montserrat/Montserrat-BoldItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Montserrat/Montserrat-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Montserrat/Montserrat-ExtraBold.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Montserrat/Montserrat-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Montserrat/Montserrat-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Montserrat/Montserrat-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Montserrat/Montserrat-ExtraLight.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Montserrat/Montserrat-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Montserrat/Montserrat-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Montserrat/Montserrat-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Montserrat/Montserrat-Italic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Montserrat/Montserrat-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Montserrat/Montserrat-Light.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Montserrat/Montserrat-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Montserrat/Montserrat-LightItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Montserrat/Montserrat-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Montserrat/Montserrat-Medium.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Montserrat/Montserrat-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Montserrat/Montserrat-MediumItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Montserrat/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Montserrat/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Montserrat/Montserrat-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Montserrat/Montserrat-SemiBold.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Montserrat/Montserrat-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Montserrat/Montserrat-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Montserrat/Montserrat-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Montserrat/Montserrat-Thin.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Montserrat/Montserrat-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Montserrat/Montserrat-ThinItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Montserrat/Montserrat.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Montserrat/Montserrat.zip -------------------------------------------------------------------------------- /paperpi/fonts/Montserrat/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Montserrat/OFL.txt -------------------------------------------------------------------------------- /paperpi/fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/OFL.txt -------------------------------------------------------------------------------- /paperpi/fonts/Open_Sans/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Open_Sans/LICENSE.txt -------------------------------------------------------------------------------- /paperpi/fonts/Open_Sans/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Open_Sans/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Open_Sans/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Open_Sans/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Open_Sans/OpenSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Open_Sans/OpenSans-ExtraBold.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Open_Sans/OpenSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Open_Sans/OpenSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Open_Sans/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Open_Sans/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Open_Sans/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Open_Sans/OpenSans-Light.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Open_Sans/OpenSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Open_Sans/OpenSans-LightItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Open_Sans/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Open_Sans/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Open_Sans/OpenSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Open_Sans/OpenSans-SemiBold.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Open_Sans/OpenSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Open_Sans/OpenSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Oswald/Oswald-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Oswald/Oswald-VariableFont_wght.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Oswald/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Oswald/README.txt -------------------------------------------------------------------------------- /paperpi/fonts/Oswald/static/Oswald-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Oswald/static/Oswald-Bold.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Oswald/static/Oswald-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Oswald/static/Oswald-ExtraLight.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Oswald/static/Oswald-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Oswald/static/Oswald-Light.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Oswald/static/Oswald-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Oswald/static/Oswald-Medium.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Oswald/static/Oswald-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Oswald/static/Oswald-Regular.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Oswald/static/Oswald-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Oswald/static/Oswald-SemiBold.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Sarabun/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Sarabun/OFL.txt -------------------------------------------------------------------------------- /paperpi/fonts/Sarabun/Sarabun-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Sarabun/Sarabun-Bold.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Sarabun/Sarabun-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Sarabun/Sarabun-BoldItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Sarabun/Sarabun-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Sarabun/Sarabun-ExtraBold.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Sarabun/Sarabun-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Sarabun/Sarabun-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Sarabun/Sarabun-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Sarabun/Sarabun-ExtraLight.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Sarabun/Sarabun-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Sarabun/Sarabun-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Sarabun/Sarabun-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Sarabun/Sarabun-Italic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Sarabun/Sarabun-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Sarabun/Sarabun-Light.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Sarabun/Sarabun-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Sarabun/Sarabun-LightItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Sarabun/Sarabun-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Sarabun/Sarabun-Medium.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Sarabun/Sarabun-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Sarabun/Sarabun-MediumItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Sarabun/Sarabun-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Sarabun/Sarabun-Regular.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Sarabun/Sarabun-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Sarabun/Sarabun-SemiBold.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Sarabun/Sarabun-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Sarabun/Sarabun-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Sarabun/Sarabun-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Sarabun/Sarabun-Thin.ttf -------------------------------------------------------------------------------- /paperpi/fonts/Sarabun/Sarabun-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/fonts/Sarabun/Sarabun-ThinItalic.ttf -------------------------------------------------------------------------------- /paperpi/library/CacheFiles.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/library/CacheFiles.ipynb -------------------------------------------------------------------------------- /paperpi/library/CacheFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/library/CacheFiles.py -------------------------------------------------------------------------------- /paperpi/library/InterruptHandler.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/library/InterruptHandler.ipynb -------------------------------------------------------------------------------- /paperpi/library/InterruptHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/library/InterruptHandler.py -------------------------------------------------------------------------------- /paperpi/library/Plugin.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/library/Plugin.ipynb -------------------------------------------------------------------------------- /paperpi/library/Plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/library/Plugin.py -------------------------------------------------------------------------------- /paperpi/library/PluginTools.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/library/PluginTools.ipynb -------------------------------------------------------------------------------- /paperpi/library/PluginTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/library/PluginTools.py -------------------------------------------------------------------------------- /paperpi/library/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/library/__init__.py -------------------------------------------------------------------------------- /paperpi/library/get_help.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/library/get_help.ipynb -------------------------------------------------------------------------------- /paperpi/library/get_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/library/get_help.py -------------------------------------------------------------------------------- /paperpi/library/run_module.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/library/run_module.ipynb -------------------------------------------------------------------------------- /paperpi/library/run_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/library/run_module.py -------------------------------------------------------------------------------- /paperpi/my_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/my_constants.py -------------------------------------------------------------------------------- /paperpi/paperpi.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/paperpi.ipynb -------------------------------------------------------------------------------- /paperpi/paperpi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/paperpi.py -------------------------------------------------------------------------------- /paperpi/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/__init__.py -------------------------------------------------------------------------------- /paperpi/plugins/basic_clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/basic_clock/README.md -------------------------------------------------------------------------------- /paperpi/plugins/basic_clock/__init__.py: -------------------------------------------------------------------------------- 1 | from .basic_clock import update_function 2 | -------------------------------------------------------------------------------- /paperpi/plugins/basic_clock/basic_clock.basic_clock-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/basic_clock/basic_clock.basic_clock-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/basic_clock/basic_clock.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/basic_clock/basic_clock.ipynb -------------------------------------------------------------------------------- /paperpi/plugins/basic_clock/basic_clock.layout-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/basic_clock/basic_clock.layout-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/basic_clock/basic_clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/basic_clock/basic_clock.py -------------------------------------------------------------------------------- /paperpi/plugins/basic_clock/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/basic_clock/constants.py -------------------------------------------------------------------------------- /paperpi/plugins/basic_clock/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/basic_clock/layout.py -------------------------------------------------------------------------------- /paperpi/plugins/basic_clock/requirements-basic_clock.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /paperpi/plugins/basic_clock/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/basic_clock/sample.py -------------------------------------------------------------------------------- /paperpi/plugins/debugging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/debugging/README.md -------------------------------------------------------------------------------- /paperpi/plugins/debugging/__init__.py: -------------------------------------------------------------------------------- 1 | from .debugging import update_function 2 | -------------------------------------------------------------------------------- /paperpi/plugins/debugging/constants.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/debugging/constants.ipynb -------------------------------------------------------------------------------- /paperpi/plugins/debugging/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/debugging/constants.py -------------------------------------------------------------------------------- /paperpi/plugins/debugging/debugging.debugging_basic-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/debugging/debugging.debugging_basic-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/debugging/debugging.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/debugging/debugging.ipynb -------------------------------------------------------------------------------- /paperpi/plugins/debugging/debugging.layout-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/debugging/debugging.layout-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/debugging/debugging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/debugging/debugging.py -------------------------------------------------------------------------------- /paperpi/plugins/debugging/layout.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/debugging/layout.ipynb -------------------------------------------------------------------------------- /paperpi/plugins/debugging/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/debugging/layout.py -------------------------------------------------------------------------------- /paperpi/plugins/debugging/requirements-debugging.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /paperpi/plugins/debugging/sample.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/debugging/sample.ipynb -------------------------------------------------------------------------------- /paperpi/plugins/debugging/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/debugging/sample.py -------------------------------------------------------------------------------- /paperpi/plugins/dec_binary_clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/dec_binary_clock/README.md -------------------------------------------------------------------------------- /paperpi/plugins/dec_binary_clock/__init__.py: -------------------------------------------------------------------------------- 1 | from .dec_binary_clock import update_function 2 | -------------------------------------------------------------------------------- /paperpi/plugins/dec_binary_clock/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/dec_binary_clock/constants.py -------------------------------------------------------------------------------- /paperpi/plugins/dec_binary_clock/dec_binary_clock.dec_binary_clock-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/dec_binary_clock/dec_binary_clock.dec_binary_clock-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/dec_binary_clock/dec_binary_clock.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/dec_binary_clock/dec_binary_clock.ipynb -------------------------------------------------------------------------------- /paperpi/plugins/dec_binary_clock/dec_binary_clock.layout-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/dec_binary_clock/dec_binary_clock.layout-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/dec_binary_clock/dec_binary_clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/dec_binary_clock/dec_binary_clock.py -------------------------------------------------------------------------------- /paperpi/plugins/dec_binary_clock/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/dec_binary_clock/layout.py -------------------------------------------------------------------------------- /paperpi/plugins/dec_binary_clock/requirements-dec_binary_clock.txt: -------------------------------------------------------------------------------- 1 | Pillow 2 | -------------------------------------------------------------------------------- /paperpi/plugins/dec_binary_clock/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/dec_binary_clock/sample.py -------------------------------------------------------------------------------- /paperpi/plugins/default/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/default/README.md -------------------------------------------------------------------------------- /paperpi/plugins/default/__init__.py: -------------------------------------------------------------------------------- 1 | from .default import update_function 2 | -------------------------------------------------------------------------------- /paperpi/plugins/default/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/default/constants.py -------------------------------------------------------------------------------- /paperpi/plugins/default/default.default-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/default/default.default-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/default/default.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/default/default.ipynb -------------------------------------------------------------------------------- /paperpi/plugins/default/default.layout-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/default/default.layout-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/default/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/default/default.py -------------------------------------------------------------------------------- /paperpi/plugins/default/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/default/layout.py -------------------------------------------------------------------------------- /paperpi/plugins/default/requirements-default.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /paperpi/plugins/default/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/default/sample.py -------------------------------------------------------------------------------- /paperpi/plugins/demo_plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/demo_plugin/README.md -------------------------------------------------------------------------------- /paperpi/plugins/demo_plugin/README_additional.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/demo_plugin/README_additional.md -------------------------------------------------------------------------------- /paperpi/plugins/demo_plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/demo_plugin/__init__.py -------------------------------------------------------------------------------- /paperpi/plugins/demo_plugin/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/demo_plugin/constants.py -------------------------------------------------------------------------------- /paperpi/plugins/demo_plugin/demo_plugin.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/demo_plugin/demo_plugin.ipynb -------------------------------------------------------------------------------- /paperpi/plugins/demo_plugin/demo_plugin.layout-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/demo_plugin/demo_plugin.layout-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/demo_plugin/demo_plugin.my_layout_one-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/demo_plugin/demo_plugin.my_layout_one-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/demo_plugin/demo_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/demo_plugin/demo_plugin.py -------------------------------------------------------------------------------- /paperpi/plugins/demo_plugin/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/demo_plugin/image.jpg -------------------------------------------------------------------------------- /paperpi/plugins/demo_plugin/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/demo_plugin/layout.py -------------------------------------------------------------------------------- /paperpi/plugins/demo_plugin/requirements-demo_plugin.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /paperpi/plugins/demo_plugin/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/demo_plugin/sample.py -------------------------------------------------------------------------------- /paperpi/plugins/librespot_client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/librespot_client/README.md -------------------------------------------------------------------------------- /paperpi/plugins/librespot_client/README_additional.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/librespot_client/README_additional.md -------------------------------------------------------------------------------- /paperpi/plugins/librespot_client/__init__.py: -------------------------------------------------------------------------------- 1 | from .librespot_client import update_function 2 | -------------------------------------------------------------------------------- /paperpi/plugins/librespot_client/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/librespot_client/constants.py -------------------------------------------------------------------------------- /paperpi/plugins/librespot_client/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/librespot_client/layout.py -------------------------------------------------------------------------------- /paperpi/plugins/librespot_client/librespot_client.album_art_title-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/librespot_client/librespot_client.album_art_title-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/librespot_client/librespot_client.cover_art_only-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/librespot_client/librespot_client.cover_art_only-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/librespot_client/librespot_client.cover_art_only-RGB-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/librespot_client/librespot_client.cover_art_only-RGB-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/librespot_client/librespot_client.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/librespot_client/librespot_client.ipynb -------------------------------------------------------------------------------- /paperpi/plugins/librespot_client/librespot_client.layout-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/librespot_client/librespot_client.layout-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/librespot_client/librespot_client.layout-RGB-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/librespot_client/librespot_client.layout-RGB-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/librespot_client/librespot_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/librespot_client/librespot_client.py -------------------------------------------------------------------------------- /paperpi/plugins/librespot_client/requirements-librespot_client.txt: -------------------------------------------------------------------------------- 1 | dictor 2 | epdlib 3 | requests 4 | -------------------------------------------------------------------------------- /paperpi/plugins/librespot_client/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/librespot_client/sample.py -------------------------------------------------------------------------------- /paperpi/plugins/lms_client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/lms_client/README.md -------------------------------------------------------------------------------- /paperpi/plugins/lms_client/README_additional.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/lms_client/README_additional.md -------------------------------------------------------------------------------- /paperpi/plugins/lms_client/__init__.py: -------------------------------------------------------------------------------- 1 | from .lms_client import update_function 2 | -------------------------------------------------------------------------------- /paperpi/plugins/lms_client/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/lms_client/constants.py -------------------------------------------------------------------------------- /paperpi/plugins/lms_client/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/lms_client/layout.py -------------------------------------------------------------------------------- /paperpi/plugins/lms_client/lms_client.album_art_title-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/lms_client/lms_client.album_art_title-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/lms_client/lms_client.album_art_title-RGB-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/lms_client/lms_client.album_art_title-RGB-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/lms_client/lms_client.cover_art_only-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/lms_client/lms_client.cover_art_only-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/lms_client/lms_client.cover_art_only-RGB-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/lms_client/lms_client.cover_art_only-RGB-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/lms_client/lms_client.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/lms_client/lms_client.ipynb -------------------------------------------------------------------------------- /paperpi/plugins/lms_client/lms_client.layout-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/lms_client/lms_client.layout-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/lms_client/lms_client.layout-RGB-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/lms_client/lms_client.layout-RGB-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/lms_client/lms_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/lms_client/lms_client.py -------------------------------------------------------------------------------- /paperpi/plugins/lms_client/lms_client.three_rows_text_only-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/lms_client/lms_client.three_rows_text_only-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/lms_client/lms_client.two_column_three_row-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/lms_client/lms_client.two_column_three_row-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/lms_client/lms_client.two_column_three_row-RGB-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/lms_client/lms_client.two_column_three_row-RGB-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/lms_client/lms_client.two_rows_text_only-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/lms_client/lms_client.two_rows_text_only-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/lms_client/requirements-lms_client.txt: -------------------------------------------------------------------------------- 1 | epdlib 2 | QueryLMS 3 | requests 4 | -------------------------------------------------------------------------------- /paperpi/plugins/lms_client/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/lms_client/sample.py -------------------------------------------------------------------------------- /paperpi/plugins/met_no/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/LICENSE -------------------------------------------------------------------------------- /paperpi/plugins/met_no/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/README.md -------------------------------------------------------------------------------- /paperpi/plugins/met_no/__init__.py: -------------------------------------------------------------------------------- 1 | from .met_no import update_function 2 | -------------------------------------------------------------------------------- /paperpi/plugins/met_no/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/constants.py -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/clearsky_day.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/clearsky_day.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/clearsky_night.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/clearsky_night.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/clearsky_polartwilight.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/clearsky_polartwilight.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/cloudy.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/cloudy.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/fair_day.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/fair_day.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/fair_night.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/fair_night.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/fair_polartwilight.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/fair_polartwilight.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/fog.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/fog.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/heavyrain.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/heavyrain.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/heavyrainandthunder.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/heavyrainandthunder.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/heavyrainshowers_day.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/heavyrainshowers_day.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/heavyrainshowers_night.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/heavyrainshowers_night.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/heavyrainshowers_polartwilight.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/heavyrainshowers_polartwilight.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/heavyrainshowersandthunder_day.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/heavyrainshowersandthunder_day.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/heavysleet.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/heavysleet.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/heavysleetandthunder.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/heavysleetandthunder.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/heavysleetshowers_day.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/heavysleetshowers_day.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/heavysleetshowers_night.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/heavysleetshowers_night.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/heavysleetshowers_polartwilight.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/heavysleetshowers_polartwilight.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/heavysleetshowersandthunder_day.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/heavysleetshowersandthunder_day.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/heavysnow.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/heavysnow.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/heavysnowandthunder.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/heavysnowandthunder.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/heavysnowshowers_day.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/heavysnowshowers_day.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/heavysnowshowers_night.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/heavysnowshowers_night.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/heavysnowshowers_polartwilight.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/heavysnowshowers_polartwilight.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/heavysnowshowersandthunder_day.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/heavysnowshowersandthunder_day.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/lightrain.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/lightrain.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/lightrainandthunder.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/lightrainandthunder.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/lightrainshowers_day.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/lightrainshowers_day.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/lightrainshowers_night.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/lightrainshowers_night.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/lightrainshowers_polartwilight.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/lightrainshowers_polartwilight.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/lightrainshowersandthunder_day.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/lightrainshowersandthunder_day.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/lightsleet.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/lightsleet.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/lightsleetandthunder.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/lightsleetandthunder.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/lightsleetshowers_day.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/lightsleetshowers_day.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/lightsleetshowers_night.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/lightsleetshowers_night.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/lightsleetshowers_polartwilight.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/lightsleetshowers_polartwilight.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/lightsnow.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/lightsnow.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/lightsnowandthunder.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/lightsnowandthunder.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/lightsnowshowers_day.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/lightsnowshowers_day.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/lightsnowshowers_night.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/lightsnowshowers_night.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/lightsnowshowers_polartwilight.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/lightsnowshowers_polartwilight.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/lightssnowshowersandthunder_day.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/lightssnowshowersandthunder_day.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/partlycloudy_day.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/partlycloudy_day.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/partlycloudy_night.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/partlycloudy_night.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/partlycloudy_polartwilight.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/partlycloudy_polartwilight.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/rain.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/rain.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/rainandthunder.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/rainandthunder.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/rainshowers_day.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/rainshowers_day.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/rainshowers_night.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/rainshowers_night.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/rainshowers_polartwilight.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/rainshowers_polartwilight.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/rainshowersandthunder_day.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/rainshowersandthunder_day.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/rainshowersandthunder_night.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/rainshowersandthunder_night.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/sleet.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/sleet.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/sleetandthunder.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/sleetandthunder.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/sleetshowers_day.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/sleetshowers_day.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/sleetshowers_night.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/sleetshowers_night.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/sleetshowers_polartwilight.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/sleetshowers_polartwilight.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/sleetshowersandthunder_day.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/sleetshowersandthunder_day.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/sleetshowersandthunder_night.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/sleetshowersandthunder_night.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/snow.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/snow.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/snowandthunder.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/snowandthunder.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/snowshowers_day.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/snowshowers_day.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/snowshowers_night.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/snowshowers_night.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/snowshowers_polartwilight.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/snowshowers_polartwilight.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/snowshowersandthunder_day.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/snowshowersandthunder_day.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/symbol_codes/snowshowersandthunder_night.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/symbol_codes/snowshowersandthunder_night.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/wind_barbs/00_wind_barbpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/wind_barbs/00_wind_barbpng.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/wind_barbs/01_wind_barbpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/wind_barbs/01_wind_barbpng.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/wind_barbs/02_wind_barbpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/wind_barbs/02_wind_barbpng.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/wind_barbs/03_wind_barbpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/wind_barbs/03_wind_barbpng.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/wind_barbs/04_wind_barbpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/wind_barbs/04_wind_barbpng.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/wind_barbs/05_wind_barbpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/wind_barbs/05_wind_barbpng.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/wind_barbs/06_wind_barbpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/wind_barbs/06_wind_barbpng.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/wind_barbs/07_wind_barbpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/wind_barbs/07_wind_barbpng.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/wind_barbs/08_wind_barbpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/wind_barbs/08_wind_barbpng.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/wind_barbs/09_wind_barbpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/wind_barbs/09_wind_barbpng.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/wind_barbs/10_wind_barbpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/wind_barbs/10_wind_barbpng.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/wind_barbs/11_wind_barbpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/wind_barbs/11_wind_barbpng.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/wind_barbs/12_wind_barbpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/wind_barbs/12_wind_barbpng.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/wind_barbs/13_wind_barbpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/wind_barbs/13_wind_barbpng.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/wind_barbs/14_wind_barbpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/wind_barbs/14_wind_barbpng.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/wind_barbs/15_wind_barbpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/wind_barbs/15_wind_barbpng.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/wind_barbs/16_wind_barbpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/wind_barbs/16_wind_barbpng.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/wind_barbs/17_wind_barbpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/wind_barbs/17_wind_barbpng.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/wind_barbs/18_wind_barbpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/wind_barbs/18_wind_barbpng.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/wind_barbs/19_wind_barbpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/wind_barbs/19_wind_barbpng.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/wind_barbs/20_wind_barbpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/wind_barbs/20_wind_barbpng.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/wind_barbs/21_wind_barbpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/wind_barbs/21_wind_barbpng.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/images/wind_barbs/99_wind_barbpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/images/wind_barbs/99_wind_barbpng.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/layout.bak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/layout.bak.py -------------------------------------------------------------------------------- /paperpi/plugins/met_no/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/layout.py -------------------------------------------------------------------------------- /paperpi/plugins/met_no/met_no.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/met_no.ipynb -------------------------------------------------------------------------------- /paperpi/plugins/met_no/met_no.layout-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/met_no.layout-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/met_no.layout-RGB-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/met_no.layout-RGB-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/met_no.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/met_no.py -------------------------------------------------------------------------------- /paperpi/plugins/met_no/met_no.three_column_icon_wind_temp_precip-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/met_no.three_column_icon_wind_temp_precip-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/met_no.three_column_icon_wind_temp_precip-RGB-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/met_no.three_column_icon_wind_temp_precip-RGB-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/met_no.three_row_icon_wind_temp-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/met_no.three_row_icon_wind_temp-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/met_no.three_row_icon_wind_temp-RGB-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/met_no.three_row_icon_wind_temp-RGB-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/met_no.two_column_icon_wind_temp_precip-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/met_no.two_column_icon_wind_temp_precip-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/met_no.two_column_icon_wind_temp_precip-RGB-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/met_no.two_column_icon_wind_temp_precip-RGB-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/met_no/open_weather.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/open_weather.ipynb -------------------------------------------------------------------------------- /paperpi/plugins/met_no/requirements-met_no.txt: -------------------------------------------------------------------------------- 1 | dictor 2 | Pillow 3 | python_dateutil 4 | requests 5 | -------------------------------------------------------------------------------- /paperpi/plugins/met_no/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/met_no/sample.py -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/README.md -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/README_additional.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/README_additional.md -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/__init__.py -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/constants.py -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/0.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/0.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/1.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/1.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/10.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/10.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/100.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/100.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/102.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/102.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/104.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/104.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/106.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/106.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/108.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/108.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/109.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/109.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/111.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/111.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/113.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/113.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/115.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/115.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/117.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/117.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/118.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/118.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/12.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/12.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/120.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/120.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/122.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/122.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/124.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/124.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/126.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/126.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/127.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/127.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/129.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/129.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/131.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/131.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/133.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/133.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/135.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/135.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/136.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/136.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/138.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/138.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/14.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/14.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/140.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/140.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/142.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/142.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/144.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/144.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/145.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/145.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/147.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/147.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/149.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/149.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/151.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/151.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/153.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/153.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/154.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/154.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/156.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/156.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/158.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/158.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/16.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/16.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/160.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/160.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/162.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/162.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/163.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/163.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/165.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/165.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/167.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/167.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/169.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/169.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/171.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/171.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/172.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/172.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/174.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/174.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/176.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/176.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/178.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/178.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/18.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/18.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/180.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/180.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/181.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/181.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/183.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/183.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/185.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/185.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/187.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/187.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/189.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/189.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/19.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/19.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/190.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/190.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/192.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/192.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/194.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/194.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/196.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/196.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/198.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/198.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/199.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/199.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/201.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/201.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/203.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/203.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/205.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/205.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/207.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/207.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/208.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/208.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/21.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/21.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/210.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/210.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/212.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/212.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/214.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/214.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/216.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/216.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/217.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/217.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/219.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/219.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/221.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/221.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/223.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/223.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/225.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/225.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/226.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/226.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/228.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/228.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/23.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/23.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/230.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/230.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/232.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/232.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/234.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/234.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/235.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/235.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/237.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/237.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/239.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/239.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/241.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/241.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/243.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/243.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/244.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/244.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/246.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/246.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/248.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/248.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/25.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/25.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/250.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/250.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/252.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/252.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/253.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/253.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/255.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/255.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/257.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/257.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/259.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/259.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/261.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/261.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/262.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/262.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/264.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/264.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/266.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/266.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/268.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/268.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/27.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/27.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/270.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/270.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/271.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/271.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/273.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/273.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/275.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/275.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/277.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/277.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/279.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/279.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/28.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/28.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/280.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/280.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/282.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/282.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/284.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/284.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/286.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/286.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/288.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/288.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/289.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/289.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/291.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/291.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/293.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/293.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/295.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/295.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/297.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/297.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/298.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/298.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/3.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/3.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/30.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/30.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/300.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/300.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/302.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/302.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/304.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/304.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/306.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/306.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/307.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/307.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/309.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/309.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/311.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/311.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/313.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/313.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/315.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/315.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/316.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/316.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/318.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/318.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/32.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/32.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/320.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/320.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/322.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/322.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/324.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/324.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/325.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/325.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/327.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/327.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/329.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/329.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/331.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/331.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/333.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/333.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/334.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/334.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/336.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/336.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/338.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/338.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/34.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/34.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/340.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/340.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/342.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/342.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/343.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/343.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/345.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/345.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/347.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/347.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/349.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/349.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/351.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/351.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/352.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/352.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/354.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/354.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/356.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/356.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/358.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/358.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/36.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/36.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/360.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/360.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/37.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/37.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/39.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/39.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/41.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/41.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/43.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/43.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/45.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/45.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/46.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/46.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/48.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/48.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/5.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/5.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/50.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/50.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/52.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/52.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/54.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/54.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/55.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/55.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/57.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/57.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/59.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/59.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/61.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/61.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/63.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/63.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/64.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/64.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/66.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/66.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/68.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/68.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/7.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/7.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/70.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/70.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/72.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/72.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/73.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/73.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/75.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/75.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/77.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/77.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/79.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/79.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/81.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/81.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/82.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/82.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/84.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/84.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/86.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/86.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/88.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/88.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/9.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/9.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/90.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/90.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/91.8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/91.8.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/93.6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/93.6.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/95.4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/95.4.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/97.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/97.2.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/99.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/99.0.jpeg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/images/error_message.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/images/error_message.jpg -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/layout.py -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/moon_phase.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/moon_phase.ipynb -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/moon_phase.layout-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/moon_phase.layout-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/moon_phase.moon_data-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/moon_phase.moon_data-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/moon_phase.moon_only-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/moon_phase.moon_only-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/moon_phase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/moon_phase.py -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/requirements-moon_phase.txt: -------------------------------------------------------------------------------- 1 | dictor 2 | pytz 3 | requests 4 | -------------------------------------------------------------------------------- /paperpi/plugins/moon_phase/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/moon_phase/sample.py -------------------------------------------------------------------------------- /paperpi/plugins/newyorker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/newyorker/README.md -------------------------------------------------------------------------------- /paperpi/plugins/newyorker/__init__.py: -------------------------------------------------------------------------------- 1 | from .newyorker import update_function 2 | -------------------------------------------------------------------------------- /paperpi/plugins/newyorker/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/newyorker/constants.py -------------------------------------------------------------------------------- /paperpi/plugins/newyorker/images/shruggy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/newyorker/images/shruggy.jpg -------------------------------------------------------------------------------- /paperpi/plugins/newyorker/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/newyorker/layout.py -------------------------------------------------------------------------------- /paperpi/plugins/newyorker/newyorker.default-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/newyorker/newyorker.default-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/newyorker/newyorker.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/newyorker/newyorker.ipynb -------------------------------------------------------------------------------- /paperpi/plugins/newyorker/newyorker.layout-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/newyorker/newyorker.layout-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/newyorker/newyorker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/newyorker/newyorker.py -------------------------------------------------------------------------------- /paperpi/plugins/newyorker/requirements-newyorker.txt: -------------------------------------------------------------------------------- 1 | feedparser 2 | requests 3 | -------------------------------------------------------------------------------- /paperpi/plugins/newyorker/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/newyorker/sample.py -------------------------------------------------------------------------------- /paperpi/plugins/reddit_quote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/reddit_quote/README.md -------------------------------------------------------------------------------- /paperpi/plugins/reddit_quote/README_additional.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/reddit_quote/README_additional.md -------------------------------------------------------------------------------- /paperpi/plugins/reddit_quote/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/reddit_quote/__init__.py -------------------------------------------------------------------------------- /paperpi/plugins/reddit_quote/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/reddit_quote/constants.py -------------------------------------------------------------------------------- /paperpi/plugins/reddit_quote/images/rabbitsq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/reddit_quote/images/rabbitsq.png -------------------------------------------------------------------------------- /paperpi/plugins/reddit_quote/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/reddit_quote/layout.py -------------------------------------------------------------------------------- /paperpi/plugins/reddit_quote/reddit_quote.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/reddit_quote/reddit_quote.ipynb -------------------------------------------------------------------------------- /paperpi/plugins/reddit_quote/reddit_quote.layout-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/reddit_quote/reddit_quote.layout-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/reddit_quote/reddit_quote.layout-RGB-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/reddit_quote/reddit_quote.layout-RGB-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/reddit_quote/reddit_quote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/reddit_quote/reddit_quote.py -------------------------------------------------------------------------------- /paperpi/plugins/reddit_quote/reddit_quote.quote-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/reddit_quote/reddit_quote.quote-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/reddit_quote/reddit_quote.quote-RGB-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/reddit_quote/reddit_quote.quote-RGB-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/reddit_quote/reddit_quote.quote_inverse-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/reddit_quote/reddit_quote.quote_inverse-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/reddit_quote/reddit_quote.quote_inverse-RGB-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/reddit_quote/reddit_quote.quote_inverse-RGB-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/reddit_quote/reddit_quote.quote_small_screen-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/reddit_quote/reddit_quote.quote_small_screen-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/reddit_quote/reddit_quote.quote_small_screen-RGB-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/reddit_quote/reddit_quote.quote_small_screen-RGB-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/reddit_quote/requirements-reddit_quote.txt: -------------------------------------------------------------------------------- 1 | dictor 2 | requests 3 | -------------------------------------------------------------------------------- /paperpi/plugins/reddit_quote/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/reddit_quote/sample.py -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/slideshow/README.md -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/README_additional.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/slideshow/README_additional.md -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/slideshow/__init__.py -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/slideshow/constants.py -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/fallback_images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/slideshow/fallback_images/README.md -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/fallback_images/agarcus_muscarius.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/slideshow/fallback_images/agarcus_muscarius.jpg -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/fallback_images/cochlitoma.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/slideshow/fallback_images/cochlitoma.jpg -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/fallback_images/elephant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/slideshow/fallback_images/elephant.jpg -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/fallback_images/fish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/slideshow/fallback_images/fish.jpg -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/fallback_images/papilio_priamus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/slideshow/fallback_images/papilio_priamus.jpg -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/fallback_images/stegosarus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/slideshow/fallback_images/stegosarus.jpg -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/fallback_images/toxodon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/slideshow/fallback_images/toxodon.jpg -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/fallback_images/zebra.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/slideshow/fallback_images/zebra.jpg -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/slideshow/layout.py -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/requirements-slideshow.txt: -------------------------------------------------------------------------------- 1 | Pillow 2 | -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/slideshow/sample.py -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/slideshow-framed-black_silver_matted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/slideshow/slideshow-framed-black_silver_matted.png -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/slideshow-framed-dim_gray_and_silver_matted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/slideshow/slideshow-framed-dim_gray_and_silver_matted.png -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/slideshow-framed-none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/slideshow/slideshow-framed-none.png -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/slideshow-framed-thick_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/slideshow/slideshow-framed-thick_black.png -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/slideshow-framed-thick_black_matted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/slideshow/slideshow-framed-thick_black_matted.png -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/slideshow-framed-thin_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/slideshow/slideshow-framed-thin_black.png -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/slideshow-framed-thin_black_matted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/slideshow/slideshow-framed-thin_black_matted.png -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/slideshow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/slideshow/slideshow.ipynb -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/slideshow.layout-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/slideshow/slideshow.layout-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/slideshow.layout-RGB-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/slideshow/slideshow.layout-RGB-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/slideshow/slideshow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/slideshow/slideshow.py -------------------------------------------------------------------------------- /paperpi/plugins/splash_screen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/splash_screen/README.md -------------------------------------------------------------------------------- /paperpi/plugins/splash_screen/__init__.py: -------------------------------------------------------------------------------- 1 | from .splash_screen import update_function 2 | -------------------------------------------------------------------------------- /paperpi/plugins/splash_screen/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/splash_screen/constants.py -------------------------------------------------------------------------------- /paperpi/plugins/splash_screen/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/splash_screen/layout.py -------------------------------------------------------------------------------- /paperpi/plugins/splash_screen/requirements-splash_screen.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /paperpi/plugins/splash_screen/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/splash_screen/sample.py -------------------------------------------------------------------------------- /paperpi/plugins/splash_screen/splash_screen.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/splash_screen/splash_screen.ipynb -------------------------------------------------------------------------------- /paperpi/plugins/splash_screen/splash_screen.layout-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/splash_screen/splash_screen.layout-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/splash_screen/splash_screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/splash_screen/splash_screen.py -------------------------------------------------------------------------------- /paperpi/plugins/system_info/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/system_info/README.md -------------------------------------------------------------------------------- /paperpi/plugins/system_info/README_additional.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/system_info/README_additional.md -------------------------------------------------------------------------------- /paperpi/plugins/system_info/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/system_info/__init__.py -------------------------------------------------------------------------------- /paperpi/plugins/system_info/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/system_info/constants.py -------------------------------------------------------------------------------- /paperpi/plugins/system_info/images/chip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/system_info/images/chip.jpg -------------------------------------------------------------------------------- /paperpi/plugins/system_info/images/hdd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/system_info/images/hdd.jpg -------------------------------------------------------------------------------- /paperpi/plugins/system_info/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/system_info/layout.py -------------------------------------------------------------------------------- /paperpi/plugins/system_info/requirements-system_info.txt: -------------------------------------------------------------------------------- 1 | psutil 2 | -------------------------------------------------------------------------------- /paperpi/plugins/system_info/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/system_info/sample.py -------------------------------------------------------------------------------- /paperpi/plugins/system_info/system_info.basic_layout-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/system_info/system_info.basic_layout-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/system_info/system_info.basic_layout-RGB-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/system_info/system_info.basic_layout-RGB-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/system_info/system_info.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/system_info/system_info.ipynb -------------------------------------------------------------------------------- /paperpi/plugins/system_info/system_info.layout-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/system_info/system_info.layout-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/system_info/system_info.layout-RGB-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/system_info/system_info.layout-RGB-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/system_info/system_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/system_info/system_info.py -------------------------------------------------------------------------------- /paperpi/plugins/word_clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/word_clock/README.md -------------------------------------------------------------------------------- /paperpi/plugins/word_clock/__init__.py: -------------------------------------------------------------------------------- 1 | from .word_clock import update_function 2 | -------------------------------------------------------------------------------- /paperpi/plugins/word_clock/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/word_clock/constants.py -------------------------------------------------------------------------------- /paperpi/plugins/word_clock/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/word_clock/layout.py -------------------------------------------------------------------------------- /paperpi/plugins/word_clock/requirements-word_clock.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /paperpi/plugins/word_clock/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/word_clock/sample.py -------------------------------------------------------------------------------- /paperpi/plugins/word_clock/word_clock.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/word_clock/word_clock.ipynb -------------------------------------------------------------------------------- /paperpi/plugins/word_clock/word_clock.layout-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/word_clock/word_clock.layout-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/word_clock/word_clock.layout-RGB-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/word_clock/word_clock.layout-RGB-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/word_clock/word_clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/word_clock/word_clock.py -------------------------------------------------------------------------------- /paperpi/plugins/word_clock/word_clock.word_clock-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/word_clock/word_clock.word_clock-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/word_clock/word_clock.word_clock-RGB-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/word_clock/word_clock.word_clock-RGB-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/word_clock/word_clock.word_clock_lg-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/word_clock/word_clock.word_clock_lg-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/word_clock/word_clock.word_clock_lg-RGB-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/word_clock/word_clock.word_clock_lg-RGB-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/xkcd_comic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/xkcd_comic/README.md -------------------------------------------------------------------------------- /paperpi/plugins/xkcd_comic/README_additional.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/xkcd_comic/README_additional.md -------------------------------------------------------------------------------- /paperpi/plugins/xkcd_comic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/xkcd_comic/__init__.py -------------------------------------------------------------------------------- /paperpi/plugins/xkcd_comic/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/xkcd_comic/constants.py -------------------------------------------------------------------------------- /paperpi/plugins/xkcd_comic/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/xkcd_comic/layout.py -------------------------------------------------------------------------------- /paperpi/plugins/xkcd_comic/requirements-xkcd_comic.txt: -------------------------------------------------------------------------------- 1 | Pillow 2 | requests 3 | -------------------------------------------------------------------------------- /paperpi/plugins/xkcd_comic/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/xkcd_comic/sample.py -------------------------------------------------------------------------------- /paperpi/plugins/xkcd_comic/xkcd_comic.comic_only-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/xkcd_comic/xkcd_comic.comic_only-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/xkcd_comic/xkcd_comic.comic_title-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/xkcd_comic/xkcd_comic.comic_title-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/xkcd_comic/xkcd_comic.comic_title_alttext-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/xkcd_comic/xkcd_comic.comic_title_alttext-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/xkcd_comic/xkcd_comic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/xkcd_comic/xkcd_comic.ipynb -------------------------------------------------------------------------------- /paperpi/plugins/xkcd_comic/xkcd_comic.layout-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/xkcd_comic/xkcd_comic.layout-L-sample.png -------------------------------------------------------------------------------- /paperpi/plugins/xkcd_comic/xkcd_comic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/plugins/xkcd_comic/xkcd_comic.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd13in3k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd13in3k.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd1in02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd1in02.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd1in54.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd1in54.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd1in54_V2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd1in54_V2.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd1in54b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd1in54b.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd1in54b_V2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd1in54b_V2.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd1in54c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd1in54c.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd1in64g.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd1in64g.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd2in13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd2in13.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd2in13_V2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd2in13_V2.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd2in13_V3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd2in13_V3.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd2in13_V4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd2in13_V4.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd2in13b_V3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd2in13b_V3.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd2in13b_V4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd2in13b_V4.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd2in13bc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd2in13bc.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd2in13d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd2in13d.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd2in13g.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd2in13g.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd2in36g.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd2in36g.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd2in66.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd2in66.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd2in66b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd2in66b.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd2in66g.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd2in66g.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd2in7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd2in7.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd2in7_V2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd2in7_V2.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd2in7b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd2in7b.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd2in7b_V2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd2in7b_V2.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd2in9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd2in9.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd2in9_V2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd2in9_V2.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd2in9b_V3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd2in9b_V3.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd2in9b_V4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd2in9b_V4.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd2in9bc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd2in9bc.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd2in9d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd2in9d.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd3in0g.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd3in0g.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd3in52.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd3in52.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd3in7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd3in7.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd4in01f.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd4in01f.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd4in2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd4in2.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd4in26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd4in26.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd4in2_V2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd4in2_V2.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd4in2b_V2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd4in2b_V2.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd4in2bc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd4in2bc.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd4in37g.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd4in37g.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd5in65f.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd5in65f.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd5in83.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd5in83.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd5in83_V2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd5in83_V2.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd5in83b_V2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd5in83b_V2.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd5in83bc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd5in83bc.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd7in3f.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd7in3f.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd7in3g.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd7in3g.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd7in5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd7in5.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd7in5_HD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd7in5_HD.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd7in5_V2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd7in5_V2.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd7in5_V2_fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd7in5_V2_fast.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd7in5_V2_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd7in5_V2_old.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd7in5b_HD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd7in5b_HD.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd7in5b_V2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd7in5b_V2.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epd7in5bc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epd7in5bc.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epdconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epdconfig.py -------------------------------------------------------------------------------- /paperpi/waveshare_epd/epdconfig.py_bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/paperpi/waveshare_epd/epdconfig.py_bak -------------------------------------------------------------------------------- /plugins_depricated/crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/plugins_depricated/crypto/README.md -------------------------------------------------------------------------------- /plugins_depricated/crypto/README_additional.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/plugins_depricated/crypto/README_additional.md -------------------------------------------------------------------------------- /plugins_depricated/crypto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/plugins_depricated/crypto/__init__.py -------------------------------------------------------------------------------- /plugins_depricated/crypto/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/plugins_depricated/crypto/constants.py -------------------------------------------------------------------------------- /plugins_depricated/crypto/crypto.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/plugins_depricated/crypto/crypto.ipynb -------------------------------------------------------------------------------- /plugins_depricated/crypto/crypto.layout-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/plugins_depricated/crypto/crypto.layout-L-sample.png -------------------------------------------------------------------------------- /plugins_depricated/crypto/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/plugins_depricated/crypto/crypto.py -------------------------------------------------------------------------------- /plugins_depricated/crypto/crypto.ticker_hd-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/plugins_depricated/crypto/crypto.ticker_hd-L-sample.png -------------------------------------------------------------------------------- /plugins_depricated/crypto/crypto.ticker_simple-L-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/plugins_depricated/crypto/crypto.ticker_simple-L-sample.png -------------------------------------------------------------------------------- /plugins_depricated/crypto/debian_packages-crypto.txt: -------------------------------------------------------------------------------- 1 | DEBPKG=( "libcairo2" ) 2 | -------------------------------------------------------------------------------- /plugins_depricated/crypto/images/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/plugins_depricated/crypto/images/unknown.png -------------------------------------------------------------------------------- /plugins_depricated/crypto/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/plugins_depricated/crypto/layout.py -------------------------------------------------------------------------------- /plugins_depricated/crypto/requirements-crypto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/plugins_depricated/crypto/requirements-crypto.txt -------------------------------------------------------------------------------- /plugins_depricated/crypto/requirements-crypto_hidden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/plugins_depricated/crypto/requirements-crypto_hidden.txt -------------------------------------------------------------------------------- /plugins_depricated/crypto/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/plugins_depricated/crypto/sample.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/requirements.txt -------------------------------------------------------------------------------- /utilities/create_docs_old.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/utilities/create_docs_old.ipynb -------------------------------------------------------------------------------- /utilities/create_documentation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/utilities/create_documentation.ipynb -------------------------------------------------------------------------------- /utilities/create_documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/utilities/create_documentation.py -------------------------------------------------------------------------------- /utilities/debian_packages-jupyter_devel.txt: -------------------------------------------------------------------------------- 1 | DEBPKG=( "jupyter" ) 2 | -------------------------------------------------------------------------------- /utilities/find_imports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/utilities/find_imports.sh -------------------------------------------------------------------------------- /utilities/init_devel_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/utilities/init_devel_environment.sh -------------------------------------------------------------------------------- /utilities/install_waveshare_libs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/utilities/install_waveshare_libs.sh -------------------------------------------------------------------------------- /utilities/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/txoof/PaperPi/HEAD/utilities/package.sh -------------------------------------------------------------------------------- /utilities/requirements-devel.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /utilities/requirements-jupyter_devel.txt: -------------------------------------------------------------------------------- 1 | jupytext 2 | --------------------------------------------------------------------------------