31 lines
522 B
Python
Raw Normal View History

# -*- 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'