Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions python_poetry_template/main.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
def show_ad():
"""광고페이지를 띄워서 트래픽을 한번 받게 하고, 브라우저가 닫히면 프로그램을 종료한다."""
# request logic here
# some complex & hard to understand browser logic here
# some complex & hard to understand browser close detection here


def main():
print('연규컴퍼니')
# 왜 hello world 가 아니라 연규컴퍼니 인가요?
# https://github.com/code-yeongyu/comment-python-project/wiki/%EA%B8%B0%EB%B3%B8-%ED%85%9C%ED%94%8C%EB%A6%BF-%EC%8B%A4%ED%96%89-%EB%AC%B8%EA%B5%AC-%EA%B4%80%EB%A0%A8-%EB%85%BC%EC%9D%98-%EB%82%B4%EC%9A%A9
show_ad()


if __name__ == '__main__':
Expand Down