summaryrefslogtreecommitdiff
path: root/CAO/Cards.py
diff options
context:
space:
mode:
authorOlivier Gayot <duskcoder@gmail.com>2015-06-14 22:31:48 +0100
committerOlivier Gayot <duskcoder@gmail.com>2015-06-14 22:37:40 +0100
commit0fb08748e5285e5d4adc6135eec8889887a63299 (patch)
tree3a82c2899f33a8d4234b07799cff00865c8e141c /CAO/Cards.py
parentad12c67adcc8e3c0f29814b1b95959ac4b9f4a4d (diff)
use a python package instead of just modules
The package is contained in the CAO/ folder. server.py is still at the root of the repository though. Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
Diffstat (limited to 'CAO/Cards.py')
-rw-r--r--CAO/Cards.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/CAO/Cards.py b/CAO/Cards.py
new file mode 100644
index 0000000..b796b97
--- /dev/null
+++ b/CAO/Cards.py
@@ -0,0 +1,13 @@
+class Cards():
+ @staticmethod
+ def get_white_cards(lang):
+ ''' Read the file containing the white cards and return a list of cards '''
+ with open('lang/' + lang + '/cards/white') as fd:
+ return [line.strip() for line in fd]
+
+ @staticmethod
+ def get_black_cards(lang):
+ ''' Read the file containing the black cards and return a list of cards '''
+
+ with open('lang/' + lang + '/cards/black') as fd:
+ return [line.strip() for line in fd]