├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── docker-publish.yml │ ├── integration-test-local.yml │ ├── integration-test-multiple-sizes.yml │ ├── integration-test.yml │ ├── poetry-publish-nightly.yml │ ├── poetry-publish.yml │ ├── pytest.yml │ └── pytest_integration.yml ├── .gitignore ├── .pylintrc ├── .pytype.cfg ├── .readthedocs.yml ├── CONTRIBUTING.rst ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── Makefile ├── README.md ├── _api │ ├── skyplane.api.client.rst │ ├── skyplane.api.config.rst │ ├── skyplane.api.dataplane.rst │ ├── skyplane.api.provisioner.rst │ ├── skyplane.api.rst │ ├── skyplane.api.tracker.rst │ └── skyplane.api.transfer_job.rst ├── _static │ ├── api │ │ ├── airflow.png │ │ ├── imagenet.png │ │ └── overview.png │ ├── benchmark │ │ ├── DataSync_data_transfer.png │ │ ├── DataSync_fake_imagenet.png │ │ ├── DataSync_random_file_64GB.png │ │ ├── DataSync_wiki_dumps.png │ │ ├── GCP_fake_imagenet.png │ │ ├── gcp_data_transfer.png │ │ ├── header_cost_plot.png │ │ └── header_speed_plot.png │ ├── favicon.ico │ ├── logo-dark-mode.png │ ├── logo-light-mode.png │ ├── skyplane-data-plane.png │ ├── social-media-banner.png │ └── supported-destinations.png ├── _templates │ └── base.html ├── architecture.md ├── benchmark.md ├── benchmark_replicate.md ├── build_from_source.md ├── conf.py ├── configure.md ├── contributing.rst ├── debugging.md ├── faq.md ├── increase_vcpus.md ├── index.rst ├── installation.rst ├── make.bat ├── on-prem_setup.md ├── performance_stats_collection.md ├── permissions.rst ├── quickstart.md ├── requirements.txt ├── roadmap.md ├── skyplane_api.rst ├── skyplane_cli.rst ├── summary.md ├── tutorial_airflow.md └── tutorial_dataloader.md ├── examples ├── README.md ├── airflow_operator.py ├── api_demo.py └── pytorch_training.py ├── flake.lock ├── flake.nix ├── poetry.lock ├── pyproject.toml ├── requirements-dev.txt ├── scripts ├── az_cleanup.sh ├── bench_multipart.sh ├── benchmark_queues.py ├── build_docs.sh ├── gen_data │ ├── gen_many_small.py │ └── gen_sorted.py ├── get_random_word_hash.sh ├── install_cbc.sh ├── on_prem │ ├── benchmark.py │ └── hostname ├── pack_docker.sh ├── plot_socket_profile.py └── requirements-gateway.txt ├── skyplane ├── __init__.py ├── api │ ├── client.py │ ├── config.py │ ├── dataplane.py │ ├── obj_store.py │ ├── pipeline.py │ ├── provisioner.py │ ├── tracker.py │ ├── transfer_job.py │ └── usage.py ├── chunk.py ├── cli │ ├── cli.py │ ├── cli_cloud.py │ ├── cli_config.py │ ├── cli_init.py │ ├── cli_transfer.py │ ├── experiments │ │ ├── __init__.py │ │ ├── cli_profile.py │ │ ├── cli_query.py │ │ └── provision.py │ └── impl │ │ ├── common.py │ │ ├── cp_replicate_fallback.py │ │ └── progress_bar.py ├── compute │ ├── __init__.py │ ├── aws │ │ ├── aws_auth.py │ │ ├── aws_cloud_provider.py │ │ ├── aws_key_manager.py │ │ ├── aws_network.py │ │ ├── aws_pricing.py │ │ └── aws_server.py │ ├── azure │ │ ├── azure_auth.py │ │ ├── azure_cloud_provider.py │ │ └── azure_server.py │ ├── cloud_provider.py │ ├── const_cmds.py │ ├── gcp │ │ ├── gcp_auth.py │ │ ├── gcp_cloud_provider.py │ │ ├── gcp_key_manager.py │ │ ├── gcp_network.py │ │ ├── gcp_pricing.py │ │ └── gcp_server.py │ ├── ibmcloud │ │ ├── ibm_credentials.yaml.template │ │ ├── ibm_gen2 │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── constants.py │ │ │ ├── ssh_client.py │ │ │ ├── utils.py │ │ │ └── vpc_backend.py │ │ ├── ibmcloud_auth.py │ │ ├── ibmcloud_provider.py │ │ └── ibmcloud_server.py │ ├── key_utils.py │ ├── scp │ │ ├── scp_auth.py │ │ ├── scp_cloud_provider.py │ │ ├── scp_network.py │ │ ├── scp_server.py │ │ └── scp_utils.py │ └── server.py ├── config.py ├── config_paths.py ├── data │ ├── __init__.py │ ├── aws_transfer_costs.csv │ └── vcpu_info.csv ├── exceptions.py ├── gateway │ ├── cert.py │ ├── chunk_store.py │ ├── gateway_daemon.py │ ├── gateway_daemon_api.py │ ├── gateway_onprem.py │ ├── gateway_program.py │ ├── gateway_queue.py │ └── operators │ │ ├── __init__.py │ │ ├── gateway_operator.py │ │ └── gateway_receiver.py ├── gateway_version.py ├── obj_store │ ├── azure_blob_interface.py │ ├── azure_storage_account_interface.py │ ├── cos_interface.py │ ├── file_system_interface.py │ ├── gcs_interface.py │ ├── hdfs_interface.py │ ├── object_store_interface.py │ ├── posix_file_interface.py │ ├── r2_interface.py │ ├── s3_interface.py │ ├── scp_interface.py │ └── storage_interface.py ├── planner │ ├── planner.py │ ├── solver.py │ ├── solver_ilp.py │ ├── solver_ron.py │ └── topology.py └── utils │ ├── cache.py │ ├── definitions.py │ ├── fn.py │ ├── generator.py │ ├── imports.py │ ├── logger.py │ ├── networking_tools.py │ ├── path.py │ ├── retry.py │ └── timer.py └── tests ├── integration ├── cp.py ├── cp_local.py ├── test_api_client.py ├── test_cost_estimate.py └── test_cp.py ├── interface_util.py ├── unit_aws ├── test_hdfs.py └── test_s3_interface.py ├── unit_azure └── test_azure_blob_interface.py ├── unit_gcs ├── test_dataproc.py └── test_gcs_interface.py ├── unit_nocloud ├── test_api_chunker.py ├── test_common.py ├── test_fall_back.py ├── test_import.py └── test_nop.py └── unit_scp └── test_scp_obj_interface.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.github/workflows/integration-test-local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/.github/workflows/integration-test-local.yml -------------------------------------------------------------------------------- /.github/workflows/integration-test-multiple-sizes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/.github/workflows/integration-test-multiple-sizes.yml -------------------------------------------------------------------------------- /.github/workflows/integration-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/.github/workflows/integration-test.yml -------------------------------------------------------------------------------- /.github/workflows/poetry-publish-nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/.github/workflows/poetry-publish-nightly.yml -------------------------------------------------------------------------------- /.github/workflows/poetry-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/.github/workflows/poetry-publish.yml -------------------------------------------------------------------------------- /.github/workflows/pytest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/.github/workflows/pytest.yml -------------------------------------------------------------------------------- /.github/workflows/pytest_integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/.github/workflows/pytest_integration.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/.pylintrc -------------------------------------------------------------------------------- /.pytype.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/.pytype.cfg -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_api/skyplane.api.client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/_api/skyplane.api.client.rst -------------------------------------------------------------------------------- /docs/_api/skyplane.api.config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/_api/skyplane.api.config.rst -------------------------------------------------------------------------------- /docs/_api/skyplane.api.dataplane.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/_api/skyplane.api.dataplane.rst -------------------------------------------------------------------------------- /docs/_api/skyplane.api.provisioner.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/_api/skyplane.api.provisioner.rst -------------------------------------------------------------------------------- /docs/_api/skyplane.api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/_api/skyplane.api.rst -------------------------------------------------------------------------------- /docs/_api/skyplane.api.tracker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/_api/skyplane.api.tracker.rst -------------------------------------------------------------------------------- /docs/_api/skyplane.api.transfer_job.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/_api/skyplane.api.transfer_job.rst -------------------------------------------------------------------------------- /docs/_static/api/airflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/_static/api/airflow.png -------------------------------------------------------------------------------- /docs/_static/api/imagenet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/_static/api/imagenet.png -------------------------------------------------------------------------------- /docs/_static/api/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/_static/api/overview.png -------------------------------------------------------------------------------- /docs/_static/benchmark/DataSync_data_transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/_static/benchmark/DataSync_data_transfer.png -------------------------------------------------------------------------------- /docs/_static/benchmark/DataSync_fake_imagenet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/_static/benchmark/DataSync_fake_imagenet.png -------------------------------------------------------------------------------- /docs/_static/benchmark/DataSync_random_file_64GB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/_static/benchmark/DataSync_random_file_64GB.png -------------------------------------------------------------------------------- /docs/_static/benchmark/DataSync_wiki_dumps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/_static/benchmark/DataSync_wiki_dumps.png -------------------------------------------------------------------------------- /docs/_static/benchmark/GCP_fake_imagenet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/_static/benchmark/GCP_fake_imagenet.png -------------------------------------------------------------------------------- /docs/_static/benchmark/gcp_data_transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/_static/benchmark/gcp_data_transfer.png -------------------------------------------------------------------------------- /docs/_static/benchmark/header_cost_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/_static/benchmark/header_cost_plot.png -------------------------------------------------------------------------------- /docs/_static/benchmark/header_speed_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/_static/benchmark/header_speed_plot.png -------------------------------------------------------------------------------- /docs/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/_static/favicon.ico -------------------------------------------------------------------------------- /docs/_static/logo-dark-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/_static/logo-dark-mode.png -------------------------------------------------------------------------------- /docs/_static/logo-light-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/_static/logo-light-mode.png -------------------------------------------------------------------------------- /docs/_static/skyplane-data-plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/_static/skyplane-data-plane.png -------------------------------------------------------------------------------- /docs/_static/social-media-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/_static/social-media-banner.png -------------------------------------------------------------------------------- /docs/_static/supported-destinations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/_static/supported-destinations.png -------------------------------------------------------------------------------- /docs/_templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/_templates/base.html -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/benchmark.md -------------------------------------------------------------------------------- /docs/benchmark_replicate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/benchmark_replicate.md -------------------------------------------------------------------------------- /docs/build_from_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/build_from_source.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/configure.md -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst -------------------------------------------------------------------------------- /docs/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/debugging.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/increase_vcpus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/increase_vcpus.md -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/on-prem_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/on-prem_setup.md -------------------------------------------------------------------------------- /docs/performance_stats_collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/performance_stats_collection.md -------------------------------------------------------------------------------- /docs/permissions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/permissions.rst -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/roadmap.md -------------------------------------------------------------------------------- /docs/skyplane_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/skyplane_api.rst -------------------------------------------------------------------------------- /docs/skyplane_cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/skyplane_cli.rst -------------------------------------------------------------------------------- /docs/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/summary.md -------------------------------------------------------------------------------- /docs/tutorial_airflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/tutorial_airflow.md -------------------------------------------------------------------------------- /docs/tutorial_dataloader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/docs/tutorial_dataloader.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/airflow_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/examples/airflow_operator.py -------------------------------------------------------------------------------- /examples/api_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/examples/api_demo.py -------------------------------------------------------------------------------- /examples/pytorch_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/examples/pytorch_training.py -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/flake.nix -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /scripts/az_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/scripts/az_cleanup.sh -------------------------------------------------------------------------------- /scripts/bench_multipart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/scripts/bench_multipart.sh -------------------------------------------------------------------------------- /scripts/benchmark_queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/scripts/benchmark_queues.py -------------------------------------------------------------------------------- /scripts/build_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/scripts/build_docs.sh -------------------------------------------------------------------------------- /scripts/gen_data/gen_many_small.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/scripts/gen_data/gen_many_small.py -------------------------------------------------------------------------------- /scripts/gen_data/gen_sorted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/scripts/gen_data/gen_sorted.py -------------------------------------------------------------------------------- /scripts/get_random_word_hash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/scripts/get_random_word_hash.sh -------------------------------------------------------------------------------- /scripts/install_cbc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/scripts/install_cbc.sh -------------------------------------------------------------------------------- /scripts/on_prem/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/scripts/on_prem/benchmark.py -------------------------------------------------------------------------------- /scripts/on_prem/hostname: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/pack_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/scripts/pack_docker.sh -------------------------------------------------------------------------------- /scripts/plot_socket_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/scripts/plot_socket_profile.py -------------------------------------------------------------------------------- /scripts/requirements-gateway.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/scripts/requirements-gateway.txt -------------------------------------------------------------------------------- /skyplane/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/__init__.py -------------------------------------------------------------------------------- /skyplane/api/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/api/client.py -------------------------------------------------------------------------------- /skyplane/api/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/api/config.py -------------------------------------------------------------------------------- /skyplane/api/dataplane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/api/dataplane.py -------------------------------------------------------------------------------- /skyplane/api/obj_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/api/obj_store.py -------------------------------------------------------------------------------- /skyplane/api/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/api/pipeline.py -------------------------------------------------------------------------------- /skyplane/api/provisioner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/api/provisioner.py -------------------------------------------------------------------------------- /skyplane/api/tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/api/tracker.py -------------------------------------------------------------------------------- /skyplane/api/transfer_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/api/transfer_job.py -------------------------------------------------------------------------------- /skyplane/api/usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/api/usage.py -------------------------------------------------------------------------------- /skyplane/chunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/chunk.py -------------------------------------------------------------------------------- /skyplane/cli/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/cli/cli.py -------------------------------------------------------------------------------- /skyplane/cli/cli_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/cli/cli_cloud.py -------------------------------------------------------------------------------- /skyplane/cli/cli_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/cli/cli_config.py -------------------------------------------------------------------------------- /skyplane/cli/cli_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/cli/cli_init.py -------------------------------------------------------------------------------- /skyplane/cli/cli_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/cli/cli_transfer.py -------------------------------------------------------------------------------- /skyplane/cli/experiments/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/cli/experiments/__init__.py -------------------------------------------------------------------------------- /skyplane/cli/experiments/cli_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/cli/experiments/cli_profile.py -------------------------------------------------------------------------------- /skyplane/cli/experiments/cli_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/cli/experiments/cli_query.py -------------------------------------------------------------------------------- /skyplane/cli/experiments/provision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/cli/experiments/provision.py -------------------------------------------------------------------------------- /skyplane/cli/impl/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/cli/impl/common.py -------------------------------------------------------------------------------- /skyplane/cli/impl/cp_replicate_fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/cli/impl/cp_replicate_fallback.py -------------------------------------------------------------------------------- /skyplane/cli/impl/progress_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/cli/impl/progress_bar.py -------------------------------------------------------------------------------- /skyplane/compute/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/__init__.py -------------------------------------------------------------------------------- /skyplane/compute/aws/aws_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/aws/aws_auth.py -------------------------------------------------------------------------------- /skyplane/compute/aws/aws_cloud_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/aws/aws_cloud_provider.py -------------------------------------------------------------------------------- /skyplane/compute/aws/aws_key_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/aws/aws_key_manager.py -------------------------------------------------------------------------------- /skyplane/compute/aws/aws_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/aws/aws_network.py -------------------------------------------------------------------------------- /skyplane/compute/aws/aws_pricing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/aws/aws_pricing.py -------------------------------------------------------------------------------- /skyplane/compute/aws/aws_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/aws/aws_server.py -------------------------------------------------------------------------------- /skyplane/compute/azure/azure_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/azure/azure_auth.py -------------------------------------------------------------------------------- /skyplane/compute/azure/azure_cloud_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/azure/azure_cloud_provider.py -------------------------------------------------------------------------------- /skyplane/compute/azure/azure_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/azure/azure_server.py -------------------------------------------------------------------------------- /skyplane/compute/cloud_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/cloud_provider.py -------------------------------------------------------------------------------- /skyplane/compute/const_cmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/const_cmds.py -------------------------------------------------------------------------------- /skyplane/compute/gcp/gcp_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/gcp/gcp_auth.py -------------------------------------------------------------------------------- /skyplane/compute/gcp/gcp_cloud_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/gcp/gcp_cloud_provider.py -------------------------------------------------------------------------------- /skyplane/compute/gcp/gcp_key_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/gcp/gcp_key_manager.py -------------------------------------------------------------------------------- /skyplane/compute/gcp/gcp_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/gcp/gcp_network.py -------------------------------------------------------------------------------- /skyplane/compute/gcp/gcp_pricing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/gcp/gcp_pricing.py -------------------------------------------------------------------------------- /skyplane/compute/gcp/gcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/gcp/gcp_server.py -------------------------------------------------------------------------------- /skyplane/compute/ibmcloud/ibm_credentials.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/ibmcloud/ibm_credentials.yaml.template -------------------------------------------------------------------------------- /skyplane/compute/ibmcloud/ibm_gen2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skyplane/compute/ibmcloud/ibm_gen2/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/ibmcloud/ibm_gen2/config.py -------------------------------------------------------------------------------- /skyplane/compute/ibmcloud/ibm_gen2/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/ibmcloud/ibm_gen2/constants.py -------------------------------------------------------------------------------- /skyplane/compute/ibmcloud/ibm_gen2/ssh_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/ibmcloud/ibm_gen2/ssh_client.py -------------------------------------------------------------------------------- /skyplane/compute/ibmcloud/ibm_gen2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/ibmcloud/ibm_gen2/utils.py -------------------------------------------------------------------------------- /skyplane/compute/ibmcloud/ibm_gen2/vpc_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/ibmcloud/ibm_gen2/vpc_backend.py -------------------------------------------------------------------------------- /skyplane/compute/ibmcloud/ibmcloud_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/ibmcloud/ibmcloud_auth.py -------------------------------------------------------------------------------- /skyplane/compute/ibmcloud/ibmcloud_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/ibmcloud/ibmcloud_provider.py -------------------------------------------------------------------------------- /skyplane/compute/ibmcloud/ibmcloud_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/ibmcloud/ibmcloud_server.py -------------------------------------------------------------------------------- /skyplane/compute/key_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/key_utils.py -------------------------------------------------------------------------------- /skyplane/compute/scp/scp_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/scp/scp_auth.py -------------------------------------------------------------------------------- /skyplane/compute/scp/scp_cloud_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/scp/scp_cloud_provider.py -------------------------------------------------------------------------------- /skyplane/compute/scp/scp_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/scp/scp_network.py -------------------------------------------------------------------------------- /skyplane/compute/scp/scp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/scp/scp_server.py -------------------------------------------------------------------------------- /skyplane/compute/scp/scp_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/scp/scp_utils.py -------------------------------------------------------------------------------- /skyplane/compute/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/compute/server.py -------------------------------------------------------------------------------- /skyplane/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/config.py -------------------------------------------------------------------------------- /skyplane/config_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/config_paths.py -------------------------------------------------------------------------------- /skyplane/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skyplane/data/aws_transfer_costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/data/aws_transfer_costs.csv -------------------------------------------------------------------------------- /skyplane/data/vcpu_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/data/vcpu_info.csv -------------------------------------------------------------------------------- /skyplane/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/exceptions.py -------------------------------------------------------------------------------- /skyplane/gateway/cert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/gateway/cert.py -------------------------------------------------------------------------------- /skyplane/gateway/chunk_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/gateway/chunk_store.py -------------------------------------------------------------------------------- /skyplane/gateway/gateway_daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/gateway/gateway_daemon.py -------------------------------------------------------------------------------- /skyplane/gateway/gateway_daemon_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/gateway/gateway_daemon_api.py -------------------------------------------------------------------------------- /skyplane/gateway/gateway_onprem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/gateway/gateway_onprem.py -------------------------------------------------------------------------------- /skyplane/gateway/gateway_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/gateway/gateway_program.py -------------------------------------------------------------------------------- /skyplane/gateway/gateway_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/gateway/gateway_queue.py -------------------------------------------------------------------------------- /skyplane/gateway/operators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skyplane/gateway/operators/gateway_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/gateway/operators/gateway_operator.py -------------------------------------------------------------------------------- /skyplane/gateway/operators/gateway_receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/gateway/operators/gateway_receiver.py -------------------------------------------------------------------------------- /skyplane/gateway_version.py: -------------------------------------------------------------------------------- 1 | gateway_version = "edge" 2 | -------------------------------------------------------------------------------- /skyplane/obj_store/azure_blob_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/obj_store/azure_blob_interface.py -------------------------------------------------------------------------------- /skyplane/obj_store/azure_storage_account_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/obj_store/azure_storage_account_interface.py -------------------------------------------------------------------------------- /skyplane/obj_store/cos_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/obj_store/cos_interface.py -------------------------------------------------------------------------------- /skyplane/obj_store/file_system_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/obj_store/file_system_interface.py -------------------------------------------------------------------------------- /skyplane/obj_store/gcs_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/obj_store/gcs_interface.py -------------------------------------------------------------------------------- /skyplane/obj_store/hdfs_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/obj_store/hdfs_interface.py -------------------------------------------------------------------------------- /skyplane/obj_store/object_store_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/obj_store/object_store_interface.py -------------------------------------------------------------------------------- /skyplane/obj_store/posix_file_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/obj_store/posix_file_interface.py -------------------------------------------------------------------------------- /skyplane/obj_store/r2_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/obj_store/r2_interface.py -------------------------------------------------------------------------------- /skyplane/obj_store/s3_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/obj_store/s3_interface.py -------------------------------------------------------------------------------- /skyplane/obj_store/scp_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/obj_store/scp_interface.py -------------------------------------------------------------------------------- /skyplane/obj_store/storage_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/obj_store/storage_interface.py -------------------------------------------------------------------------------- /skyplane/planner/planner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/planner/planner.py -------------------------------------------------------------------------------- /skyplane/planner/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/planner/solver.py -------------------------------------------------------------------------------- /skyplane/planner/solver_ilp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/planner/solver_ilp.py -------------------------------------------------------------------------------- /skyplane/planner/solver_ron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/planner/solver_ron.py -------------------------------------------------------------------------------- /skyplane/planner/topology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/planner/topology.py -------------------------------------------------------------------------------- /skyplane/utils/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/utils/cache.py -------------------------------------------------------------------------------- /skyplane/utils/definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/utils/definitions.py -------------------------------------------------------------------------------- /skyplane/utils/fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/utils/fn.py -------------------------------------------------------------------------------- /skyplane/utils/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/utils/generator.py -------------------------------------------------------------------------------- /skyplane/utils/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/utils/imports.py -------------------------------------------------------------------------------- /skyplane/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/utils/logger.py -------------------------------------------------------------------------------- /skyplane/utils/networking_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/utils/networking_tools.py -------------------------------------------------------------------------------- /skyplane/utils/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/utils/path.py -------------------------------------------------------------------------------- /skyplane/utils/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/utils/retry.py -------------------------------------------------------------------------------- /skyplane/utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/skyplane/utils/timer.py -------------------------------------------------------------------------------- /tests/integration/cp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/tests/integration/cp.py -------------------------------------------------------------------------------- /tests/integration/cp_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/tests/integration/cp_local.py -------------------------------------------------------------------------------- /tests/integration/test_api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/tests/integration/test_api_client.py -------------------------------------------------------------------------------- /tests/integration/test_cost_estimate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/tests/integration/test_cost_estimate.py -------------------------------------------------------------------------------- /tests/integration/test_cp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/tests/integration/test_cp.py -------------------------------------------------------------------------------- /tests/interface_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/tests/interface_util.py -------------------------------------------------------------------------------- /tests/unit_aws/test_hdfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/tests/unit_aws/test_hdfs.py -------------------------------------------------------------------------------- /tests/unit_aws/test_s3_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/tests/unit_aws/test_s3_interface.py -------------------------------------------------------------------------------- /tests/unit_azure/test_azure_blob_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/tests/unit_azure/test_azure_blob_interface.py -------------------------------------------------------------------------------- /tests/unit_gcs/test_dataproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/tests/unit_gcs/test_dataproc.py -------------------------------------------------------------------------------- /tests/unit_gcs/test_gcs_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/tests/unit_gcs/test_gcs_interface.py -------------------------------------------------------------------------------- /tests/unit_nocloud/test_api_chunker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/tests/unit_nocloud/test_api_chunker.py -------------------------------------------------------------------------------- /tests/unit_nocloud/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/tests/unit_nocloud/test_common.py -------------------------------------------------------------------------------- /tests/unit_nocloud/test_fall_back.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/tests/unit_nocloud/test_fall_back.py -------------------------------------------------------------------------------- /tests/unit_nocloud/test_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/tests/unit_nocloud/test_import.py -------------------------------------------------------------------------------- /tests/unit_nocloud/test_nop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/tests/unit_nocloud/test_nop.py -------------------------------------------------------------------------------- /tests/unit_scp/test_scp_obj_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skyplane-project/skyplane/HEAD/tests/unit_scp/test_scp_obj_interface.py --------------------------------------------------------------------------------