forked from pamulapati/cdswdemo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path240_Python.py
36 lines (26 loc) · 833 Bytes
/
240_Python.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#
#
# please use a python 2 execution environment for the labs
#
#
import matplotlib.pyplot as plt
# -----------------------------------
#
# IPython has a [rich display system](bit.ly/HHPOac) for
# interactive widgets.
from IPython.display import IFrame
from IPython.core.display import display
# Define a google maps function.
def gmaps(query):
url = "https://maps.google.com/maps?q={0}&output=embed".format(query)
display(IFrame(url, '700px', '450px'))
gmaps("The Capital Hill")
gmaps("McLean, VA")
# Worker Engines
# -----------------
#
# You can launch worker engines to distribute your work across a cluster.
# Uncomment the following to launch two workers with 2 cpu cores and 0.5GB
# memory each.
# import cdsw
# workers = cdsw.launch_workers(n=2, cpu=0.2, memory=0.5, code="print 'Hello from a CDSW Worker'")