Skip to content

Commit

Permalink
Rename Package
Browse files Browse the repository at this point in the history
korean_news_crawler -> korea_news_crawler
  • Loading branch information
lumyjuwon committed May 4, 2019
1 parent a526f59 commit f910f1b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,7 @@ korean_news_crawler.egg-info/PKG-INFO
korean_news_crawler.egg-info/requires.txt
korean_news_crawler.egg-info/SOURCES.txt
korean_news_crawler.egg-info/top_level.txt
korea_news_crawler/__pycache__/exceptions.cpython-36.pyc
korea_news_crawler/__pycache__/articleparser.cpython-36.pyc
korea_news_crawler/__pycache__/articlecrawler.cpython-36.pyc
.idea/KoreaNewsCrawler.iml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
from time import sleep
from bs4 import BeautifulSoup
from multiprocessing import Process
from korean_news_crawler.exceptions import *
from korean_news_crawler.articleparser import ArticleParser
from korea_news_crawler.exceptions import *
from korea_news_crawler.articleparser import ArticleParser
import os
import calendar
import requests
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from korean_news_crawler.articlecrawler import ArticleCrawler
from korea_news_crawler.articlecrawler import ArticleCrawler

if __name__ == "__main__":
Crawler = ArticleCrawler()
Expand Down
File renamed without changes.

0 comments on commit f910f1b

Please sign in to comment.