We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1532d0b commit d88b21aCopy full SHA for d88b21a
website/src/pages/index.js
@@ -78,10 +78,10 @@ import requests
78
79
async def main():
80
async with Actor:
81
- input = await Actor.get_input()
82
- response = requests.get(input['url'])
+ actor_input = await Actor.get_input()
+ response = requests.get(actor_input['url'])
83
soup = BeautifulSoup(response.content, 'html.parser')
84
- await Actor.push_data({ 'url': input['url'], 'title': soup.title.string })`
+ await Actor.push_data({ 'url': actor_input['url'], 'title': soup.title.string })`
85
}</CodeBlock>
86
</div>
87
0 commit comments