├── .gitignore ├── README.md ├── crawl_movie.py ├── crypto_currency ├── README.md ├── crawl_bitcoin_forum.py ├── crawl_ethereum_forum.py ├── crawl_price.ipynb └── crawl_ripple_forum.py ├── joseon_king_record.py ├── naver_medical.ipynb ├── naver_movie_actor.py ├── news_crawl.py ├── nyt_crawl.py └── stock_market └── crawl_stock.py /.gitignore: -------------------------------------------------------------------------------- 1 | chromedriver 2 | .vscode/* 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyeongpil/crawler/HEAD/README.md -------------------------------------------------------------------------------- /crawl_movie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyeongpil/crawler/HEAD/crawl_movie.py -------------------------------------------------------------------------------- /crypto_currency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyeongpil/crawler/HEAD/crypto_currency/README.md -------------------------------------------------------------------------------- /crypto_currency/crawl_bitcoin_forum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyeongpil/crawler/HEAD/crypto_currency/crawl_bitcoin_forum.py -------------------------------------------------------------------------------- /crypto_currency/crawl_ethereum_forum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyeongpil/crawler/HEAD/crypto_currency/crawl_ethereum_forum.py -------------------------------------------------------------------------------- /crypto_currency/crawl_price.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyeongpil/crawler/HEAD/crypto_currency/crawl_price.ipynb -------------------------------------------------------------------------------- /crypto_currency/crawl_ripple_forum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyeongpil/crawler/HEAD/crypto_currency/crawl_ripple_forum.py -------------------------------------------------------------------------------- /joseon_king_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyeongpil/crawler/HEAD/joseon_king_record.py -------------------------------------------------------------------------------- /naver_medical.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyeongpil/crawler/HEAD/naver_medical.ipynb -------------------------------------------------------------------------------- /naver_movie_actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyeongpil/crawler/HEAD/naver_movie_actor.py -------------------------------------------------------------------------------- /news_crawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyeongpil/crawler/HEAD/news_crawl.py -------------------------------------------------------------------------------- /nyt_crawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyeongpil/crawler/HEAD/nyt_crawl.py -------------------------------------------------------------------------------- /stock_market/crawl_stock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyeongpil/crawler/HEAD/stock_market/crawl_stock.py --------------------------------------------------------------------------------