forked from freyta/7Eleven-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.py
58 lines (48 loc) · 1.76 KB
/
settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#! /usr/bin/python3
# API_KEY: Google Maps with Geocoding API Key
# Google Maps API is used to Geocode a Postcode to a logitude and latitude
# To use the API a private API key is required.
# Open the following URL (https://developers.google.com/maps/documentation/embed/get-api-key) to obtain a private API key
# Ensure you have enabled the "Geocoding API"
# The API_KEY is not needed as much anymore. It is only needed if you do not have a stores.json file where your script
# is running from. But it should be automatically downloaded on first run anyway. The stores.json file is used to
# determine the location of a 7Eleven stores and lock in around that area.
API_KEY=""
# TZ: All times are displayed using the chosen timezone. Choices for Australia are:
# Australia/ACT
# Australia/Adelaide
# Australia/Brisbane
# Australia/Broken_Hill
# Australia/Canberra
# Australia/Currie
# Australia/Darwin
# Australia/Eucla
# Australia/Hobart
# Australia/LHI
# Australia/Lindeman
# Australia/Lord_Howe
# Australia/Melbourne
# Australia/NSW
# Australia/North
# Australia/Perth
# Australia/Queensland
# Australia/South
# Australia/Sydney
# Australia/Tasmania
# Australia/Victoria
# Australia/West
# Australia/Yancowinna
TZ="UTC"
# BASE_URL: 7-11 Mobile Application API End Point
BASE_URL="https://711-goodcall.api.tigerspike.com/api/v1/"
# PRICE_URL: 11-Seven Price API
PRICE_URL="https://projectzerothree.info/api.php?format=json"
# Device name - Samsung Galaxy S10. You can change this to any device you want.
DEVICE_NAME="SM-G973FZKAXSA"
# OS version
OS_VERSION="Android 9.0.0"
# App version
APP_VERSION="1.10.0.2044"
# Device id - A 16 character hexadecimal device identifier. You can change this to your own device ID
# if you know it, otherwise a random one will be generated
DEVICE_ID=""