├── 2017 ├── July │ ├── Illusionist_markup.py │ └── challenges3.md ├── June │ ├── 1_datetime │ │ ├── batman4797.py │ │ ├── bcovy.py │ │ └── cripcate.py │ ├── 2_string_validation │ │ ├── batman4797.py │ │ └── cripcate.py │ ├── 3_automation │ │ └── test.py │ └── challenges2.md ├── May │ ├── 1_beginner │ │ ├── joe_anonimist.py │ │ ├── kaiserm1.py │ │ ├── kyrogon.py │ │ ├── linx001.py │ │ ├── m4vo.py │ │ ├── rjmessibarca.py │ │ └── username.py │ ├── 2_web_scraping │ │ ├── forfer.py │ │ ├── rjmessibarca.py │ │ └── username.py │ ├── 3_data │ │ ├── rjmessibarca.py │ │ └── username.py │ └── challenges.md ├── November │ └── challenge.md ├── October │ ├── challenge.md │ ├── macsimus.py │ ├── test_tjcim.py │ └── tjcim.py └── September │ ├── 1_ip_addresses │ ├── .dummy │ ├── efren.py │ └── lackhead.py │ ├── 2_named_pipes │ ├── .dummy │ ├── efren_client.py │ ├── efren_pipe.py │ ├── efren_server.py │ └── lackhead.py │ ├── 3_pyaudio │ ├── .dummy │ └── efren.py │ └── challenges4.md ├── .gitignore ├── February ├── 0elo.py ├── FenrisWolf123.py ├── Python-Noob420_Decode(1).py ├── Python-Noob420_Decode.py ├── Python-Noob420_Encode(2).py ├── Python-Noob420_Encode.py ├── README.md ├── amar771.py ├── bradenmess.py ├── danielquinn.py ├── english_words.txt ├── julsmanbr.py ├── linx_001.py ├── tomset.py └── vasedgod.py ├── January └── README.md └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/.gitignore -------------------------------------------------------------------------------- /2017/July/Illusionist_markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/July/Illusionist_markup.py -------------------------------------------------------------------------------- /2017/July/challenges3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/July/challenges3.md -------------------------------------------------------------------------------- /2017/June/1_datetime/batman4797.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/June/1_datetime/batman4797.py -------------------------------------------------------------------------------- /2017/June/1_datetime/bcovy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/June/1_datetime/bcovy.py -------------------------------------------------------------------------------- /2017/June/1_datetime/cripcate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/June/1_datetime/cripcate.py -------------------------------------------------------------------------------- /2017/June/2_string_validation/batman4797.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/June/2_string_validation/batman4797.py -------------------------------------------------------------------------------- /2017/June/2_string_validation/cripcate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/June/2_string_validation/cripcate.py -------------------------------------------------------------------------------- /2017/June/3_automation/test.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2017/June/challenges2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/June/challenges2.md -------------------------------------------------------------------------------- /2017/May/1_beginner/joe_anonimist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/May/1_beginner/joe_anonimist.py -------------------------------------------------------------------------------- /2017/May/1_beginner/kaiserm1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/May/1_beginner/kaiserm1.py -------------------------------------------------------------------------------- /2017/May/1_beginner/kyrogon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/May/1_beginner/kyrogon.py -------------------------------------------------------------------------------- /2017/May/1_beginner/linx001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/May/1_beginner/linx001.py -------------------------------------------------------------------------------- /2017/May/1_beginner/m4vo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/May/1_beginner/m4vo.py -------------------------------------------------------------------------------- /2017/May/1_beginner/rjmessibarca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/May/1_beginner/rjmessibarca.py -------------------------------------------------------------------------------- /2017/May/1_beginner/username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/May/1_beginner/username.py -------------------------------------------------------------------------------- /2017/May/2_web_scraping/forfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/May/2_web_scraping/forfer.py -------------------------------------------------------------------------------- /2017/May/2_web_scraping/rjmessibarca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/May/2_web_scraping/rjmessibarca.py -------------------------------------------------------------------------------- /2017/May/2_web_scraping/username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/May/2_web_scraping/username.py -------------------------------------------------------------------------------- /2017/May/3_data/rjmessibarca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/May/3_data/rjmessibarca.py -------------------------------------------------------------------------------- /2017/May/3_data/username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/May/3_data/username.py -------------------------------------------------------------------------------- /2017/May/challenges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/May/challenges.md -------------------------------------------------------------------------------- /2017/November/challenge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/November/challenge.md -------------------------------------------------------------------------------- /2017/October/challenge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/October/challenge.md -------------------------------------------------------------------------------- /2017/October/macsimus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/October/macsimus.py -------------------------------------------------------------------------------- /2017/October/test_tjcim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/October/test_tjcim.py -------------------------------------------------------------------------------- /2017/October/tjcim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/October/tjcim.py -------------------------------------------------------------------------------- /2017/September/1_ip_addresses/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2017/September/1_ip_addresses/efren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/September/1_ip_addresses/efren.py -------------------------------------------------------------------------------- /2017/September/1_ip_addresses/lackhead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/September/1_ip_addresses/lackhead.py -------------------------------------------------------------------------------- /2017/September/2_named_pipes/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2017/September/2_named_pipes/efren_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/September/2_named_pipes/efren_client.py -------------------------------------------------------------------------------- /2017/September/2_named_pipes/efren_pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/September/2_named_pipes/efren_pipe.py -------------------------------------------------------------------------------- /2017/September/2_named_pipes/efren_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/September/2_named_pipes/efren_server.py -------------------------------------------------------------------------------- /2017/September/2_named_pipes/lackhead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/September/2_named_pipes/lackhead.py -------------------------------------------------------------------------------- /2017/September/3_pyaudio/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2017/September/3_pyaudio/efren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/September/3_pyaudio/efren.py -------------------------------------------------------------------------------- /2017/September/challenges4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/2017/September/challenges4.md -------------------------------------------------------------------------------- /February/0elo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/February/0elo.py -------------------------------------------------------------------------------- /February/FenrisWolf123.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/February/FenrisWolf123.py -------------------------------------------------------------------------------- /February/Python-Noob420_Decode(1).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/February/Python-Noob420_Decode(1).py -------------------------------------------------------------------------------- /February/Python-Noob420_Decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/February/Python-Noob420_Decode.py -------------------------------------------------------------------------------- /February/Python-Noob420_Encode(2).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/February/Python-Noob420_Encode(2).py -------------------------------------------------------------------------------- /February/Python-Noob420_Encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/February/Python-Noob420_Encode.py -------------------------------------------------------------------------------- /February/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/February/README.md -------------------------------------------------------------------------------- /February/amar771.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/February/amar771.py -------------------------------------------------------------------------------- /February/bradenmess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/February/bradenmess.py -------------------------------------------------------------------------------- /February/danielquinn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/February/danielquinn.py -------------------------------------------------------------------------------- /February/english_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/February/english_words.txt -------------------------------------------------------------------------------- /February/julsmanbr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/February/julsmanbr.py -------------------------------------------------------------------------------- /February/linx_001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/February/linx_001.py -------------------------------------------------------------------------------- /February/tomset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/February/tomset.py -------------------------------------------------------------------------------- /February/vasedgod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/February/vasedgod.py -------------------------------------------------------------------------------- /January/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/January/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py-study-group/challenges/HEAD/README.md --------------------------------------------------------------------------------