-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat-black-formatter
- Loading branch information
Showing
12 changed files
with
990 additions
and
211 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 |
---|---|---|
@@ -1,38 +1,39 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
about: 버그 세부 사항을 입력해 주세요. | ||
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 | ||
## 재현 방법 | ||
버그를 재현하는 단계를 설명해 주세요: | ||
1. '...'로 이동 | ||
2. '....'를 클릭 | ||
3. '....'까지 아래로 스크롤 | ||
4. 오류 발생 | ||
|
||
**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] | ||
- 브라우저 [e.g. chrome, safari] | ||
- 버전 [e.g. 22] | ||
|
||
**Smartphone (please complete the following information):** | ||
- Device: [e.g. iPhone6] | ||
**모바일 (다음 정보를 입력해 주세요):** | ||
- 기기명: [e.g. iPhone6] | ||
- OS: [e.g. iOS8.1] | ||
- Browser [e.g. stock browser, safari] | ||
- Version [e.g. 22] | ||
- 브라우저 [e.g. chrome, safari] | ||
- 버전 [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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
about: Feature 작업 사항을 입력해 주세요. | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
## 문제 상황 | ||
해결하려는 문제가 있다면 무엇인지 명확하고 간결하게 설명합니다. (ex. [...] 가 안 돼서 짜증나요!) | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
## 해결 방안 제안 | ||
해결하려는 방법을 명확하고 간결하게 설명합니다. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
## 고려한 다른 대안들 | ||
고려해 본 다른 대안이나 기능에 대해 명확하고 간결하게 설명합니다. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request 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,6 @@ | ||
from urllib.parse import urlparse | ||
import re | ||
|
||
from scrap.utils.types import CouncilType, Councilor, ScrapResult, ScrapBasicArgument | ||
from scrap.utils.requests import get_soup | ||
from scrap.local_councils.basic import scrap_basic |
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 @@ | ||
"""광주광역시를 스크랩. 60-64번째 의회까지 있음. | ||
""" | ||
from scrap.utils.types import CouncilType, Councilor, ScrapResult | ||
from scrap.utils.requests import get_soup | ||
from scrap.local_councils.basic import * |
Oops, something went wrong.