Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by dvska

  1. dvska

    Implementing Network traces analyzer in Python.

    Hi learningpython, You need pcapy ( http://oss.coresecurity.com/projects/pcapy.html ) Dmitry V Selitsky, t o r m o z @ g m x . n e t, Python/Web/Database developer
  2. dvska

    Novice here Hi :-D

    http://www.siafoo.net/article/52 `Python Tips, Tricks, and Hacks` Dmitry V Selitsky, t o r m o z @ g m x . n e t, Python/Web/Database developer http://www.linkedin.com/in/dvska
  3. dvska

    DB2 query and management tools

    Also consider Advanced Query Tool http://www.querytool.com/ Dmitry V Selitsky, t o r m o z @ g m x . n e t, Python/Database developer
  4. dvska

    Novice here Hi :-D

    http://google.com/search?q=python+tuturial|guide Dmitry V Selitsky, t o r m o z @ g m x . n e t, Python/Database developer
  5. dvska

    Python Server Pages

    Such web frameworks as - Django - Pylons - Web.py and lot of detached template engines are currently popular. Dmitry V Selitsky, t o r m o z @ g m x . n e t, Python/Database developer
  6. dvska

    Python saving images from a webpage

    (tested on Windows) img_bin_data = urllib2.urlopen(descr_img_url).read() new_img_file = open(new_img_file_name, 'wb') new_img_file.write(img_bin_data) new_img_file.close()
  7. dvska

    HTTP_POST

    We need more info about your web app. What frameworks/libs it uses etc.
  8. dvska

    manipulate PDFs

    Look at ReportLab..
  9. dvska

    Some sort of pause (this is really bugging me)

    raw_input("Hit ENTER to continue..") Dmitry V Selitsky, t o r m o z @ g m x . n e t
  10. dvska

    help with os.getcwd() in a menu

    You are right. http://66.249.93.104/search?q=cache:1ZeNAtLtA_UJ:docs.python.org/lib/os-path.html+sep&ct=clnk&cd=1 Dmitry V Selitsky, t o r m o z @ g m x . n e t
  11. dvska

    help with os.getcwd() in a menu

    Imagine, that your program organized in such dirs: / home/ my_py_project/ images/ util/ main.py To define from main.py the relative path to [images] directory, use import os staticDirPath = os.path.dirname(__file__) + os.sep + 'images' Dmitry V Selitsky, t...
  12. dvska

    help with os.getcwd() in a menu

    You may use os.path.dirname(__file__) trick Dmitry V Selitsky
  13. dvska

    How to specify default directory for saving files in Python IDLE

    The fastest solution is to hack IDLE -- edit the IOBinding.py ( in my Python 2.4.3 installation C:\python24\Lib\idlelib\IOBinding.py ): change lines 181 & 182 to filename = ".py" # old value is "" dirname = "e:\\" # old value is None; change e:\ to directory of your choice
  14. dvska

    Array declaration

    ######################################### inObject, inName, inDescription, inCustomTypeList, \ inCustomType, inCloneable, inNot_unattendable_folder, \ inMonthly_email_folder, inWeekly_email_folder, inEmailAddress = range(10) In = {} In[inObject] =...
  15. dvska

    Python as a Service Registry Key

    You can store log_file_path in - your own registry key or - .ini-file or - environment variable then in your app read this path info

Part and Inventory Search

Back
Top