-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
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
Asyncio Version? #20
Comments
@PythonLinks, I know it's been 2 years since the original question, but could you describe what specific kind of async functionality are you interested in?
That also means that you can already do that yourself, by requesting the contents of the page asynchronously in your own code and then simply supplying it to the If we try to add the async requests functionality, that would need to be installed as an extra with the following syntax: pip install webpreview[async]
# Or
pip install webpreview[aiohttp] |
Hi. Great to hear from you. Have two years of covid isolation already passed us. I got it all working. Sure I can do it myself, in fact I did get it working myself, but it would be just a bit simpler interface if there were an asyncio api. |
@PythonLinks, good point 👍 Having it as an option, when using the library in the async environment, could be a nice addition to the out of the box functionality. |
I just extracted the relevant functions and used HTTPX for fetch the data |
Thank you for all of this great code. It works great.
Now I just need to figure out how to make this work in an asyncio environment.
The text was updated successfully, but these errors were encountered: