vban-cmd-python/__main__.py
onyx-and-iris 416550fa95 add self.buff, runmany
add self.buff and test for equality against private packet before returning as public packet.

add runmany
2022-02-26 03:07:29 +00:00

12 lines
252 B
Python

import vban_cmd
from time import sleep
def main():
with vban_cmd.connect('potato', ip='ws.local') as vban:
for i in range(100):
print(vban.strip[5].A1)
print(vban.strip[5].A2)
if __name__ == '__main__':
main()