Skip to content

Instantly share code, notes, and snippets.

View lucasdu4rte's full-sized avatar
🌎

Lucas Duarte lucasdu4rte

🌎
View GitHub Profile
@LeonardoPizzoquero
LeonardoPizzoquero / main.py
Last active April 14, 2021 14:18
Python script to convert excel file (xlsx) into languages multiple files (JSON), use the files on i18next library - Languages: en-US, es-ES and pt-BR
import pandas as pd
import re
import json
import openpyxl
import os
import codecs
df = pd.read_excel('./translations.xlsx', sheet_name = 0)
titles = []