├── .gitignore ├── LICENSE ├── README.md ├── batch.md ├── cleanup_cache.py ├── cli-sync.sh ├── globus_folder_sync.py ├── requirements.txt ├── share-data.sh └── share_data.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/automation-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/automation-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/automation-examples/HEAD/README.md -------------------------------------------------------------------------------- /batch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/automation-examples/HEAD/batch.md -------------------------------------------------------------------------------- /cleanup_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/automation-examples/HEAD/cleanup_cache.py -------------------------------------------------------------------------------- /cli-sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/automation-examples/HEAD/cli-sync.sh -------------------------------------------------------------------------------- /globus_folder_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/automation-examples/HEAD/globus_folder_sync.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | globus-sdk>=1.1.0,<=2.0.0 2 | fair_research_login 3 | -------------------------------------------------------------------------------- /share-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/automation-examples/HEAD/share-data.sh -------------------------------------------------------------------------------- /share_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globus/automation-examples/HEAD/share_data.py --------------------------------------------------------------------------------