aboutsummaryrefslogtreecommitdiff
path: root/gn3/experimental_db.py
diff options
context:
space:
mode:
Diffstat (limited to 'gn3/experimental_db.py')
-rw-r--r--gn3/experimental_db.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/gn3/experimental_db.py b/gn3/experimental_db.py
new file mode 100644
index 0000000..c928265
--- /dev/null
+++ b/gn3/experimental_db.py
@@ -0,0 +1,11 @@
+"""this function contains experimental db staff"""
+from typing import Tuple
+import MySQLdb as mdb # type: ignore
+
+
+def database_connector()->Tuple:
+ """function to create db connector"""
+ conn = mdb.connect("local", "kabui", "1234", "db_webqtl")
+ cursor = conn.cursor()
+
+ return (conn, cursor)