├── .editorconfig ├── .gitignore ├── 2014-12 └── 20 │ └── 2014-12-20-stock-ticker-scraping.py ├── 2015-01 ├── 10 │ ├── gyro.json │ ├── log.txt │ └── sensor-data.py └── 17 │ ├── data-matching-pandas.py │ ├── data-matching.py │ ├── name-address.psv │ └── name-bank-email.psv ├── 2015-04 ├── 18 │ ├── rps.py │ └── wmata_api.py └── 04 │ └── wmata-api.py ├── 2015-06 └── 06 │ └── twitter-wrangling.py ├── 2015-07 ├── 11 │ ├── calculations.py │ ├── hello.py │ └── tips.py ├── 18 │ ├── examine_data.py │ └── sample_bank_data.csv └── 25 │ ├── caught.py │ ├── hello.py │ └── speeding.py ├── 2015-08 ├── 15 │ ├── examples.md │ ├── files.py │ ├── intro.py │ ├── loops.py │ ├── poem.txt │ ├── poem2.txt │ └── strings.py ├── 22 │ └── palindrome.py ├── 29 │ └── fahrenheit.py └── 08 │ ├── dna.py │ └── dna.txt ├── 2015-09 ├── 19 │ └── starter.py └── 26 │ └── rpsls.py ├── 2015-10 ├── 10 │ ├── child_sorter.py │ ├── lookup.py │ └── translator.py ├── 17 │ ├── start_file.py │ └── template_starter.py ├── 24 │ └── pangram.py ├── 31 │ ├── fazzbazz.py │ ├── fizzbuzz.py │ └── pwgen.py └── 03 │ ├── fizzbuzz.py │ └── multiples.py ├── 2015-11 ├── 14 │ └── fizzbuzz.py └── 07 │ └── fahrenheit.py ├── 2015-12 ├── 5 │ ├── readme.md │ ├── zoo_tweets.csv │ ├── zoo_tweets.py │ └── zoo_tweets_answers.py ├── 12 │ ├── pwgen.py │ └── words.txt └── 19 │ ├── password.py │ └── script.py ├── 2016-01 ├── 16 │ ├── hello.py │ └── translator.py └── 30 │ ├── hello.py │ └── pwgen.py ├── 2016-02 ├── 20 │ ├── celsius.py │ └── hello.py ├── 27 │ ├── anagram.py │ ├── anagram_interface.py │ └── hello.py └── 06 │ ├── hello.py │ ├── pangram.py │ └── pangram_interface.py ├── 2016-03 ├── 12 │ ├── class_code_turtle.py │ └── intro.py ├── 19 │ └── passport.py └── 26 │ ├── hello.py │ └── translator.py ├── 2016-04 ├── 16 │ └── scraper.py ├── 23 │ ├── hello.py │ └── wmata.py ├── 02 │ └── scraper.py └── 09 │ └── starter.py ├── 2016-05 ├── 21 │ ├── anagrams.py │ └── words.txt └── 07 │ └── hello.py ├── 2016-06 ├── 11 │ └── translate.py ├── 18 │ ├── fizzbuzz.py │ └── hello.py └── 26 │ └── reddit.py ├── 2016-07 ├── 9 │ ├── class_code_turtle.py │ ├── hello.py │ ├── interactive_turtle.py │ └── starter_turtle.py ├── 16 │ ├── hello.py │ └── wmata.py ├── 23 │ ├── hello.py │ └── reddit.py └── 30 │ ├── hello.py │ ├── wmata.py │ └── wmata_improved.py ├── 2016-08 ├── 6 │ ├── arts-and-culture-organizations.csv │ ├── class_code_start3.py │ ├── start2.py │ └── start3.py ├── 13 │ └── wmata.py ├── 20 │ └── password.py └── 27 │ └── wmata.py ├── 2016-09 ├── 17 │ └── starter.py └── 24 │ └── reddit.py ├── 2016-10 ├── 15 │ ├── class_code.py │ └── starter.py ├── 22 │ ├── hello.py │ └── wmata.py ├── 29 │ ├── fizzbuzz.py │ └── fizzbuzz_hof.py └── 01 │ └── wmata.py ├── 2016-11 ├── 19 │ ├── class_code.py │ ├── readme.md │ └── starter.py └── 05 │ ├── class_code.py │ ├── readme.md │ └── starter.py ├── 2016-12 ├── 10 │ └── wmata.py └── 17 │ └── reddit.py ├── 2017-01 ├── 14 │ ├── password.py │ └── password_metaprogramming.py ├── 28 │ ├── classcode.py │ ├── readme.md │ └── starter.py └── 07 │ └── wmata.py ├── 2017-02 ├── 18 │ ├── article_part_one.txt │ ├── classcode.py │ ├── exercise1_solution.py │ ├── exercise2_solution.py │ ├── exercise3_solution.py │ ├── readme.md │ └── starter.py ├── 25 │ └── password.py └── 04 │ └── wmata.py ├── 2017-04 ├── 22 │ ├── hello.py │ └── wmata.py └── 08 │ └── anagrams.py ├── 2017-05 ├── 13 │ ├── briefing.txt │ ├── class_code.py │ ├── readme.md │ └── starter.py ├── 27 │ └── wmata.py └── 06 │ ├── hello.py │ └── wmata.py ├── 2017-06 ├── 17 │ └── reddit.py └── 03 │ └── speedtest.py ├── 2017-08 ├── 19 │ └── greenline.py └── 05 │ └── wmata.py ├── 2017-09 └── 16 │ └── reddit_scraper.py ├── 2017-10 ├── 21 │ ├── hello.py │ └── wmata.py └── 07 │ └── reddit.py ├── 2017-11 ├── 18 │ └── anagram.py └── 04 │ ├── cities.csv │ ├── cities.py │ └── cities2.csv ├── 2019-04 └── 14 │ ├── characters.json │ ├── got.py │ └── myfile.py ├── 2019-05 ├── 12 │ ├── hello.py │ ├── pwfunc.py │ └── string_random_examples.py └── 25 │ ├── fizzbuzz.py │ ├── hello.py │ ├── myfile.py │ └── working_with_lists.py ├── 2019-06 ├── 23 │ ├── fizz_buzz_with_argparse.py │ ├── fizz_buzz_with_hardcoded_min_max.py │ ├── fizz_buzz_with_input.py │ ├── hello.py │ └── myfile.py └── 09 │ ├── myfile.py │ ├── pwdgen.py │ ├── say_hello.py │ └── str_concat_vs_interpolation.py ├── 2019-07 ├── 20 │ ├── aviation.py │ └── hello.py └── 07 │ ├── sayhello.py │ └── wmata.py ├── 2019-08 ├── 18 │ ├── hello.py │ └── pwd.py └── 04 │ ├── hello.py │ └── world_cup.py ├── 2019-09 └── 28 │ ├── fizz_buzz.py │ └── hello.py ├── 2019-10 └── 27 │ ├── hello.py │ └── translator.py ├── 2019-11 └── 10 │ ├── hello.py │ └── pwdgen.py ├── 2019-12 └── 7 │ ├── hello.py │ └── wmata.py ├── 2020-01 └── 19 │ ├── fizzbuzz.py │ ├── hello.py │ └── pwdgen.py ├── GPL.md ├── LICENSE.md ├── README.md ├── extra-practice.md ├── installing.md ├── learning.md └── resources.md /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*.py] 4 | indent_size = 4 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/.gitignore -------------------------------------------------------------------------------- /2014-12/20/2014-12-20-stock-ticker-scraping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2014-12/20/2014-12-20-stock-ticker-scraping.py -------------------------------------------------------------------------------- /2015-01/10/gyro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-01/10/gyro.json -------------------------------------------------------------------------------- /2015-01/10/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-01/10/log.txt -------------------------------------------------------------------------------- /2015-01/10/sensor-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-01/10/sensor-data.py -------------------------------------------------------------------------------- /2015-01/17/data-matching-pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-01/17/data-matching-pandas.py -------------------------------------------------------------------------------- /2015-01/17/data-matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-01/17/data-matching.py -------------------------------------------------------------------------------- /2015-01/17/name-address.psv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-01/17/name-address.psv -------------------------------------------------------------------------------- /2015-01/17/name-bank-email.psv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-01/17/name-bank-email.psv -------------------------------------------------------------------------------- /2015-04/04/wmata-api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-04/04/wmata-api.py -------------------------------------------------------------------------------- /2015-04/18/rps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-04/18/rps.py -------------------------------------------------------------------------------- /2015-04/18/wmata_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-04/18/wmata_api.py -------------------------------------------------------------------------------- /2015-06/06/twitter-wrangling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-06/06/twitter-wrangling.py -------------------------------------------------------------------------------- /2015-07/11/calculations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-07/11/calculations.py -------------------------------------------------------------------------------- /2015-07/11/hello.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | print("Hello, world!") 3 | -------------------------------------------------------------------------------- /2015-07/11/tips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-07/11/tips.py -------------------------------------------------------------------------------- /2015-07/18/examine_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-07/18/examine_data.py -------------------------------------------------------------------------------- /2015-07/18/sample_bank_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-07/18/sample_bank_data.csv -------------------------------------------------------------------------------- /2015-07/25/caught.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-07/25/caught.py -------------------------------------------------------------------------------- /2015-07/25/hello.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | print("Hello, world!") 3 | -------------------------------------------------------------------------------- /2015-07/25/speeding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-07/25/speeding.py -------------------------------------------------------------------------------- /2015-08/08/dna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-08/08/dna.py -------------------------------------------------------------------------------- /2015-08/08/dna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-08/08/dna.txt -------------------------------------------------------------------------------- /2015-08/15/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-08/15/examples.md -------------------------------------------------------------------------------- /2015-08/15/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-08/15/files.py -------------------------------------------------------------------------------- /2015-08/15/intro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-08/15/intro.py -------------------------------------------------------------------------------- /2015-08/15/loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-08/15/loops.py -------------------------------------------------------------------------------- /2015-08/15/poem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-08/15/poem.txt -------------------------------------------------------------------------------- /2015-08/15/poem2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-08/15/poem2.txt -------------------------------------------------------------------------------- /2015-08/15/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-08/15/strings.py -------------------------------------------------------------------------------- /2015-08/22/palindrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-08/22/palindrome.py -------------------------------------------------------------------------------- /2015-08/29/fahrenheit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-08/29/fahrenheit.py -------------------------------------------------------------------------------- /2015-09/19/starter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-09/19/starter.py -------------------------------------------------------------------------------- /2015-09/26/rpsls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-09/26/rpsls.py -------------------------------------------------------------------------------- /2015-10/03/fizzbuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-10/03/fizzbuzz.py -------------------------------------------------------------------------------- /2015-10/03/multiples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-10/03/multiples.py -------------------------------------------------------------------------------- /2015-10/10/child_sorter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-10/10/child_sorter.py -------------------------------------------------------------------------------- /2015-10/10/lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-10/10/lookup.py -------------------------------------------------------------------------------- /2015-10/10/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-10/10/translator.py -------------------------------------------------------------------------------- /2015-10/17/start_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-10/17/start_file.py -------------------------------------------------------------------------------- /2015-10/17/template_starter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-10/17/template_starter.py -------------------------------------------------------------------------------- /2015-10/24/pangram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-10/24/pangram.py -------------------------------------------------------------------------------- /2015-10/31/fazzbazz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-10/31/fazzbazz.py -------------------------------------------------------------------------------- /2015-10/31/fizzbuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-10/31/fizzbuzz.py -------------------------------------------------------------------------------- /2015-10/31/pwgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-10/31/pwgen.py -------------------------------------------------------------------------------- /2015-11/07/fahrenheit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-11/07/fahrenheit.py -------------------------------------------------------------------------------- /2015-11/14/fizzbuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-11/14/fizzbuzz.py -------------------------------------------------------------------------------- /2015-12/12/pwgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-12/12/pwgen.py -------------------------------------------------------------------------------- /2015-12/12/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-12/12/words.txt -------------------------------------------------------------------------------- /2015-12/19/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-12/19/password.py -------------------------------------------------------------------------------- /2015-12/19/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-12/19/script.py -------------------------------------------------------------------------------- /2015-12/5/readme.md: -------------------------------------------------------------------------------- 1 | #Analyzing Tweets from the National Zoo -------------------------------------------------------------------------------- /2015-12/5/zoo_tweets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-12/5/zoo_tweets.csv -------------------------------------------------------------------------------- /2015-12/5/zoo_tweets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-12/5/zoo_tweets.py -------------------------------------------------------------------------------- /2015-12/5/zoo_tweets_answers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2015-12/5/zoo_tweets_answers.py -------------------------------------------------------------------------------- /2016-01/16/hello.py: -------------------------------------------------------------------------------- 1 | print("Hello!") 2 | -------------------------------------------------------------------------------- /2016-01/16/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-01/16/translator.py -------------------------------------------------------------------------------- /2016-01/30/hello.py: -------------------------------------------------------------------------------- 1 | print("Hello, all!") 2 | -------------------------------------------------------------------------------- /2016-01/30/pwgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-01/30/pwgen.py -------------------------------------------------------------------------------- /2016-02/06/hello.py: -------------------------------------------------------------------------------- 1 | print("Hello, all!") 2 | -------------------------------------------------------------------------------- /2016-02/06/pangram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-02/06/pangram.py -------------------------------------------------------------------------------- /2016-02/06/pangram_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-02/06/pangram_interface.py -------------------------------------------------------------------------------- /2016-02/20/celsius.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-02/20/celsius.py -------------------------------------------------------------------------------- /2016-02/20/hello.py: -------------------------------------------------------------------------------- 1 | # Hi! 2 | print("Hello!") 3 | -------------------------------------------------------------------------------- /2016-02/27/anagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-02/27/anagram.py -------------------------------------------------------------------------------- /2016-02/27/anagram_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-02/27/anagram_interface.py -------------------------------------------------------------------------------- /2016-02/27/hello.py: -------------------------------------------------------------------------------- 1 | print("Hello all!") 2 | -------------------------------------------------------------------------------- /2016-03/12/class_code_turtle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-03/12/class_code_turtle.py -------------------------------------------------------------------------------- /2016-03/12/intro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-03/12/intro.py -------------------------------------------------------------------------------- /2016-03/19/passport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-03/19/passport.py -------------------------------------------------------------------------------- /2016-03/26/hello.py: -------------------------------------------------------------------------------- 1 | print("Hello, world!") 2 | -------------------------------------------------------------------------------- /2016-03/26/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-03/26/translator.py -------------------------------------------------------------------------------- /2016-04/02/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-04/02/scraper.py -------------------------------------------------------------------------------- /2016-04/09/starter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-04/09/starter.py -------------------------------------------------------------------------------- /2016-04/16/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-04/16/scraper.py -------------------------------------------------------------------------------- /2016-04/23/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-04/23/hello.py -------------------------------------------------------------------------------- /2016-04/23/wmata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-04/23/wmata.py -------------------------------------------------------------------------------- /2016-05/07/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-05/07/hello.py -------------------------------------------------------------------------------- /2016-05/21/anagrams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-05/21/anagrams.py -------------------------------------------------------------------------------- /2016-05/21/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-05/21/words.txt -------------------------------------------------------------------------------- /2016-06/11/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-06/11/translate.py -------------------------------------------------------------------------------- /2016-06/18/fizzbuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-06/18/fizzbuzz.py -------------------------------------------------------------------------------- /2016-06/18/hello.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /2016-06/26/reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-06/26/reddit.py -------------------------------------------------------------------------------- /2016-07/16/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-07/16/hello.py -------------------------------------------------------------------------------- /2016-07/16/wmata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-07/16/wmata.py -------------------------------------------------------------------------------- /2016-07/23/hello.py: -------------------------------------------------------------------------------- 1 | print("Hello, all!") 2 | -------------------------------------------------------------------------------- /2016-07/23/reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-07/23/reddit.py -------------------------------------------------------------------------------- /2016-07/30/hello.py: -------------------------------------------------------------------------------- 1 | print("Hello, all!") 2 | -------------------------------------------------------------------------------- /2016-07/30/wmata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-07/30/wmata.py -------------------------------------------------------------------------------- /2016-07/30/wmata_improved.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-07/30/wmata_improved.py -------------------------------------------------------------------------------- /2016-07/9/class_code_turtle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-07/9/class_code_turtle.py -------------------------------------------------------------------------------- /2016-07/9/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-07/9/hello.py -------------------------------------------------------------------------------- /2016-07/9/interactive_turtle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-07/9/interactive_turtle.py -------------------------------------------------------------------------------- /2016-07/9/starter_turtle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-07/9/starter_turtle.py -------------------------------------------------------------------------------- /2016-08/13/wmata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-08/13/wmata.py -------------------------------------------------------------------------------- /2016-08/20/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-08/20/password.py -------------------------------------------------------------------------------- /2016-08/27/wmata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-08/27/wmata.py -------------------------------------------------------------------------------- /2016-08/6/arts-and-culture-organizations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-08/6/arts-and-culture-organizations.csv -------------------------------------------------------------------------------- /2016-08/6/class_code_start3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-08/6/class_code_start3.py -------------------------------------------------------------------------------- /2016-08/6/start2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-08/6/start2.py -------------------------------------------------------------------------------- /2016-08/6/start3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-08/6/start3.py -------------------------------------------------------------------------------- /2016-09/17/starter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-09/17/starter.py -------------------------------------------------------------------------------- /2016-09/24/reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-09/24/reddit.py -------------------------------------------------------------------------------- /2016-10/01/wmata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-10/01/wmata.py -------------------------------------------------------------------------------- /2016-10/15/class_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-10/15/class_code.py -------------------------------------------------------------------------------- /2016-10/15/starter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-10/15/starter.py -------------------------------------------------------------------------------- /2016-10/22/hello.py: -------------------------------------------------------------------------------- 1 | print("Hello, all!") 2 | -------------------------------------------------------------------------------- /2016-10/22/wmata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-10/22/wmata.py -------------------------------------------------------------------------------- /2016-10/29/fizzbuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-10/29/fizzbuzz.py -------------------------------------------------------------------------------- /2016-10/29/fizzbuzz_hof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-10/29/fizzbuzz_hof.py -------------------------------------------------------------------------------- /2016-11/05/class_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-11/05/class_code.py -------------------------------------------------------------------------------- /2016-11/05/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-11/05/readme.md -------------------------------------------------------------------------------- /2016-11/05/starter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-11/05/starter.py -------------------------------------------------------------------------------- /2016-11/19/class_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-11/19/class_code.py -------------------------------------------------------------------------------- /2016-11/19/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-11/19/readme.md -------------------------------------------------------------------------------- /2016-11/19/starter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-11/19/starter.py -------------------------------------------------------------------------------- /2016-12/10/wmata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-12/10/wmata.py -------------------------------------------------------------------------------- /2016-12/17/reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2016-12/17/reddit.py -------------------------------------------------------------------------------- /2017-01/07/wmata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-01/07/wmata.py -------------------------------------------------------------------------------- /2017-01/14/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-01/14/password.py -------------------------------------------------------------------------------- /2017-01/14/password_metaprogramming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-01/14/password_metaprogramming.py -------------------------------------------------------------------------------- /2017-01/28/classcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-01/28/classcode.py -------------------------------------------------------------------------------- /2017-01/28/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-01/28/readme.md -------------------------------------------------------------------------------- /2017-01/28/starter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-01/28/starter.py -------------------------------------------------------------------------------- /2017-02/04/wmata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-02/04/wmata.py -------------------------------------------------------------------------------- /2017-02/18/article_part_one.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-02/18/article_part_one.txt -------------------------------------------------------------------------------- /2017-02/18/classcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-02/18/classcode.py -------------------------------------------------------------------------------- /2017-02/18/exercise1_solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-02/18/exercise1_solution.py -------------------------------------------------------------------------------- /2017-02/18/exercise2_solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-02/18/exercise2_solution.py -------------------------------------------------------------------------------- /2017-02/18/exercise3_solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-02/18/exercise3_solution.py -------------------------------------------------------------------------------- /2017-02/18/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-02/18/readme.md -------------------------------------------------------------------------------- /2017-02/18/starter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-02/18/starter.py -------------------------------------------------------------------------------- /2017-02/25/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-02/25/password.py -------------------------------------------------------------------------------- /2017-04/08/anagrams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-04/08/anagrams.py -------------------------------------------------------------------------------- /2017-04/22/hello.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | print("Hello, world!") 3 | -------------------------------------------------------------------------------- /2017-04/22/wmata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-04/22/wmata.py -------------------------------------------------------------------------------- /2017-05/06/hello.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | print("Hello, world!") 3 | e1eee2b5677f408da40af8480a5fd5a8 4 | -------------------------------------------------------------------------------- /2017-05/06/wmata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-05/06/wmata.py -------------------------------------------------------------------------------- /2017-05/13/briefing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-05/13/briefing.txt -------------------------------------------------------------------------------- /2017-05/13/class_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-05/13/class_code.py -------------------------------------------------------------------------------- /2017-05/13/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-05/13/readme.md -------------------------------------------------------------------------------- /2017-05/13/starter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-05/13/starter.py -------------------------------------------------------------------------------- /2017-05/27/wmata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-05/27/wmata.py -------------------------------------------------------------------------------- /2017-06/03/speedtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-06/03/speedtest.py -------------------------------------------------------------------------------- /2017-06/17/reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-06/17/reddit.py -------------------------------------------------------------------------------- /2017-08/05/wmata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-08/05/wmata.py -------------------------------------------------------------------------------- /2017-08/19/greenline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-08/19/greenline.py -------------------------------------------------------------------------------- /2017-09/16/reddit_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-09/16/reddit_scraper.py -------------------------------------------------------------------------------- /2017-10/07/reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-10/07/reddit.py -------------------------------------------------------------------------------- /2017-10/21/hello.py: -------------------------------------------------------------------------------- 1 | print("Hello, all!") -------------------------------------------------------------------------------- /2017-10/21/wmata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-10/21/wmata.py -------------------------------------------------------------------------------- /2017-11/04/cities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-11/04/cities.csv -------------------------------------------------------------------------------- /2017-11/04/cities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-11/04/cities.py -------------------------------------------------------------------------------- /2017-11/04/cities2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-11/04/cities2.csv -------------------------------------------------------------------------------- /2017-11/18/anagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2017-11/18/anagram.py -------------------------------------------------------------------------------- /2019-04/14/characters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-04/14/characters.json -------------------------------------------------------------------------------- /2019-04/14/got.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-04/14/got.py -------------------------------------------------------------------------------- /2019-04/14/myfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-04/14/myfile.py -------------------------------------------------------------------------------- /2019-05/12/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-05/12/hello.py -------------------------------------------------------------------------------- /2019-05/12/pwfunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-05/12/pwfunc.py -------------------------------------------------------------------------------- /2019-05/12/string_random_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-05/12/string_random_examples.py -------------------------------------------------------------------------------- /2019-05/25/fizzbuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-05/25/fizzbuzz.py -------------------------------------------------------------------------------- /2019-05/25/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-05/25/hello.py -------------------------------------------------------------------------------- /2019-05/25/myfile.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | print(os.getcwd()) -------------------------------------------------------------------------------- /2019-05/25/working_with_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-05/25/working_with_lists.py -------------------------------------------------------------------------------- /2019-06/09/myfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-06/09/myfile.py -------------------------------------------------------------------------------- /2019-06/09/pwdgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-06/09/pwdgen.py -------------------------------------------------------------------------------- /2019-06/09/say_hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-06/09/say_hello.py -------------------------------------------------------------------------------- /2019-06/09/str_concat_vs_interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-06/09/str_concat_vs_interpolation.py -------------------------------------------------------------------------------- /2019-06/23/fizz_buzz_with_argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-06/23/fizz_buzz_with_argparse.py -------------------------------------------------------------------------------- /2019-06/23/fizz_buzz_with_hardcoded_min_max.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-06/23/fizz_buzz_with_hardcoded_min_max.py -------------------------------------------------------------------------------- /2019-06/23/fizz_buzz_with_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-06/23/fizz_buzz_with_input.py -------------------------------------------------------------------------------- /2019-06/23/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-06/23/hello.py -------------------------------------------------------------------------------- /2019-06/23/myfile.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | print(os.getcwd()) -------------------------------------------------------------------------------- /2019-07/07/sayhello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-07/07/sayhello.py -------------------------------------------------------------------------------- /2019-07/07/wmata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-07/07/wmata.py -------------------------------------------------------------------------------- /2019-07/20/aviation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-07/20/aviation.py -------------------------------------------------------------------------------- /2019-07/20/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-07/20/hello.py -------------------------------------------------------------------------------- /2019-08/04/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-08/04/hello.py -------------------------------------------------------------------------------- /2019-08/04/world_cup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-08/04/world_cup.py -------------------------------------------------------------------------------- /2019-08/18/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-08/18/hello.py -------------------------------------------------------------------------------- /2019-08/18/pwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-08/18/pwd.py -------------------------------------------------------------------------------- /2019-09/28/fizz_buzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-09/28/fizz_buzz.py -------------------------------------------------------------------------------- /2019-09/28/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-09/28/hello.py -------------------------------------------------------------------------------- /2019-10/27/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-10/27/hello.py -------------------------------------------------------------------------------- /2019-10/27/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-10/27/translator.py -------------------------------------------------------------------------------- /2019-11/10/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-11/10/hello.py -------------------------------------------------------------------------------- /2019-11/10/pwdgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-11/10/pwdgen.py -------------------------------------------------------------------------------- /2019-12/7/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-12/7/hello.py -------------------------------------------------------------------------------- /2019-12/7/wmata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2019-12/7/wmata.py -------------------------------------------------------------------------------- /2020-01/19/fizzbuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2020-01/19/fizzbuzz.py -------------------------------------------------------------------------------- /2020-01/19/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2020-01/19/hello.py -------------------------------------------------------------------------------- /2020-01/19/pwdgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/2020-01/19/pwdgen.py -------------------------------------------------------------------------------- /GPL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/GPL.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/README.md -------------------------------------------------------------------------------- /extra-practice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/extra-practice.md -------------------------------------------------------------------------------- /installing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/installing.md -------------------------------------------------------------------------------- /learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/learning.md -------------------------------------------------------------------------------- /resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcpylab/classes/HEAD/resources.md --------------------------------------------------------------------------------