FACTS ERP Internship Day 23
Date:- 16th June 2023
Name:- Noella Abraham
Tasks Done:-
– Started writing a blog about the topic : “Optimizing the Flow: ERP’s Impact on Supply Chain Operations”. [Halfway done]
– Created 10 more backlinks for Dynamics Axis.
– Continued learning about Flask.
Tasks To Do:-
– Complete writing the blog about the topic : “Optimizing the Flow: ERP’s Impact on Supply Chain Operations”.
– Continue learning about Flask
– Convert the face recognition project with Kivy and OpenCV into an apk file.
What have I learnt?
– Dynamic Routing – allows handling different URLs and directing them to the appropriate functions or views
@app.route(‘/user/’)
def user_profile(username):
return f’Welcome to {username}’s profile page.’
This can match any URL with a username.
– Templates in flask helps in storing the web pages separately to help make it easier to maintain the web pages.
To do so all the html codes must be under a directory called “templates” which is under the root directory.
The render_template function provided by Flask is used to render the template into Flask.