File tree 6 files changed +14
-3
lines changed
6 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 1.0.1] - 2018-08-01
8
+ ### Changed
9
+ - Update the README to match the new way of importing the package
10
+
11
+ ### Fixed
12
+ - Fix importing the main class
13
+
14
+
7
15
## [ 1.0.0] - 2018-07-31
8
16
### Added
9
17
- Get all scaffolds API
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ To access the library import an OpenPlatform class and call an instance with the
29
29
30
30
31
31
``` python
32
- from open_api import OpenPlatform
32
+ from openplatform import OpenPlatform
33
33
34
34
# Access API via instance of OpenPlatform class
35
35
op = OpenPlatform(open_key)
Original file line number Diff line number Diff line change
1
+ from openplatform .open_api import OpenPlatform
2
+
3
+ __all__ = [OpenPlatform ]
File renamed without changes.
Original file line number Diff line number Diff line change 32
32
33
33
packages = find_packages (),
34
34
35
- setup_requires = ['requests' ],
35
+ install_requires = ['requests' ],
36
36
37
37
zip_safe = False , )
Original file line number Diff line number Diff line change 4
4
5
5
import requests
6
6
7
- from open_api import OpenPlatform
7
+ from openplatform . open_api import OpenPlatform
8
8
from openplatform .utils import validate_address , merge_headers
9
9
from tests .const import *
10
10
You can’t perform that action at this time.
0 commit comments