31 lines
522 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# -*- coding: utf-8 -*-
"""
小红书笔记上传器模块
支持:
- 图文笔记1-9张图片
- 视频笔记
- 定时发布
- 地点设置
- 封面、滤镜等高级功能
"""
from .main import (
XiaoHongShuNote,
XiaoHongShuImageNote,
XiaoHongShuVideoNote,
xiaohongshu_note_setup,
xiaohongshu_note_cookie_gen
)
__all__ = [
'XiaoHongShuNote',
'XiaoHongShuImageNote',
'XiaoHongShuVideoNote',
'xiaohongshu_note_setup',
'xiaohongshu_note_cookie_gen',
]
__version__ = '1.0.0'