文件名称:python-frontmatter:使用YAML(或其他)主题分析和管理帖子
文件大小:40KB
文件格式:ZIP
更新时间:2024-05-25 07:09:23
python yaml frontmatter Python
Python Frontmatter 风格的YAML前端事物提供了一种有用的方法,可以将任意结构化的元数据添加到文本文档中,而不管类型如何。 这是一个小程序包,用于加载和解析具有YAML(或JSON,TOML或其他)主题的文件(或仅文本)。 安装: pip install python-frontmatter 用法: >> > import frontmatter 从文件名加载帖子: >> > post = frontmatter . load ( 'tests/yaml/hello-world.txt' ) 或文件(或类似文件的对象): >> > with open ( 'tests/yaml/hello-world.txt' ) as f : ... post = frontmatter . load ( f ) 或从文本加载: >> > with open
【文件预览】:
python-frontmatter-master
----.gitignore(701B)
----README.md(2KB)
----.github()
--------workflows()
----tests()
--------test_files.py(1KB)
--------yaml()
--------test_docs.py(386B)
--------toml()
--------unit_test.py(12KB)
--------stub_tests.py(499B)
--------json()
--------empty()
----docs()
--------make.bat(8KB)
--------conf.py(10KB)
--------index.rst(2KB)
--------api.rst(725B)
--------Makefile(8KB)
--------handlers.rst(347B)
----examples()
--------content()
--------__init__.py(0B)
--------reversed.py(3KB)
--------pandoc.py(2KB)
--------sorted.py(499B)
----LICENSE(1KB)
----requirements.txt(18B)
----frontmatter()
--------conftest.py(157B)
--------default_handlers.py(8KB)
--------util.py(316B)
--------__init__.py(8KB)
----MANIFEST.in(79B)
----setup.py(1KB)