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
  • 14:04 (UTC +06:00)
  • LinkedIn in/maf345
View GitHub Profile
@bkbncn
bkbncn / ListComprehension.ipynb
Last active February 16, 2025 02:49
Python List Comprehension tutorial
Loading
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")