fhit 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
fhit/__init__.py ADDED
File without changes
@@ -0,0 +1,46 @@
1
+ Metadata-Version: 2.4
2
+ Name: fhit
3
+ Version: 0.1.0
4
+ Summary:
5
+ Author: wsd
6
+ Author-email: wsd@fhit.cn
7
+ Requires-Python: >=3.13
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.13
10
+ Classifier: Programming Language :: Python :: 3.14
11
+ Description-Content-Type: text/markdown
12
+
13
+ # fhit library
14
+
15
+ 本项目在`python-docx`基础上,做了一些调整,具体如下:
16
+
17
+ - 增加word文档的图表功能
18
+ - 重新打包为 fhdocx
19
+
20
+ 以下为 python-docx 库的概述
21
+
22
+ *python-docx* is a Python library for reading, creating, and updating Microsoft Word 2007+ (.docx) files.
23
+
24
+ ## Installation
25
+
26
+ ```
27
+ pip install python-docx
28
+ ```
29
+
30
+ ## Example
31
+
32
+ ```python
33
+ >>> from docx import Document
34
+
35
+ >>> document = Document()
36
+ >>> document.add_paragraph("It was a dark and stormy night.")
37
+ <docx.text.paragraph.Paragraph object at 0x10f19e760>
38
+ >>> document.save("dark-and-stormy.docx")
39
+
40
+ >>> document = Document("dark-and-stormy.docx")
41
+ >>> document.paragraphs[0].text
42
+ 'It was a dark and stormy night.'
43
+ ```
44
+
45
+ More information is available in the [python-docx documentation](https://python-docx.readthedocs.org/en/latest/)
46
+
@@ -0,0 +1,4 @@
1
+ fhit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ fhit-0.1.0.dist-info/METADATA,sha256=AzosACbvSeV2aWGo6r8A1TVX_ZFQwbPx5INMPWlM9Is,1126
3
+ fhit-0.1.0.dist-info/WHEEL,sha256=kJCRJT_g0adfAJzTx2GUMmS80rTJIVHRCfG0DQgLq3o,88
4
+ fhit-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 2.3.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any