File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
# Intercom Python Library
2
2
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%2Fintercom%2Fpython-intercom )
4
- [ ![ pypi] ( https://img.shields.io/pypi/v/intercom- python )] ( https://pypi.python.org/pypi/intercom- python )
4
+ [ ![ pypi] ( https://img.shields.io/pypi/v/python-intercom )] ( https://pypi.python.org/pypi/python-intercom )
5
5
6
6
The Intercom Python library provides convenient access to the Intercom API from Python.
7
7
8
8
## Installation
9
9
10
10
``` sh
11
- pip install intercom- python
11
+ pip install python-intercom
12
12
```
13
13
14
14
## Reference
Original file line number Diff line number Diff line change 1
1
[project ]
2
- name = " intercom- python"
2
+ name = " python-intercom "
3
3
4
4
[tool .poetry ]
5
- name = " intercom- python"
6
- version = " v4 .0.0a0 "
5
+ name = " python-intercom "
6
+ version = " 4 .0.0a2 "
7
7
description = " "
8
8
readme = " README.md"
9
9
authors = []
Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ def __init__(
20
20
21
21
def get_headers (self ) -> typing .Dict [str , str ]:
22
22
headers : typing .Dict [str , str ] = {
23
- "User-Agent" : "intercom- python/v4 .0.0a0 " ,
23
+ "User-Agent" : "python-intercom/4 .0.0a2 " ,
24
24
"X-Fern-Language" : "Python" ,
25
- "X-Fern-SDK-Name" : "intercom- python" ,
26
- "X-Fern-SDK-Version" : "v4 .0.0a0 " ,
25
+ "X-Fern-SDK-Name" : "python-intercom " ,
26
+ "X-Fern-SDK-Version" : "4 .0.0a2 " ,
27
27
}
28
28
headers ["Authorization" ] = f"Bearer { self ._get_token ()} "
29
29
return headers
Original file line number Diff line number Diff line change 1
1
from importlib import metadata
2
2
3
- __version__ = metadata .version ("intercom- python" )
3
+ __version__ = metadata .version ("python-intercom " )
You can’t perform that action at this time.
0 commit comments