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