├── .gitignore ├── Auth_App_v_Human.ipynb ├── Automation_Using_Flows_With_Search.ipynb ├── Automation_Using_Globus_Flows.ipynb ├── Compute_Introduction.ipynb ├── Data_Distribution.ipynb ├── Flow_with_Compute.ipynb ├── Gladier_Flows_Tutorial.ipynb ├── Groups.ipynb ├── JupyterHub_Integration.ipynb ├── Metadata_Search_and_Discovery.ipynb ├── Platform_Introduction.ipynb ├── README.md ├── Transfer_API_Exercises.ipynb ├── img ├── 170801HomePageBackground.png ├── automation_using_flows_header.png ├── globusworld_tour_header.png ├── graph_plot_flow.png ├── header.png ├── jupyterhub_integration_header.png ├── jupyterhub_tokens.png ├── platform_introduction_jupyterhub_header.png ├── platform_introduction_native_app_header.png ├── publication_flow.png ├── supporting_fair_data_header.png ├── transfer_set_permissions_flow.png └── transfer_set_permissions_ingest_flow.png ├── modules └── identifier_api.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/.gitignore -------------------------------------------------------------------------------- /Auth_App_v_Human.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/Auth_App_v_Human.ipynb -------------------------------------------------------------------------------- /Automation_Using_Flows_With_Search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/Automation_Using_Flows_With_Search.ipynb -------------------------------------------------------------------------------- /Automation_Using_Globus_Flows.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/Automation_Using_Globus_Flows.ipynb -------------------------------------------------------------------------------- /Compute_Introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/Compute_Introduction.ipynb -------------------------------------------------------------------------------- /Data_Distribution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/Data_Distribution.ipynb -------------------------------------------------------------------------------- /Flow_with_Compute.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/Flow_with_Compute.ipynb -------------------------------------------------------------------------------- /Gladier_Flows_Tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/Gladier_Flows_Tutorial.ipynb -------------------------------------------------------------------------------- /Groups.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/Groups.ipynb -------------------------------------------------------------------------------- /JupyterHub_Integration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/JupyterHub_Integration.ipynb -------------------------------------------------------------------------------- /Metadata_Search_and_Discovery.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/Metadata_Search_and_Discovery.ipynb -------------------------------------------------------------------------------- /Platform_Introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/Platform_Introduction.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/README.md -------------------------------------------------------------------------------- /Transfer_API_Exercises.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/Transfer_API_Exercises.ipynb -------------------------------------------------------------------------------- /img/170801HomePageBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/img/170801HomePageBackground.png -------------------------------------------------------------------------------- /img/automation_using_flows_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/img/automation_using_flows_header.png -------------------------------------------------------------------------------- /img/globusworld_tour_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/img/globusworld_tour_header.png -------------------------------------------------------------------------------- /img/graph_plot_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/img/graph_plot_flow.png -------------------------------------------------------------------------------- /img/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/img/header.png -------------------------------------------------------------------------------- /img/jupyterhub_integration_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/img/jupyterhub_integration_header.png -------------------------------------------------------------------------------- /img/jupyterhub_tokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/img/jupyterhub_tokens.png -------------------------------------------------------------------------------- /img/platform_introduction_jupyterhub_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/img/platform_introduction_jupyterhub_header.png -------------------------------------------------------------------------------- /img/platform_introduction_native_app_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/img/platform_introduction_native_app_header.png -------------------------------------------------------------------------------- /img/publication_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/img/publication_flow.png -------------------------------------------------------------------------------- /img/supporting_fair_data_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/img/supporting_fair_data_header.png -------------------------------------------------------------------------------- /img/transfer_set_permissions_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/img/transfer_set_permissions_flow.png -------------------------------------------------------------------------------- /img/transfer_set_permissions_ingest_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/img/transfer_set_permissions_ingest_flow.png -------------------------------------------------------------------------------- /modules/identifier_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/modules/identifier_api.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/globus-jupyter-notebooks/HEAD/requirements.txt --------------------------------------------------------------------------------