{"id":23641832,"url":"https://github.com/woorim960/nate.com-comments-crawler","last_synced_at":"2026-05-14T22:35:58.203Z","repository":{"id":106246848,"uuid":"491488430","full_name":"woorim960/nate.com-comments-crawler","owner":"woorim960","description":"nate.com-comments-crawler","archived":false,"fork":false,"pushed_at":"2022-05-27T14:43:19.000Z","size":1048,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-12-28T10:02:35.337Z","etag":null,"topics":["chromedriver","crawler","python3","selenium"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/woorim960.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-05-12T11:39:02.000Z","updated_at":"2022-05-17T15:01:54.000Z","dependencies_parsed_at":"2023-05-31T02:23:47.052Z","dependency_job_id":null,"html_url":"https://github.com/woorim960/nate.com-comments-crawler","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/woorim960%2Fnate.com-comments-crawler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/woorim960%2Fnate.com-comments-crawler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/woorim960%2Fnate.com-comments-crawler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/woorim960%2Fnate.com-comments-crawler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/woorim960","download_url":"https://codeload.github.com/woorim960/nate.com-comments-crawler/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239579625,"owners_count":19662648,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chromedriver","crawler","python3","selenium"],"created_at":"2024-12-28T10:01:34.582Z","updated_at":"2025-11-10T08:30:22.392Z","avatar_url":"https://github.com/woorim960.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# nate.com-comments-crawler\n```nate.com``` 사이트의 news 중 코로나와 기독교 관련된 댓글을 수집하는 크롤러\n\n## 시작하기에 앞서\n\u003e 프로그램이 실행되기 위한 환경을 구성합니다.  \n```python3```는 설치가 이미 되어있다는 가정 하에 진행됩니다. \n\n* [Mac OS에서 pip 설치](https://phoenixnap.com/kb/install-pip-mac)\n* [Windows OS에서 pip 설치](https://phoenixnap.com/kb/install-pip-windows)\n* [Ubuntu OS에서 pip 설치](https://phoenixnap.com/kb/how-to-install-pip-on-ubuntu)\n\n1. pip 설치\n    * 만약, 아래 명령대로 설치가 되지 않는다면 위 링크를 참고해주세요.\n    ```\n    # Max OS or Windows OS\n    $ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py\n    $ python3 get-pip.py\n\n    # Linux OS\n    $ sudo apt-get install python-pip\n    ```\n2. virtualenv 설치\n    ```\n    $ sudo pip install virtualenv\n    ```\n\n## 설치(로컬)\n\u003e 주의 : 패키지 충돌을 방지하기 위해 가상환경에 설치하는 것을 권장합니다.\n1. 가상환경 만들기\n   ```\n   $ virtualenv nate.com.crawler\n   $ cd nate.com.crawler\n   $ source bin/activate\n   ```\n2. 소스 코드 다운로드\n    ```\n    $ git clone https://github.com/woorim960/nate.com-comments-crawler\n    $ cd nate.com-comments-crawler\n    ```\n\n## 실행\n\u003e 주의 : 먼저, [설치](https://github.com/woorim960/nate.com-comments-crawler#설치로컬)를 통해 ```nate.com-comments-crawler``` 소스 코드를 설치해주십시오.    \n\u003e 주의 : 아래 명령은 ```nate.com-comments-crawler```의 [requirements.txt](https://github.com/woorim960/nate.com-comments-crawler/blob/master/requirements.txt) 파일이 있는 루트 경로에서 실행되어야 합니다.\n\n1. 프로그램 실행에 필요한 ```패키지``` 설치하기\n   ```\n   $ pip install -r requirements.txt\n   ```\n2. 프로그램 실행  \n   * ```app.py``` 파일이 위치한 경로에서 실행되어야 합니다.\n    ```\n    # app.py 파일이 위치한 경로로 이동\n    $ cd app\n\n    # 프로그램 실행\n    $ python3 app.py\n    ```\n\n## 실행 사진\n* 프로그램이 스스로 웹브라우저를 탐색하며 댓글을 수집 중인 화면\n  \u003cimg width=\"1552\" alt=\"스크린샷 2022-05-17 오후 11 53 42\" src=\"https://user-images.githubusercontent.com/56839474/168842069-3ab05b5b-602d-4304-8d85-71dd5a707f1b.png\"\u003e\n  \n* 프로그램 시작 화면\n  \u003cimg width=\"1440\" alt=\"스크린샷 2022-05-17 오후 11 53 59\" src=\"https://user-images.githubusercontent.com/56839474/168842159-c7ea065d-0efb-48cc-ada7-e5af4b9ff0ef.png\"\u003e\n\n* 댓글 수집 중 화면\n  \u003cimg width=\"1440\" alt=\"스크린샷 2022-05-17 오후 11 54 15\" src=\"https://user-images.githubusercontent.com/56839474/168842205-37191447-d86c-43a8-aa10-67540e8a9857.png\"\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwoorim960%2Fnate.com-comments-crawler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwoorim960%2Fnate.com-comments-crawler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwoorim960%2Fnate.com-comments-crawler/lists"}