├── CONTRIBUTING.md ├── README.md ├── RELEASE_NOTES.rst ├── apps ├── __init__.py ├── calculator.py ├── calculatorWithGUI.py └── to_do_gui.py ├── email_validation ├── email_validation.py └── test.py ├── games ├── Hangman.py ├── Rock-Papaer-Scissors │ ├── Console │ │ └── main.py │ └── GUI │ │ ├── main.py │ │ └── src │ │ ├── ComicSans.ttf │ │ ├── bg1.jpg │ │ ├── bp.png │ │ ├── br.png │ │ ├── bs.png │ │ ├── paper.png │ │ ├── rock.png │ │ └── scissor.png ├── Snake.py ├── __init__.py ├── fizzbuzz.py └── tictactoe.py ├── scripts ├── Caesar_Cipher.py ├── __init__.py ├── alphaToNATO.py ├── currenttime.py ├── diceSimulator.py ├── dice_simulator.py ├── dinnerTotal.py ├── helloworld.py ├── pallindrome.py ├── passGenerator.py ├── quine.py ├── randPassGenerate.py ├── random_wikikpedia_article.py ├── roots_of_quadratic.py ├── simple_base_converter.py ├── stackOperation.py ├── timer.py └── wikipedia_Scraper │ ├── wikipediaBS4.py │ └── wikipediaLib.py └── tests └── dice_simulator_test.py /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/RELEASE_NOTES.rst -------------------------------------------------------------------------------- /apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/apps/calculator.py -------------------------------------------------------------------------------- /apps/calculatorWithGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/apps/calculatorWithGUI.py -------------------------------------------------------------------------------- /apps/to_do_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/apps/to_do_gui.py -------------------------------------------------------------------------------- /email_validation/email_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/email_validation/email_validation.py -------------------------------------------------------------------------------- /email_validation/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/email_validation/test.py -------------------------------------------------------------------------------- /games/Hangman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/games/Hangman.py -------------------------------------------------------------------------------- /games/Rock-Papaer-Scissors/Console/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/games/Rock-Papaer-Scissors/Console/main.py -------------------------------------------------------------------------------- /games/Rock-Papaer-Scissors/GUI/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/games/Rock-Papaer-Scissors/GUI/main.py -------------------------------------------------------------------------------- /games/Rock-Papaer-Scissors/GUI/src/ComicSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/games/Rock-Papaer-Scissors/GUI/src/ComicSans.ttf -------------------------------------------------------------------------------- /games/Rock-Papaer-Scissors/GUI/src/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/games/Rock-Papaer-Scissors/GUI/src/bg1.jpg -------------------------------------------------------------------------------- /games/Rock-Papaer-Scissors/GUI/src/bp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/games/Rock-Papaer-Scissors/GUI/src/bp.png -------------------------------------------------------------------------------- /games/Rock-Papaer-Scissors/GUI/src/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/games/Rock-Papaer-Scissors/GUI/src/br.png -------------------------------------------------------------------------------- /games/Rock-Papaer-Scissors/GUI/src/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/games/Rock-Papaer-Scissors/GUI/src/bs.png -------------------------------------------------------------------------------- /games/Rock-Papaer-Scissors/GUI/src/paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/games/Rock-Papaer-Scissors/GUI/src/paper.png -------------------------------------------------------------------------------- /games/Rock-Papaer-Scissors/GUI/src/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/games/Rock-Papaer-Scissors/GUI/src/rock.png -------------------------------------------------------------------------------- /games/Rock-Papaer-Scissors/GUI/src/scissor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/games/Rock-Papaer-Scissors/GUI/src/scissor.png -------------------------------------------------------------------------------- /games/Snake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/games/Snake.py -------------------------------------------------------------------------------- /games/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /games/fizzbuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/games/fizzbuzz.py -------------------------------------------------------------------------------- /games/tictactoe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/games/tictactoe.py -------------------------------------------------------------------------------- /scripts/Caesar_Cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/scripts/Caesar_Cipher.py -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/alphaToNATO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/scripts/alphaToNATO.py -------------------------------------------------------------------------------- /scripts/currenttime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/scripts/currenttime.py -------------------------------------------------------------------------------- /scripts/diceSimulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/scripts/diceSimulator.py -------------------------------------------------------------------------------- /scripts/dice_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/scripts/dice_simulator.py -------------------------------------------------------------------------------- /scripts/dinnerTotal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/scripts/dinnerTotal.py -------------------------------------------------------------------------------- /scripts/helloworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/scripts/helloworld.py -------------------------------------------------------------------------------- /scripts/pallindrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/scripts/pallindrome.py -------------------------------------------------------------------------------- /scripts/passGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/scripts/passGenerator.py -------------------------------------------------------------------------------- /scripts/quine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/scripts/quine.py -------------------------------------------------------------------------------- /scripts/randPassGenerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/scripts/randPassGenerate.py -------------------------------------------------------------------------------- /scripts/random_wikikpedia_article.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/scripts/random_wikikpedia_article.py -------------------------------------------------------------------------------- /scripts/roots_of_quadratic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/scripts/roots_of_quadratic.py -------------------------------------------------------------------------------- /scripts/simple_base_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/scripts/simple_base_converter.py -------------------------------------------------------------------------------- /scripts/stackOperation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/scripts/stackOperation.py -------------------------------------------------------------------------------- /scripts/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/scripts/timer.py -------------------------------------------------------------------------------- /scripts/wikipedia_Scraper/wikipediaBS4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/scripts/wikipedia_Scraper/wikipediaBS4.py -------------------------------------------------------------------------------- /scripts/wikipedia_Scraper/wikipediaLib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/scripts/wikipedia_Scraper/wikipediaLib.py -------------------------------------------------------------------------------- /tests/dice_simulator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GiovanniBruno22/PythonBeginners/HEAD/tests/dice_simulator_test.py --------------------------------------------------------------------------------