Re: Useful Python Packages?

2017-10-08 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector


  


Re: Useful Python Packages?

You can add Numpy to that list. Its a scientific computing library that provides a number functions written in C for crunching numbers and manipulating arrays of data. Its great if you need to do any heavy lifting or greater flexibility with large amounts of data. Its part of a larger collection of scientific libraries like Matplotlib, scipy, etc. among others for machine learning or genetic sequencing.There's also PyAL which is a thin OpenAL wrapper, and with a little tweaking Pyglet's OpenAL bindings can also provide advanced audio functions.

URL: http://forum.audiogames.net/viewtopic.php?pid=332601#p332601





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Useful Python Packages?

2017-10-04 Thread AudioGames . net Forum — Developers room : cartertemm via Audiogames-reflector


  


Re: Useful Python Packages?

@6The problem is with this line:print ("He's %d pounds heavy." % my_weightI'm pretty sure you can figure it out from there.@7This shouldn't matter. In fact, I'd leave it this way for cross compatibility

URL: http://forum.audiogames.net/viewtopic.php?pid=332034#p332034





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Useful Python Packages?

2017-10-03 Thread AudioGames . net Forum — Developers room : Guitarman via Audiogames-reflector


  


Re: Useful Python Packages?

Hi.I'm going through learn python the hard way and i'm on exercise five. I typed the code exactly and compared mine with the book's code and they match up. Python tells me invalid syntax or that I need parens after print. What is wrong? I remember I had this problem last time when I did this exercise but I don't remember how I fixed it.Here is my code-# This is a variable that tells my name, the next variable tells my age.my_name = 'Cfb'my_age = 26my_height = 74 # inchesmy_weight = 240 # lbsmy_eyes = 'Blue'my_hair = 'Brown'print ("Let's talk about %s.") % my_nameprint ("He's %d inches tall.") % my_heightprint ("He's %d inches heavy.") % my_heightprint ("He's %d pounds heavy." % my_weightprint ("Actually, that's not too heavy.")print ("He's got %s eyes and %s 
 hair.") % (my_eyes, my_hair)print ("His teeth are usually %s depending on the coffee.") % my_teeth    print ("If I add %d, %d, and %d I get %d.") % (    my_age, my_height, my_weight my_age + my_height + my_weight)I know it must be something simple that I'm missing but I can't figure what it is.Thanks.

URL: http://forum.audiogames.net/viewtopic.php?pid=331827#p331827





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Useful Python Packages?

2017-10-02 Thread AudioGames . net Forum — Developers room : pauliyobo via Audiogames-reflector


  


Re: Useful Python Packages?

just remembered now, you can try to use even flask, wich is a micro web framework.

URL: http://forum.audiogames.net/viewtopic.php?pid=331730#p331730





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Useful Python Packages?

2017-10-01 Thread AudioGames . net Forum — Developers room : Guitarman via Audiogames-reflector


  


Useful Python Packages?

Hello.Well I'm working very hard to learn python. I couldn't get pip to work at first but now I've got it working. I'm not a beginner programmer or advanced, I'm somewhere in the middle if that means anything. I understand syntax and how I would code basic things.So I wanted to create this topic to learn about what fellow programmers find are good or useful python packages. Like I said I have pip working so I can install packages easily, I just don't know what kinds of things i will need from the python package index. I want to make audiogames but I'm definitely willing to try designing other pieces of software. Please tell me about any modules that you find helpful, or easy to use, or just packages that do fun stuff with python.Thanks I'm eager to see where this topic goes.I did have a question though, I tried to install pyaudiogame with pip and it says can't find or satisfy requirements. Is this because pyaudio
 game was taken off the package index? Is pyaudiogame still being developed at all?

URL: http://forum.audiogames.net/viewtopic.php?pid=331579#p331579





___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector