├── .gitignore ├── Introduction-to-unit-testing ├── __pycache__ │ ├── calculator.cpython-39.pyc │ ├── calculator_test.cpython-39.pyc │ ├── example_test_case.cpython-39.pyc │ ├── example_test_case2.cpython-39.pyc │ ├── example_test_case3.cpython-39.pyc │ ├── excercise1.cpython-39.pyc │ └── excercise2.cpython-39.pyc ├── calculator.py ├── calculator_test.py ├── example_test_case.py ├── example_test_case2.py ├── example_test_case3.py ├── excercise1.py ├── excercise2.py ├── unit_testing.ipynb └── unit_testing_master.ipynb ├── LICENSE ├── README.md ├── coding-for-medics ├── README.md └── coding-basics.ipynb ├── img └── coding_club_header_small.png ├── introduction-to-apis ├── README.md ├── images │ ├── commonUses.png │ └── terminology.png └── introduction-to-apis.ipynb ├── introduction-to-applied-cryptography ├── README.md └── introduction-to-applied-cryptography.ipynb ├── introduction-to-data-ingestion ├── README.md ├── ccg_shapefile.geojson └── introduction-to-data-ingestion.ipynb ├── introduction-to-data-science ├── README.md └── introduction-to-data-science.ipynb ├── introduction-to-data-wrangling ├── Python_DataWrangling_exercise.ipynb ├── README.md └── introduction-to-data-wrangling.ipynb ├── introduction-to-matplotlib ├── README.md └── introduction_to_matplotlib.ipynb ├── introduction-to-networkx ├── README.md └── introduction-to-networkx.ipynb ├── introduction-to-prophet ├── README.md ├── data │ └── input.csv └── introduction-to-prophet.ipynb ├── introduction-to-python ├── data │ ├── basketball_height_1995.csv │ ├── basketball_weight_1995.csv │ ├── cereal.csv │ ├── gp_patient_online_deprivation.csv │ ├── movies.csv │ ├── people.csv │ └── time_series.csv ├── episode-1.ipynb ├── episode-2.ipynb ├── episode-3.ipynb ├── episode-4.ipynb ├── episode-5.ipynb ├── episode-6.ipynb ├── episode-7.ipynb ├── readme.md └── solutions │ ├── episode-5-solutions.ipynb │ └── episode-6-solutions.ipynb └── template-lesson └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/.gitignore -------------------------------------------------------------------------------- /Introduction-to-unit-testing/__pycache__/calculator.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/Introduction-to-unit-testing/__pycache__/calculator.cpython-39.pyc -------------------------------------------------------------------------------- /Introduction-to-unit-testing/__pycache__/calculator_test.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/Introduction-to-unit-testing/__pycache__/calculator_test.cpython-39.pyc -------------------------------------------------------------------------------- /Introduction-to-unit-testing/__pycache__/example_test_case.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/Introduction-to-unit-testing/__pycache__/example_test_case.cpython-39.pyc -------------------------------------------------------------------------------- /Introduction-to-unit-testing/__pycache__/example_test_case2.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/Introduction-to-unit-testing/__pycache__/example_test_case2.cpython-39.pyc -------------------------------------------------------------------------------- /Introduction-to-unit-testing/__pycache__/example_test_case3.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/Introduction-to-unit-testing/__pycache__/example_test_case3.cpython-39.pyc -------------------------------------------------------------------------------- /Introduction-to-unit-testing/__pycache__/excercise1.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/Introduction-to-unit-testing/__pycache__/excercise1.cpython-39.pyc -------------------------------------------------------------------------------- /Introduction-to-unit-testing/__pycache__/excercise2.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/Introduction-to-unit-testing/__pycache__/excercise2.cpython-39.pyc -------------------------------------------------------------------------------- /Introduction-to-unit-testing/calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/Introduction-to-unit-testing/calculator.py -------------------------------------------------------------------------------- /Introduction-to-unit-testing/calculator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/Introduction-to-unit-testing/calculator_test.py -------------------------------------------------------------------------------- /Introduction-to-unit-testing/example_test_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/Introduction-to-unit-testing/example_test_case.py -------------------------------------------------------------------------------- /Introduction-to-unit-testing/example_test_case2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/Introduction-to-unit-testing/example_test_case2.py -------------------------------------------------------------------------------- /Introduction-to-unit-testing/example_test_case3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/Introduction-to-unit-testing/example_test_case3.py -------------------------------------------------------------------------------- /Introduction-to-unit-testing/excercise1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/Introduction-to-unit-testing/excercise1.py -------------------------------------------------------------------------------- /Introduction-to-unit-testing/excercise2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/Introduction-to-unit-testing/excercise2.py -------------------------------------------------------------------------------- /Introduction-to-unit-testing/unit_testing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/Introduction-to-unit-testing/unit_testing.ipynb -------------------------------------------------------------------------------- /Introduction-to-unit-testing/unit_testing_master.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/Introduction-to-unit-testing/unit_testing_master.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/README.md -------------------------------------------------------------------------------- /coding-for-medics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/coding-for-medics/README.md -------------------------------------------------------------------------------- /coding-for-medics/coding-basics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/coding-for-medics/coding-basics.ipynb -------------------------------------------------------------------------------- /img/coding_club_header_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/img/coding_club_header_small.png -------------------------------------------------------------------------------- /introduction-to-apis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-apis/README.md -------------------------------------------------------------------------------- /introduction-to-apis/images/commonUses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-apis/images/commonUses.png -------------------------------------------------------------------------------- /introduction-to-apis/images/terminology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-apis/images/terminology.png -------------------------------------------------------------------------------- /introduction-to-apis/introduction-to-apis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-apis/introduction-to-apis.ipynb -------------------------------------------------------------------------------- /introduction-to-applied-cryptography/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-applied-cryptography/README.md -------------------------------------------------------------------------------- /introduction-to-applied-cryptography/introduction-to-applied-cryptography.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-applied-cryptography/introduction-to-applied-cryptography.ipynb -------------------------------------------------------------------------------- /introduction-to-data-ingestion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-data-ingestion/README.md -------------------------------------------------------------------------------- /introduction-to-data-ingestion/ccg_shapefile.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-data-ingestion/ccg_shapefile.geojson -------------------------------------------------------------------------------- /introduction-to-data-ingestion/introduction-to-data-ingestion.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-data-ingestion/introduction-to-data-ingestion.ipynb -------------------------------------------------------------------------------- /introduction-to-data-science/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-data-science/README.md -------------------------------------------------------------------------------- /introduction-to-data-science/introduction-to-data-science.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-data-science/introduction-to-data-science.ipynb -------------------------------------------------------------------------------- /introduction-to-data-wrangling/Python_DataWrangling_exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-data-wrangling/Python_DataWrangling_exercise.ipynb -------------------------------------------------------------------------------- /introduction-to-data-wrangling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-data-wrangling/README.md -------------------------------------------------------------------------------- /introduction-to-data-wrangling/introduction-to-data-wrangling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-data-wrangling/introduction-to-data-wrangling.ipynb -------------------------------------------------------------------------------- /introduction-to-matplotlib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-matplotlib/README.md -------------------------------------------------------------------------------- /introduction-to-matplotlib/introduction_to_matplotlib.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-matplotlib/introduction_to_matplotlib.ipynb -------------------------------------------------------------------------------- /introduction-to-networkx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-networkx/README.md -------------------------------------------------------------------------------- /introduction-to-networkx/introduction-to-networkx.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-networkx/introduction-to-networkx.ipynb -------------------------------------------------------------------------------- /introduction-to-prophet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-prophet/README.md -------------------------------------------------------------------------------- /introduction-to-prophet/data/input.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-prophet/data/input.csv -------------------------------------------------------------------------------- /introduction-to-prophet/introduction-to-prophet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-prophet/introduction-to-prophet.ipynb -------------------------------------------------------------------------------- /introduction-to-python/data/basketball_height_1995.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-python/data/basketball_height_1995.csv -------------------------------------------------------------------------------- /introduction-to-python/data/basketball_weight_1995.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-python/data/basketball_weight_1995.csv -------------------------------------------------------------------------------- /introduction-to-python/data/cereal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-python/data/cereal.csv -------------------------------------------------------------------------------- /introduction-to-python/data/gp_patient_online_deprivation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-python/data/gp_patient_online_deprivation.csv -------------------------------------------------------------------------------- /introduction-to-python/data/movies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-python/data/movies.csv -------------------------------------------------------------------------------- /introduction-to-python/data/people.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-python/data/people.csv -------------------------------------------------------------------------------- /introduction-to-python/data/time_series.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-python/data/time_series.csv -------------------------------------------------------------------------------- /introduction-to-python/episode-1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-python/episode-1.ipynb -------------------------------------------------------------------------------- /introduction-to-python/episode-2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-python/episode-2.ipynb -------------------------------------------------------------------------------- /introduction-to-python/episode-3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-python/episode-3.ipynb -------------------------------------------------------------------------------- /introduction-to-python/episode-4.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-python/episode-4.ipynb -------------------------------------------------------------------------------- /introduction-to-python/episode-5.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-python/episode-5.ipynb -------------------------------------------------------------------------------- /introduction-to-python/episode-6.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-python/episode-6.ipynb -------------------------------------------------------------------------------- /introduction-to-python/episode-7.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-python/episode-7.ipynb -------------------------------------------------------------------------------- /introduction-to-python/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-python/readme.md -------------------------------------------------------------------------------- /introduction-to-python/solutions/episode-5-solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-python/solutions/episode-5-solutions.ipynb -------------------------------------------------------------------------------- /introduction-to-python/solutions/episode-6-solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/introduction-to-python/solutions/episode-6-solutions.ipynb -------------------------------------------------------------------------------- /template-lesson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhs-pycom/coding-club/HEAD/template-lesson/README.md --------------------------------------------------------------------------------