├── .gitignore ├── .mailmap ├── .update-copyright.conf ├── AUTHORS ├── CITATION ├── CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── Makefile ├── README.md ├── _config.yml ├── _episodes ├── .gitkeep ├── 00-short-introduction-to-Python.md ├── 01-starting-with-data.md ├── 02-index-slice-subset.md ├── 03-data-types-and-format.md ├── 04-merging-data.md ├── 05-loops-and-functions.md ├── 06-plotting-with-matplotlib.md ├── 06a-plotting-with-pandas.md ├── 07-putting-it-all-together.md └── 08-working-with-sql.md ├── _episodes_rmd ├── .gitkeep └── data │ └── .gitkeep ├── _extras ├── .gitkeep ├── about.md ├── discuss.md ├── figures.md └── guide.md ├── _includes ├── all_figures.html ├── all_keypoints.html ├── carpentries.html ├── episode_break.html ├── episode_keypoints.html ├── episode_navbar.html ├── episode_overview.html ├── javascript.html ├── lesson_footer.html ├── linux.html ├── mac.html ├── main_title.html ├── navbar.html ├── syllabus.html ├── windows.html ├── workshop_ad.html └── workshop_footer.html ├── _layouts ├── base.html ├── break.html ├── episode.html ├── lesson.html ├── page.html ├── reference.html └── workshop.html ├── assets ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── lesson.scss ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── img │ ├── dc-icon-black.svg │ ├── lc-icon-black.png │ ├── lc-icon-black.svg │ ├── swc-icon-blue.svg │ ├── swc-logo-blue.png │ ├── swc-logo-blue.svg │ ├── swc-logo-white.png │ └── swc-logo-white.svg └── js │ ├── bootstrap.min.js │ ├── jquery.min.js │ └── lesson.js ├── bin ├── chunk-options.R ├── extract_figures.py ├── generate_md_episodes.R ├── knit_lessons.sh ├── lesson_check.py ├── lesson_initialize.py ├── markdown_ast.rb ├── repo_check.py ├── test_lesson_check.py ├── util.py └── workshop_check.py ├── code └── .gitkeep ├── data ├── .gitkeep ├── doaj-article-sample.csv └── doajarticlesample.sqlite ├── favicon-dc.ico ├── favicon-swc.ico ├── fig ├── .gitkeep ├── 07_plt1_line.png ├── 07_plt2_line.png ├── 07_plt3_line_ro.png ├── 07_plt4_line_multiple.png ├── 07_plt5_line_mult_legend.png ├── 07_plt5a_subplot.png ├── 07_plt5b_subplot.png ├── 07_plt6_subplots.png ├── articlesByISSN.png ├── episode-format-small.png ├── episode-format.eps ├── episode-format.png ├── file-mapping.odg ├── file-mapping.svg ├── forking.odg ├── forking.svg ├── repository-links.odg ├── repository-links.svg ├── rmd-plot-example-1.png ├── slicing-indexing.svg ├── slicing-slicing.svg ├── stackedBar.png ├── stackedBar1.png └── using-github-import.png ├── files └── .gitkeep ├── index.md ├── reference.md ├── requirements.txt └── setup.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/.mailmap -------------------------------------------------------------------------------- /.update-copyright.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/.update-copyright.conf -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/AUTHORS -------------------------------------------------------------------------------- /CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/CITATION -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_config.yml -------------------------------------------------------------------------------- /_episodes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_episodes/00-short-introduction-to-Python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_episodes/00-short-introduction-to-Python.md -------------------------------------------------------------------------------- /_episodes/01-starting-with-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_episodes/01-starting-with-data.md -------------------------------------------------------------------------------- /_episodes/02-index-slice-subset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_episodes/02-index-slice-subset.md -------------------------------------------------------------------------------- /_episodes/03-data-types-and-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_episodes/03-data-types-and-format.md -------------------------------------------------------------------------------- /_episodes/04-merging-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_episodes/04-merging-data.md -------------------------------------------------------------------------------- /_episodes/05-loops-and-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_episodes/05-loops-and-functions.md -------------------------------------------------------------------------------- /_episodes/06-plotting-with-matplotlib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_episodes/06-plotting-with-matplotlib.md -------------------------------------------------------------------------------- /_episodes/06a-plotting-with-pandas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_episodes/06a-plotting-with-pandas.md -------------------------------------------------------------------------------- /_episodes/07-putting-it-all-together.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_episodes/07-putting-it-all-together.md -------------------------------------------------------------------------------- /_episodes/08-working-with-sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_episodes/08-working-with-sql.md -------------------------------------------------------------------------------- /_episodes_rmd/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_episodes_rmd/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_extras/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_extras/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_extras/about.md -------------------------------------------------------------------------------- /_extras/discuss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_extras/discuss.md -------------------------------------------------------------------------------- /_extras/figures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_extras/figures.md -------------------------------------------------------------------------------- /_extras/guide.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: "Instructor Notes" 4 | permalink: /guide/ 5 | --- 6 | 7 | FIXME 8 | -------------------------------------------------------------------------------- /_includes/all_figures.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_includes/all_figures.html -------------------------------------------------------------------------------- /_includes/all_keypoints.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_includes/all_keypoints.html -------------------------------------------------------------------------------- /_includes/carpentries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_includes/carpentries.html -------------------------------------------------------------------------------- /_includes/episode_break.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_includes/episode_break.html -------------------------------------------------------------------------------- /_includes/episode_keypoints.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_includes/episode_keypoints.html -------------------------------------------------------------------------------- /_includes/episode_navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_includes/episode_navbar.html -------------------------------------------------------------------------------- /_includes/episode_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_includes/episode_overview.html -------------------------------------------------------------------------------- /_includes/javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_includes/javascript.html -------------------------------------------------------------------------------- /_includes/lesson_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_includes/lesson_footer.html -------------------------------------------------------------------------------- /_includes/linux.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_includes/linux.html -------------------------------------------------------------------------------- /_includes/mac.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_includes/mac.html -------------------------------------------------------------------------------- /_includes/main_title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_includes/main_title.html -------------------------------------------------------------------------------- /_includes/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_includes/navbar.html -------------------------------------------------------------------------------- /_includes/syllabus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_includes/syllabus.html -------------------------------------------------------------------------------- /_includes/windows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_includes/windows.html -------------------------------------------------------------------------------- /_includes/workshop_ad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_includes/workshop_ad.html -------------------------------------------------------------------------------- /_includes/workshop_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_includes/workshop_footer.html -------------------------------------------------------------------------------- /_layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_layouts/base.html -------------------------------------------------------------------------------- /_layouts/break.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_layouts/break.html -------------------------------------------------------------------------------- /_layouts/episode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_layouts/episode.html -------------------------------------------------------------------------------- /_layouts/lesson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_layouts/lesson.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: base 3 | --- 4 | {% include main_title.html %} 5 | {{content}} 6 | -------------------------------------------------------------------------------- /_layouts/reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_layouts/reference.html -------------------------------------------------------------------------------- /_layouts/workshop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/_layouts/workshop.html -------------------------------------------------------------------------------- /assets/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/assets/css/bootstrap-theme.css -------------------------------------------------------------------------------- /assets/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/assets/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/assets/css/bootstrap.css -------------------------------------------------------------------------------- /assets/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/assets/css/bootstrap.css.map -------------------------------------------------------------------------------- /assets/css/lesson.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/assets/css/lesson.scss -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/img/dc-icon-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/assets/img/dc-icon-black.svg -------------------------------------------------------------------------------- /assets/img/lc-icon-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/assets/img/lc-icon-black.png -------------------------------------------------------------------------------- /assets/img/lc-icon-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/assets/img/lc-icon-black.svg -------------------------------------------------------------------------------- /assets/img/swc-icon-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/assets/img/swc-icon-blue.svg -------------------------------------------------------------------------------- /assets/img/swc-logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/assets/img/swc-logo-blue.png -------------------------------------------------------------------------------- /assets/img/swc-logo-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/assets/img/swc-logo-blue.svg -------------------------------------------------------------------------------- /assets/img/swc-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/assets/img/swc-logo-white.png -------------------------------------------------------------------------------- /assets/img/swc-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/assets/img/swc-logo-white.svg -------------------------------------------------------------------------------- /assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/assets/js/jquery.min.js -------------------------------------------------------------------------------- /assets/js/lesson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/assets/js/lesson.js -------------------------------------------------------------------------------- /bin/chunk-options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/bin/chunk-options.R -------------------------------------------------------------------------------- /bin/extract_figures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/bin/extract_figures.py -------------------------------------------------------------------------------- /bin/generate_md_episodes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/bin/generate_md_episodes.R -------------------------------------------------------------------------------- /bin/knit_lessons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/bin/knit_lessons.sh -------------------------------------------------------------------------------- /bin/lesson_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/bin/lesson_check.py -------------------------------------------------------------------------------- /bin/lesson_initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/bin/lesson_initialize.py -------------------------------------------------------------------------------- /bin/markdown_ast.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/bin/markdown_ast.rb -------------------------------------------------------------------------------- /bin/repo_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/bin/repo_check.py -------------------------------------------------------------------------------- /bin/test_lesson_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/bin/test_lesson_check.py -------------------------------------------------------------------------------- /bin/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/bin/util.py -------------------------------------------------------------------------------- /bin/workshop_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/bin/workshop_check.py -------------------------------------------------------------------------------- /code/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/doaj-article-sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/data/doaj-article-sample.csv -------------------------------------------------------------------------------- /data/doajarticlesample.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/data/doajarticlesample.sqlite -------------------------------------------------------------------------------- /favicon-dc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/favicon-dc.ico -------------------------------------------------------------------------------- /favicon-swc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/favicon-swc.ico -------------------------------------------------------------------------------- /fig/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fig/07_plt1_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/fig/07_plt1_line.png -------------------------------------------------------------------------------- /fig/07_plt2_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/fig/07_plt2_line.png -------------------------------------------------------------------------------- /fig/07_plt3_line_ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/fig/07_plt3_line_ro.png -------------------------------------------------------------------------------- /fig/07_plt4_line_multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/fig/07_plt4_line_multiple.png -------------------------------------------------------------------------------- /fig/07_plt5_line_mult_legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/fig/07_plt5_line_mult_legend.png -------------------------------------------------------------------------------- /fig/07_plt5a_subplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/fig/07_plt5a_subplot.png -------------------------------------------------------------------------------- /fig/07_plt5b_subplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/fig/07_plt5b_subplot.png -------------------------------------------------------------------------------- /fig/07_plt6_subplots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/fig/07_plt6_subplots.png -------------------------------------------------------------------------------- /fig/articlesByISSN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/fig/articlesByISSN.png -------------------------------------------------------------------------------- /fig/episode-format-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/fig/episode-format-small.png -------------------------------------------------------------------------------- /fig/episode-format.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/fig/episode-format.eps -------------------------------------------------------------------------------- /fig/episode-format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/fig/episode-format.png -------------------------------------------------------------------------------- /fig/file-mapping.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/fig/file-mapping.odg -------------------------------------------------------------------------------- /fig/file-mapping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/fig/file-mapping.svg -------------------------------------------------------------------------------- /fig/forking.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/fig/forking.odg -------------------------------------------------------------------------------- /fig/forking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/fig/forking.svg -------------------------------------------------------------------------------- /fig/repository-links.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/fig/repository-links.odg -------------------------------------------------------------------------------- /fig/repository-links.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/fig/repository-links.svg -------------------------------------------------------------------------------- /fig/rmd-plot-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/fig/rmd-plot-example-1.png -------------------------------------------------------------------------------- /fig/slicing-indexing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/fig/slicing-indexing.svg -------------------------------------------------------------------------------- /fig/slicing-slicing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/fig/slicing-slicing.svg -------------------------------------------------------------------------------- /fig/stackedBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/fig/stackedBar.png -------------------------------------------------------------------------------- /fig/stackedBar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/fig/stackedBar1.png -------------------------------------------------------------------------------- /fig/using-github-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/fig/using-github-import.png -------------------------------------------------------------------------------- /files/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/index.md -------------------------------------------------------------------------------- /reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/reference.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PyYAML 2 | update-copyright 3 | -------------------------------------------------------------------------------- /setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/library-python/HEAD/setup.md --------------------------------------------------------------------------------