Ejemplo n.º 1
0
 def __init__(self):
     wikipedia.set_lang("zh-TW")
     random.seed()
     self.hv = HanziConv()
Ejemplo n.º 2
0
from functools import partial

root = Path(".")
dotenv_path = root / ".env"
if dotenv_path.exists():
    load_dotenv(dotenv_path, verbose=True)

# Instantiate connection to the database on Heroku
DB_URL = os.getenv("DATABASE_URL")

# Instantiate s3 bucket
s3 = boto3.resource("s3")
bucket = os.getenv("S3_BUCKET_NAME")

# Commonly-used text conversion
hzc = HanziConv()
custom_mapping = {
    "祢": "祢",
    "袮": "祢",
    "面": "面",
    "麵": "面",
    "裡": "裡",
    "里": "裡",
    "裏": "裡",
    "傢": "家",
    "家": "家",
    "禰": "祢",
    "只": "只",
    "隻": "只",
    "衹": "只",
    "瞭": "了",
Ejemplo n.º 3
0
 def __init__(self):
     self.hv = HanziConv()