source: general/prog/python-modules.xml@ b7f5d5c

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since b7f5d5c was 0c2e5325, checked in by Ken Moffat <ken@…>, 4 years ago

Split old python2 pycairo into pycairo2.xml

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@22670 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 5.6 KB
RevLine 
[ce892ab3]1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6]>
7
[d2b1e2e]8<sect1 id="python-modules" xreflabel="Python Modules">
[ce892ab3]9 <?dbhtml filename="python-modules.html" ?>
10
11 <sect1info>
12 <othername>$LastChangedBy$</othername>
13 <date>$Date$</date>
14 </sect1info>
15
16 <title>Python Modules</title>
17
18 <indexterm zone="python-modules">
[d2b1e2e]19 <primary sortas="a-Python-Modules">Python Modules</primary>
[ce892ab3]20 </indexterm>
21
22 <sect2 role="package">
23 <title>Introduction to Python Modules</title>
24
[66b546a]25 <para>
26 The <application>Python</application> module packages add useful objects
27 to the <application>Python</application> language. Modules utilized by
28 packages throughout BLFS are listed here, along with their dependencies.
29 </para>
[ce892ab3]30
31 <itemizedlist spacing="compact">
[ae96c4b]32 <listitem>
33 <para>
34 <xref linkend="dbus-python"/>
35 </para>
36 </listitem>
[14c0be2f]37 <listitem>
38 <para>
39 <xref linkend="decorator"/>
40 </para>
41 </listitem>
[93883ec]42 <listitem>
[22f9c48]43 <para>
[d3ea9e8]44 <xref linkend="docutils"/>
45 </para>
[22f9c48]46 </listitem>
[ce892ab3]47 <listitem>
[66b546a]48 <para>
[d3ea9e8]49 <xref linkend="pyatspi2"/>
50 </para>
[ce892ab3]51 </listitem>
[a73f7b02]52 <listitem>
53 <para>
54 <xref linkend="pycairo"/>
55 </para>
56 </listitem>
[0c2e5325]57 <listitem>
58 <para>
59 <xref linkend="pycairo2"/>
60 </para>
61 </listitem>
[82eddd4]62 <listitem>
63 <para>
[ceafde50]64 <xref linkend="pycryptodome"/>
[82eddd4]65 </para>
66 </listitem>
[10092cde]67 <listitem>
68 <para>
69 <xref linkend="python-dbusmock"/>
70 </para>
71 </listitem>
[07f61e4]72 <listitem>
73 <para>
74 <xref linkend="pygments"/>
75 </para>
76 </listitem>
[f4472d1]77 <listitem>
[66b546a]78 <para>
79 <xref linkend="pygobject2"/>
80 </para>
[ce892ab3]81 </listitem>
82 <listitem>
[66b546a]83 <para>
84 <xref linkend="pygobject3"/>
85 </para>
[ce892ab3]86 </listitem>
[968dece]87 <listitem>
[66b546a]88 <para>
89 <xref linkend="pygtk"/>
90 </para>
[968dece]91 </listitem>
[d938ca94]92 <listitem>
93 <para>
94 <xref linkend="pyxdg"/>
95 </para>
96 </listitem>
[6b551e8]97<!-- <listitem>
[04dc524d]98 <para>
99 <xref linkend="funcsigs"/>
100 </para>
101 </listitem>
[0499056]102 <listitem>
[22f9c48]103 <para>
104 <xref linkend="Beaker"/>
105 </para>
[6b551e8]106 </listitem> -->
[cd964c8]107 <listitem>
108 <para>
109 <xref linkend="libxml2py2"/>
110 </para>
111 </listitem>
[7d35ee59]112 <listitem>
[23e36d1]113 <para>
114 <xref linkend="lxml"/>
115 </para>
116 </listitem>
[0499056]117 <listitem>
[22f9c48]118 <para>
119 <xref linkend="MarkupSafe"/>
120 </para>
121 </listitem>
[731bf37a]122 <listitem>
[22f9c48]123 <para>
124 <xref linkend="Jinja2"/>
125 </para>
126 </listitem>
[0499056]127 <listitem>
[22f9c48]128 <para>
129 <xref linkend="Mako"/>
130 </para>
131 </listitem>
[14c0be2f]132 <listitem>
133 <para>
134 <xref linkend="python-slip"/>
135 </para>
136 </listitem>
[7d35ee59]137 <listitem>
138 <para>
139 <xref linkend="scour"/>
140 </para>
141 </listitem>
[505c46cc]142 <listitem>
143 <para>
144 <xref linkend="six"/>
145 </para>
146 </listitem>
[731bf37a]147 <listitem>
[22f9c48]148 <para>
149 <xref linkend="PyYAML"/>
150 </para>
151 </listitem>
[ce892ab3]152 </itemizedlist>
153 </sect2>
154
[d2b1e2e]155 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
156 href="dbus-python.xml"/>
[a73f7b02]157
[14c0be2f]158 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
159 href="decorator.xml"/>
160
[d3ea9e8]161 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
162 href="docutils.xml"/>
163
[22f9c48]164 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
165 href="pyatspi2.xml"/>
[7979906]166<!--
[d2b1e2e]167 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
168 href="py2cairo.xml"/>
[7979906]169-->
[d2b1e2e]170 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
171 href="pycairo.xml"/>
[82eddd4]172
[0c2e5325]173 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
174 href="pycairo2.xml"/>
175
[82eddd4]176 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[ceafde50]177 href="pycryptodome.xml"/>
[a73f7b02]178
[10092cde]179 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
180 href="python-dbusmock.xml"/>
181
[07f61e4]182 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
183 href="pygments.xml"/>
184
[d2b1e2e]185 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
186 href="pygobject2.xml"/>
[a73f7b02]187
[d2b1e2e]188 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
189 href="pygobject3.xml"/>
[a73f7b02]190
[d2b1e2e]191 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
192 href="pygtk.xml"/>
[f4472d1]193
[d2b1e2e]194 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
195 href="pyxdg.xml"/>
[d938ca94]196
[879932f]197<!--
[22f9c48]198 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
199 href="setuptools.xml"/>
[879932f]200-->
[22f9c48]201
[4701264]202<!-- <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
203 href="funcsigs.xml"/> -->
[04dc524d]204
[6b551e8]205<!-- <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
206 href="beaker.xml"/>-->
[22f9c48]207
[cd964c8]208 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
209 href="libxml2py2.xml"/>
210
[23e36d1]211 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
212 href="lxml.xml"/>
213
[22f9c48]214 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
215 href="markupsafe.xml"/>
216
217 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
218 href="jinja2.xml"/>
219
220 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
221 href="mako.xml"/>
222
[14c0be2f]223 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
224 href="python-slip.xml"/>
225
[22f9c48]226 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
227 href="pyyaml.xml"/>
228
[7d35ee59]229 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
230 href="scour.xml"/>
231
[505c46cc]232 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
233 href="six.xml"/>
234
[ce892ab3]235</sect1>
Note: See TracBrowser for help on using the repository browser.