I have a Python 2.7 Script that does the following things:
- Read data from a database and manipulate them with numpy and pandas
- Perform a clustering with sklearn
- Write these data on a database
I want to include this script in .net solution, and I have no idea on where to start.
Some possibilities:
- Call the script from a .net module in the solution. In don't like this because we will need to deploy the solution on customers' servers, so they should not be able to see the script
- Create an executable file that takes some input (the db address, for instance) and is "inside" in some way (no idea how) the solution.
Any advice?