Skip to content
This repository has been archived by the owner on Aug 20, 2023. It is now read-only.

Commit

Permalink
Merge branch 'master' of https://github.com/alshapton/SpacePY-X
Browse files Browse the repository at this point in the history
  • Loading branch information
alshapton committed Jan 13, 2020
2 parents efc09c2 + 3614562 commit f0335fe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ cachepy==1.1
beautifulsoup4==4.8.2
tinydb==3.15.2
requests==2.22.0
setuptools==43.0.0
setuptools==44.0.0
sphinx_rtd_theme==0.4.3
8 changes: 6 additions & 2 deletions src/spacexpython/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,12 +204,16 @@ def buildapps(url_response):
if ("WEBSITE" in (tds[1].text).upper()):
type = type + ',"WEBSITE"'
platform = platform + ',"WEB"'


if ("ALEXA SKILL" in (tds[1].text).upper()):
type = type + ',"ALEXA"'
platform = platform + ',"ALEXA"'

if ("ANDROID APP" in (tds[1].text).upper()):
type = type + ',"APP"'
platform = platform + ',"ANDROID"'

if ("OOS APP" in (tds[1].text).upper()):
if ("IOS APP" in (tds[1].text).upper()):
type = type + ',"APP"'
platform = platform + ',"IOS"'

Expand Down

0 comments on commit f0335fe

Please sign in to comment.