Wingide5-forlinux cracked

Source: Internet
Author: User

Wingide is an excellent Python IDE. The ointment is not free. Online there are a lot of cracked version actually only provide a crack file, and the crack file is older, is for the python2.5 version of the production.

The Wingide:http://wingware.com/downloads installation process is skipped.

If you do not want to decompile yourself, here is a ready-made file. http://download.csdn.net/detail/gugu1313/8466937

1. First install the Anti-compilation tool Uncompyle2

sudo apt-get install Python-pip

sudo pip install Uncompyle2

2. View wingide installation directory Whereis Wingide5 mine is/USR/LIB/WINGIDE5.

Find the Src.zip in the registration file/usr/lib/wingide5/bin/2.7/from Wingide (python for 2.7, if it is another version of Python to Bin/xx),

Unzip Src.zip: There is a abstract.pyo file in the folder process.

And then use the command

Uncompyle2 abstract.pyo > abstract.py

This generates the source py file according to the Pyo file, and finds the code related to the usage period as follows:

[Python]View PlainCopy
  1. def _gettermdaysleft (self, lic = None):
  2. "" "Get number of days left on license. Returns the days, or 0 if expired,
  3. -1 if unlimited, or-2 On Error "" "
  4. <span style="color: #ff0000;" > Return-1 #我们直接在这里将这个函数返回-1</span>
  5. if Config.ksteam:
  6. Try:
  7. return self.__getsteamtermdaysleft ()
  8. except:
  9. return-2
  10. If Lic is None:
  11. LIC = Self.flicensedata
  12. If Lic is None:
  13. return 0
  14. elif lic[' termdays ']! = ' * ':
  15. Try:
  16. Fields = String.Split (lic[' Date '), '/')
  17. If Len (fields)! = 3:
  18. Raise ValueError
  19. M, d, y = Map (string.atoi, fields)
  20. if M < 1 or M > y or D < 1 or D > + or-< 0:
  21. Raise ValueError
  22. if y < :
  23. y = + y
  24. Lic_date = Time.mktime ((Y,
  25. M
  26. D
  27. 0,
  28. 0,
  29. 0,
  30. 0,
  31. 0,
  32. -1))
  33. except (ValueError, TypeError, overflowerror):
  34. return-2
  35. Cur_date = Time.time ()
  36. Try:
  37. lic_secs = Int (lic[' termdays ' ) * *
  38. except ValueError:
  39. return-2
  40. if cur_date > lic_date + lic_secs:
  41. return 0
  42. if lic_date > cur_date + 86400:
  43. return 0
  44. return Int ((Lic_secs-(cur_date-lic_date))/ 86400)
  45. Else:
  46. return-1


3. then regenerate the Pyo file with our modified py file

Python-o-M py_compile abstract.py Place the newly generated abstract.pyo into the/usr/lib/wingide5/bin/2.7/src/process folder. Cracked done. Perform/usr/lib/wingide5/wing start wingide discovery has been cracked successfully.

Wingide5-forlinux cracked

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.