diff --git a/README.md b/README.md index 4e8b747..fa716d7 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,25 @@ # mysql-python-util -MySQL Python utils. -Note : It's under development. +Blog Link : https://shashankvivek.in/2022/07/11/using-python-to-execute-mysql-insert-and-update-queries/ -This is a MySQL utilities project created in Python. -Initially you can do below things. +This is a MySQL command line utility project written in Python. -1. Run an insert / update query with an option to manually commit the result. +You can do below things. +Execute an insert / update query with an option to manually commit the result. Basically before commmiting any result to database it asks whether you want to proceed or not by showing number of effected rows. +Usage : +-------- +``` +python insert_update.py --query "your_query" +``` + + +Development : +-------------- +This runs on python 2.7 versions. + +Install Dependencies : +-------------------- +``` +pip install -r requirements.txt +```