1

In R there's an RServe package which runs binary R server.

I can connect to it remotely, execute R commands and get structured output. Useful thing. I'm wondering if there's something similar in Python available.

I want to run Python interpreter on some remote server, connect to it, execute Python commands and get results back. Is it possible?

rfg
  • 1,331
  • 1
  • 8
  • 24

2 Answers2

0

Take a look at Jupyter, particularly the Jupyter notebook server. Based on your question, this seems like the resource you need.

Though questions like this aren't really what StackOverflow is intended for, FYI.

Take a look at https://stackoverflow.com/help/on-topic for the general expectations.

"Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it."

Chris Larson
  • 1,684
  • 1
  • 11
  • 19
  • Thanks. Where is the place to ask these questions? – rfg Feb 06 '19 at 11:45
  • Checked Jupyter, similar but not exactly what I need. Jupyter seems GUI oriented but I need an API to pass Python code. Jupyter does have an API but it's not granular enough. – rfg Feb 06 '19 at 11:46
0

TabPy offers a similar REST interface.

rfg
  • 1,331
  • 1
  • 8
  • 24