Metadata-Version: 2.1
Name: SampleName
Version: 0.0.2
Summary: 產生隨機英文名稱或英文稱的中文翻譯
Home-page: https://github.com/8loser/SampleName
Download-URL: https://pypi.org/project/SampleName
Author: 8loser
Author-email: 8loser+pypi@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# SampleName
產生隨機英文名稱

# 範例
```
from sampleName import SampleName

smapleName = SampleName()
nameList = smapleName.listNameEng()
print(nameList)
# ['Kate', 'Cedric', 'Adrian', 'Yuri', 'Lara', 'Mildred', 'Craig', 'Oswald']
nameList = smapleName.listNameCht()
print(nameList)
# ['海頓', '藍道夫', '吉羅德', '妮可拉', '阿爾瓦', '比尤萊', '伊蒂絲', '珀莉']
```
# Development

 - VSCode
 - Remote container, 參考 https://8loser.github.io/2022/05/13/Remote-Containers/
 - 執行 VSCode remote container 會自動安裝 flake8, yapf 套件, 以及 pytest
 
