Skip to content

Instantly share code, notes, and snippets.

View ybg345's full-sized avatar
🔆
Focusing

Mehedi Farazi ybg345

🔆
Focusing
  • Streams Tech Ltd.
  • Dhaka, Bangladesh
  • 08:12 (UTC +06:00)
  • LinkedIn in/maf345
View GitHub Profile
@bkbncn
bkbncn / ListComprehension.ipynb
Last active April 25, 2024 18:56
Python List Comprehension tutorial
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@pirosuke
pirosuke / excel2psql.py
Last active March 8, 2023 06:07
A Python script to create SQL file from Excel
# coding: utf-8
from __future__ import unicode_literals
import xlrd
import codecs
def output_insert_sqls(excel_path, output_path, sheet_names, table_names):
book = xlrd.open_workbook(excel_path)
out_f = codecs.open(output_path, "w", "utf_8")