Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi all! We have been experiencing an issue on site where threads have been missing the latest postings. The platform host Vanilla are working on this issue. A workaround that has been used by some is to navigate back from 1 to 10+ pages to re-sync the thread and this will then show the latest posts. Thanks, Mike.
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Python

  • 06-08-2013 2:10pm
    #1
    Moderators, Computer Games Moderators, Technology & Internet Moderators Posts: 19,241 Mod ✭✭✭✭


    Had my first experience of Python during the week. I'm wondering what is the best open source and IDE and testing environments I could get my hands on? I can get my hands on manuals to aid in my own learning no hassle, so that won't be a problem.


Comments

  • Registered Users, Registered Users 2 Posts: 291 ✭✭Seridisand


    Aptana Studio 3, the pydev plugin is a good open source IDE, I'd use Jenkins if you want to perform integrated testing


  • Moderators, Computer Games Moderators, Technology & Internet Moderators Posts: 19,241 Mod ✭✭✭✭L.Jenkins


    Thanks Seridisand


  • Registered Users, Registered Users 2 Posts: 586 ✭✭✭Aswerty


    An interesting read on Python development in Visual Studio from one of my favourite bloggers in the MS world – http://www.hanselman.com/blog/OneOfMicrosoftsBestKeptSecretsPythonToolsForVisualStudioPTVS.aspx

    I've been meaning to have a look into it myself.


  • Moderators, Society & Culture Moderators Posts: 9,733 Mod ✭✭✭✭Manach


    As well, O'Reilly have a good set of beginner books on Python for starters.


  • Moderators, Computer Games Moderators, Technology & Internet Moderators Posts: 19,241 Mod ✭✭✭✭L.Jenkins


    Aswerty wrote: »
    An interesting read on Python development in Visual Studio from one of my favourite bloggers in the MS world – http://www.hanselman.com/blog/OneOfMicrosoftsBestKeptSecretsPythonToolsForVisualStudioPTVS.aspx

    I've been meaning to have a look into it myself.

    Thanks for the link. I never copped that VS can run Python Dev and Testing.
    Manach wrote: »
    As well, O'Reilly have a good set of beginner books on Python for starters.

    After downloading a load of PDFs on Python regards Beginners coding and more advanced development.


  • Advertisement
  • Registered Users, Registered Users 2 Posts: 1,922 ✭✭✭fergalr


    Pycharm is pretty good, and not too expensive (~80e).

    You can go a long way with just a good editor (e.g. vim) because you write a lot in not much python.

    Also, and this is a bad point against python, the IDEs, in my experience, are not nearly as important as in Java; because of the fact that python is more dynamic, the code inspection, refactoring etc isn't as deep or useful as with Java IDEs.

    I think the tradeoff is still worth it for using Python, but it'd be better if the tools were better.


    This is why I think that languages like Python are only transitional...


  • Moderators, Science, Health & Environment Moderators, Social & Fun Moderators, Society & Culture Moderators Posts: 60,104 Mod ✭✭✭✭Tar.Aldarion


    Could use sublime, or something like eclipse/netbeans.

    For python I find gedit/vim fine.

    http://learnpythonthehardway.org/


  • Registered Users Posts: 319 ✭✭nagilum2


    If you're still interested, JetBrains have just released a Community Edition of PyCharm. It's probably the best Python IDE available, if you prefer an IDE vs. VIM/EMACS/Sublime.

    http://www.jetbrains.com/pycharm/


  • Registered Users, Registered Users 2 Posts: 1,606 ✭✭✭djmarkus


    +1 for pycharm. Don't let the fact that it's actually java turn you off. :)


Advertisement