summaryrefslogtreecommitdiff
path: root/src/beautifulsoup/README.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/beautifulsoup/README.txt')
-rw-r--r--src/beautifulsoup/README.txt26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/beautifulsoup/README.txt b/src/beautifulsoup/README.txt
deleted file mode 100644
index ff83212..0000000
--- a/src/beautifulsoup/README.txt
+++ /dev/null
@@ -1,26 +0,0 @@
-Introduction
-============
-
- >>> from beautifulsoup import BeautifulSoup
- >>> soup = BeautifulSoup("<p>Some<b>bad<i>HTML")
- >>> print soup.prettify()
- <html>
- <body>
- <p>
- Some
- <b>
- bad
- <i>
- HTML
- </i>
- </b>
- </p>
- </body>
- </html>
- >>> soup.find(text="bad")
- u'bad'
-
- >>> soup.i
- <i>HTML</i>
-
-