Skip to content

Commit a555930

Browse files
release: 0.3.0 (#5)
* feat(api): update project name * release: 0.3.0 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 3af1f52 commit a555930

File tree

8 files changed

+32
-24
lines changed

8 files changed

+32
-24
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.2.1"
2+
".": "0.3.0"
33
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 1
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/perplexity-ai%2Fperplexity-0215ad03799c0d48a897533cf7797fc279ca4ddd6ff3ef89194e8637c83d16f0.yml
33
openapi_spec_hash: 185af16df97b1856cddb649ceb87fb0d
4-
config_hash: 573e46aab0bee9acf34f1049f080bce0
4+
config_hash: 996f3d5694e36967ecd0dddb7b2ad6b2

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.3.0 (2025-09-07)
4+
5+
Full Changelog: [v0.2.1...v0.3.0](https://github.com/ppl-ai/perplexity-py/compare/v0.2.1...v0.3.0)
6+
7+
### Features
8+
9+
* **api:** update project name ([b9ab21e](https://github.com/ppl-ai/perplexity-py/commit/b9ab21e669afb28c61908dc222cc5a94ec1d6b8e))
10+
311
## 0.2.1 (2025-09-07)
412

513
Full Changelog: [v0.2.0...v0.2.1](https://github.com/ppl-ai/perplexity-py/compare/v0.2.0...v0.2.1)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Perplexity Python API library
22

33
<!-- prettier-ignore -->
4-
[![PyPI version](https://img.shields.io/pypi/v/perplexity.svg?label=pypi%20(stable))](https://pypi.org/project/perplexity/)
4+
[![PyPI version](https://img.shields.io/pypi/v/perplexityai.svg?label=pypi%20(stable))](https://pypi.org/project/perplexityai/)
55

66
The Perplexity Python library provides convenient access to the Perplexity REST API from any Python 3.8+
77
application. The library includes type definitions for all request params and response fields,
@@ -17,7 +17,7 @@ The full API of this library can be found in [api.md](api.md).
1717

1818
```sh
1919
# install from PyPI
20-
pip install perplexity
20+
pip install perplexityai
2121
```
2222

2323
## Usage
@@ -77,7 +77,7 @@ You can enable this by installing `aiohttp`:
7777

7878
```sh
7979
# install from PyPI
80-
pip install perplexity[aiohttp]
80+
pip install perplexityai[aiohttp]
8181
```
8282

8383
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
2-
name = "perplexity"
3-
version = "0.2.1"
2+
name = "perplexityai"
3+
version = "0.3.0"
44
description = "The official Python library for the perplexity API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

requirements-dev.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ aiohappyeyeballs==2.6.1
1414
# via aiohttp
1515
aiohttp==3.12.8
1616
# via httpx-aiohttp
17-
# via perplexity
17+
# via perplexityai
1818
aiosignal==1.3.2
1919
# via aiohttp
2020
annotated-types==0.6.0
2121
# via pydantic
2222
anyio==4.4.0
2323
# via httpx
24-
# via perplexity
24+
# via perplexityai
2525
argcomplete==3.1.2
2626
# via nox
2727
async-timeout==5.0.1
@@ -37,7 +37,7 @@ dirty-equals==0.6.0
3737
distlib==0.3.7
3838
# via virtualenv
3939
distro==1.8.0
40-
# via perplexity
40+
# via perplexityai
4141
exceptiongroup==1.2.2
4242
# via anyio
4343
# via pytest
@@ -54,10 +54,10 @@ httpcore==1.0.9
5454
# via httpx
5555
httpx==0.28.1
5656
# via httpx-aiohttp
57-
# via perplexity
57+
# via perplexityai
5858
# via respx
5959
httpx-aiohttp==0.1.8
60-
# via perplexity
60+
# via perplexityai
6161
idna==3.4
6262
# via anyio
6363
# via httpx
@@ -89,7 +89,7 @@ propcache==0.3.1
8989
# via aiohttp
9090
# via yarl
9191
pydantic==2.10.3
92-
# via perplexity
92+
# via perplexityai
9393
pydantic-core==2.27.1
9494
# via pydantic
9595
pygments==2.18.0
@@ -113,7 +113,7 @@ six==1.16.0
113113
# via python-dateutil
114114
sniffio==1.3.0
115115
# via anyio
116-
# via perplexity
116+
# via perplexityai
117117
time-machine==2.9.0
118118
tomli==2.0.2
119119
# via mypy
@@ -122,7 +122,7 @@ typing-extensions==4.12.2
122122
# via anyio
123123
# via multidict
124124
# via mypy
125-
# via perplexity
125+
# via perplexityai
126126
# via pydantic
127127
# via pydantic-core
128128
# via pyright

requirements.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ aiohappyeyeballs==2.6.1
1414
# via aiohttp
1515
aiohttp==3.12.8
1616
# via httpx-aiohttp
17-
# via perplexity
17+
# via perplexityai
1818
aiosignal==1.3.2
1919
# via aiohttp
2020
annotated-types==0.6.0
2121
# via pydantic
2222
anyio==4.4.0
2323
# via httpx
24-
# via perplexity
24+
# via perplexityai
2525
async-timeout==5.0.1
2626
# via aiohttp
2727
attrs==25.3.0
@@ -30,7 +30,7 @@ certifi==2023.7.22
3030
# via httpcore
3131
# via httpx
3232
distro==1.8.0
33-
# via perplexity
33+
# via perplexityai
3434
exceptiongroup==1.2.2
3535
# via anyio
3636
frozenlist==1.6.2
@@ -42,9 +42,9 @@ httpcore==1.0.9
4242
# via httpx
4343
httpx==0.28.1
4444
# via httpx-aiohttp
45-
# via perplexity
45+
# via perplexityai
4646
httpx-aiohttp==0.1.8
47-
# via perplexity
47+
# via perplexityai
4848
idna==3.4
4949
# via anyio
5050
# via httpx
@@ -56,16 +56,16 @@ propcache==0.3.1
5656
# via aiohttp
5757
# via yarl
5858
pydantic==2.10.3
59-
# via perplexity
59+
# via perplexityai
6060
pydantic-core==2.27.1
6161
# via pydantic
6262
sniffio==1.3.0
6363
# via anyio
64-
# via perplexity
64+
# via perplexityai
6565
typing-extensions==4.12.2
6666
# via anyio
6767
# via multidict
68-
# via perplexity
68+
# via perplexityai
6969
# via pydantic
7070
# via pydantic-core
7171
yarl==1.20.0

src/perplexity/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "perplexity"
4-
__version__ = "0.2.1" # x-release-please-version
4+
__version__ = "0.3.0" # x-release-please-version

0 commit comments

Comments
 (0)