摘要:
python——IPy库 (2011-03-09 15:29)分类: pythonWebsite: https://github.com/haypo/python-ipy/安装:easy_install IPy>>> from IPy import IP>>> dir(IP) ['__add__', '__cmp__', '__contains__', '__doc__', '__eq__', '__getitem__', '__hash__', 阅读全文
摘要:
windows下命令行下输入python文件名直接执行时,sys.argv里面只有文件名,其他参数没有传进来。解决办法:打开注册表 : \HKEY_CLASSES_ROOT\Applications\python.exe\shell\open\command"D:\develop\Python27\python.exe" "%1" 后面加上%*,即:"D:\develop\Python27\python.exe" "%1" %*问题就解决了 阅读全文
摘要:
需要调试某个单独的py模块的时候,启动整个django工程看不到程序抛出的信息,也不能单步调试,很麻烦,通过google在stackoverflow上搜到解决办法:第一种方法:导入settings对象(注意是对象不是模块)from django.conf import settingssettings.configure( DATABASE_ENGINE='postgresql_psycopg2', DATABASE_NAME='FOO', DATABASE_USER='username', DATABASE_PASSWORD='pass 阅读全文