├── .github └── workflows │ └── crawler.yml ├── .prettierrc ├── CNAME ├── README.md ├── chromedriver ├── chromedriver_linux64.zip ├── crawler ├── Twitter_cr.py ├── common │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-311.pyc │ │ ├── __init__.cpython-312.pyc │ │ ├── __init__.cpython-313.pyc │ │ ├── __init__.cpython-314.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── en_HistoryNewsData.cpython-310.pyc │ │ ├── en_HistoryNewsData.cpython-311.pyc │ │ ├── en_HistoryNewsData.cpython-312.pyc │ │ ├── en_HistoryNewsData.cpython-313.pyc │ │ ├── en_HistoryNewsData.cpython-314.pyc │ │ ├── en_HistoryNewsData.cpython-39.pyc │ │ ├── google_crawler.cpython-310.pyc │ │ ├── google_crawler.cpython-311.pyc │ │ ├── google_crawler.cpython-312.pyc │ │ ├── google_crawler.cpython-313.pyc │ │ ├── google_crawler.cpython-314.pyc │ │ └── google_crawler.cpython-39.pyc │ ├── en_HistoryNewsData.py │ └── google_crawler.py ├── crawl_global_news.py ├── engagement_news_crawler.py ├── global_countryNews.py └── total_news_crawler.py ├── crawlingData ├── Twitter.json ├── en_BattleNewsData.json ├── en_DamageNewsData.json ├── en_HistoryNewsData.json ├── en_LocalNewsData.json ├── en_NegoNewsData.json ├── en_RegulationNewsData.json ├── en_SponsorNewsData.json ├── kr_BattleNewsData.json ├── kr_DamageNewsData.json ├── kr_HistoryNewsData.json ├── kr_LocalNewsData.json ├── kr_NegoNewsData.json ├── kr_RegulationNewsData.json └── kr_SponsorNewsData.json ├── css ├── font.css ├── media_query.css ├── reset.css └── style.css ├── favicon.ico ├── font ├── NotoSansKR-Bold.otf └── NotoSansKR-Regular.otf ├── forktest └── 0903.html ├── html ├── aside.html ├── footer.html ├── header.html ├── main_card.html ├── main_category.html ├── main_search.html └── skip.html ├── image ├── KR.png ├── UK.png ├── US.png ├── airbnd.svg ├── arrow_down.svg ├── btn-close.png ├── btn-more-hover.svg ├── btn-more.svg ├── btn-scroll-top.svg ├── happybean.png ├── icon-arrow.png ├── icon-lang.png ├── icon-lang.svg ├── logo-gray.svg ├── logo.png ├── logo.svg ├── no-image.jpg ├── nodata.png ├── ogimage.jpg ├── ogimage.png ├── savethechild.svg ├── search.svg ├── swisscross.svg ├── un.svg └── unicef.svg ├── index.html ├── js ├── common │ └── constants.js ├── index.js ├── modules │ ├── category.js │ └── search.js └── utils │ └── fetcher.js ├── package.json ├── requirements.txt └── robots.txt /.github/workflows/crawler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/.github/workflows/crawler.yml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/.prettierrc -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | stopwar.co.kr -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/README.md -------------------------------------------------------------------------------- /chromedriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/chromedriver -------------------------------------------------------------------------------- /chromedriver_linux64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/chromedriver_linux64.zip -------------------------------------------------------------------------------- /crawler/Twitter_cr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawler/Twitter_cr.py -------------------------------------------------------------------------------- /crawler/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crawler/common/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawler/common/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /crawler/common/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawler/common/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /crawler/common/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawler/common/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /crawler/common/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawler/common/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /crawler/common/__pycache__/__init__.cpython-314.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawler/common/__pycache__/__init__.cpython-314.pyc -------------------------------------------------------------------------------- /crawler/common/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawler/common/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /crawler/common/__pycache__/en_HistoryNewsData.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawler/common/__pycache__/en_HistoryNewsData.cpython-310.pyc -------------------------------------------------------------------------------- /crawler/common/__pycache__/en_HistoryNewsData.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawler/common/__pycache__/en_HistoryNewsData.cpython-311.pyc -------------------------------------------------------------------------------- /crawler/common/__pycache__/en_HistoryNewsData.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawler/common/__pycache__/en_HistoryNewsData.cpython-312.pyc -------------------------------------------------------------------------------- /crawler/common/__pycache__/en_HistoryNewsData.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawler/common/__pycache__/en_HistoryNewsData.cpython-313.pyc -------------------------------------------------------------------------------- /crawler/common/__pycache__/en_HistoryNewsData.cpython-314.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawler/common/__pycache__/en_HistoryNewsData.cpython-314.pyc -------------------------------------------------------------------------------- /crawler/common/__pycache__/en_HistoryNewsData.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawler/common/__pycache__/en_HistoryNewsData.cpython-39.pyc -------------------------------------------------------------------------------- /crawler/common/__pycache__/google_crawler.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawler/common/__pycache__/google_crawler.cpython-310.pyc -------------------------------------------------------------------------------- /crawler/common/__pycache__/google_crawler.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawler/common/__pycache__/google_crawler.cpython-311.pyc -------------------------------------------------------------------------------- /crawler/common/__pycache__/google_crawler.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawler/common/__pycache__/google_crawler.cpython-312.pyc -------------------------------------------------------------------------------- /crawler/common/__pycache__/google_crawler.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawler/common/__pycache__/google_crawler.cpython-313.pyc -------------------------------------------------------------------------------- /crawler/common/__pycache__/google_crawler.cpython-314.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawler/common/__pycache__/google_crawler.cpython-314.pyc -------------------------------------------------------------------------------- /crawler/common/__pycache__/google_crawler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawler/common/__pycache__/google_crawler.cpython-39.pyc -------------------------------------------------------------------------------- /crawler/common/en_HistoryNewsData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawler/common/en_HistoryNewsData.py -------------------------------------------------------------------------------- /crawler/common/google_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawler/common/google_crawler.py -------------------------------------------------------------------------------- /crawler/crawl_global_news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawler/crawl_global_news.py -------------------------------------------------------------------------------- /crawler/engagement_news_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawler/engagement_news_crawler.py -------------------------------------------------------------------------------- /crawler/global_countryNews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawler/global_countryNews.py -------------------------------------------------------------------------------- /crawler/total_news_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawler/total_news_crawler.py -------------------------------------------------------------------------------- /crawlingData/Twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawlingData/Twitter.json -------------------------------------------------------------------------------- /crawlingData/en_BattleNewsData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawlingData/en_BattleNewsData.json -------------------------------------------------------------------------------- /crawlingData/en_DamageNewsData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawlingData/en_DamageNewsData.json -------------------------------------------------------------------------------- /crawlingData/en_HistoryNewsData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawlingData/en_HistoryNewsData.json -------------------------------------------------------------------------------- /crawlingData/en_LocalNewsData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawlingData/en_LocalNewsData.json -------------------------------------------------------------------------------- /crawlingData/en_NegoNewsData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawlingData/en_NegoNewsData.json -------------------------------------------------------------------------------- /crawlingData/en_RegulationNewsData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawlingData/en_RegulationNewsData.json -------------------------------------------------------------------------------- /crawlingData/en_SponsorNewsData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawlingData/en_SponsorNewsData.json -------------------------------------------------------------------------------- /crawlingData/kr_BattleNewsData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawlingData/kr_BattleNewsData.json -------------------------------------------------------------------------------- /crawlingData/kr_DamageNewsData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawlingData/kr_DamageNewsData.json -------------------------------------------------------------------------------- /crawlingData/kr_HistoryNewsData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawlingData/kr_HistoryNewsData.json -------------------------------------------------------------------------------- /crawlingData/kr_LocalNewsData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawlingData/kr_LocalNewsData.json -------------------------------------------------------------------------------- /crawlingData/kr_NegoNewsData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawlingData/kr_NegoNewsData.json -------------------------------------------------------------------------------- /crawlingData/kr_RegulationNewsData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawlingData/kr_RegulationNewsData.json -------------------------------------------------------------------------------- /crawlingData/kr_SponsorNewsData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/crawlingData/kr_SponsorNewsData.json -------------------------------------------------------------------------------- /css/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/css/font.css -------------------------------------------------------------------------------- /css/media_query.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/css/media_query.css -------------------------------------------------------------------------------- /css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/css/reset.css -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/css/style.css -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/favicon.ico -------------------------------------------------------------------------------- /font/NotoSansKR-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/font/NotoSansKR-Bold.otf -------------------------------------------------------------------------------- /font/NotoSansKR-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/font/NotoSansKR-Regular.otf -------------------------------------------------------------------------------- /forktest/0903.html: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /html/aside.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/html/aside.html -------------------------------------------------------------------------------- /html/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/html/footer.html -------------------------------------------------------------------------------- /html/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/html/header.html -------------------------------------------------------------------------------- /html/main_card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/html/main_card.html -------------------------------------------------------------------------------- /html/main_category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/html/main_category.html -------------------------------------------------------------------------------- /html/main_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/html/main_search.html -------------------------------------------------------------------------------- /html/skip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/html/skip.html -------------------------------------------------------------------------------- /image/KR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/image/KR.png -------------------------------------------------------------------------------- /image/UK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/image/UK.png -------------------------------------------------------------------------------- /image/US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/image/US.png -------------------------------------------------------------------------------- /image/airbnd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/image/airbnd.svg -------------------------------------------------------------------------------- /image/arrow_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/image/arrow_down.svg -------------------------------------------------------------------------------- /image/btn-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/image/btn-close.png -------------------------------------------------------------------------------- /image/btn-more-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/image/btn-more-hover.svg -------------------------------------------------------------------------------- /image/btn-more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/image/btn-more.svg -------------------------------------------------------------------------------- /image/btn-scroll-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/image/btn-scroll-top.svg -------------------------------------------------------------------------------- /image/happybean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/image/happybean.png -------------------------------------------------------------------------------- /image/icon-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/image/icon-arrow.png -------------------------------------------------------------------------------- /image/icon-lang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/image/icon-lang.png -------------------------------------------------------------------------------- /image/icon-lang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/image/icon-lang.svg -------------------------------------------------------------------------------- /image/logo-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/image/logo-gray.svg -------------------------------------------------------------------------------- /image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/image/logo.png -------------------------------------------------------------------------------- /image/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/image/logo.svg -------------------------------------------------------------------------------- /image/no-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/image/no-image.jpg -------------------------------------------------------------------------------- /image/nodata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/image/nodata.png -------------------------------------------------------------------------------- /image/ogimage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/image/ogimage.jpg -------------------------------------------------------------------------------- /image/ogimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/image/ogimage.png -------------------------------------------------------------------------------- /image/savethechild.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/image/savethechild.svg -------------------------------------------------------------------------------- /image/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/image/search.svg -------------------------------------------------------------------------------- /image/swisscross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/image/swisscross.svg -------------------------------------------------------------------------------- /image/un.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/image/un.svg -------------------------------------------------------------------------------- /image/unicef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/image/unicef.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/index.html -------------------------------------------------------------------------------- /js/common/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/js/common/constants.js -------------------------------------------------------------------------------- /js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/js/index.js -------------------------------------------------------------------------------- /js/modules/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/js/modules/category.js -------------------------------------------------------------------------------- /js/modules/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/js/modules/search.js -------------------------------------------------------------------------------- /js/utils/fetcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/js/utils/fetcher.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | wheel 2 | beautifulsoup4 3 | bs4 4 | requests 5 | urllib3 6 | selenium -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StopWarKr/stopwar/HEAD/robots.txt --------------------------------------------------------------------------------