I have a Python script which connects to SQL Server and exports the results in CSV using some Python libraries. I need to provide the ability for the team to run the Python script who does not have access to SQL Server. Is there a way I can wrap my Python into a shell and have them run that shell (executable) which will generate same CSV's?
I am open for suggestions.
Thank you!