-1

As a little project I would like to make a movie suggester program I will use a web crawler to get a list of movies from imdb. I've made a web crawler out of python however i hate guis on python and so I will use VB. I have only been coding for 2 years and I'm only 15 years old so I won't understand any super complex comments. Thanks for any help

2
  • Hi, welcome to stackoverflow. have you tried this: stackoverflow.com/questions/38825514/… ? Commented Mar 15, 2019 at 19:52
  • i don't know VB, but what i can suggest is using python store data in csv or json file. and the from this read the data and use it in visual basic. how to connect visual basic code with python code as example given by ramy , you can use bat file to run python task (basically write all command to scrap data) Commented Mar 15, 2019 at 20:55

1 Answer 1

0

Yes. Use VB Process.Start(...)

Dim pythonProcess As New Process()
With pythonProcess
    .StartInfo.FileName = "python"
    .StartInfo.Arguments = yourScriptFileName
    .Start()
End With
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.