File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4949The ` analyze ` function returns a dictionary with the results of the crawl.
5050
5151``` python
52- from seoanalyzer import analyze
52+ from pyseoanalyzer import analyze
5353
5454output = analyze(site, sitemap)
5555
@@ -58,7 +58,7 @@ print(output)
5858
5959In order to analyze heading tags (h1-h6) and other extra additional tags as well, the following options can be passed to the ` analyze ` function
6060``` python
61- from seoanalyzer import analyze
61+ from pyseoanalyzer import analyze
6262
6363output = analyze(site, sitemap, analyze_headings = True , analyze_extra_tags = True )
6464
@@ -68,7 +68,7 @@ print(output)
6868By default, the ` analyze ` function analyzes all the existing inner links as well, which might be time consuming.
6969This default behaviour can be changed to analyze only the provided URL by passing the following option to the ` analyze ` function
7070``` python
71- from seoanalyzer import analyze
71+ from pyseoanalyzer import analyze
7272
7373output = analyze(site, sitemap, follow_links = False )
7474
You can’t perform that action at this time.
0 commit comments