tducret / amazon-scraper-python

Non-official client to get some info about products sold on Amazon
MIT License
871 stars 159 forks source link

Is there a way I can compile this project into a .exe or a .dll and call it from c# code. #6

Closed ghost closed 6 years ago

ghost commented 6 years ago

I am a c# developer and I am looking for an option to use it. Last month I work on FFmpeg binary. call the exe with the parameter and it does the work and returns the result (reading console output).

I am looking for using project similar to like that. Calling the exe with parameter and get the output. @tducret please check if there is a better way to use it.

I have used python but don't like to translate the code to C#. Anything else to use it in c#.

Thanks

tducret commented 6 years ago

Hi @anirudhagupta , Have you tried to call python.exe to execute this script? Have a look at this > https://stackoverflow.com/questions/11779143/how-do-i-run-a-python-script-from-c?answertab=votes#tab-top What do you think?

ghost commented 6 years ago

thanks, @tducret for the reply.