netsse.base.Network.add_platform ================================ .. py:method:: netsse.base.Network.add_platform(*args, ignore_msg: bool = False) Add a `Platform` instance to the list of platforms in the network. :param \*args: Platform to be added to the network. :type \*args: Platform object :param ignore_msg: If `False`, messages are printed to inform about any changes made to the network. If `True`, thoses messages are turned off. :type ignore_msg: bool, default False .. rubric:: Example >>> plaform2 = netsse.base.Platform() >>> network.add_platform(platform2,ignore_msg=True)