Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
a6f5dbd05f | |||
967afa472f | |||
a65568cd0c | |||
6e45334d99 | |||
936a1010a6 | |||
acc528cb1d |
@ -36,14 +36,6 @@ erepublik.constants module
|
|||||||
:undoc-members:
|
:undoc-members:
|
||||||
:show-inheritance:
|
:show-inheritance:
|
||||||
|
|
||||||
erepublik.types module
|
|
||||||
----------------------
|
|
||||||
|
|
||||||
.. automodule:: erepublik.types
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
:show-inheritance:
|
|
||||||
|
|
||||||
erepublik.utils module
|
erepublik.utils module
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
@ -52,6 +44,14 @@ erepublik.utils module
|
|||||||
:undoc-members:
|
:undoc-members:
|
||||||
:show-inheritance:
|
:show-inheritance:
|
||||||
|
|
||||||
|
erepublik.ws module
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
.. automodule:: erepublik.ws
|
||||||
|
:members:
|
||||||
|
:undoc-members:
|
||||||
|
:show-inheritance:
|
||||||
|
|
||||||
Module contents
|
Module contents
|
||||||
---------------
|
---------------
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
__author__ = """Eriks Karls"""
|
__author__ = """Eriks Karls"""
|
||||||
__email__ = 'eriks@72.lv'
|
__email__ = 'eriks@72.lv'
|
||||||
__version__ = '0.24.2'
|
__version__ = '0.24.2.3'
|
||||||
|
|
||||||
from erepublik.citizen import Citizen
|
from erepublik.citizen import Citizen
|
||||||
|
|
||||||
|
@ -89,10 +89,56 @@ class Rank:
|
|||||||
|
|
||||||
def __init__(self, id: int, name: str, rank_points: int, is_air: bool = False):
|
def __init__(self, id: int, name: str, rank_points: int, is_air: bool = False):
|
||||||
self.id = id
|
self.id = id
|
||||||
self._name = name
|
self.name = name
|
||||||
self.rank_points = rank_points
|
self.rank_points = rank_points
|
||||||
self.is_air = bool(is_air)
|
self.is_air = bool(is_air)
|
||||||
|
|
||||||
|
def __int__(self):
|
||||||
|
return self.id
|
||||||
|
|
||||||
|
def __eq__(self, other):
|
||||||
|
if isinstance(other, Rank):
|
||||||
|
return self.id == other.id if other.is_air == self.is_air else False
|
||||||
|
else:
|
||||||
|
return self.id == int(other)
|
||||||
|
|
||||||
|
def __ne__(self, other):
|
||||||
|
if isinstance(other, Rank):
|
||||||
|
return not self.id == other.id if other.is_air == self.is_air else True
|
||||||
|
else:
|
||||||
|
return not self.id == int(other)
|
||||||
|
|
||||||
|
def __lt__(self, other):
|
||||||
|
if isinstance(other, Rank):
|
||||||
|
return self.id < other.id if other.is_air == self.is_air else False
|
||||||
|
else:
|
||||||
|
return self.id < int(other)
|
||||||
|
|
||||||
|
def __le__(self, other):
|
||||||
|
if isinstance(other, Rank):
|
||||||
|
return self.id <= other.id if other.is_air == self.is_air else False
|
||||||
|
else:
|
||||||
|
return self.id <= int(other)
|
||||||
|
|
||||||
|
def __gt__(self, other):
|
||||||
|
if isinstance(other, Rank):
|
||||||
|
return self.id > other.id if other.is_air == self.is_air else False
|
||||||
|
else:
|
||||||
|
return self.id > int(other)
|
||||||
|
|
||||||
|
def __ge__(self, other):
|
||||||
|
if isinstance(other, Rank):
|
||||||
|
return self.id >= other.id if other.is_air == self.is_air else False
|
||||||
|
else:
|
||||||
|
return self.id >= int(other)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def as_dict(self):
|
||||||
|
return dict(id=self.id, name=self.name, rank_points=self.rank_points, is_air=self.is_air)
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return f"{'Air' if self.is_air else 'Ground'}Rank<#{self.id} {self.name}>"
|
||||||
|
|
||||||
|
|
||||||
AIR_RANK_NAMES: Dict[int, str] = {
|
AIR_RANK_NAMES: Dict[int, str] = {
|
||||||
1: 'Airman', 2: 'Airman 1st Class', 3: 'Airman 1st Class*', 4: 'Airman 1st Class**', 5: 'Airman 1st Class***', 6: 'Airman 1st Class****', 7: 'Airman 1st Class*****',
|
1: 'Airman', 2: 'Airman 1st Class', 3: 'Airman 1st Class*', 4: 'Airman 1st Class**', 5: 'Airman 1st Class***', 6: 'Airman 1st Class****', 7: 'Airman 1st Class*****',
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 0.24.2
|
current_version = 0.24.2.3
|
||||||
commit = True
|
commit = True
|
||||||
tag = True
|
tag = True
|
||||||
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)\.?(?P<dev>\d+)?
|
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)\.?(?P<dev>\d+)?
|
||||||
|
2
setup.py
2
setup.py
@ -51,6 +51,6 @@ setup(
|
|||||||
test_suite='tests',
|
test_suite='tests',
|
||||||
tests_require=test_requirements,
|
tests_require=test_requirements,
|
||||||
url='https://github.com/eeriks/erepublik/',
|
url='https://github.com/eeriks/erepublik/',
|
||||||
version='0.24.2',
|
version='0.24.2.3',
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
)
|
)
|
||||||
|
Reference in New Issue
Block a user