Skip to content

Commit e05bf09

Browse files
Moving examples outside the module (#6)
* Moving examples outside the module * Add changelog entry
1 parent f529fbf commit e05bf09

File tree

7 files changed

+6
-3
lines changed

7 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## unreleased
4+
- Moving examples outside the module [#6](https://github.com/ostrovok-team/papi-sdk-python/pull/6)
5+
36
## [v1.0.1](https://github.com/ostrovok-team/papi-sdk-python/releases/tag/v1.0.1) - 2020-12-30
47

58
Fix packaging issue
File renamed without changes.
File renamed without changes.
File renamed without changes.

papi_sdk/examples/full_booking_process.py renamed to examples/full_booking_process.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
from datetime import datetime, timedelta
22

33
from papi_sdk import APIv3
4-
from papi_sdk.examples.booking_finish import make_booking_finish
5-
from papi_sdk.examples.booking_form import make_booking_form
6-
from papi_sdk.examples.search_hotelpage import get_hotel_page
4+
from examples.search_hotelpage import get_hotel_page
5+
from examples.booking_finish import make_booking_finish
6+
from examples.booking_form import make_booking_form
77

88
if __name__ == "__main__":
99
papi = APIv3(key="your_key")
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)