Skip to content

Commit 3e1babf

Browse files
committed
Initial commit of JS8Call API library
0 parents  commit 3e1babf

14 files changed

+2421
-0
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# env files
4+
.env*
5+
6+
venv
7+
8+
# Other non-backstop related folders
9+
js8call-source-code/

JS8CallAPI/__init__.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
from .core import JS8CallAPI
2+
from .grid_utils import lat_lon_to_grid_square
3+
4+
# Re-export constants for ease of use
5+
JS8_NORMAL = JS8CallAPI.JS8_NORMAL
6+
JS8_FAST = JS8CallAPI.JS8_FAST
7+
JS8_TURBO = JS8CallAPI.JS8_TURBO
8+
JS8_SLOW = JS8CallAPI.JS8_SLOW
9+
JS8_ULTRA = JS8CallAPI.JS8_ULTRA
10+
11+
__version__ = '0.2.0'
12+
__all__ = ['JS8CallAPI', 'lat_lon_to_grid_square',
13+
'JS8_NORMAL', 'JS8_FAST', 'JS8_TURBO', 'JS8_SLOW', 'JS8_ULTRA']
575 Bytes
Binary file not shown.
22 KB
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)