Github user Leemoonsoo commented on the pull request:
https://github.com/apache/incubator-zeppelin/pull/869#issuecomment-215979143
Thanks @hriviere for the contribution! Tried and working nicely.
You may want to add python.md to
[_nagivation.html](https://github.com/apache/incubator-zeppelin/blob/master/docs/_includes/themes/zeppelin/_navigation.html#L41),
under interpreter menu.
Regarding dynamic form, it's using FormType.SIMPLE. Instead of it, how
about provide the same programming api that %pyspark interpreter provides?
```
%pyspark
print("Hello "+z.input("name", "sun"))
```
```
%pyspark
print("Hello "+z.select("day", [("1","mon"),
("2","tue"),
("3","wed"),
("4","thurs"),
("5","fri"),
("6","sat"),
("7","sun")]))
```
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---