본문 바로가기
Developing../Python

Data Handling in Python - MySQL

by bents 2021. 2. 5.

다룰 내용

  • Connect your Python app with a MySQL database
  • Bring data from a MySQL database into Python for further analysis
  • Execute SQL queries from your Python application
  • Handle exceptions while accessing the database
  • Prevent SQL injection attacks on your application

 

 

 

출처 : realpython.com/python-mysql/

 

Python and MySQL Database: A Practical Introduction – Real Python

In this tutorial, you'll learn how to connect your Python application with a MySQL database. You'll design a movie rating system and perform some common queries on it. You'll also see best practices and tips to prevent SQL injection attacks.

realpython.com