File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 3
3
[ ![ 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%2FPipedreamHQ%2Fpipedream-sdk-python )
4
4
[ ![ pypi] ( https://img.shields.io/pypi/v/pipedream )] ( https://pypi.python.org/pypi/pipedream )
5
5
6
- The Pipedream Python library provides convenient access to the Pipedream API from Python.
6
+ The Pipedream Python library provides convenient access to the Pipedream APIs from Python.
7
7
8
8
## Installation
9
9
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name = "pipedream"
3
3
4
4
[tool .poetry ]
5
5
name = " pipedream"
6
- version = " 1.0.5 "
6
+ version = " 1.0.6 "
7
7
description = " "
8
8
readme = " README.md"
9
9
authors = []
Original file line number Diff line number Diff line change 4
4
import typing
5
5
6
6
import httpx
7
- from .types .project_environment import ProjectEnvironment
7
+ from ._ . types .project_environment import ProjectEnvironment
8
8
from .accounts .client import AccountsClient , AsyncAccountsClient
9
9
from .actions .client import ActionsClient , AsyncActionsClient
10
10
from .app_categories .client import AppCategoriesClient , AsyncAppCategoriesClient
Original file line number Diff line number Diff line change 3
3
import typing
4
4
5
5
import httpx
6
- from ..types .project_environment import ProjectEnvironment
6
+ from .._ . types .project_environment import ProjectEnvironment
7
7
from .http_client import AsyncHttpClient , HttpClient
8
8
9
9
@@ -27,10 +27,10 @@ def __init__(
27
27
28
28
def get_headers (self ) -> typing .Dict [str , str ]:
29
29
headers : typing .Dict [str , str ] = {
30
- "User-Agent" : "pipedream/1.0.5 " ,
30
+ "User-Agent" : "pipedream/1.0.6 " ,
31
31
"X-Fern-Language" : "Python" ,
32
32
"X-Fern-SDK-Name" : "pipedream" ,
33
- "X-Fern-SDK-Version" : "1.0.5 " ,
33
+ "X-Fern-SDK-Version" : "1.0.6 " ,
34
34
** (self .get_custom_headers () or {}),
35
35
}
36
36
if self ._project_environment is not None :
You can’t perform that action at this time.
0 commit comments