import – POFTUT

Mysql Database Import Tutorial with Examples

Backup and Restore operations are important part of the database administration. mysqlimport command is used to load data in file into Mysql or Mariadb servers. Mysql import is generally used by providing SQLfile. Syntax Syntax of mysqlimport is like below. mysqlimport OPTIONS DBNAME FILE OPTION is used provide detailed configuration DBNAME is the name of the database we … Read more

Python Modules Tutorial With Examples

While learning python programming language we generally write some code or sample applications. But these will generally consist of a few lines of code below 100 lines. In real-world applications the situation is different. We generally write a lot of code, function, helpers, etc. Generally, these applications consist of above 10.000 lines of code. Putting … Read more

Python JSON Encoder and Decoder Tutorial with Examples

JSON or Javascript Object Notations is a RFC standard which is used to define complex data types with number 7159.  JSON became very popular in recent years because of its compatibility and simplicity. Python have rich support web applications and popular framework Django is developed with python too. So we generally need to use JSON with … Read more