From 53f161767ec740b351eebd3db7720135aff8161d Mon Sep 17 00:00:00 2001 From: Daniil Yarancev Date: Thu, 20 Oct 2016 15:26:24 +0300 Subject: [PATCH] OMG, remove file... --- test.py | 76 --------------------------------------------------------- 1 file changed, 76 deletions(-) delete mode 100644 test.py diff --git a/test.py b/test.py deleted file mode 100644 index 23bfa6a..0000000 --- a/test.py +++ /dev/null @@ -1,76 +0,0 @@ -import getpass -import sys -from optparse import OptionParser - -from minecraft import authentication -from minecraft.exceptions import YggdrasilError -from minecraft.networking.connection import Connection -from minecraft.networking.packets import ChatMessagePacket, ChatPacket -from minecraft.compat import input - - -def get_options(): - parser = OptionParser() - - parser.add_option("-u", "--username", dest="username", default=None, - help="username to log in with") - - parser.add_option("-p", "--password", dest="password", default=None, - help="password to log in with") - - parser.add_option("-s", "--server", dest="server", default=None, - help="server to connect to") - - parser.add_option("-o", "--offline", dest="offline", action="store_true", - help="connect to a server in offline mode") - - (options, args) = parser.parse_args() - - if not options.username: - options.username = input("Enter your username: ") - - if not options.password and not options.offline: - options.password = getpass.getpass("Enter your password: ") - - if not options.server: - options.server = input("Please enter server address" - " (including port): ") - # Try to split out port and address - if ':' in options.server: - server = options.server.split(":") - options.address = server[0] - options.port = int(server[1]) - else: - options.address = options.server - options.port = 25565 - - return options - - -def main(): - #options = get_options() - username = input('Enter username! ') - address, port = input('Enter address and port! ').split(':') - print("Connecting in offline mode") - connection = Connection( - address, int(port), username=username) - connection.connect() - - def print_chat(chat_packet): - print("Position: " + str(chat_packet.position)) - print("Data: " + chat_packet.json_data) - - connection.register_packet_listener(print_chat, ChatMessagePacket) - while True: - try: - text = input() - packet = ChatPacket() - packet.message = text - connection.write_packet(packet) - except KeyboardInterrupt: - print("Bye!") - sys.exit() - - -if __name__ == "__main__": - main() \ No newline at end of file