We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Actor.main
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It could take care of asyncio.run for example, or it could be a decorator. There isn't much value in it now, compared to async with Actor.
asyncio.run
async with Actor
A few mockups:
from apify import Actor @Actor.main async def main(): Actor.push_data({})
from apify import Actor async def main(): Actor.push_data({}) Actor.run(main())
The text was updated successfully, but these errors were encountered:
Let's just remove it
Sorry, something went wrong.
2f9dcc5
Successfully merging a pull request may close this issue.
It could take care of
asyncio.run
for example, or it could be a decorator. There isn't much value in it now, compared toasync with Actor
.A few mockups:
The text was updated successfully, but these errors were encountered: