PageRenderTime 53ms CodeModel.GetById 21ms RepoModel.GetById 1ms app.codeStats 0ms

/public_html/apidocs/pymine.beautifulsoup.BeautifulSoup.ICantBelieveItsBeautifulSoup.html

http://pymine.googlecode.com/
HTML | 570 lines | 378 code | 192 blank | 0 comment | 0 complexity | f3bc9978c4f4cd785b24d74f172036c5 MD5 | raw file
Possible License(s): Apache-2.0, LGPL-2.1
  1. <!DOCTYPE html
  2. PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  3. "DTD/xhtml1-strict.dtd">
  4. <html>
  5. <head>
  6. <title>API docs for &ldquo;pymine.beautifulsoup.BeautifulSoup.ICantBelieveItsBeautifulSoup&rdquo;</title>
  7. <meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
  8. <link href="apidocs.css" type="text/css" rel="stylesheet" />
  9. </head>
  10. <body>
  11. <h1 class="class">Class p.b.B.ICantBelieveItsBeautifulSoup(<a href="pymine.beautifulsoup.BeautifulSoup.BeautifulSoup.html">BeautifulSoup</a>):</h1>
  12. <p>
  13. <span id="part">Part of <a href="pymine.html">pymine</a>.<a href="pymine.beautifulsoup.html">beautifulsoup</a>.<a href="pymine.beautifulsoup.BeautifulSoup.html">BeautifulSoup</a></span>
  14. <a href="classIndex.html#pymine.beautifulsoup.BeautifulSoup.ICantBelieveItsBeautifulSoup">View In Hierarchy</a>
  15. </p>
  16. <div>
  17. <p>Known subclasses: <a href="pymine.beautifulsoup.BeautifulSoup.RobustWackAssHTMLParser.html">pymine.beautifulsoup.BeautifulSoup.RobustWackAssHTMLParser</a></p>
  18. </div>
  19. <pre>The BeautifulSoup class is oriented towards skipping over
  20. common HTML errors like unclosed tags. However, sometimes it makes
  21. errors of its own. For instance, consider this fragment:
  22. &lt;b&gt;Foo&lt;b&gt;Bar&lt;/b&gt;&lt;/b&gt;
  23. This is perfectly valid (if bizarre) HTML. However, the
  24. BeautifulSoup class will implicitly close the first b tag when it
  25. encounters the second 'b'. It will think the author wrote
  26. "&lt;b&gt;Foo&lt;b&gt;Bar", and didn't close the first 'b' tag, because
  27. there's no real-world reason to bold something that's already
  28. bold. When it encounters '&lt;/b&gt;&lt;/b&gt;' it will close two more 'b'
  29. tags, for a grand total of three tags closed instead of two. This
  30. can throw off the rest of your document structure. The same is
  31. true of a number of other tags, listed below.
  32. It's much more common for someone to forget to close a 'b' tag
  33. than to actually use nested 'b' tags, and the BeautifulSoup class
  34. handles the common case. This class handles the not-co-common
  35. case: where you can't believe someone wrote what they did, but
  36. it's valid HTML and BeautifulSoup screwed up by assuming it
  37. wouldn't be.</pre>
  38. <div id="splitTables">
  39. <p>
  40. Inherited from <a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html">BeautifulStoneSoup</a> (via <a href="pymine.beautifulsoup.BeautifulSoup.BeautifulSoup.html">BeautifulSoup</a>):
  41. </p>
  42. <table class="children sortable" id="id71">
  43. <tr class="basemethod">
  44. <td>Method</td>
  45. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#convert_charref">convert_charref</a></td>
  46. <td><span>This method fixes a bug in Python's SGMLParser.</span></td>
  47. </tr><tr class="basemethod">
  48. <td>Method</td>
  49. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#_feed">_feed</a></td>
  50. <td><span class="undocumented">Undocumented</span></td>
  51. </tr><tr class="basemethod">
  52. <td>Method</td>
  53. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#__getattr__">__getattr__</a></td>
  54. <td><span>This method routes method call requests to either the SGMLParser</span></td>
  55. </tr><tr class="basemethod">
  56. <td>Method</td>
  57. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#isSelfClosingTag">isSelfClosingTag</a></td>
  58. <td><span>Returns true iff the given string is the name of a</span></td>
  59. </tr><tr class="basemethod">
  60. <td>Method</td>
  61. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#reset">reset</a></td>
  62. <td><span class="undocumented">Undocumented</span></td>
  63. </tr><tr class="basemethod">
  64. <td>Method</td>
  65. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#popTag">popTag</a></td>
  66. <td><span class="undocumented">Undocumented</span></td>
  67. </tr><tr class="basemethod">
  68. <td>Method</td>
  69. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#pushTag">pushTag</a></td>
  70. <td><span class="undocumented">Undocumented</span></td>
  71. </tr><tr class="basemethod">
  72. <td>Method</td>
  73. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#endData">endData</a></td>
  74. <td><span class="undocumented">Undocumented</span></td>
  75. </tr><tr class="basemethod">
  76. <td>Method</td>
  77. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#_popToTag">_popToTag</a></td>
  78. <td><span>Pops the tag stack up to and including the most recent</span></td>
  79. </tr><tr class="basemethod">
  80. <td>Method</td>
  81. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#_smartPop">_smartPop</a></td>
  82. <td><span>We need to pop up to the previous tag of this type, unless</span></td>
  83. </tr><tr class="basemethod">
  84. <td>Method</td>
  85. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#unknown_starttag">unknown_starttag</a></td>
  86. <td><span class="undocumented">Undocumented</span></td>
  87. </tr><tr class="basemethod">
  88. <td>Method</td>
  89. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#unknown_endtag">unknown_endtag</a></td>
  90. <td><span class="undocumented">Undocumented</span></td>
  91. </tr><tr class="basemethod">
  92. <td>Method</td>
  93. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#handle_data">handle_data</a></td>
  94. <td><span class="undocumented">Undocumented</span></td>
  95. </tr><tr class="basemethod">
  96. <td>Method</td>
  97. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#_toStringSubclass">_toStringSubclass</a></td>
  98. <td><span>Adds a certain piece of text to the tree as a NavigableString</span></td>
  99. </tr><tr class="basemethod">
  100. <td>Method</td>
  101. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#handle_pi">handle_pi</a></td>
  102. <td><span>Handle a processing instruction as a ProcessingInstruction</span></td>
  103. </tr><tr class="basemethod">
  104. <td>Method</td>
  105. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#handle_comment">handle_comment</a></td>
  106. <td><span>Handle comments as Comment objects.</span></td>
  107. </tr><tr class="basemethod">
  108. <td>Method</td>
  109. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#handle_charref">handle_charref</a></td>
  110. <td><span>Handle character references as data.</span></td>
  111. </tr><tr class="basemethod">
  112. <td>Method</td>
  113. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#handle_entityref">handle_entityref</a></td>
  114. <td><span>Handle entity references as data, possibly converting known</span></td>
  115. </tr><tr class="basemethod">
  116. <td>Method</td>
  117. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#handle_decl">handle_decl</a></td>
  118. <td><span>Handle DOCTYPEs and the like as Declaration objects.</span></td>
  119. </tr><tr class="basemethod">
  120. <td>Method</td>
  121. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#parse_declaration">parse_declaration</a></td>
  122. <td><span>Treat a bogus SGML declaration as raw data. Treat a CDATA</span></td>
  123. </tr>
  124. </table>
  125. <p>
  126. Inherited from <a href="pymine.beautifulsoup.BeautifulSoup.Tag.html">Tag</a> (via <a href="pymine.beautifulsoup.BeautifulSoup.BeautifulSoup.html">BeautifulSoup</a>, <a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html">BeautifulStoneSoup</a>):
  127. </p>
  128. <table class="children sortable" id="id72">
  129. <tr class="basemethod">
  130. <td>Method</td>
  131. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#_invert">_invert</a></td>
  132. <td><span>Cheap function to invert a hash.</span></td>
  133. </tr><tr class="basemethod">
  134. <td>Method</td>
  135. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#_convertEntities">_convertEntities</a></td>
  136. <td><span>Used in a call to re.sub to replace HTML, XML, and numeric</span></td>
  137. </tr><tr class="basemethod">
  138. <td>Method</td>
  139. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#getString">getString</a></td>
  140. <td><span class="undocumented">Undocumented</span></td>
  141. </tr><tr class="basemethod">
  142. <td>Method</td>
  143. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#setString">setString</a></td>
  144. <td><span>Replace the contents of the tag with a string</span></td>
  145. </tr><tr class="basemethod">
  146. <td>Method</td>
  147. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#getText">getText</a></td>
  148. <td><span class="undocumented">Undocumented</span></td>
  149. </tr><tr class="basemethod">
  150. <td>Method</td>
  151. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#get">get</a></td>
  152. <td><span>Returns the value of the 'key' attribute for the tag, or</span></td>
  153. </tr><tr class="basemethod">
  154. <td>Method</td>
  155. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#clear">clear</a></td>
  156. <td><span>Extract all children.</span></td>
  157. </tr><tr class="basemethod">
  158. <td>Method</td>
  159. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#index">index</a></td>
  160. <td><span class="undocumented">Undocumented</span></td>
  161. </tr><tr class="basemethod">
  162. <td>Method</td>
  163. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#has_key">has_key</a></td>
  164. <td><span class="undocumented">Undocumented</span></td>
  165. </tr><tr class="basemethod">
  166. <td>Method</td>
  167. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#__getitem__">__getitem__</a></td>
  168. <td><span>tag[key] returns the value of the 'key' attribute for the tag,</span></td>
  169. </tr><tr class="basemethod">
  170. <td>Method</td>
  171. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#__iter__">__iter__</a></td>
  172. <td><span>Iterating over a tag iterates over its contents.</span></td>
  173. </tr><tr class="basemethod">
  174. <td>Method</td>
  175. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#__len__">__len__</a></td>
  176. <td><span>The length of a tag is the length of its list of contents.</span></td>
  177. </tr><tr class="basemethod">
  178. <td>Method</td>
  179. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#__contains__">__contains__</a></td>
  180. <td><span class="undocumented">Undocumented</span></td>
  181. </tr><tr class="basemethod">
  182. <td>Method</td>
  183. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#__nonzero__">__nonzero__</a></td>
  184. <td><span>A tag is non-None even if it has no contents.</span></td>
  185. </tr><tr class="basemethod">
  186. <td>Method</td>
  187. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#__setitem__">__setitem__</a></td>
  188. <td><span>Setting tag[key] sets the value of the 'key' attribute for the</span></td>
  189. </tr><tr class="basemethod">
  190. <td>Method</td>
  191. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#__delitem__">__delitem__</a></td>
  192. <td><span>Deleting tag[key] deletes all 'key' attributes for the tag.</span></td>
  193. </tr><tr class="basemethod">
  194. <td>Method</td>
  195. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#__call__">__call__</a></td>
  196. <td><span>Calling a tag like a function is the same as calling its</span></td>
  197. </tr><tr class="basemethod">
  198. <td>Method</td>
  199. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#__eq__">__eq__</a></td>
  200. <td><span>Returns true iff this tag has the same name, the same attributes,</span></td>
  201. </tr><tr class="basemethod">
  202. <td>Method</td>
  203. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#__ne__">__ne__</a></td>
  204. <td><span>Returns true iff this tag is not identical to the other tag,</span></td>
  205. </tr><tr class="basemethod">
  206. <td>Method</td>
  207. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#__repr__">__repr__</a></td>
  208. <td><span>Renders this tag as a string.</span></td>
  209. </tr><tr class="basemethod">
  210. <td>Method</td>
  211. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#__unicode__">__unicode__</a></td>
  212. <td><span class="undocumented">Undocumented</span></td>
  213. </tr><tr class="basemethod">
  214. <td>Method</td>
  215. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#_sub_entity">_sub_entity</a></td>
  216. <td><span>Used with a regular expression to substitute the</span></td>
  217. </tr><tr class="basemethod">
  218. <td>Method</td>
  219. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#__str__">__str__</a></td>
  220. <td><span>Returns a string or Unicode representation of this tag and</span></td>
  221. </tr><tr class="basemethod">
  222. <td>Method</td>
  223. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#decompose">decompose</a></td>
  224. <td><span>Recursively destroys the contents of this tree.</span></td>
  225. </tr><tr class="basemethod">
  226. <td>Method</td>
  227. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#prettify">prettify</a></td>
  228. <td><span class="undocumented">Undocumented</span></td>
  229. </tr><tr class="basemethod">
  230. <td>Method</td>
  231. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#renderContents">renderContents</a></td>
  232. <td><span>Renders the contents of this tag as a string in the given</span></td>
  233. </tr><tr class="basemethod">
  234. <td>Method</td>
  235. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#find">find</a></td>
  236. <td><span>Return only the first child of this Tag matching the given</span></td>
  237. </tr><tr class="basemethod">
  238. <td>Method</td>
  239. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#findAll">findAll</a></td>
  240. <td><span>Extracts a list of Tag objects that match the given</span></td>
  241. </tr><tr class="basemethod">
  242. <td>Method</td>
  243. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#fetchText">fetchText</a></td>
  244. <td><span class="undocumented">Undocumented</span></td>
  245. </tr><tr class="basemethod">
  246. <td>Method</td>
  247. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#firstText">firstText</a></td>
  248. <td><span class="undocumented">Undocumented</span></td>
  249. </tr><tr class="basemethod">
  250. <td>Method</td>
  251. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#_getAttrMap">_getAttrMap</a></td>
  252. <td><span>Initializes a map representation of this tag's attributes,</span></td>
  253. </tr><tr class="basemethod">
  254. <td>Method</td>
  255. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#childGenerator">childGenerator</a></td>
  256. <td><span class="undocumented">Undocumented</span></td>
  257. </tr><tr class="basemethod">
  258. <td>Method</td>
  259. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#recursiveChildGenerator">recursiveChildGenerator</a></td>
  260. <td><span class="undocumented">Undocumented</span></td>
  261. </tr>
  262. </table>
  263. <p>
  264. Inherited from <a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html">PageElement</a> (via <a href="pymine.beautifulsoup.BeautifulSoup.BeautifulSoup.html">BeautifulSoup</a>, <a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html">BeautifulStoneSoup</a>, <a href="pymine.beautifulsoup.BeautifulSoup.Tag.html">Tag</a>):
  265. </p>
  266. <table class="children sortable" id="id73">
  267. <tr class="basemethod">
  268. <td>Method</td>
  269. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#setup">setup</a></td>
  270. <td><span>Sets up the initial relations between this element and</span></td>
  271. </tr><tr class="basemethod">
  272. <td>Method</td>
  273. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#replaceWith">replaceWith</a></td>
  274. <td><span class="undocumented">Undocumented</span></td>
  275. </tr><tr class="basemethod">
  276. <td>Method</td>
  277. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#replaceWithChildren">replaceWithChildren</a></td>
  278. <td><span class="undocumented">Undocumented</span></td>
  279. </tr><tr class="basemethod">
  280. <td>Method</td>
  281. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#extract">extract</a></td>
  282. <td><span>Destructively rips this element out of the tree.</span></td>
  283. </tr><tr class="basemethod">
  284. <td>Method</td>
  285. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#_lastRecursiveChild">_lastRecursiveChild</a></td>
  286. <td><span>Finds the last element beneath this object to be parsed.</span></td>
  287. </tr><tr class="basemethod">
  288. <td>Method</td>
  289. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#insert">insert</a></td>
  290. <td><span class="undocumented">Undocumented</span></td>
  291. </tr><tr class="basemethod">
  292. <td>Method</td>
  293. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#append">append</a></td>
  294. <td><span>Appends the given tag to the contents of this tag.</span></td>
  295. </tr><tr class="basemethod">
  296. <td>Method</td>
  297. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#findNext">findNext</a></td>
  298. <td><span>Returns the first item that matches the given criteria and</span></td>
  299. </tr><tr class="basemethod">
  300. <td>Method</td>
  301. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#findAllNext">findAllNext</a></td>
  302. <td><span>Returns all items that match the given criteria and appear</span></td>
  303. </tr><tr class="basemethod">
  304. <td>Method</td>
  305. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#findNextSibling">findNextSibling</a></td>
  306. <td><span>Returns the closest sibling to this Tag that matches the</span></td>
  307. </tr><tr class="basemethod">
  308. <td>Method</td>
  309. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#findNextSiblings">findNextSiblings</a></td>
  310. <td><span>Returns the siblings of this Tag that match the given</span></td>
  311. </tr><tr class="basemethod">
  312. <td>Method</td>
  313. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#findPrevious">findPrevious</a></td>
  314. <td><span>Returns the first item that matches the given criteria and</span></td>
  315. </tr><tr class="basemethod">
  316. <td>Method</td>
  317. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#findAllPrevious">findAllPrevious</a></td>
  318. <td><span>Returns all items that match the given criteria and appear</span></td>
  319. </tr><tr class="basemethod">
  320. <td>Method</td>
  321. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#findPreviousSibling">findPreviousSibling</a></td>
  322. <td><span>Returns the closest sibling to this Tag that matches the</span></td>
  323. </tr><tr class="basemethod">
  324. <td>Method</td>
  325. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#findPreviousSiblings">findPreviousSiblings</a></td>
  326. <td><span>Returns the siblings of this Tag that match the given</span></td>
  327. </tr><tr class="basemethod">
  328. <td>Method</td>
  329. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#findParent">findParent</a></td>
  330. <td><span>Returns the closest parent of this Tag that matches the given</span></td>
  331. </tr><tr class="basemethod">
  332. <td>Method</td>
  333. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#findParents">findParents</a></td>
  334. <td><span>Returns the parents of this Tag that match the given</span></td>
  335. </tr><tr class="basemethod">
  336. <td>Method</td>
  337. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#_findOne">_findOne</a></td>
  338. <td><span class="undocumented">Undocumented</span></td>
  339. </tr><tr class="basemethod">
  340. <td>Method</td>
  341. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#_findAll">_findAll</a></td>
  342. <td><span>Iterates over a generator looking for things that match.</span></td>
  343. </tr><tr class="basemethod">
  344. <td>Method</td>
  345. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#nextGenerator">nextGenerator</a></td>
  346. <td><span class="undocumented">Undocumented</span></td>
  347. </tr><tr class="basemethod">
  348. <td>Method</td>
  349. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#nextSiblingGenerator">nextSiblingGenerator</a></td>
  350. <td><span class="undocumented">Undocumented</span></td>
  351. </tr><tr class="basemethod">
  352. <td>Method</td>
  353. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#previousGenerator">previousGenerator</a></td>
  354. <td><span class="undocumented">Undocumented</span></td>
  355. </tr><tr class="basemethod">
  356. <td>Method</td>
  357. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#previousSiblingGenerator">previousSiblingGenerator</a></td>
  358. <td><span class="undocumented">Undocumented</span></td>
  359. </tr><tr class="basemethod">
  360. <td>Method</td>
  361. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#parentGenerator">parentGenerator</a></td>
  362. <td><span class="undocumented">Undocumented</span></td>
  363. </tr><tr class="basemethod">
  364. <td>Method</td>
  365. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#substituteEncoding">substituteEncoding</a></td>
  366. <td><span class="undocumented">Undocumented</span></td>
  367. </tr><tr class="basemethod">
  368. <td>Method</td>
  369. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#toEncoding">toEncoding</a></td>
  370. <td><span>Encodes an object to a string in some encoding, or to Unicode.</span></td>
  371. </tr>
  372. </table>
  373. </div>
  374. <address>
  375. <a href="index.html">API Documentation</a> for pymine, generated by <a href="http://codespeak.net/~mwh/pydoctor/">pydoctor</a> at 2010-04-07 23:15:24.
  376. </address>
  377. </body>
  378. </html>