Translated the <your_file>.md
file of the documentation to Korean.
Thank you in advance for your review.
Part of huggingface/transformers#20179
- Check for missing / redundant translations (번역 누락/중복 검사)
# pip install pyyaml | |
import yaml | |
# raw file: https://github.com/OpenBB-finance/OpenBBTerminal/blob/main/website/data/menu/main.yml | |
with open('main.yml', 'rt', encoding='utf8') as f: | |
content = yaml.safe_load(f.read()) | |
content = content['main'][0] | |
def sort_nested(l: list): | |
result = [] |
Translated the <your_file>.md
file of the documentation to Korean.
Thank you in advance for your review.
Part of huggingface/transformers#20179
import requests | |
url = 'https://api.namechart.kr/search?query=' | |
def gender(name) -> tuple: | |
response = requests.get(f"{url}{name}", verify=False) | |
if response.status_code == 200: | |
data = response.json() | |
I'm a [Your Job Title], currently working at [Your Company Name]. I have [Number of Years of Experience] years of experience in [Your Field of Expertise].
@echo off | |
rem Licensed to the Apache Software Foundation (ASF) under one or more | |
rem contributor license agreements. See the NOTICE file distributed with | |
rem this work for additional information regarding copyright ownership. | |
rem The ASF licenses this file to You under the Apache License, Version 2.0 | |
rem (the "License"); you may not use this file except in compliance with | |
rem the License. You may obtain a copy of the License at | |
rem | |
rem http://www.apache.org/licenses/LICENSE-2.0 | |
rem |