Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #63306
| Path | csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <rosuav@gmail.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.021 |
| X-Spam-Evidence | '*H*': 0.96; '*S*': 0.00; 'ideally': 0.04; 'socket': 0.07; 'cc:addr:python-list': 0.11; 'python': 0.11; 'gui': 0.12; 'jan': 0.12; 'customizing': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'subject:python': 0.16; 'wrote:': 0.18; 'bit': 0.19; 'later': 0.20; 'programming': 0.22; 'cc:addr:python.org': 0.22; 'commands,': 0.24; 'skip': 0.24; 'cc:2**0': 0.24; 'source': 0.25; 'player': 0.26; 'header:In-Reply- To:1': 0.27; 'am,': 0.29; 'message-id:@mail.gmail.com': 0.30; "i'm": 0.30; 'text': 0.33; 'open': 0.33; 'framework': 0.33; 'actual': 0.34; 'trouble': 0.34; 'could': 0.34; 'something': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'building': 0.35; 'in.': 0.36; 'subject:?': 0.36; 'effort': 0.37; 'either': 0.39; 'free': 0.61; 'save': 0.62; 'making': 0.63; 'love': 0.65; 'worth': 0.66; 'absolutely': 0.87; 'trouble.': 0.91; 'to:none': 0.92; 'connection,': 0.95 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type:content-transfer-encoding; bh=kpHAYvkQjlsVaoCQ0NkuuK2J6hsdaxPuyWYdUSlDVi4=; b=g0nXRExg0CoSStaAHX5dqaB8xv+TKZgT8G5KiOqBQ9miWfjPWHNaiok7FmN+SISbJG hiV7QvydcrFsp1SSZrcqQRlDM8vZGi4WDjZR4HANoSYPz3Yj538RmgNDrB9alqsq264Y ow1j5aW7HBsD5gF6/m57nPX6ZW1PB9SDrmdeWNvbgzlc115+apvVXtVGevN/DY19g9LX JgwOKfhDBelzdLhdMOO3Uyoz9E/HbNWfXgw21UCXaTbIqjcxBv0M6I0hsYrLeOs5uzNR irIumlFtMVTWKGqW9STJtkZT1qG14KT5sesHhOXva9QJCHOQoM/fWD2isbohw9iXBFrT tUdA== |
| MIME-Version | 1.0 |
| X-Received | by 10.68.133.6 with SMTP id oy6mr9326079pbb.153.1389028168281; Mon, 06 Jan 2014 09:09:28 -0800 (PST) |
| In-Reply-To | <2e5c9033-1bb5-46e4-93e6-046069923297@googlegroups.com> |
| References | <2e5c9033-1bb5-46e4-93e6-046069923297@googlegroups.com> |
| Date | Tue, 7 Jan 2014 04:09:28 +1100 |
| Subject | Re: Which python framework? |
| From | Chris Angelico <rosuav@gmail.com> |
| Cc | "python-list@python.org" <python-list@python.org> |
| Content-Type | text/plain; charset=UTF-8 |
| Content-Transfer-Encoding | quoted-printable |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.15 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.5035.1389028177.18130.python-list@python.org> (permalink) |
| Lines | 17 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1389028177 news.xs4all.nl 2941 [2001:888:2000:d::a6]:60686 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:63306 |
Show key headers only | View raw
On Tue, Jan 7, 2014 at 4:02 AM, <blissend@gmail.com> wrote: > I love programming in python but I'm having trouble deciding over a framework for a single player MUD like game I'm making for fun. Ideally it's a cross-platform free framework in case I want make it open source later with good capabilities of customizing the GUI look/style. If by "MUD-like" you mean that it's fundamentally based on scrolling text and inputted commands, you may be able to just skip the GUI altogether and use the console (print() and input()). That'd save you a lot of trouble. Alternatively, it might be worth going the other way and actually making it a MUD. Wait for a socket connection, let the user TELNET in. Your GUI would then be an actual MUD client, off the shelf, giving you all its features absolutely for free. Either way, you put zero effort into building a GUI, and you get something every bit as powerful as you could build manually. ChrisA
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Which python framework? blissend@gmail.com - 2014-01-06 09:02 -0800
Re: Which python framework? Chris Angelico <rosuav@gmail.com> - 2014-01-07 04:09 +1100
Re: Which python framework? blissend@gmail.com - 2014-01-06 09:37 -0800
Re: Which python framework? blissend@gmail.com - 2014-01-06 11:07 -0800
Re: Which python framework? Mark Lawrence <breamoreboy@yahoo.co.uk> - 2014-01-06 19:12 +0000
Re: Which python framework? CM <cmpython@gmail.com> - 2014-01-06 16:42 -0800
csiph-web