Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
screamingfrog-python-analysis
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Databulle
screamingfrog-python-analysis
Commits
40e65051
Commit
40e65051
authored
Jan 29, 2018
by
Julien Deneuville
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor changes
parent
89be81c7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
SF_crawl_analysis.ipynb
SF_crawl_analysis.ipynb
+3
-2
No files found.
SF_crawl_analysis.ipynb
View file @
40e65051
...
...
@@ -15,6 +15,7 @@
"You'll need two exports from Screaming Frog: \n",
"- internal_all.csv \n",
"- all_outlinks.csv \n",
"\n",
"Place them in the `data` directory. "
]
},
...
...
@@ -665,7 +666,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"You can also try more complex filters. For example, let's select
URLs without a Title but still responding in HTTP 200
:"
"You can also try more complex filters. For example, let's select
HTTP 200 URLs without a Title
:"
]
},
{
...
...
@@ -1019,7 +1020,7 @@
}
],
"source": [
"urls[(urls[\"
Title 1\"].isnull()) & (urls[\"Status Code\"] == 200
)].head(10)"
"urls[(urls[\"
Status Code\"] == 200) & (urls[\"Title 1\"].isnull()
)].head(10)"
]
},
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment