-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can it run/compiled when it run? #53
Comments
This is just a text editor with syntax highlighting. But you can send the code for execution, for example, using subprocess. |
How? How do i compile a input code from code editor then execute it in another area/column? I don't understand suprocess that you said |
def get_dataframe_by_name(**kwargs):
print(kwargs['name'])
return kwargs['name']
content = st_ace(**kwargs)
if content is not None:
global_dict = {}
locals_dict = {
'st': st,
'dataframes': dataframe_settings,
'get_dataframe_by_name': get_dataframe_by_name
}
exec(content, global_dict, locals_dict) content:name = get_dataframe_by_name(name='xxxxxx') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No description provided.
The text was updated successfully, but these errors were encountered: