gitextract_07osmigk/ ├── .directory ├── Python2/ │ ├── ex01.py │ ├── ex02.py │ ├── ex03-new.py │ ├── ex03.py │ ├── ex04.py │ ├── ex05.py │ ├── ex06.py │ ├── ex07.py │ ├── ex08.py │ ├── ex09.py │ ├── ex10.py │ ├── ex11.py │ ├── ex12.py │ ├── ex13-less.py │ ├── ex13-more.py │ ├── ex13-raw_input.py │ ├── ex13.py │ ├── ex14.py │ ├── ex15.py │ ├── ex16.py │ ├── ex16_read.py │ ├── ex17.py │ ├── ex18.py │ ├── ex19.py │ ├── ex20.py │ ├── ex21.py │ ├── ex24.py │ ├── ex25.py │ ├── ex26.py │ ├── ex29.py │ ├── ex30.py │ ├── ex31.py │ ├── ex32.py │ ├── ex33.py │ ├── ex34.py │ ├── ex35.py │ ├── ex37.py │ ├── ex38.py │ ├── ex39.py │ ├── ex40.py │ ├── ex41.py │ ├── ex42.py │ ├── ex43.py │ ├── ex44.py │ ├── ex46/ │ │ └── skeleton/ │ │ ├── NAME/ │ │ │ └── __init__.py │ │ ├── setup.py │ │ └── tests/ │ │ ├── NAME_test.py │ │ └── __init__.py │ ├── ex47/ │ │ └── skeleton/ │ │ ├── ex47/ │ │ │ ├── __init__.py │ │ │ └── game.py │ │ ├── setup.py │ │ └── tests/ │ │ ├── __init__.py │ │ └── ex47_test.py │ ├── ex48/ │ │ └── skeleton/ │ │ ├── ex48/ │ │ │ ├── __init__.py │ │ │ └── lexicon.py │ │ ├── setup.py │ │ └── test/ │ │ ├── __init__.py │ │ └── lexicon_tests.py │ ├── ex49/ │ │ └── skeleton/ │ │ ├── ex49/ │ │ │ ├── __init__.py │ │ │ └── parser.py │ │ ├── setup.py │ │ └── test/ │ │ ├── __init__.py │ │ └── parser_test.py │ ├── game/ │ │ └── skeleton/ │ │ ├── README │ │ ├── bin/ │ │ │ ├── MultipartPostHandler.py │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ └── map.py │ │ ├── setup.py │ │ ├── static/ │ │ │ ├── css/ │ │ │ │ ├── marketing.css │ │ │ │ ├── modal.css │ │ │ │ └── pure-min.css │ │ │ └── js/ │ │ │ ├── modal.js │ │ │ └── validate.js │ │ ├── templates/ │ │ │ ├── entry.html │ │ │ ├── foo.html │ │ │ ├── hello.html │ │ │ ├── hello_form.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── show.html │ │ │ ├── show_room.html │ │ │ ├── upload_form.html │ │ │ └── you_died.html │ │ └── test/ │ │ ├── __init__.py │ │ ├── app_test.py │ │ ├── game_test.py │ │ ├── map_test.py │ │ └── tools.py │ └── sample.txt ├── Python3/ │ ├── ex01-studydrills.py │ ├── ex01.py │ ├── ex02.py │ ├── ex03-studydrills.py │ ├── ex03.py │ ├── ex04-studydrills.py │ ├── ex04.py │ ├── ex05-studydrills.py │ ├── ex05.py │ ├── ex06-studydrills.py │ ├── ex06.py │ ├── ex07-studydrills.py │ ├── ex07.py │ ├── ex08.py │ ├── ex09.py │ ├── ex10-studydrills.py │ ├── ex10.py │ ├── ex11-studydrills.py │ ├── ex11.py │ ├── ex12.py │ ├── ex13-studydrills1.py │ ├── ex13-studydrills2.py │ ├── ex13-studydrills3.py │ ├── ex13.py │ ├── ex14-studydrills.py │ ├── ex14.py │ ├── ex15-studydrills.py │ ├── ex15.py │ ├── ex16-studydrills.py │ ├── ex16-studydrills2.py │ ├── ex16.py │ ├── ex17-studydrills.py │ ├── ex17.py │ ├── ex18.py │ ├── ex19-studydrills.py │ ├── ex19.py │ ├── ex20-studydrills.py │ ├── ex20.py │ ├── ex21-studydrills.py │ ├── ex21.py │ ├── ex24-studydrills.py │ ├── ex24.py │ ├── ex25.py │ ├── ex26.py │ ├── ex29-studydrills.py │ ├── ex29.py │ ├── ex30-studydrills.py │ ├── ex30.py │ ├── ex31-studydrills.py │ ├── ex31.py │ ├── ex32.py │ ├── ex33-studydrills.py │ ├── ex33.py │ ├── ex34.py │ ├── ex35.py │ ├── ex37.py │ ├── ex38.py │ ├── ex39-studydrills.py │ ├── ex39.py │ ├── ex40-studydrills.py │ ├── ex40.py │ ├── ex41.py │ ├── ex42.py │ ├── ex43.py │ ├── ex44.py │ ├── ex46/ │ │ └── skeleton/ │ │ ├── NAME/ │ │ │ └── __init__.py │ │ ├── setup.py │ │ └── tests/ │ │ ├── NAME_test.py │ │ └── __init__.py │ ├── game/ │ │ └── skeleton/ │ │ ├── README │ │ ├── bin/ │ │ │ ├── MultipartPostHandler.py │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ └── map.py │ │ ├── ex47/ │ │ │ ├── __init__.py │ │ │ └── game.py │ │ ├── ex48/ │ │ │ ├── __init__.py │ │ │ └── lexicon.py │ │ ├── ex49/ │ │ │ ├── __init__.py │ │ │ └── parser.py │ │ ├── sessions/ │ │ │ ├── 245c9a181ce6cc24de4e9c19d9f449d416ab940d │ │ │ ├── 4d0905855a35a119c78d375479d0fe05b1778265 │ │ │ ├── 58d0f5dc7cf6255fd5afc974df29abc610530f54 │ │ │ ├── 6f14bd73122b385dea9a602e62982da36457a9c0 │ │ │ ├── 8f517a270c46a0127095766db27a8f9541c464f9 │ │ │ └── f72f2c47cd5454a04ec03a630fe296ea257619eb │ │ ├── setup.py │ │ ├── static/ │ │ │ ├── css/ │ │ │ │ ├── marketing.css │ │ │ │ ├── modal.css │ │ │ │ └── pure-min.css │ │ │ └── js/ │ │ │ ├── modal.js │ │ │ └── validate.js │ │ ├── templates/ │ │ │ ├── entry.html │ │ │ ├── foo.html │ │ │ ├── hello.html │ │ │ ├── hello_form.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── show.html │ │ │ ├── show_room.html │ │ │ ├── upload_form.html │ │ │ └── you_died.html │ │ └── test/ │ │ ├── __init__.py │ │ ├── app_test.py │ │ ├── game_test.py │ │ ├── lexicon_test.py │ │ ├── map_test.py │ │ ├── parser_test.py │ │ ├── setup_test.py │ │ └── tools.py │ └── sample.txt └── README.md