mirror of
https://github.com/NanmiCoder/MediaCrawler.git
synced 2026-05-27 21:17:27 +08:00
chore: add copyright to every file
This commit is contained in:
@@ -1,3 +1,12 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright (c) 2025 relakkes@gmail.com
|
||||
#
|
||||
# This file is part of MediaCrawler project.
|
||||
# Repository: https://github.com/NanmiCoder/MediaCrawler/blob/main/store/douyin/douyin_store_media.py
|
||||
# GitHub: https://github.com/NanmiCoder
|
||||
# Licensed under NON-COMMERCIAL LEARNING LICENSE 1.1
|
||||
#
|
||||
|
||||
# 声明:本代码仅供学习和研究目的使用。使用者应遵守以下原则:
|
||||
# 1. 不得用于任何商业用途。
|
||||
# 2. 使用时应遵守目标平台的使用条款和robots.txt规则。
|
||||
@@ -23,7 +32,7 @@ class DouYinImage(AbstractStoreImage):
|
||||
async def store_image(self, image_content_item: Dict):
|
||||
"""
|
||||
store content
|
||||
|
||||
|
||||
Args:
|
||||
image_content_item:
|
||||
|
||||
@@ -35,7 +44,7 @@ class DouYinImage(AbstractStoreImage):
|
||||
def make_save_file_name(self, aweme_id: str, extension_file_name: str) -> str:
|
||||
"""
|
||||
make save file name by store type
|
||||
|
||||
|
||||
Args:
|
||||
aweme_id: aweme id
|
||||
extension_file_name: image filename with extension
|
||||
@@ -48,7 +57,7 @@ class DouYinImage(AbstractStoreImage):
|
||||
async def save_image(self, aweme_id: str, pic_content: str, extension_file_name):
|
||||
"""
|
||||
save image to local
|
||||
|
||||
|
||||
Args:
|
||||
aweme_id: aweme id
|
||||
pic_content: image content
|
||||
@@ -70,7 +79,7 @@ class DouYinVideo(AbstractStoreVideo):
|
||||
async def store_video(self, video_content_item: Dict):
|
||||
"""
|
||||
store content
|
||||
|
||||
|
||||
Args:
|
||||
video_content_item:
|
||||
|
||||
@@ -82,7 +91,7 @@ class DouYinVideo(AbstractStoreVideo):
|
||||
def make_save_file_name(self, aweme_id: str, extension_file_name: str) -> str:
|
||||
"""
|
||||
make save file name by store type
|
||||
|
||||
|
||||
Args:
|
||||
aweme_id: aweme id
|
||||
extension_file_name: video filename with extension
|
||||
@@ -95,7 +104,7 @@ class DouYinVideo(AbstractStoreVideo):
|
||||
async def save_video(self, aweme_id: str, video_content: str, extension_file_name):
|
||||
"""
|
||||
save video to local
|
||||
|
||||
|
||||
Args:
|
||||
aweme_id: aweme id
|
||||
video_content: video content
|
||||
|
||||
Reference in New Issue
Block a user