Skip to content

Commit daf2c4f

Browse files
committed
Fixed import errors
1 parent 5e6d4f6 commit daf2c4f

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,13 @@
55
```commandline
66
pip3 install pushbullet-python
77
```
8-
Required Packages:
8+
Required Package:
99
- [requests](https://requests.readthedocs.io/en/master/)
10-
- requests.structures.CaseInsensitiveDict
1110

1211
## Usage Example
1312
```python
1413
import os
15-
from pushbullet_python import API
14+
from pushbullet import API
1615

1716
# set the API Class and link it to the api object
1817
api = API()

example.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import os
2-
from pushbullet_python import API
2+
from pushbullet import API
33

44
# set the API Class and link it to the api object
55
api = API()
@@ -21,4 +21,4 @@
2121
# sending a file, arguments: title, message, file name, file type, file url
2222
api.send_file("An Example Image", "Check out the example image!",
2323
"test_image.png", "image/png",
24-
"https://dummyimage.com/600x400/000/fff")
24+
"https://dummyimage.com/600x400/000/fff")

pushbullet/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from pushbullet import API
1+
from .pushbullet import API
22

3-
__version__ = '1.4.0'
3+
__version__ = '1.6.0'
44
__author__ = 'Janu Lingeswaran'

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup, find_packages
22
from os import path
33

4-
VERSION = '1.4.0'
4+
VERSION = '1.6.0'
55
DESCRIPTION = 'A Python wrapper around the Pushbullet API.'
66
here = path.abspath(path.dirname(__file__))
77
# Get the long description from the README file

0 commit comments

Comments
 (0)