airobo 0.1.0__tar.gz → 0.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {airobo-0.1.0 → airobo-0.1.2}/PKG-INFO +1 -1
- airobo-0.1.2/airobo/api.py +31 -0
- {airobo-0.1.0 → airobo-0.1.2}/airobo/cli.py +0 -1
- airobo-0.1.2/airobo/modules/publishAndroid.py +6 -0
- airobo-0.1.2/airobo/modules/publishIOS.py +6 -0
- {airobo-0.1.0 → airobo-0.1.2}/airobo.egg-info/PKG-INFO +1 -1
- {airobo-0.1.0 → airobo-0.1.2}/airobo.egg-info/SOURCES.txt +3 -1
- {airobo-0.1.0 → airobo-0.1.2}/pyproject.toml +1 -1
- airobo-0.1.0/airobo/api.py +0 -28
- {airobo-0.1.0 → airobo-0.1.2}/airobo/__init__.py +0 -0
- {airobo-0.1.0 → airobo-0.1.2}/airobo.egg-info/dependency_links.txt +0 -0
- {airobo-0.1.0 → airobo-0.1.2}/airobo.egg-info/entry_points.txt +0 -0
- {airobo-0.1.0 → airobo-0.1.2}/airobo.egg-info/top_level.txt +0 -0
- {airobo-0.1.0 → airobo-0.1.2}/setup.cfg +0 -0
@@ -0,0 +1,31 @@
|
|
1
|
+
"""
|
2
|
+
API callbacks!
|
3
|
+
"""
|
4
|
+
|
5
|
+
# Declarations / modules
|
6
|
+
from airobo.modules import publishAndroid
|
7
|
+
from airobo.modules import publishIOS
|
8
|
+
|
9
|
+
# ======================================================================================
|
10
|
+
|
11
|
+
"""
|
12
|
+
Simulate publishing something.
|
13
|
+
"""
|
14
|
+
def publish(plat):
|
15
|
+
if plat != "ios" and plat != "android" and plat != None:
|
16
|
+
return "Supply a valid platform type!"
|
17
|
+
if plat == "ios":
|
18
|
+
publishIOS()
|
19
|
+
elif plat == "android":
|
20
|
+
publishAndroid()
|
21
|
+
else: #default : publish all.
|
22
|
+
publishIOS()
|
23
|
+
publishAndroid()
|
24
|
+
|
25
|
+
#----------------------------------------
|
26
|
+
|
27
|
+
"""
|
28
|
+
Simulate checking status.
|
29
|
+
"""
|
30
|
+
def version():
|
31
|
+
print("2.3")
|
airobo-0.1.0/airobo/api.py
DELETED
@@ -1,28 +0,0 @@
|
|
1
|
-
"""
|
2
|
-
API callbacks!
|
3
|
-
"""
|
4
|
-
|
5
|
-
# ======================================================================================
|
6
|
-
|
7
|
-
|
8
|
-
"""
|
9
|
-
Simulate publishing something.
|
10
|
-
"""
|
11
|
-
def publish():
|
12
|
-
print("Publishing...")
|
13
|
-
|
14
|
-
#----------------------------------------
|
15
|
-
|
16
|
-
"""
|
17
|
-
Simulate checking status.
|
18
|
-
"""
|
19
|
-
def version():
|
20
|
-
print("2.2")
|
21
|
-
|
22
|
-
#----------------------------------------
|
23
|
-
|
24
|
-
"""
|
25
|
-
Simulate checking status.
|
26
|
-
"""
|
27
|
-
def status():
|
28
|
-
print("Status: OK")
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|