Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
CSE16249
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SREERAM KEERTHAN PARUCHURU
CSE16249
Commits
69b7d37f
Commit
69b7d37f
authored
6 years ago
by
SREERAM KEERTHAN PARUCHURU
Browse files
Options
Downloads
Patches
Plain Diff
beautiful soup
parent
d35d38b3
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
reguestss.py
+13
-0
13 additions, 0 deletions
reguestss.py
with
13 additions
and
0 deletions
reguestss.py
0 → 100644
+
13
−
0
View file @
69b7d37f
import
requests
from
bs4
import
BeautifulSoup
page
=
requests
.
get
(
"
http://dataquestio.github.io/web-scraping-pages/simple.html
"
)
page
page
.
status_code
page
.
content
soup
=
BeautifulSoup
(
page
.
content
,
'
html.parser
'
)
soup
.
prettify
()
k
=
list
(
soup
.
children
)
print
([
type
(
item
)
for
item
in
list
(
soup
.
children
)])
html
=
list
(
soup
.
children
)[
2
]
body
=
list
(
html
.
children
)[
3
]
print
(
body
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment