PageRenderTime 39ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

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

http://pymine.googlecode.com/
HTML | 591 lines | 391 code | 200 blank | 0 comment | 0 complexity | b279d7634625a6e97d63368522184464 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.BeautifulSOAP&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.BeautifulSOAP(<a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html">BeautifulStoneSoup</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.BeautifulSOAP">View In Hierarchy</a>
  15. </p>
  16. <div>
  17. <p>Known subclasses: <a href="pymine.beautifulsoup.BeautifulSoup.SimplifyingSOAPParser.html">pymine.beautifulsoup.BeautifulSoup.SimplifyingSOAPParser</a></p>
  18. </div>
  19. <pre>This class will push a tag with only a single string child into
  20. the tag's parent as an attribute. The attribute's name is the tag
  21. name, and the value is the string child. An example should give
  22. the flavor of the change:
  23. &lt;foo&gt;&lt;bar&gt;baz&lt;/bar&gt;&lt;/foo&gt;
  24. =&gt;
  25. &lt;foo bar="baz"&gt;&lt;bar&gt;baz&lt;/bar&gt;&lt;/foo&gt;
  26. You can then access fooTag['bar'] instead of fooTag.barTag.string.
  27. This is, of course, useful for scraping structures that tend to
  28. use subelements instead of attributes, such as SOAP messages. Note
  29. that it modifies its input, so don't print the modified version
  30. out.
  31. I'm not sure how many people really want to use this class; let me
  32. know if you do. Mainly I like the name.</pre>
  33. <div id="splitTables">
  34. <table class="children sortable" id="id77">
  35. <tr class="method">
  36. <td>Method</td>
  37. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulSOAP.html#popTag">popTag</a></td>
  38. <td><span class="undocumented">Undocumented</span></td>
  39. </tr>
  40. </table>
  41. <p>
  42. Inherited from <a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html">BeautifulStoneSoup</a>:
  43. </p>
  44. <table class="children sortable" id="id78">
  45. <tr class="basemethod">
  46. <td>Method</td>
  47. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#__init__">__init__</a></td>
  48. <td><span>The Soup object is initialized as the 'root tag', and the</span></td>
  49. </tr><tr class="basemethod">
  50. <td>Method</td>
  51. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#convert_charref">convert_charref</a></td>
  52. <td><span>This method fixes a bug in Python's SGMLParser.</span></td>
  53. </tr><tr class="basemethod">
  54. <td>Method</td>
  55. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#_feed">_feed</a></td>
  56. <td><span class="undocumented">Undocumented</span></td>
  57. </tr><tr class="basemethod">
  58. <td>Method</td>
  59. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#__getattr__">__getattr__</a></td>
  60. <td><span>This method routes method call requests to either the SGMLParser</span></td>
  61. </tr><tr class="basemethod">
  62. <td>Method</td>
  63. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#isSelfClosingTag">isSelfClosingTag</a></td>
  64. <td><span>Returns true iff the given string is the name of a</span></td>
  65. </tr><tr class="basemethod">
  66. <td>Method</td>
  67. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#reset">reset</a></td>
  68. <td><span class="undocumented">Undocumented</span></td>
  69. </tr><tr class="basemethod">
  70. <td>Method</td>
  71. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#pushTag">pushTag</a></td>
  72. <td><span class="undocumented">Undocumented</span></td>
  73. </tr><tr class="basemethod">
  74. <td>Method</td>
  75. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#endData">endData</a></td>
  76. <td><span class="undocumented">Undocumented</span></td>
  77. </tr><tr class="basemethod">
  78. <td>Method</td>
  79. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#_popToTag">_popToTag</a></td>
  80. <td><span>Pops the tag stack up to and including the most recent</span></td>
  81. </tr><tr class="basemethod">
  82. <td>Method</td>
  83. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#_smartPop">_smartPop</a></td>
  84. <td><span>We need to pop up to the previous tag of this type, unless</span></td>
  85. </tr><tr class="basemethod">
  86. <td>Method</td>
  87. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#unknown_starttag">unknown_starttag</a></td>
  88. <td><span class="undocumented">Undocumented</span></td>
  89. </tr><tr class="basemethod">
  90. <td>Method</td>
  91. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#unknown_endtag">unknown_endtag</a></td>
  92. <td><span class="undocumented">Undocumented</span></td>
  93. </tr><tr class="basemethod">
  94. <td>Method</td>
  95. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#handle_data">handle_data</a></td>
  96. <td><span class="undocumented">Undocumented</span></td>
  97. </tr><tr class="basemethod">
  98. <td>Method</td>
  99. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#_toStringSubclass">_toStringSubclass</a></td>
  100. <td><span>Adds a certain piece of text to the tree as a NavigableString</span></td>
  101. </tr><tr class="basemethod">
  102. <td>Method</td>
  103. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#handle_pi">handle_pi</a></td>
  104. <td><span>Handle a processing instruction as a ProcessingInstruction</span></td>
  105. </tr><tr class="basemethod">
  106. <td>Method</td>
  107. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#handle_comment">handle_comment</a></td>
  108. <td><span>Handle comments as Comment objects.</span></td>
  109. </tr><tr class="basemethod">
  110. <td>Method</td>
  111. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#handle_charref">handle_charref</a></td>
  112. <td><span>Handle character references as data.</span></td>
  113. </tr><tr class="basemethod">
  114. <td>Method</td>
  115. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#handle_entityref">handle_entityref</a></td>
  116. <td><span>Handle entity references as data, possibly converting known</span></td>
  117. </tr><tr class="basemethod">
  118. <td>Method</td>
  119. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#handle_decl">handle_decl</a></td>
  120. <td><span>Handle DOCTYPEs and the like as Declaration objects.</span></td>
  121. </tr><tr class="basemethod">
  122. <td>Method</td>
  123. <td><a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#parse_declaration">parse_declaration</a></td>
  124. <td><span>Treat a bogus SGML declaration as raw data. Treat a CDATA</span></td>
  125. </tr>
  126. </table>
  127. <p>
  128. Inherited from <a href="pymine.beautifulsoup.BeautifulSoup.Tag.html">Tag</a> (via <a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html">BeautifulStoneSoup</a>):
  129. </p>
  130. <table class="children sortable" id="id79">
  131. <tr class="basemethod">
  132. <td>Method</td>
  133. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#_invert">_invert</a></td>
  134. <td><span>Cheap function to invert a hash.</span></td>
  135. </tr><tr class="basemethod">
  136. <td>Method</td>
  137. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#_convertEntities">_convertEntities</a></td>
  138. <td><span>Used in a call to re.sub to replace HTML, XML, and numeric</span></td>
  139. </tr><tr class="basemethod">
  140. <td>Method</td>
  141. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#getString">getString</a></td>
  142. <td><span class="undocumented">Undocumented</span></td>
  143. </tr><tr class="basemethod">
  144. <td>Method</td>
  145. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#setString">setString</a></td>
  146. <td><span>Replace the contents of the tag with a string</span></td>
  147. </tr><tr class="basemethod">
  148. <td>Method</td>
  149. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#getText">getText</a></td>
  150. <td><span class="undocumented">Undocumented</span></td>
  151. </tr><tr class="basemethod">
  152. <td>Method</td>
  153. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#get">get</a></td>
  154. <td><span>Returns the value of the 'key' attribute for the tag, or</span></td>
  155. </tr><tr class="basemethod">
  156. <td>Method</td>
  157. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#clear">clear</a></td>
  158. <td><span>Extract all children.</span></td>
  159. </tr><tr class="basemethod">
  160. <td>Method</td>
  161. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#index">index</a></td>
  162. <td><span class="undocumented">Undocumented</span></td>
  163. </tr><tr class="basemethod">
  164. <td>Method</td>
  165. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#has_key">has_key</a></td>
  166. <td><span class="undocumented">Undocumented</span></td>
  167. </tr><tr class="basemethod">
  168. <td>Method</td>
  169. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#__getitem__">__getitem__</a></td>
  170. <td><span>tag[key] returns the value of the 'key' attribute for the tag,</span></td>
  171. </tr><tr class="basemethod">
  172. <td>Method</td>
  173. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#__iter__">__iter__</a></td>
  174. <td><span>Iterating over a tag iterates over its contents.</span></td>
  175. </tr><tr class="basemethod">
  176. <td>Method</td>
  177. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#__len__">__len__</a></td>
  178. <td><span>The length of a tag is the length of its list of contents.</span></td>
  179. </tr><tr class="basemethod">
  180. <td>Method</td>
  181. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#__contains__">__contains__</a></td>
  182. <td><span class="undocumented">Undocumented</span></td>
  183. </tr><tr class="basemethod">
  184. <td>Method</td>
  185. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#__nonzero__">__nonzero__</a></td>
  186. <td><span>A tag is non-None even if it has no contents.</span></td>
  187. </tr><tr class="basemethod">
  188. <td>Method</td>
  189. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#__setitem__">__setitem__</a></td>
  190. <td><span>Setting tag[key] sets the value of the 'key' attribute for the</span></td>
  191. </tr><tr class="basemethod">
  192. <td>Method</td>
  193. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#__delitem__">__delitem__</a></td>
  194. <td><span>Deleting tag[key] deletes all 'key' attributes for the tag.</span></td>
  195. </tr><tr class="basemethod">
  196. <td>Method</td>
  197. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#__call__">__call__</a></td>
  198. <td><span>Calling a tag like a function is the same as calling its</span></td>
  199. </tr><tr class="basemethod">
  200. <td>Method</td>
  201. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#__eq__">__eq__</a></td>
  202. <td><span>Returns true iff this tag has the same name, the same attributes,</span></td>
  203. </tr><tr class="basemethod">
  204. <td>Method</td>
  205. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#__ne__">__ne__</a></td>
  206. <td><span>Returns true iff this tag is not identical to the other tag,</span></td>
  207. </tr><tr class="basemethod">
  208. <td>Method</td>
  209. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#__repr__">__repr__</a></td>
  210. <td><span>Renders this tag as a string.</span></td>
  211. </tr><tr class="basemethod">
  212. <td>Method</td>
  213. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#__unicode__">__unicode__</a></td>
  214. <td><span class="undocumented">Undocumented</span></td>
  215. </tr><tr class="basemethod">
  216. <td>Method</td>
  217. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#_sub_entity">_sub_entity</a></td>
  218. <td><span>Used with a regular expression to substitute the</span></td>
  219. </tr><tr class="basemethod">
  220. <td>Method</td>
  221. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#__str__">__str__</a></td>
  222. <td><span>Returns a string or Unicode representation of this tag and</span></td>
  223. </tr><tr class="basemethod">
  224. <td>Method</td>
  225. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#decompose">decompose</a></td>
  226. <td><span>Recursively destroys the contents of this tree.</span></td>
  227. </tr><tr class="basemethod">
  228. <td>Method</td>
  229. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#prettify">prettify</a></td>
  230. <td><span class="undocumented">Undocumented</span></td>
  231. </tr><tr class="basemethod">
  232. <td>Method</td>
  233. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#renderContents">renderContents</a></td>
  234. <td><span>Renders the contents of this tag as a string in the given</span></td>
  235. </tr><tr class="basemethod">
  236. <td>Method</td>
  237. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#find">find</a></td>
  238. <td><span>Return only the first child of this Tag matching the given</span></td>
  239. </tr><tr class="basemethod">
  240. <td>Method</td>
  241. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#findAll">findAll</a></td>
  242. <td><span>Extracts a list of Tag objects that match the given</span></td>
  243. </tr><tr class="basemethod">
  244. <td>Method</td>
  245. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#fetchText">fetchText</a></td>
  246. <td><span class="undocumented">Undocumented</span></td>
  247. </tr><tr class="basemethod">
  248. <td>Method</td>
  249. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#firstText">firstText</a></td>
  250. <td><span class="undocumented">Undocumented</span></td>
  251. </tr><tr class="basemethod">
  252. <td>Method</td>
  253. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#_getAttrMap">_getAttrMap</a></td>
  254. <td><span>Initializes a map representation of this tag's attributes,</span></td>
  255. </tr><tr class="basemethod">
  256. <td>Method</td>
  257. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#childGenerator">childGenerator</a></td>
  258. <td><span class="undocumented">Undocumented</span></td>
  259. </tr><tr class="basemethod">
  260. <td>Method</td>
  261. <td><a href="pymine.beautifulsoup.BeautifulSoup.Tag.html#recursiveChildGenerator">recursiveChildGenerator</a></td>
  262. <td><span class="undocumented">Undocumented</span></td>
  263. </tr>
  264. </table>
  265. <p>
  266. Inherited from <a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html">PageElement</a> (via <a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html">BeautifulStoneSoup</a>, <a href="pymine.beautifulsoup.BeautifulSoup.Tag.html">Tag</a>):
  267. </p>
  268. <table class="children sortable" id="id80">
  269. <tr class="basemethod">
  270. <td>Method</td>
  271. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#setup">setup</a></td>
  272. <td><span>Sets up the initial relations between this element and</span></td>
  273. </tr><tr class="basemethod">
  274. <td>Method</td>
  275. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#replaceWith">replaceWith</a></td>
  276. <td><span class="undocumented">Undocumented</span></td>
  277. </tr><tr class="basemethod">
  278. <td>Method</td>
  279. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#replaceWithChildren">replaceWithChildren</a></td>
  280. <td><span class="undocumented">Undocumented</span></td>
  281. </tr><tr class="basemethod">
  282. <td>Method</td>
  283. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#extract">extract</a></td>
  284. <td><span>Destructively rips this element out of the tree.</span></td>
  285. </tr><tr class="basemethod">
  286. <td>Method</td>
  287. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#_lastRecursiveChild">_lastRecursiveChild</a></td>
  288. <td><span>Finds the last element beneath this object to be parsed.</span></td>
  289. </tr><tr class="basemethod">
  290. <td>Method</td>
  291. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#insert">insert</a></td>
  292. <td><span class="undocumented">Undocumented</span></td>
  293. </tr><tr class="basemethod">
  294. <td>Method</td>
  295. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#append">append</a></td>
  296. <td><span>Appends the given tag to the contents of this tag.</span></td>
  297. </tr><tr class="basemethod">
  298. <td>Method</td>
  299. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#findNext">findNext</a></td>
  300. <td><span>Returns the first item that matches the given criteria and</span></td>
  301. </tr><tr class="basemethod">
  302. <td>Method</td>
  303. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#findAllNext">findAllNext</a></td>
  304. <td><span>Returns all items that match the given criteria and appear</span></td>
  305. </tr><tr class="basemethod">
  306. <td>Method</td>
  307. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#findNextSibling">findNextSibling</a></td>
  308. <td><span>Returns the closest sibling to this Tag that matches the</span></td>
  309. </tr><tr class="basemethod">
  310. <td>Method</td>
  311. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#findNextSiblings">findNextSiblings</a></td>
  312. <td><span>Returns the siblings of this Tag that match the given</span></td>
  313. </tr><tr class="basemethod">
  314. <td>Method</td>
  315. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#findPrevious">findPrevious</a></td>
  316. <td><span>Returns the first item that matches the given criteria and</span></td>
  317. </tr><tr class="basemethod">
  318. <td>Method</td>
  319. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#findAllPrevious">findAllPrevious</a></td>
  320. <td><span>Returns all items that match the given criteria and appear</span></td>
  321. </tr><tr class="basemethod">
  322. <td>Method</td>
  323. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#findPreviousSibling">findPreviousSibling</a></td>
  324. <td><span>Returns the closest sibling to this Tag that matches the</span></td>
  325. </tr><tr class="basemethod">
  326. <td>Method</td>
  327. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#findPreviousSiblings">findPreviousSiblings</a></td>
  328. <td><span>Returns the siblings of this Tag that match the given</span></td>
  329. </tr><tr class="basemethod">
  330. <td>Method</td>
  331. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#findParent">findParent</a></td>
  332. <td><span>Returns the closest parent of this Tag that matches the given</span></td>
  333. </tr><tr class="basemethod">
  334. <td>Method</td>
  335. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#findParents">findParents</a></td>
  336. <td><span>Returns the parents of this Tag that match the given</span></td>
  337. </tr><tr class="basemethod">
  338. <td>Method</td>
  339. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#_findOne">_findOne</a></td>
  340. <td><span class="undocumented">Undocumented</span></td>
  341. </tr><tr class="basemethod">
  342. <td>Method</td>
  343. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#_findAll">_findAll</a></td>
  344. <td><span>Iterates over a generator looking for things that match.</span></td>
  345. </tr><tr class="basemethod">
  346. <td>Method</td>
  347. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#nextGenerator">nextGenerator</a></td>
  348. <td><span class="undocumented">Undocumented</span></td>
  349. </tr><tr class="basemethod">
  350. <td>Method</td>
  351. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#nextSiblingGenerator">nextSiblingGenerator</a></td>
  352. <td><span class="undocumented">Undocumented</span></td>
  353. </tr><tr class="basemethod">
  354. <td>Method</td>
  355. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#previousGenerator">previousGenerator</a></td>
  356. <td><span class="undocumented">Undocumented</span></td>
  357. </tr><tr class="basemethod">
  358. <td>Method</td>
  359. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#previousSiblingGenerator">previousSiblingGenerator</a></td>
  360. <td><span class="undocumented">Undocumented</span></td>
  361. </tr><tr class="basemethod">
  362. <td>Method</td>
  363. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#parentGenerator">parentGenerator</a></td>
  364. <td><span class="undocumented">Undocumented</span></td>
  365. </tr><tr class="basemethod">
  366. <td>Method</td>
  367. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#substituteEncoding">substituteEncoding</a></td>
  368. <td><span class="undocumented">Undocumented</span></td>
  369. </tr><tr class="basemethod">
  370. <td>Method</td>
  371. <td><a href="pymine.beautifulsoup.BeautifulSoup.PageElement.html#toEncoding">toEncoding</a></td>
  372. <td><span>Encodes an object to a string in some encoding, or to Unicode.</span></td>
  373. </tr>
  374. </table>
  375. </div>
  376. <div class="function">
  377. <a name="pymine.beautifulsoup.BeautifulSoup.BeautifulSOAP.popTag"></a>
  378. <a name="popTag"></a>
  379. <div class="functionHeader">
  380. def popTag(self):
  381. </div>
  382. <div class="functionBody">
  383. <div class="interfaceinfo">overrides <a href="pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.html#popTag">pymine.beautifulsoup.BeautifulSoup.BeautifulStoneSoup.popTag</a></div>
  384. <div class="undocumented">Undocumented</div>
  385. </div>
  386. </div>
  387. <address>
  388. <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.
  389. </address>
  390. </body>
  391. </html>