We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If you'd like to discuss your feature idea first with the community (highly recommended!) please visit our Discord channel.
bring api to website not database。
using api build fasthtml website
The text was updated successfully, but these errors were encountered:
I fail to see why you can't achieve this with python code.
from fasthtml.common import * import requests app,rt = fast_app() @rt('/') def get(): response = requests.get("https://api.sampleapis.com/coffee/hot"). # << Make request return Div(P(f'Hello World! {response.content}'), hx_get="/change") # << Use API response in user response serve()
Sorry, something went wrong.
@thinker007 Is there a particular API service you are suggesting? That would functionality that would justify this kind of third-party dependency?
Otherwise @muhis is correct, this is something that individual projects should do on their own.
No branches or pull requests
If you'd like to discuss your feature idea first with the community (highly recommended!) please visit our Discord channel.
bring api to website
not database。
using api build fasthtml website
The text was updated successfully, but these errors were encountered: