File tree Expand file tree Collapse file tree 6 files changed +14
-3
lines changed Expand file tree Collapse file tree 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.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
55and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
66
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+
715## [ 1.0.0] - 2018-07-31
816### Added
917- 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
2929
3030
3131``` python
32- from open_api import OpenPlatform
32+ from openplatform import OpenPlatform
3333
3434# Access API via instance of OpenPlatform class
3535op = 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 3232
3333 packages = find_packages (),
3434
35- setup_requires = ['requests' ],
35+ install_requires = ['requests' ],
3636
3737 zip_safe = False , )
Original file line number Diff line number Diff line change 44
55import requests
66
7- from open_api import OpenPlatform
7+ from openplatform . open_api import OpenPlatform
88from openplatform .utils import validate_address , merge_headers
99from tests .const import *
1010
You can’t perform that action at this time.
0 commit comments