gitextract__oytx07f/ ├── .gitignore ├── 3D Printed WiFi Access QR Codes/ │ ├── Pipfile │ └── main.py ├── LICENSE ├── List Comprehensions/ │ └── examples.py ├── Modeling Trees with SQLAlchemy ORM and Postgres Ltree/ │ ├── Dockerfile.postgres │ ├── Dockerfile.python │ ├── Pipfile │ ├── docker-compose.yml │ ├── ltree.sql │ ├── main.py │ └── wait-for.sh ├── Patterns in Gothic Literature/ │ ├── Leroux_ThePhantomOfTheOpera_Gutenberg.txt │ ├── color_names.csv │ ├── empty │ ├── gothic_post.ipynb │ └── requirements.txt ├── Practical Machine Learning with Python and Keras/ │ ├── Kite blog post code.ipynb │ ├── empty │ └── environment.yml ├── Python in the Command Line - a Tutorial on Click/ │ ├── qrwifi/ │ │ ├── __init__.py │ │ ├── app.py │ │ ├── cli.py │ │ └── functions.py │ └── setup.py ├── QR Codes Using Flask/ │ ├── empty │ ├── qr_app_pt1/ │ │ ├── main.py │ │ ├── requirements.txt │ │ ├── setting_up.py │ │ ├── step_1.py │ │ └── step_2.py │ ├── qr_app_pt2/ │ │ ├── qrwifi/ │ │ │ ├── cli.py │ │ │ └── functions.py │ │ └── setup.py │ └── qr_app_pt3/ │ ├── app.py │ ├── qrwifi/ │ │ ├── cli.py │ │ └── functions.py │ └── templates/ │ ├── index.html.j2 │ ├── qr.html.j2 │ └── template.html.j2 ├── README.md ├── Top Machine Learning Libraries/ │ ├── caffe_example.py │ ├── requirements.txt │ ├── sklearn_example.py │ ├── tensorflow_example1.py │ ├── tensorflow_example2.py │ ├── theano_example.py │ └── torch_example.py ├── Turbocharging Python with Command Line Tools/ │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── notebooks/ │ │ └── numba-cuda.ipynb │ ├── nuclearcli.py │ └── requirements.txt ├── Web Scraping Tutorial/ │ ├── Pipfile │ └── script.py ├── campfire-burn-prediction/ │ ├── .gitignore │ ├── README.md │ ├── campfire-burn-severity-prediction.ipynb │ ├── campfire-burn-severity-prediction.py │ ├── dataset/ │ │ ├── Affected (1-9%)/ │ │ │ ├── OBJID_5004.tif │ │ │ ├── OBJID_5005.tif │ │ │ ├── OBJID_5146.tif │ │ │ ├── OBJID_5147.tif │ │ │ ├── OBJID_5148.tif │ │ │ ├── OBJID_5281.tif │ │ │ ├── OBJID_5367.tif │ │ │ ├── OBJID_5398.tif │ │ │ ├── OBJID_5408.tif │ │ │ ├── OBJID_5461.tif │ │ │ ├── OBJID_5470.tif │ │ │ ├── OBJID_5589.tif │ │ │ ├── OBJID_5693.tif │ │ │ ├── OBJID_5696.tif │ │ │ ├── OBJID_5757.tif │ │ │ ├── OBJID_5786.tif │ │ │ ├── OBJID_5803.tif │ │ │ ├── OBJID_5809.tif │ │ │ ├── OBJID_5819.tif │ │ │ ├── OBJID_5820.tif │ │ │ ├── OBJID_5825.tif │ │ │ ├── OBJID_5837.tif │ │ │ ├── OBJID_5940.tif │ │ │ ├── OBJID_6037.tif │ │ │ ├── OBJID_6092.tif │ │ │ ├── OBJID_6123.tif │ │ │ ├── OBJID_6338.tif │ │ │ ├── OBJID_6402.tif │ │ │ ├── OBJID_6631.tif │ │ │ ├── OBJID_6664.tif │ │ │ ├── OBJID_6793.tif │ │ │ ├── OBJID_6891.tif │ │ │ ├── OBJID_6939.tif │ │ │ ├── OBJID_7074.tif │ │ │ ├── OBJID_7108.tif │ │ │ ├── OBJID_7195.tif │ │ │ ├── OBJID_7274.tif │ │ │ ├── OBJID_7307.tif │ │ │ ├── OBJID_7625.tif │ │ │ ├── OBJID_7629.tif │ │ │ └── OBJID_7655.tif │ │ ├── Destroyed (>50%)/ │ │ │ ├── OBJID_5000.tif │ │ │ ├── OBJID_5001.tif │ │ │ ├── OBJID_5002.tif │ │ │ ├── OBJID_5003.tif │ │ │ ├── OBJID_5007.tif │ │ │ ├── OBJID_5008.tif │ │ │ ├── OBJID_5009.tif │ │ │ ├── OBJID_5010.tif │ │ │ ├── OBJID_5011.tif │ │ │ ├── OBJID_5012.tif │ │ │ ├── OBJID_5013.tif │ │ │ ├── OBJID_5014.tif │ │ │ ├── OBJID_5015.tif │ │ │ ├── OBJID_5016.tif │ │ │ ├── OBJID_5017.tif │ │ │ ├── OBJID_5018.tif │ │ │ ├── OBJID_5019.tif │ │ │ ├── OBJID_5020.tif │ │ │ ├── OBJID_5021.tif │ │ │ ├── OBJID_5022.tif │ │ │ ├── OBJID_5023.tif │ │ │ ├── OBJID_5024.tif │ │ │ ├── OBJID_5025.tif │ │ │ ├── OBJID_5026.tif │ │ │ ├── OBJID_5027.tif │ │ │ ├── OBJID_5028.tif │ │ │ ├── OBJID_5029.tif │ │ │ ├── OBJID_5030.tif │ │ │ ├── OBJID_5031.tif │ │ │ ├── OBJID_5032.tif │ │ │ ├── OBJID_5033.tif │ │ │ ├── OBJID_5034.tif │ │ │ ├── OBJID_5035.tif │ │ │ ├── OBJID_5036.tif │ │ │ ├── OBJID_5037.tif │ │ │ ├── OBJID_5043.tif │ │ │ ├── OBJID_5044.tif │ │ │ ├── OBJID_5045.tif │ │ │ ├── OBJID_5046.tif │ │ │ ├── OBJID_5048.tif │ │ │ ├── OBJID_5049.tif │ │ │ ├── OBJID_5050.tif │ │ │ ├── OBJID_5051.tif │ │ │ ├── OBJID_5052.tif │ │ │ ├── OBJID_5053.tif │ │ │ ├── OBJID_5054.tif │ │ │ ├── OBJID_5055.tif │ │ │ ├── OBJID_5056.tif │ │ │ ├── OBJID_5057.tif │ │ │ ├── OBJID_5058.tif │ │ │ ├── OBJID_5060.tif │ │ │ ├── OBJID_5061.tif │ │ │ ├── OBJID_5062.tif │ │ │ ├── OBJID_5063.tif │ │ │ ├── OBJID_5064.tif │ │ │ ├── OBJID_5065.tif │ │ │ ├── OBJID_5066.tif │ │ │ ├── OBJID_5124.tif │ │ │ ├── OBJID_5125.tif │ │ │ ├── OBJID_5126.tif │ │ │ ├── OBJID_5127.tif │ │ │ ├── OBJID_5128.tif │ │ │ ├── OBJID_5129.tif │ │ │ ├── OBJID_5130.tif │ │ │ ├── OBJID_5131.tif │ │ │ ├── OBJID_5132.tif │ │ │ ├── OBJID_5133.tif │ │ │ ├── OBJID_5134.tif │ │ │ └── OBJID_5135.tif │ │ ├── Major (26-50%)/ │ │ │ ├── OBJID_10188.tif │ │ │ ├── OBJID_10260.tif │ │ │ ├── OBJID_10516.tif │ │ │ ├── OBJID_15547.tif │ │ │ ├── OBJID_16288.tif │ │ │ ├── OBJID_17339.tif │ │ │ ├── OBJID_18115.tif │ │ │ ├── OBJID_20146.tif │ │ │ ├── OBJID_20657.tif │ │ │ ├── OBJID_21931.tif │ │ │ ├── OBJID_22695.tif │ │ │ ├── OBJID_22964.tif │ │ │ ├── OBJID_23797.tif │ │ │ ├── OBJID_25889.tif │ │ │ ├── OBJID_5041.tif │ │ │ ├── OBJID_5399.tif │ │ │ ├── OBJID_6357.tif │ │ │ └── OBJID_7423.tif │ │ ├── Minor (10-25%)/ │ │ │ ├── OBJID_10253.tif │ │ │ ├── OBJID_10276.tif │ │ │ ├── OBJID_10487.tif │ │ │ ├── OBJID_10740.tif │ │ │ ├── OBJID_11054.tif │ │ │ ├── OBJID_11353.tif │ │ │ ├── OBJID_11675.tif │ │ │ ├── OBJID_11830.tif │ │ │ ├── OBJID_12117.tif │ │ │ ├── OBJID_12332.tif │ │ │ ├── OBJID_12465.tif │ │ │ ├── OBJID_12931.tif │ │ │ ├── OBJID_13409.tif │ │ │ ├── OBJID_13782.tif │ │ │ ├── OBJID_13875.tif │ │ │ ├── OBJID_13887.tif │ │ │ ├── OBJID_13923.tif │ │ │ ├── OBJID_14243.tif │ │ │ ├── OBJID_14274.tif │ │ │ ├── OBJID_14406.tif │ │ │ ├── OBJID_14531.tif │ │ │ ├── OBJID_14606.tif │ │ │ ├── OBJID_15043.tif │ │ │ ├── OBJID_15537.tif │ │ │ ├── OBJID_15560.tif │ │ │ ├── OBJID_17373.tif │ │ │ ├── OBJID_17802.tif │ │ │ ├── OBJID_19473.tif │ │ │ ├── OBJID_19588.tif │ │ │ ├── OBJID_19815.tif │ │ │ ├── OBJID_20656.tif │ │ │ ├── OBJID_20667.tif │ │ │ ├── OBJID_20830.tif │ │ │ ├── OBJID_20893.tif │ │ │ ├── OBJID_21446.tif │ │ │ ├── OBJID_21907.tif │ │ │ ├── OBJID_21992.tif │ │ │ ├── OBJID_22382.tif │ │ │ ├── OBJID_22805.tif │ │ │ ├── OBJID_22937.tif │ │ │ ├── OBJID_23008.tif │ │ │ ├── OBJID_23015.tif │ │ │ ├── OBJID_23592.tif │ │ │ ├── OBJID_23936.tif │ │ │ ├── OBJID_24298.tif │ │ │ ├── OBJID_24529.tif │ │ │ ├── OBJID_24762.tif │ │ │ ├── OBJID_25196.tif │ │ │ ├── OBJID_25460.tif │ │ │ ├── OBJID_5456.tif │ │ │ ├── OBJID_7316.tif │ │ │ └── OBJID_7399.tif │ │ └── campfire_subset.csv │ ├── environment.yml │ └── requirements.txt ├── convolutional-neural-networks-pytorch/ │ ├── README.md │ └── examples.py ├── django-rest-framework-fast/ │ ├── Dockerfile │ ├── README.md │ ├── api/ │ │ ├── __init__.py │ │ ├── urls.py │ │ ├── v1/ │ │ │ ├── __init__.py │ │ │ ├── apps.py │ │ │ ├── readme.md │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── v2/ │ │ │ ├── __init__.py │ │ │ ├── apps.py │ │ │ ├── readme.md │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ └── v3/ │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── readme.md │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── characters/ │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── constants.py │ │ ├── forms.py │ │ ├── migrations/ │ │ │ ├── 0001_squashed_0003_auto_20190416_1625.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── serializers.py │ │ ├── templates/ │ │ │ └── characters/ │ │ │ ├── character_confirm_delete.html │ │ │ ├── character_detail.html │ │ │ ├── character_form.html │ │ │ ├── character_list.html │ │ │ └── character_update_form.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── common/ │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations/ │ │ │ └── __init__.py │ │ ├── mixins.py │ │ ├── models.py │ │ ├── templates/ │ │ │ └── common/ │ │ │ └── __base.html │ │ ├── tests.py │ │ └── views.py │ ├── config/ │ │ ├── __init__.py │ │ ├── settings/ │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── dev.py │ │ │ ├── prod.py │ │ │ └── test.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── docker-compose.yml │ ├── manage.py │ ├── requirements/ │ │ ├── base.txt │ │ ├── dev.txt │ │ └── prod.txt │ ├── requirements.txt │ └── static/ │ ├── 404.html │ ├── css/ │ │ ├── bootstrap-theme.css │ │ ├── bootstrap.css │ │ └── main.css │ ├── humans.txt │ ├── js/ │ │ ├── main.js │ │ └── vendor/ │ │ ├── bootstrap.js │ │ └── npm.js │ └── robots.txt ├── flask-tutorial/ │ ├── flask-and-sqlalchemy/ │ │ ├── app.py │ │ ├── database_setup.py │ │ ├── populate.py │ │ ├── sql_strings.py │ │ └── templates/ │ │ ├── books.html │ │ ├── deleteBook.html │ │ ├── editBook.html │ │ └── newBook.html │ └── restful-apis-with-flask/ │ ├── app.py │ └── database_setup.py ├── future-of-data-science/ │ └── example.py ├── image-segmentation/ │ ├── README.md │ ├── image_segmentation.py │ └── requirements.txt ├── matplotlib Explained/ │ ├── data.csv │ └── truth.csv ├── neural-networks-intro/ │ ├── SimpleNeuralNetwork.py │ └── readme.md ├── pandas-time-series-analysis/ │ ├── amazon_stock.csv │ ├── examples.py │ └── readme.md ├── python-dictionary-article/ │ └── article_examples.py ├── python-for-loops/ │ └── examples.py ├── python-optimization/ │ ├── README.md │ └── examples.py ├── python-string-formatting/ │ └── python_string_formatting.py ├── python-typing/ │ ├── hello_world.py │ ├── mr.py │ ├── mypy.ini │ ├── readme.md │ ├── rescale.py │ └── tree.py ├── python-write-to-file/ │ ├── blog-post.txt │ ├── outline.txt │ ├── resources.txt │ └── write-to-file-code/ │ ├── .gitignore │ ├── Pipfile │ ├── checker.py │ └── output/ │ └── .gitkeep ├── rekognition-ocr/ │ ├── .gitignore │ ├── Python/ │ │ ├── lib/ │ │ │ ├── __init__.py │ │ │ ├── mech_scrape.py │ │ │ ├── mwo_data_utils.py │ │ │ └── mwo_image_slicer.py │ │ ├── run_mech_scrape.py │ │ ├── single_row_example.py │ │ ├── split_screenshot_example.py │ │ ├── test_script.py │ │ └── whole_screenshot_example.py │ └── readme.md ├── smote/ │ ├── common.py │ ├── create_data.py │ ├── create_smoted_df.py │ ├── df_base.csv │ ├── df_imbalanced.csv │ ├── df_smoted.csv │ ├── readme.md │ ├── requirements.txt │ ├── training_base.py │ ├── training_imbalanced.py │ └── training_smoted.py ├── statistical-modeling/ │ ├── examples.py │ └── readme.md ├── what-is-django-part-1/ │ ├── config/ │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ └── scenes/ │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── constants.py │ ├── migrations/ │ │ └── __init__.py │ ├── models.py │ ├── templates/ │ │ └── scenes/ │ │ └── scene.html │ ├── tests.py │ ├── urls.py │ └── views.py └── what-is-django-part-2/ ├── common/ │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations/ │ │ └── __init__.py │ ├── models.py │ ├── templates/ │ │ └── common/ │ │ └── __base.html │ ├── tests.py │ └── views.py ├── config/ │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── scenes/ │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── constants.py │ ├── migrations/ │ │ └── __init__.py │ ├── models.py │ ├── templates/ │ │ └── scenes/ │ │ └── scene.html │ ├── tests.py │ ├── urls.py │ └── views.py └── static/ ├── 404.html ├── css/ │ ├── bootstrap-theme.css │ ├── bootstrap.css │ └── main.css ├── humans.txt ├── js/ │ ├── main.js │ └── vendor/ │ ├── bootstrap.js │ └── npm.js └── robots.txt