Friday

py2exe mechanize

I've got problem with including mechanize into py2exe package.
I resolved this problem by
  1. uninstalling packages by running easy_install with -m key

easy_install -m mechanize
easy_install -m MultiPartPostHandler

  1. physically removing .eggs files from python2.X/site-packages/MYPACKAGE.egg
  1. installing packages with -Z key

easy_install.exe -Z mechanize
easy_install.exe -Z MultiPartPostHandler


Pomodoro technique game

No comments:

test smtp server with powershell

Send-MailMessage -SMTPServer smtp.domain.com -To [email protected] -From [email protected] -Subject "This is a test email" -Body ...