CA
conscious-sapphire
Actor runs endlessly and only stops when aborted
I'm not sure why it's not finishing. It runs fine when I run it as a Python program. I've tried using the BBC weather actor tutorial as a guide but I'm stumped. What am I doing wrong here? Any help or point in the right direction would be appreciated. Thank you.
4 Replies
server endlessly waits for keyboard input
asin = input("Enter ASIN: ")
you need to parse ACTOR INPUT 😉
conscious-sapphireOP•3y ago
I thought the input tab would be what the input was taken from. I didn't know I needed this code when creating inside apify, The documentation is very confusing 😅 I appreciate the help
will i still have in my code or do i need to remove it. to me it looks like URLS would hold the input, correct?
Nope, python
input
must be removed because its waiting for keyboard input at the server and therefore ends up with endless waiting. All values must be parsed from actor input.conscious-sapphireOP•3y ago
Thank you