├── .gitignore ├── Examples ├── DB │ ├── example_1_sql.py │ ├── example_2_sqlalchemy.py │ ├── example_3_orm.py │ ├── hard_words.txt │ ├── test_orm.db │ ├── test_orm_declarative.db │ ├── test_sql.db │ └── words.txt ├── __init__.py ├── command_line │ ├── __init__.py │ ├── example_1_sys_args.py │ ├── example_2_argparse.py │ ├── example_3_click.py │ └── module.py ├── gui │ ├── example_1_tkinter.py │ └── example_2_pysimplegui.py ├── modules │ ├── example_1_modules.py │ ├── example_2_namespaces.py │ └── package │ │ ├── __init__.py │ │ ├── package_module.py │ │ └── subpackage │ │ ├── __init__.py │ │ └── sub_module.py └── tests │ ├── __init__.py │ ├── example_1_assert.py │ ├── example_2_unittest.py │ ├── example_3_pytest.py │ ├── example_4_pytest_parameterized.py │ ├── rock_paper_scissors_buggy.py │ └── rock_paper_scissors_fixed.py ├── Project ├── Solutions │ ├── game_1_command_line.py │ ├── game_2_tkinter.py │ └── game_3_pysimplegui.py ├── game_1_command_line.py └── game_2_gui.py ├── README.md ├── docs ├── WININSTALL.md ├── WINSETPATH.md ├── installer_1.png ├── installer_2.png └── installer_3.png ├── requirements.txt └── word_game ├── data ├── __init__.py ├── get_data.py └── words.db └── game.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/.gitignore -------------------------------------------------------------------------------- /Examples/DB/example_1_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Examples/DB/example_1_sql.py -------------------------------------------------------------------------------- /Examples/DB/example_2_sqlalchemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Examples/DB/example_2_sqlalchemy.py -------------------------------------------------------------------------------- /Examples/DB/example_3_orm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Examples/DB/example_3_orm.py -------------------------------------------------------------------------------- /Examples/DB/hard_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Examples/DB/hard_words.txt -------------------------------------------------------------------------------- /Examples/DB/test_orm.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Examples/DB/test_orm.db -------------------------------------------------------------------------------- /Examples/DB/test_orm_declarative.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Examples/DB/test_orm_declarative.db -------------------------------------------------------------------------------- /Examples/DB/test_sql.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Examples/DB/test_sql.db -------------------------------------------------------------------------------- /Examples/DB/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Examples/DB/words.txt -------------------------------------------------------------------------------- /Examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/command_line/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/command_line/example_1_sys_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Examples/command_line/example_1_sys_args.py -------------------------------------------------------------------------------- /Examples/command_line/example_2_argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Examples/command_line/example_2_argparse.py -------------------------------------------------------------------------------- /Examples/command_line/example_3_click.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Examples/command_line/example_3_click.py -------------------------------------------------------------------------------- /Examples/command_line/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Examples/command_line/module.py -------------------------------------------------------------------------------- /Examples/gui/example_1_tkinter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Examples/gui/example_1_tkinter.py -------------------------------------------------------------------------------- /Examples/gui/example_2_pysimplegui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Examples/gui/example_2_pysimplegui.py -------------------------------------------------------------------------------- /Examples/modules/example_1_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Examples/modules/example_1_modules.py -------------------------------------------------------------------------------- /Examples/modules/example_2_namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Examples/modules/example_2_namespaces.py -------------------------------------------------------------------------------- /Examples/modules/package/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Examples/modules/package/__init__.py -------------------------------------------------------------------------------- /Examples/modules/package/package_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Examples/modules/package/package_module.py -------------------------------------------------------------------------------- /Examples/modules/package/subpackage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Examples/modules/package/subpackage/__init__.py -------------------------------------------------------------------------------- /Examples/modules/package/subpackage/sub_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Examples/modules/package/subpackage/sub_module.py -------------------------------------------------------------------------------- /Examples/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/tests/example_1_assert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Examples/tests/example_1_assert.py -------------------------------------------------------------------------------- /Examples/tests/example_2_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Examples/tests/example_2_unittest.py -------------------------------------------------------------------------------- /Examples/tests/example_3_pytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Examples/tests/example_3_pytest.py -------------------------------------------------------------------------------- /Examples/tests/example_4_pytest_parameterized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Examples/tests/example_4_pytest_parameterized.py -------------------------------------------------------------------------------- /Examples/tests/rock_paper_scissors_buggy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Examples/tests/rock_paper_scissors_buggy.py -------------------------------------------------------------------------------- /Examples/tests/rock_paper_scissors_fixed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Examples/tests/rock_paper_scissors_fixed.py -------------------------------------------------------------------------------- /Project/Solutions/game_1_command_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Project/Solutions/game_1_command_line.py -------------------------------------------------------------------------------- /Project/Solutions/game_2_tkinter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Project/Solutions/game_2_tkinter.py -------------------------------------------------------------------------------- /Project/Solutions/game_3_pysimplegui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Project/Solutions/game_3_pysimplegui.py -------------------------------------------------------------------------------- /Project/game_1_command_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/Project/game_1_command_line.py -------------------------------------------------------------------------------- /Project/game_2_gui.py: -------------------------------------------------------------------------------- 1 | """ 2 | A GUI word guessing game 3 | """ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/README.md -------------------------------------------------------------------------------- /docs/WININSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/docs/WININSTALL.md -------------------------------------------------------------------------------- /docs/WINSETPATH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/docs/WINSETPATH.md -------------------------------------------------------------------------------- /docs/installer_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/docs/installer_1.png -------------------------------------------------------------------------------- /docs/installer_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/docs/installer_2.png -------------------------------------------------------------------------------- /docs/installer_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/docs/installer_3.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/requirements.txt -------------------------------------------------------------------------------- /word_game/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/word_game/data/__init__.py -------------------------------------------------------------------------------- /word_game/data/get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/word_game/data/get_data.py -------------------------------------------------------------------------------- /word_game/data/words.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/word_game/data/words.db -------------------------------------------------------------------------------- /word_game/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/python-environments/HEAD/word_game/game.py --------------------------------------------------------------------------------