Skip to content

Commit d3683c9

Browse files
Update imports on demo accordingly to the pip installation (#110)
1 parent 2bc94f5 commit d3683c9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ API
4949
The `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

5454
output = analyze(site, sitemap)
5555

@@ -58,7 +58,7 @@ print(output)
5858

5959
In 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

6363
output = analyze(site, sitemap, analyze_headings=True, analyze_extra_tags=True)
6464

@@ -68,7 +68,7 @@ print(output)
6868
By default, the `analyze` function analyzes all the existing inner links as well, which might be time consuming.
6969
This 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

7373
output = analyze(site, sitemap, follow_links=False)
7474

0 commit comments

Comments
 (0)