├── .gitignore ├── README ├── appropriating ├── get_url.py ├── itp_course_list.py ├── itp_course_names.py ├── kittens.html ├── twitter_search.py ├── twitter_timeline.py ├── wordnik_define.py └── wordnik_rhymes.py ├── austen.txt ├── contextfree ├── contextfree.py ├── print_dictionary_values.py ├── test_grammar.json └── tests │ └── test_contextfree.py ├── flask ├── greetings.py ├── greetings_with_template.py ├── hemingway_jquery.py ├── hemingway_web.py ├── plural.py └── templates │ ├── greeting.html │ ├── hemingway_home.html │ ├── hemingway_jquery.html │ ├── hemingway_transformed.html │ └── template.html ├── frost.txt ├── functions_classes ├── Concordance.py ├── WorstPossibleHaikuGenerator.py ├── combo.py ├── conjunctions.py ├── rand_replace.py └── sentence.py ├── genesis.txt ├── lovecraft.txt ├── modularity ├── make_it_upper.py ├── restaurants_forever.py ├── restaurants_forever_with_import.py ├── restaurantutils.py └── ucfirst.py ├── ngrams ├── count_word_pairs.py ├── markov.py ├── ngramcount.py ├── tests │ ├── test_markov.py │ └── test_ngram_count.py └── word_pairs.py ├── pronouncing ├── cmudict-0.7b ├── cmudict.py ├── tests │ └── test_cmudict.py └── words_beginning_with_sss.py ├── regex ├── contextual_you.py ├── genderswap.py ├── whats_in_what.py └── you.py ├── sea_rose.txt ├── simple ├── adj_extractor.py ├── adjectives ├── alpha_replace.py ├── cat.py ├── concordance.py ├── cowboy.py ├── forfinder.py ├── randomize_lines.py ├── randomize_words.py ├── simplegrep.py └── unique_words.py ├── sonnets.txt ├── sotu2012.txt ├── sowpods.txt ├── spacy ├── hemingwayize.py ├── instructify.py └── what_theyre_doing.py ├── stein.txt ├── textblobbed ├── extract_pos.py ├── hemingwayize.py ├── instructify.py ├── summarize_poorly.py └── synonymize.py ├── tornado ├── definer │ ├── definer.py │ ├── static │ │ └── kitten.jpg │ └── templates │ │ ├── definition.html │ │ └── index.html ├── hello │ └── hello.py └── markovtweets │ ├── markov.py │ ├── markov_by_char.py │ ├── markovtweets.py │ ├── static │ └── bird.jpg │ └── templates │ └── index.html ├── wasteland.txt └── web ├── alphapedia_crawl.py ├── bs4 ├── __init__.py ├── builder │ ├── __init__.py │ ├── _html5lib.py │ ├── _htmlparser.py │ └── _lxml.py ├── dammit.py ├── element.py ├── testing.py └── tests │ ├── __init__.py │ ├── test_builder_registry.py │ ├── test_docs.py │ ├── test_html5lib.py │ ├── test_htmlparser.py │ ├── test_lxml.py │ ├── test_soup.py │ └── test_tree.py ├── get_url.py ├── itp_course_list.py ├── itp_course_names.py ├── search_facebook_posts.py ├── search_twitter.py ├── simple_rhyme_bot.py └── tip_poetics.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | venv 3 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/README -------------------------------------------------------------------------------- /appropriating/get_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/appropriating/get_url.py -------------------------------------------------------------------------------- /appropriating/itp_course_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/appropriating/itp_course_list.py -------------------------------------------------------------------------------- /appropriating/itp_course_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/appropriating/itp_course_names.py -------------------------------------------------------------------------------- /appropriating/kittens.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/appropriating/kittens.html -------------------------------------------------------------------------------- /appropriating/twitter_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/appropriating/twitter_search.py -------------------------------------------------------------------------------- /appropriating/twitter_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/appropriating/twitter_timeline.py -------------------------------------------------------------------------------- /appropriating/wordnik_define.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/appropriating/wordnik_define.py -------------------------------------------------------------------------------- /appropriating/wordnik_rhymes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/appropriating/wordnik_rhymes.py -------------------------------------------------------------------------------- /austen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/austen.txt -------------------------------------------------------------------------------- /contextfree/contextfree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/contextfree/contextfree.py -------------------------------------------------------------------------------- /contextfree/print_dictionary_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/contextfree/print_dictionary_values.py -------------------------------------------------------------------------------- /contextfree/test_grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/contextfree/test_grammar.json -------------------------------------------------------------------------------- /contextfree/tests/test_contextfree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/contextfree/tests/test_contextfree.py -------------------------------------------------------------------------------- /flask/greetings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/flask/greetings.py -------------------------------------------------------------------------------- /flask/greetings_with_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/flask/greetings_with_template.py -------------------------------------------------------------------------------- /flask/hemingway_jquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/flask/hemingway_jquery.py -------------------------------------------------------------------------------- /flask/hemingway_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/flask/hemingway_web.py -------------------------------------------------------------------------------- /flask/plural.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/flask/plural.py -------------------------------------------------------------------------------- /flask/templates/greeting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/flask/templates/greeting.html -------------------------------------------------------------------------------- /flask/templates/hemingway_home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/flask/templates/hemingway_home.html -------------------------------------------------------------------------------- /flask/templates/hemingway_jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/flask/templates/hemingway_jquery.html -------------------------------------------------------------------------------- /flask/templates/hemingway_transformed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/flask/templates/hemingway_transformed.html -------------------------------------------------------------------------------- /flask/templates/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/flask/templates/template.html -------------------------------------------------------------------------------- /frost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/frost.txt -------------------------------------------------------------------------------- /functions_classes/Concordance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/functions_classes/Concordance.py -------------------------------------------------------------------------------- /functions_classes/WorstPossibleHaikuGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/functions_classes/WorstPossibleHaikuGenerator.py -------------------------------------------------------------------------------- /functions_classes/combo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/functions_classes/combo.py -------------------------------------------------------------------------------- /functions_classes/conjunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/functions_classes/conjunctions.py -------------------------------------------------------------------------------- /functions_classes/rand_replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/functions_classes/rand_replace.py -------------------------------------------------------------------------------- /functions_classes/sentence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/functions_classes/sentence.py -------------------------------------------------------------------------------- /genesis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/genesis.txt -------------------------------------------------------------------------------- /lovecraft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/lovecraft.txt -------------------------------------------------------------------------------- /modularity/make_it_upper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/modularity/make_it_upper.py -------------------------------------------------------------------------------- /modularity/restaurants_forever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/modularity/restaurants_forever.py -------------------------------------------------------------------------------- /modularity/restaurants_forever_with_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/modularity/restaurants_forever_with_import.py -------------------------------------------------------------------------------- /modularity/restaurantutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/modularity/restaurantutils.py -------------------------------------------------------------------------------- /modularity/ucfirst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/modularity/ucfirst.py -------------------------------------------------------------------------------- /ngrams/count_word_pairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/ngrams/count_word_pairs.py -------------------------------------------------------------------------------- /ngrams/markov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/ngrams/markov.py -------------------------------------------------------------------------------- /ngrams/ngramcount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/ngrams/ngramcount.py -------------------------------------------------------------------------------- /ngrams/tests/test_markov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/ngrams/tests/test_markov.py -------------------------------------------------------------------------------- /ngrams/tests/test_ngram_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/ngrams/tests/test_ngram_count.py -------------------------------------------------------------------------------- /ngrams/word_pairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/ngrams/word_pairs.py -------------------------------------------------------------------------------- /pronouncing/cmudict-0.7b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/pronouncing/cmudict-0.7b -------------------------------------------------------------------------------- /pronouncing/cmudict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/pronouncing/cmudict.py -------------------------------------------------------------------------------- /pronouncing/tests/test_cmudict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/pronouncing/tests/test_cmudict.py -------------------------------------------------------------------------------- /pronouncing/words_beginning_with_sss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/pronouncing/words_beginning_with_sss.py -------------------------------------------------------------------------------- /regex/contextual_you.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/regex/contextual_you.py -------------------------------------------------------------------------------- /regex/genderswap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/regex/genderswap.py -------------------------------------------------------------------------------- /regex/whats_in_what.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/regex/whats_in_what.py -------------------------------------------------------------------------------- /regex/you.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/regex/you.py -------------------------------------------------------------------------------- /sea_rose.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/sea_rose.txt -------------------------------------------------------------------------------- /simple/adj_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/simple/adj_extractor.py -------------------------------------------------------------------------------- /simple/adjectives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/simple/adjectives -------------------------------------------------------------------------------- /simple/alpha_replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/simple/alpha_replace.py -------------------------------------------------------------------------------- /simple/cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/simple/cat.py -------------------------------------------------------------------------------- /simple/concordance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/simple/concordance.py -------------------------------------------------------------------------------- /simple/cowboy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/simple/cowboy.py -------------------------------------------------------------------------------- /simple/forfinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/simple/forfinder.py -------------------------------------------------------------------------------- /simple/randomize_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/simple/randomize_lines.py -------------------------------------------------------------------------------- /simple/randomize_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/simple/randomize_words.py -------------------------------------------------------------------------------- /simple/simplegrep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/simple/simplegrep.py -------------------------------------------------------------------------------- /simple/unique_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/simple/unique_words.py -------------------------------------------------------------------------------- /sonnets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/sonnets.txt -------------------------------------------------------------------------------- /sotu2012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/sotu2012.txt -------------------------------------------------------------------------------- /sowpods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/sowpods.txt -------------------------------------------------------------------------------- /spacy/hemingwayize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/spacy/hemingwayize.py -------------------------------------------------------------------------------- /spacy/instructify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/spacy/instructify.py -------------------------------------------------------------------------------- /spacy/what_theyre_doing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/spacy/what_theyre_doing.py -------------------------------------------------------------------------------- /stein.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/stein.txt -------------------------------------------------------------------------------- /textblobbed/extract_pos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/textblobbed/extract_pos.py -------------------------------------------------------------------------------- /textblobbed/hemingwayize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/textblobbed/hemingwayize.py -------------------------------------------------------------------------------- /textblobbed/instructify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/textblobbed/instructify.py -------------------------------------------------------------------------------- /textblobbed/summarize_poorly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/textblobbed/summarize_poorly.py -------------------------------------------------------------------------------- /textblobbed/synonymize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/textblobbed/synonymize.py -------------------------------------------------------------------------------- /tornado/definer/definer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/tornado/definer/definer.py -------------------------------------------------------------------------------- /tornado/definer/static/kitten.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/tornado/definer/static/kitten.jpg -------------------------------------------------------------------------------- /tornado/definer/templates/definition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/tornado/definer/templates/definition.html -------------------------------------------------------------------------------- /tornado/definer/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/tornado/definer/templates/index.html -------------------------------------------------------------------------------- /tornado/hello/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/tornado/hello/hello.py -------------------------------------------------------------------------------- /tornado/markovtweets/markov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/tornado/markovtweets/markov.py -------------------------------------------------------------------------------- /tornado/markovtweets/markov_by_char.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/tornado/markovtweets/markov_by_char.py -------------------------------------------------------------------------------- /tornado/markovtweets/markovtweets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/tornado/markovtweets/markovtweets.py -------------------------------------------------------------------------------- /tornado/markovtweets/static/bird.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/tornado/markovtweets/static/bird.jpg -------------------------------------------------------------------------------- /tornado/markovtweets/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/tornado/markovtweets/templates/index.html -------------------------------------------------------------------------------- /wasteland.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/wasteland.txt -------------------------------------------------------------------------------- /web/alphapedia_crawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/web/alphapedia_crawl.py -------------------------------------------------------------------------------- /web/bs4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/web/bs4/__init__.py -------------------------------------------------------------------------------- /web/bs4/builder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/web/bs4/builder/__init__.py -------------------------------------------------------------------------------- /web/bs4/builder/_html5lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/web/bs4/builder/_html5lib.py -------------------------------------------------------------------------------- /web/bs4/builder/_htmlparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/web/bs4/builder/_htmlparser.py -------------------------------------------------------------------------------- /web/bs4/builder/_lxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/web/bs4/builder/_lxml.py -------------------------------------------------------------------------------- /web/bs4/dammit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/web/bs4/dammit.py -------------------------------------------------------------------------------- /web/bs4/element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/web/bs4/element.py -------------------------------------------------------------------------------- /web/bs4/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/web/bs4/testing.py -------------------------------------------------------------------------------- /web/bs4/tests/__init__.py: -------------------------------------------------------------------------------- 1 | "The beautifulsoup tests." 2 | -------------------------------------------------------------------------------- /web/bs4/tests/test_builder_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/web/bs4/tests/test_builder_registry.py -------------------------------------------------------------------------------- /web/bs4/tests/test_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/web/bs4/tests/test_docs.py -------------------------------------------------------------------------------- /web/bs4/tests/test_html5lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/web/bs4/tests/test_html5lib.py -------------------------------------------------------------------------------- /web/bs4/tests/test_htmlparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/web/bs4/tests/test_htmlparser.py -------------------------------------------------------------------------------- /web/bs4/tests/test_lxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/web/bs4/tests/test_lxml.py -------------------------------------------------------------------------------- /web/bs4/tests/test_soup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/web/bs4/tests/test_soup.py -------------------------------------------------------------------------------- /web/bs4/tests/test_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/web/bs4/tests/test_tree.py -------------------------------------------------------------------------------- /web/get_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/web/get_url.py -------------------------------------------------------------------------------- /web/itp_course_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/web/itp_course_list.py -------------------------------------------------------------------------------- /web/itp_course_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/web/itp_course_names.py -------------------------------------------------------------------------------- /web/search_facebook_posts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/web/search_facebook_posts.py -------------------------------------------------------------------------------- /web/search_twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/web/search_twitter.py -------------------------------------------------------------------------------- /web/simple_rhyme_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/web/simple_rhyme_bot.py -------------------------------------------------------------------------------- /web/tip_poetics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aparrish/rwet-examples/HEAD/web/tip_poetics.py --------------------------------------------------------------------------------