DEV Community

Discussion on: How To Change Your Github Contribution Graph Colour To Something Cool

Collapse
 
terabytetiger profile image
Tyler V. (he/him)

I haven't gotten very far into Flask yet, I have a tutorial that I'm trying to work through, but finding time to fit it in has been a bit rough lately. I would like to get into it more, just need to make time to really dive in!

Thread Thread
 
abdurrahmaanj profile image
Abdur-Rahmaan Janhangeer

pythonmembers.club/2018/07/01/web-...

an article i once wrote. to add libs, like animate.css just add it in static folder and in your html file add the path as "static/animate.css", no need for special flask { } things.

for api see marshmallow, very easy, don't use flask-restful. The best tuto in my opinion is building something, that actually reduces the amount of time learning. A CRUD app with login should cover what you need to know, just be sure to use those things called blueprints. Use SQLite to start with flask-sqlalchemy so that switching db only means switching settings. better, you could a localhost app for someone, mimicking pushing to production at the same time.

else, i'm building something flask right now, will push to github soon and notify you. any flask question, i'll try my best to help you!

Thread Thread
 
terabytetiger profile image
Tyler V. (he/him)

Thanks! Seems like a good place to start! I'll let you know if I have any questions! :D