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 11# Intercom 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%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 )
55
66The Intercom Python library provides convenient access to the Intercom API from Python.
77
88## Installation
99
1010``` sh
11- pip install intercom- python
11+ pip install python-intercom
1212```
1313
1414## Reference
Original file line number Diff line number Diff line change 11[project ]
2- name = " intercom- python"
2+ name = " python-intercom "
33
44[tool .poetry ]
5- name = " intercom- python"
6- version = " v4 .0.0a0 "
5+ name = " python-intercom "
6+ version = " 4 .0.0a2 "
77description = " "
88readme = " README.md"
99authors = []
Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ def __init__(
2020
2121 def get_headers (self ) -> typing .Dict [str , str ]:
2222 headers : typing .Dict [str , str ] = {
23- "User-Agent" : "intercom- python/v4 .0.0a0 " ,
23+ "User-Agent" : "python-intercom/4 .0.0a2 " ,
2424 "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 " ,
2727 }
2828 headers ["Authorization" ] = f"Bearer { self ._get_token ()} "
2929 return headers
Original file line number Diff line number Diff line change 11from importlib import metadata
22
3- __version__ = metadata .version ("intercom- python" )
3+ __version__ = metadata .version ("python-intercom " )
You can’t perform that action at this time.
0 commit comments