This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
###### 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 ###### |