from cartoframes.auth import set_default_credentials
from cartoframes.viz import Map, Layer
set_default_credentials('cartoframes')
Map(
Layer(
"SELECT * FROM global_power_plants WHERE country IN ('Brazil')",
'''
color: blue
width: 5
strokeColor: rgb(255,255,255)
strokeWidth: 1
'''
)
)