+ 1
How would I consume an API using python flask
3 Antworten
0
I've looked into this, their website doesn't give a strong grasp on how to make an API since everytool taught is to make the API but I found this that gets straight to the point.
https://programminghistorian.org/en/lessons/creating-apis-with-JUMP_LINK__&&__python__&&__JUMP_LINK-and-flask
0
Thank you for your help but I figured it out way before I saw this post MyNameIsMutable... The way it's done is pretty simple...I am gonna share it soon
0
I think you can learn and hone your skills while learning a flask web framework of what can be learned:
- Create your web pages to add modularity and flexibility to your web app using templates.
- Store and retrieve relational data using SQLAlchemy.
- Develop schema migrations with Alembic.
- Produce an admin section using flask-admin.
- Build RESTful APIs using Flask-Restless.
- Simulate requests and sessions using the Flask test client.
- Make Ajax requests from Jinja2 templates.
Finally, you will learn to deploy Flask applications securely and in an automated, repeatable manner, and explore some of the most popular Flask resources on the web.