├── .gitignore ├── LICENSE ├── README.md ├── command-line ├── README.md └── sections │ ├── CatWordDoc.png │ ├── apps.png │ ├── challenges.md │ ├── cheat-sheet.gif │ ├── commands.md │ ├── creating-files-and-folders.md │ ├── creating_a_cheat_sheet.md │ ├── data.gif │ ├── data.md │ ├── filemanager.png │ ├── getting-to-the-command-line.md │ ├── glossary.md │ ├── grep.gif │ ├── grep.md │ ├── login.png │ ├── make-file-folder.gif │ ├── nano.png │ ├── nav.gif │ ├── navigation.md │ ├── osx-term.png │ ├── osx_term.jpg │ ├── osx_term.png │ ├── other-commands.md │ ├── pipes.gif │ ├── pipes.md │ ├── text-editors-ides.md │ ├── text-editors.md │ ├── what-is-the-command-line.md │ ├── why-is-the-command-line-useful.md │ └── worddoc.png ├── commandline.md ├── coursepack_dhsi.pdf ├── example-judging-covers.ipynb ├── example-nytimes.ipynb ├── example-twitter-bot.py ├── flask ├── judgebook.py └── templates │ ├── index.html │ └── results.html ├── met_api.ipynb ├── nyt_api.ipynb ├── python ├── .gitignore ├── LICENSE ├── README.md ├── ipython-notebook │ ├── .ipynb_checkpoints │ │ └── workshop-checkpoint.ipynb │ ├── conditionals.py │ ├── data-types.py │ ├── defining-functions.py │ ├── dictionaries.py │ ├── hello.py │ ├── import_library.py │ ├── list-sections.py │ ├── lists.py │ ├── more-printing.py │ ├── simple_math.py │ ├── test.py │ ├── user-input.py │ ├── variables.py │ ├── weather.py │ ├── while-loop.py │ └── workshop.ipynb ├── sections │ ├── ask_csv.py │ ├── conditionals.md │ ├── csv.md │ ├── errors.md │ ├── google.md │ ├── google_result.png │ ├── google_search.png │ ├── grok.md │ ├── input.md │ ├── installation.md │ ├── introspection.md │ ├── loop.py │ ├── loops.md │ ├── motivate.md │ ├── motivation.py │ ├── multiline.md │ ├── notes.md │ ├── nypl_items.csv │ ├── repl.md │ ├── resources.md │ ├── run.md │ ├── stack_overflow.png │ ├── types.md │ └── variables.md └── update.sh ├── sections ├── API_Documentation.md ├── APIpresentations.md ├── WhatIsAPI.md ├── curl.md ├── data-formats.ipynb ├── exploratory.md ├── homework1.md ├── homework2.md ├── homework3.md ├── images │ ├── Screenshot from 2018-03-21 14-57-51.png │ ├── dhbox-02.png │ ├── dhbox-03.png │ ├── dhbox-04.png │ ├── dhbox-05.png │ ├── dhbox-06.png │ ├── dhbox-07.png │ ├── dhbox-08.png │ ├── dhbox-09.png │ ├── tour-brackets.png │ ├── tour-cd-home.png │ ├── tour-head.png │ ├── tour-pwd.png │ ├── tour-py-1.png │ ├── tour-py-2.png │ ├── tour-py-3.png │ ├── tour-py-4.png │ ├── tour-py-5.png │ ├── tour-python-alice.png │ ├── tour-python-ls.png │ ├── tour-python-pwd.png │ ├── tour-upload.png │ ├── tour-wc.png │ └── tour-yoda.png ├── introduction.md ├── questions.md ├── requests-session │ ├── README.md │ ├── old.md │ └── sections │ │ ├── challenges.md │ │ ├── fires.md │ │ ├── parsing.md │ │ ├── requests.md │ │ ├── transform.md │ │ ├── what-is-api.md │ │ └── why-use.md ├── visualization.ipynb └── visualization2.ipynb └── twitter-api ├── .gitignore ├── LICENSE ├── README.md ├── api.py ├── my_keys.py ├── scrape-data.py ├── scrape-simple.py ├── sections ├── accessing_api.md ├── creating_twitterbot.md ├── getting_key.md ├── resources.md └── scraping_data.md ├── tweets.txt └── twitterbot.py /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *# 3 | .#* 4 | *.dnc 5 | __pycache__ 6 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/README.md -------------------------------------------------------------------------------- /command-line/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/README.md -------------------------------------------------------------------------------- /command-line/sections/CatWordDoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/CatWordDoc.png -------------------------------------------------------------------------------- /command-line/sections/apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/apps.png -------------------------------------------------------------------------------- /command-line/sections/challenges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/challenges.md -------------------------------------------------------------------------------- /command-line/sections/cheat-sheet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/cheat-sheet.gif -------------------------------------------------------------------------------- /command-line/sections/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/commands.md -------------------------------------------------------------------------------- /command-line/sections/creating-files-and-folders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/creating-files-and-folders.md -------------------------------------------------------------------------------- /command-line/sections/creating_a_cheat_sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/creating_a_cheat_sheet.md -------------------------------------------------------------------------------- /command-line/sections/data.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/data.gif -------------------------------------------------------------------------------- /command-line/sections/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/data.md -------------------------------------------------------------------------------- /command-line/sections/filemanager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/filemanager.png -------------------------------------------------------------------------------- /command-line/sections/getting-to-the-command-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/getting-to-the-command-line.md -------------------------------------------------------------------------------- /command-line/sections/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/glossary.md -------------------------------------------------------------------------------- /command-line/sections/grep.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/grep.gif -------------------------------------------------------------------------------- /command-line/sections/grep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/grep.md -------------------------------------------------------------------------------- /command-line/sections/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/login.png -------------------------------------------------------------------------------- /command-line/sections/make-file-folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/make-file-folder.gif -------------------------------------------------------------------------------- /command-line/sections/nano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/nano.png -------------------------------------------------------------------------------- /command-line/sections/nav.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/nav.gif -------------------------------------------------------------------------------- /command-line/sections/navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/navigation.md -------------------------------------------------------------------------------- /command-line/sections/osx-term.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/osx-term.png -------------------------------------------------------------------------------- /command-line/sections/osx_term.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/osx_term.jpg -------------------------------------------------------------------------------- /command-line/sections/osx_term.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/osx_term.png -------------------------------------------------------------------------------- /command-line/sections/other-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/other-commands.md -------------------------------------------------------------------------------- /command-line/sections/pipes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/pipes.gif -------------------------------------------------------------------------------- /command-line/sections/pipes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/pipes.md -------------------------------------------------------------------------------- /command-line/sections/text-editors-ides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/text-editors-ides.md -------------------------------------------------------------------------------- /command-line/sections/text-editors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/text-editors.md -------------------------------------------------------------------------------- /command-line/sections/what-is-the-command-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/what-is-the-command-line.md -------------------------------------------------------------------------------- /command-line/sections/why-is-the-command-line-useful.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/why-is-the-command-line-useful.md -------------------------------------------------------------------------------- /command-line/sections/worddoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/command-line/sections/worddoc.png -------------------------------------------------------------------------------- /commandline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/commandline.md -------------------------------------------------------------------------------- /coursepack_dhsi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/coursepack_dhsi.pdf -------------------------------------------------------------------------------- /example-judging-covers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/example-judging-covers.ipynb -------------------------------------------------------------------------------- /example-nytimes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/example-nytimes.ipynb -------------------------------------------------------------------------------- /example-twitter-bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/example-twitter-bot.py -------------------------------------------------------------------------------- /flask/judgebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/flask/judgebook.py -------------------------------------------------------------------------------- /flask/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/flask/templates/index.html -------------------------------------------------------------------------------- /flask/templates/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/flask/templates/results.html -------------------------------------------------------------------------------- /met_api.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/met_api.ipynb -------------------------------------------------------------------------------- /nyt_api.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/nyt_api.ipynb -------------------------------------------------------------------------------- /python/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *# 3 | .#* 4 | *.dnc 5 | __pycache__ -------------------------------------------------------------------------------- /python/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/LICENSE -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/README.md -------------------------------------------------------------------------------- /python/ipython-notebook/.ipynb_checkpoints/workshop-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/ipython-notebook/.ipynb_checkpoints/workshop-checkpoint.ipynb -------------------------------------------------------------------------------- /python/ipython-notebook/conditionals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/ipython-notebook/conditionals.py -------------------------------------------------------------------------------- /python/ipython-notebook/data-types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/ipython-notebook/data-types.py -------------------------------------------------------------------------------- /python/ipython-notebook/defining-functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/ipython-notebook/defining-functions.py -------------------------------------------------------------------------------- /python/ipython-notebook/dictionaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/ipython-notebook/dictionaries.py -------------------------------------------------------------------------------- /python/ipython-notebook/hello.py: -------------------------------------------------------------------------------- 1 | # Your first program 2 | 3 | print("Hello world!") 4 | -------------------------------------------------------------------------------- /python/ipython-notebook/import_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/ipython-notebook/import_library.py -------------------------------------------------------------------------------- /python/ipython-notebook/list-sections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/ipython-notebook/list-sections.py -------------------------------------------------------------------------------- /python/ipython-notebook/lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/ipython-notebook/lists.py -------------------------------------------------------------------------------- /python/ipython-notebook/more-printing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/ipython-notebook/more-printing.py -------------------------------------------------------------------------------- /python/ipython-notebook/simple_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/ipython-notebook/simple_math.py -------------------------------------------------------------------------------- /python/ipython-notebook/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/ipython-notebook/test.py -------------------------------------------------------------------------------- /python/ipython-notebook/user-input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/ipython-notebook/user-input.py -------------------------------------------------------------------------------- /python/ipython-notebook/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/ipython-notebook/variables.py -------------------------------------------------------------------------------- /python/ipython-notebook/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/ipython-notebook/weather.py -------------------------------------------------------------------------------- /python/ipython-notebook/while-loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/ipython-notebook/while-loop.py -------------------------------------------------------------------------------- /python/ipython-notebook/workshop.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/ipython-notebook/workshop.ipynb -------------------------------------------------------------------------------- /python/sections/ask_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/sections/ask_csv.py -------------------------------------------------------------------------------- /python/sections/conditionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/sections/conditionals.md -------------------------------------------------------------------------------- /python/sections/csv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/sections/csv.md -------------------------------------------------------------------------------- /python/sections/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/sections/errors.md -------------------------------------------------------------------------------- /python/sections/google.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/sections/google.md -------------------------------------------------------------------------------- /python/sections/google_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/sections/google_result.png -------------------------------------------------------------------------------- /python/sections/google_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/sections/google_search.png -------------------------------------------------------------------------------- /python/sections/grok.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/sections/grok.md -------------------------------------------------------------------------------- /python/sections/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/sections/input.md -------------------------------------------------------------------------------- /python/sections/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/sections/installation.md -------------------------------------------------------------------------------- /python/sections/introspection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/sections/introspection.md -------------------------------------------------------------------------------- /python/sections/loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/sections/loop.py -------------------------------------------------------------------------------- /python/sections/loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/sections/loops.md -------------------------------------------------------------------------------- /python/sections/motivate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/sections/motivate.md -------------------------------------------------------------------------------- /python/sections/motivation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/sections/motivation.py -------------------------------------------------------------------------------- /python/sections/multiline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/sections/multiline.md -------------------------------------------------------------------------------- /python/sections/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/sections/notes.md -------------------------------------------------------------------------------- /python/sections/nypl_items.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/sections/nypl_items.csv -------------------------------------------------------------------------------- /python/sections/repl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/sections/repl.md -------------------------------------------------------------------------------- /python/sections/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/sections/resources.md -------------------------------------------------------------------------------- /python/sections/run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/sections/run.md -------------------------------------------------------------------------------- /python/sections/stack_overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/sections/stack_overflow.png -------------------------------------------------------------------------------- /python/sections/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/sections/types.md -------------------------------------------------------------------------------- /python/sections/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/sections/variables.md -------------------------------------------------------------------------------- /python/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/python/update.sh -------------------------------------------------------------------------------- /sections/API_Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/API_Documentation.md -------------------------------------------------------------------------------- /sections/APIpresentations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/APIpresentations.md -------------------------------------------------------------------------------- /sections/WhatIsAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/WhatIsAPI.md -------------------------------------------------------------------------------- /sections/curl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/curl.md -------------------------------------------------------------------------------- /sections/data-formats.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/data-formats.ipynb -------------------------------------------------------------------------------- /sections/exploratory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/exploratory.md -------------------------------------------------------------------------------- /sections/homework1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/homework1.md -------------------------------------------------------------------------------- /sections/homework2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/homework2.md -------------------------------------------------------------------------------- /sections/homework3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/homework3.md -------------------------------------------------------------------------------- /sections/images/Screenshot from 2018-03-21 14-57-51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/images/Screenshot from 2018-03-21 14-57-51.png -------------------------------------------------------------------------------- /sections/images/dhbox-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/images/dhbox-02.png -------------------------------------------------------------------------------- /sections/images/dhbox-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/images/dhbox-03.png -------------------------------------------------------------------------------- /sections/images/dhbox-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/images/dhbox-04.png -------------------------------------------------------------------------------- /sections/images/dhbox-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/images/dhbox-05.png -------------------------------------------------------------------------------- /sections/images/dhbox-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/images/dhbox-06.png -------------------------------------------------------------------------------- /sections/images/dhbox-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/images/dhbox-07.png -------------------------------------------------------------------------------- /sections/images/dhbox-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/images/dhbox-08.png -------------------------------------------------------------------------------- /sections/images/dhbox-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/images/dhbox-09.png -------------------------------------------------------------------------------- /sections/images/tour-brackets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/images/tour-brackets.png -------------------------------------------------------------------------------- /sections/images/tour-cd-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/images/tour-cd-home.png -------------------------------------------------------------------------------- /sections/images/tour-head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/images/tour-head.png -------------------------------------------------------------------------------- /sections/images/tour-pwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/images/tour-pwd.png -------------------------------------------------------------------------------- /sections/images/tour-py-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/images/tour-py-1.png -------------------------------------------------------------------------------- /sections/images/tour-py-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/images/tour-py-2.png -------------------------------------------------------------------------------- /sections/images/tour-py-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/images/tour-py-3.png -------------------------------------------------------------------------------- /sections/images/tour-py-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/images/tour-py-4.png -------------------------------------------------------------------------------- /sections/images/tour-py-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/images/tour-py-5.png -------------------------------------------------------------------------------- /sections/images/tour-python-alice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/images/tour-python-alice.png -------------------------------------------------------------------------------- /sections/images/tour-python-ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/images/tour-python-ls.png -------------------------------------------------------------------------------- /sections/images/tour-python-pwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/images/tour-python-pwd.png -------------------------------------------------------------------------------- /sections/images/tour-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/images/tour-upload.png -------------------------------------------------------------------------------- /sections/images/tour-wc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/images/tour-wc.png -------------------------------------------------------------------------------- /sections/images/tour-yoda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/images/tour-yoda.png -------------------------------------------------------------------------------- /sections/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/introduction.md -------------------------------------------------------------------------------- /sections/questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/questions.md -------------------------------------------------------------------------------- /sections/requests-session/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/requests-session/README.md -------------------------------------------------------------------------------- /sections/requests-session/old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/requests-session/old.md -------------------------------------------------------------------------------- /sections/requests-session/sections/challenges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/requests-session/sections/challenges.md -------------------------------------------------------------------------------- /sections/requests-session/sections/fires.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/requests-session/sections/fires.md -------------------------------------------------------------------------------- /sections/requests-session/sections/parsing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/requests-session/sections/parsing.md -------------------------------------------------------------------------------- /sections/requests-session/sections/requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/requests-session/sections/requests.md -------------------------------------------------------------------------------- /sections/requests-session/sections/transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/requests-session/sections/transform.md -------------------------------------------------------------------------------- /sections/requests-session/sections/what-is-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/requests-session/sections/what-is-api.md -------------------------------------------------------------------------------- /sections/requests-session/sections/why-use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/requests-session/sections/why-use.md -------------------------------------------------------------------------------- /sections/visualization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/visualization.ipynb -------------------------------------------------------------------------------- /sections/visualization2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/sections/visualization2.ipynb -------------------------------------------------------------------------------- /twitter-api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/twitter-api/.gitignore -------------------------------------------------------------------------------- /twitter-api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/twitter-api/LICENSE -------------------------------------------------------------------------------- /twitter-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/twitter-api/README.md -------------------------------------------------------------------------------- /twitter-api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/twitter-api/api.py -------------------------------------------------------------------------------- /twitter-api/my_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/twitter-api/my_keys.py -------------------------------------------------------------------------------- /twitter-api/scrape-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/twitter-api/scrape-data.py -------------------------------------------------------------------------------- /twitter-api/scrape-simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/twitter-api/scrape-simple.py -------------------------------------------------------------------------------- /twitter-api/sections/accessing_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/twitter-api/sections/accessing_api.md -------------------------------------------------------------------------------- /twitter-api/sections/creating_twitterbot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/twitter-api/sections/creating_twitterbot.md -------------------------------------------------------------------------------- /twitter-api/sections/getting_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/twitter-api/sections/getting_key.md -------------------------------------------------------------------------------- /twitter-api/sections/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/twitter-api/sections/resources.md -------------------------------------------------------------------------------- /twitter-api/sections/scraping_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/twitter-api/sections/scraping_data.md -------------------------------------------------------------------------------- /twitter-api/tweets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/twitter-api/tweets.txt -------------------------------------------------------------------------------- /twitter-api/twitterbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szweibel/DHSI-API-workshop/HEAD/twitter-api/twitterbot.py --------------------------------------------------------------------------------