Skip to content

Instantly share code, notes, and snippets.

View saeedesmaili's full-sized avatar

Saeed Esmaili saeedesmaili

View GitHub Profile
@mostafabahri
mostafabahri / RTL_text_on_image.py
Last active December 16, 2017 08:23
Snippet for writing Persian or other RTL langs on image with Python PIL
# -*- coding: utf-8 -*-
#!/usr/bin/env python3
import PIL
from PIL import ImageFont, Image, ImageDraw
from bidi.algorithm import get_display
import arabic_reshaper
def rtl_fix(text):
@stevenvo
stevenvo / useful_pandas_snippets.py
Last active February 13, 2020 18:45 — forked from bsweger/useful_pandas_snippets.md
Useful Pandas Snippets
###### FORCE DATA FORMAT IN PANDAS ######
pd.options.display.float_format = '{:,.2f}'.format
# NOTES:
# 1. DO NOT update row in df.iterrows() -> https://stackoverflow.com/questions/25478528/updating-value-in-iterrow-for-pandas
# Use df.loc[idx, '<col>'] = <value>
###### REGEX on DataFrame ######