-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from kimsehwan96/master
release v1.0.0.2
- Loading branch information
Showing
57 changed files
with
8,761 additions
and
7 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Desktop (please complete the following information):** | ||
- OS: [e.g. iOS] | ||
- Browser [e.g. chrome, safari] | ||
- Version [e.g. 22] | ||
|
||
**Smartphone (please complete the following information):** | ||
- Device: [e.g. iPhone6] | ||
- OS: [e.g. iOS8.1] | ||
- Browser [e.g. stock browser, safari] | ||
- Version [e.g. 22] | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# 설치 방법 | ||
|
||
설치 방법에 대해서 소개합니다. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# pip install | ||
|
||
1. pip를 이용하여 설치하는 방법 (pip command) | ||
|
||
```console | ||
pip install pyjosa | ||
``` | ||
|
||
2. pip를 이용하여 설치하는 방법 (python3 command) | ||
|
||
```console | ||
python3 -m pip install pyjosa | ||
``` |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# 사용 예시 | ||
|
||
사용 예시에 대해 소개합니다. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# 간단한 사용 방법 | ||
|
||
```python | ||
from pyjosa.josa import Josa | ||
|
||
print(Josa.get_josa("철수", "은")) # 는 | ||
print(Josa.get_josa("오리", "을")) # 를 | ||
print(Josa.get_josa("닭", "는")) # 은 | ||
print(Josa.get_josa("산", "으로")) # 으로 | ||
print(Josa.get_josa("명예", "과")) # 와 | ||
print(Josa.get_josa("물", "나")) # 이나 | ||
|
||
print(Josa.get_full_string("철수", "은")) # 철수는 | ||
print(Josa.get_full_string("오리", "을")) # 오리를 | ||
print(Josa.get_full_string("닭", "는")) # 닭은 | ||
print(Josa.get_full_string("산", "으로")) # 산으로 | ||
print(Josa.get_full_string("명예", "과")) # 명예와 | ||
print(Josa.get_full_string("물", "나")) # 물이나 | ||
``` |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# 유용한 사용 방법 | ||
|
||
```python | ||
from pyjosa.josa import Josa | ||
|
||
subject = '철수' | ||
obj = '산' | ||
|
||
full_string = f'{Josa.get_full_string(subject, '은')} {Josa.get_full_string(obj, '를')} 간다' | ||
|
||
print(full_string) # 철수는 산을 오른다 | ||
``` | ||
|
||
```python | ||
from pyjosa.josa import Josa | ||
|
||
subjects = ['철수', '세환', '길동'] | ||
obj = ['산', '바다', '집'] | ||
|
||
for i, v in enumerate(subjects): | ||
print(f'{Josa.get_full_string(v, '은')} {Josa.get_full_string(obj[i], '를')} 간다') | ||
|
||
``` |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
source "https://rubygems.org" | ||
|
||
gem "jekyll-rtd-theme", "~> 2.0.6" | ||
|
||
gem "github-pages", group: :jekyll_plugins |
Oops, something went wrong.