Skip to content

Commit 09f3bf3

Browse files
committed
Release 0.0.42
1 parent 2b03f5a commit 09f3bf3

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

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

33
[![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2FWhoisFreaks%2Fwf-python-sdk)
4-
[![pypi](https://img.shields.io/pypi/v/py-whoisfreaks)](https://pypi.python.org/pypi/py-whoisfreaks)
4+
[![pypi](https://img.shields.io/pypi/v/wf-python-sdk)](https://pypi.python.org/pypi/wf-python-sdk)
55

66
The Whoisfreaks Python library provides convenient access to the Whoisfreaks API from Python.
77

88
## Installation
99

1010
```sh
11-
pip install py-whoisfreaks
11+
pip install wf-python-sdk
1212
```
1313

1414
## Reference

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[project]
2-
name = "py-whoisfreaks"
2+
name = "wf-python-sdk"
33

44
[tool.poetry]
5-
name = "py-whoisfreaks"
6-
version = "0.0.41"
5+
name = "wf-python-sdk"
6+
version = "0.0.42"
77
description = ""
88
readme = "README.md"
99
authors = []

src/whoisfreaks/core/client_wrapper.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ def __init__(self, *, base_url: str, timeout: typing.Optional[float] = None):
1313

1414
def get_headers(self) -> typing.Dict[str, str]:
1515
headers: typing.Dict[str, str] = {
16-
"User-Agent": "py-whoisfreaks/0.0.41",
16+
"User-Agent": "wf-python-sdk/0.0.42",
1717
"X-Fern-Language": "Python",
18-
"X-Fern-SDK-Name": "py-whoisfreaks",
19-
"X-Fern-SDK-Version": "0.0.41",
18+
"X-Fern-SDK-Name": "wf-python-sdk",
19+
"X-Fern-SDK-Version": "0.0.42",
2020
}
2121
return headers
2222

src/whoisfreaks/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from importlib import metadata
22

3-
__version__ = metadata.version("py-whoisfreaks")
3+
__version__ = metadata.version("wf-python-sdk")

0 commit comments

Comments
 (0)