list of tools used to do the Django development [closed] - python

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am new to Django and python. Please if you can help me in tools which are used for Django development work, it will be great help.
Thank you in Advance

You just need Python and Django to work with Django.
To do it the right way, I'd highly recommend that you follow https://docs.djangoproject.com/en/1.8/intro/tutorial01/
After this, you'll have a good idea about how to work with Django.
Some other useful resources:
http://www.tangowithdjango.com/book17/
http://www.djangobook.com/en/2.0/index.html
For tools, any text editor will work. You don't need anything fancy.
I personally use Atom Text Editor for no particular reason.

Personally as IDE I use Pycharm, it's just great, has really an extensive support for Django.
Besides I use Fabric for automated deployments.
Not sure if you ask exactly about that. In case you do not know Django contains itself a lot of "tooling commands" available via manage.py

Related

Is there any documentation for the python module vim--for vim plugin development? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I have went through a couple blog posts on how to make vim plugins using Python, specifically from import vim. I am familiar with simple things such as vim.current.buffer, and others. However, I cannot find documentation on this module. Suggestions?
from this presentation "Vim and Python: Two Great Tastes that Taste Great Together",
HOWTO Get Started
Not very well documented outside of vim.
In vim: help python
Look at other python scripts at vim.org

Python API to Access Trash Folder [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I am looking for a good python API to access the Trash folder in Linux. This is part of a simple productivity software that will help user organize their files, and empty their trash folder on a regular basis. I want to make this work for GNOME, but I would like to expand it to other desktop environment.
Do you have any suggestion on how to get one ?
Thank you
I don't think that there is an API for that. I think (or rather, the voices in my head on the internet say) "Empty Trash" is a map to rm -rf ~/.Trash/*. (Actually, that should be true for both KDE and Gnome, but I don't know about XFCE, Slim or XKCD. Of course, if you have XKCD as a windows manager, I don't think you'll ever need to worry about trash.)

Komodo Extension [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Continuing on with my Python learning, I just installed Komodo edit, are there any recommended add ins/extensions that I should include? Any recommendations on using it or another GUI designer (TkInter base)?
If you want to use Komodo, integrate it with Pylint as stated here (I do not know if it works with Komodo Edit, I have run it with Komodo then). It is a code checker, very useful for dynamic language like Python.
Also, there is GUI Builder, which is not an "add-in" but "add-out", it was already part of the Komodo, but it has been released as open source.
Komodo extension: Tab trigger for Abbreviations (http://community.activestate.com/xpi/tab-abbreviations). Can't live without it anymore.
Komodo edit is just a text editor.
For gui design I suggest Glade-3. It is specially juicy.
try using eclipse instead with PyDev.
I use to install MoreKomodo and TweakUI after putting Komodo on some machine for me.

Python Debugging [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I'm not sure if 'debugging' is the right word, but I'm looking for a tool/IDE that would show my which statement/block will be executed next in a particular module. This feature I remember was available in Turbo C++ years back so I assume something similar might be available in some Python IDE?
Thanks
pdb has this feature - there's a nice hands-on tutorial about it here.
pydev, the eclipse python plugin, might help if you're looking for an IDE solution.
Ulipad IDE's debugging feature is very good, its just works like Turbo C++ IDE's debugger.
At the commandline, there's pdb
In an IDE, Netbeans has a GUI debugger that some people like.
I use Netbeans IDE.. very good (and improving) python support..
you will have to install the python plugin if you download the standard installer..

Is there a free python debugger that has watchpoints? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
pdb and winpdb both seem to be missing this essential (to me) feature. I saw something suggesting WingIDE has it but I'd prefer a solution that is free, and if I do have to pay, I'd prefer to pay for something that is better than Wing.
You should check out Eric4
It's a very good Python IDE with a builtin debugger.
The debugger has views for global variables, local variables and watchpoints.
Please look what pydev in eclipse offers...
Take a look at PyScripter. It has an integrated debugger, watch windows and much more.
It's open source and is developed here.
HTH
It's too bad that the standard pdb module that comes with python itself does not yet support watchpoints.
Described here: http://wiki.python.org/moin/PdbImprovments
This reimplementation of the built-in pdb.py has watchpoints.
http://morepypy.blogspot.com/2008/06/pdb-and-rlcompleterng.html
I tried it but, in cursory tries was not able to get it to work.

Categories

Resources