$ conda env update -f scipy-demo.yml
$ conda activate scipy-demo
$ jupyter labextension install --clean \
@jupyter-widgets/jupyterlab-manager dask-labextension @pyviz/jupyterlab_pyviz
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build Artifacts | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| username = raw_input("Enter SSH username:") | |
| yubikey_string = getpass.getpass('Enter YubiKey OTP:') | |
| client = paramiko.client.SSHClient() | |
| # Any means of getting the PKey will do. This code assumes you've only got one key loaded in your active ssh-agent. | |
| # See also: | |
| # - http://docs.paramiko.org/en/1.17/api/keys.html#paramiko.pkey.PKey | |
| # - http://docs.paramiko.org/en/1.17/api/client.html#paramiko.client.SSHClient.connect | |
| my_pkey = paramiko.agent.Agent().get_keys()[0] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sources: | |
| sst_oi_bulk: | |
| driver: netcdf | |
| cache: | |
| - argkey: urlpath | |
| type: file | |
| description: "Optimum Interpolation Sea Surface Temperature (OISST) v2.1 provided by the NOAA/NCEI from their Web site at https://www.ncdc.noaa.gov/oisst/data-access" | |
| parameters: | |
| year: | |
| description: 'Year' |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os.path | |
| import warnings | |
| from glob import glob | |
| from io import BytesIO | |
| from numbers import Number | |
| from pathlib import Path | |
| from xarray.backends.common import AbstractDataStore, ArrayWriter | |
| from xarray.core.utils import close_on_error, is_grib_path, is_remote_uri | |
| from xarray.core import indexing | |
| from xarray import backends, conventions, coding |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.