提交 41d548aa 编写于 作者: ToTensor's avatar ToTensor

extract success

上级 cd3eedc5
...@@ -12,4 +12,5 @@ if __name__ == "__main__": ...@@ -12,4 +12,5 @@ if __name__ == "__main__":
print('-------' * 20) print('-------' * 20)
print('开始向社区发帖') print('开始向社区发帖')
book_dir = 'data/{}/'.format(key) book_dir = 'data/{}/'.format(key)
# send_topic(web_url, book_dir) mapping_path = 'data/{}.json'.format(key)
\ No newline at end of file send_topic(web_url, book_dir, mapping_path)
\ No newline at end of file
...@@ -65,7 +65,7 @@ def post(url, params, retry=3, headers=None): ...@@ -65,7 +65,7 @@ def post(url, params, retry=3, headers=None):
raise error raise error
def send_topic(web_url, book_dir): def send_topic(web_url, book_dir, mapping_path):
data_dir = 'data' data_dir = 'data'
# web_url = "https://codechina.csdn.net/csdn/book_code_c798a5992a654857867ec15660e1c32a/-/blob/master/" # web_url = "https://codechina.csdn.net/csdn/book_code_c798a5992a654857867ec15660e1c32a/-/blob/master/"
request_url = 'http://ccloud.internal.csdn.net/v1/internal/community/content/sendTopic' request_url = 'http://ccloud.internal.csdn.net/v1/internal/community/content/sendTopic'
...@@ -75,8 +75,6 @@ def send_topic(web_url, book_dir): ...@@ -75,8 +75,6 @@ def send_topic(web_url, book_dir):
files = get_all_files(book_dir) files = get_all_files(book_dir)
print(files) print(files)
mapping_path = 'data/深入剖析Nginx.json'
if not os.path.exists(mapping_path): if not os.path.exists(mapping_path):
chapter_code_mapping = {} chapter_code_mapping = {}
save_mapping = json.dumps(chapter_code_mapping, save_mapping = json.dumps(chapter_code_mapping,
...@@ -101,11 +99,11 @@ def send_topic(web_url, book_dir): ...@@ -101,11 +99,11 @@ def send_topic(web_url, book_dir):
send_topic_request_param = { send_topic_request_param = {
"type": "long_text", "type": "long_text",
"cateId": 20966, "cateId": 20967,
"content": topic_content, "content": topic_content,
"topicTitle": topic_title, "topicTitle": topic_title,
"mdContent": topic_content, "mdContent": topic_content,
"communityId": 3821, "communityId": 3823,
"loginUserName": "BBS_Assistant", "loginUserName": "BBS_Assistant",
"bizNo": "ebook" "bizNo": "ebook"
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册