0

API with Python, where to start ?

API with Python for beginners

17th Nov 2017, 3:32 PM
SABIR Hajar
SABIR Hajar - avatar
2 Réponses
+ 6
Unless what you mean is how to deal with an example API. Then perhaps my code sample could be helpful for you 😉 https://code.sololearn.com/c57gr6Ay31s9/?ref=app
17th Nov 2017, 9:16 PM
Kuba Siekierzyński
Kuba Siekierzyński - avatar
+ 1
Are you looking to build an API? If so, then what will be the purpose of the API? I've built a couple REST API's using Flask. I found the tutorial below helpful: https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-i-hello-world I find REST API's useful when there's a need to build a web interface and a mobile interface. You write all the app logic in the Python API and call it from the app/mobile app rather than coding the app logic twice in the mobile and web apps.
17th Nov 2017, 7:03 PM
Jean Maldonado
Jean Maldonado - avatar