Skip to content

Commit 3de840a

Browse files
committed
Drop www.
Signed-off-by: Brian Donohue <brian@bthdonohue.com>
1 parent 50696cc commit 3de840a

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Instaparser Python Library
22

3-
A Python client library for the [Instaparser API](https://www.instaparser.com), providing a simple and intuitive interface for parsing articles, generating summaries, and processing PDFs.
3+
A Python client library for the [Instaparser API](https://instaparser.com), providing a simple and intuitive interface for parsing articles, generating summaries, and processing PDFs.
44

55
## Installation
66

@@ -247,4 +247,4 @@ MIT
247247

248248
## Support
249249

250-
For support, email support@instaparser.com or visit [https://www.instaparser.com](https://www.instaparser.com).
250+
For support, email support@instaparser.com or visit [https://instaparser.com](https://instaparser.com).

instaparser/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class InstaparserClient:
2828
>>> print(article.body)
2929
"""
3030

31-
BASE_URL = "https://www.instaparser.com"
31+
BASE_URL = "https://instaparser.com"
3232

3333
def __init__(self, api_key: str, base_url: str | None = None):
3434
"""

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ build = [
4646
]
4747

4848
[project.urls]
49-
Homepage = "https://www.instaparser.com"
50-
Documentation = "https://www.instaparser.com/docs"
49+
Homepage = "https://instaparser.com"
50+
Documentation = "https://instaparser.com/docs"
5151
Issues = "https://github.com/Instapaper/instaparser-python/issues"
5252

5353
[tool.hatch.version]

tests/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def test_client_uses_default_base_url(self, api_key):
3939
"""Test that client uses default base URL when not provided."""
4040
client = InstaparserClient(api_key=api_key)
4141

42-
assert client.base_url == "https://www.instaparser.com"
42+
assert client.base_url == "https://instaparser.com"
4343

4444

4545
class TestInstaparserClientHandleResponse:

0 commit comments

Comments
 (0)