METADATA 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. Metadata-Version: 2.1
  2. Name: pefile
  3. Version: 2024.8.26
  4. Summary: Python PE parsing module
  5. Home-page: https://github.com/erocarrera/pefile
  6. Download-URL: https://github.com/erocarrera/pefile/releases/download/v2024.8.26/pefile-2024.8.26.tar.gz
  7. Author: Ero Carrera
  8. Author-email: ero.carrera@gmail.com
  9. License: MIT
  10. Keywords: pe,exe,dll,pefile,pecoff
  11. Classifier: Development Status :: 5 - Production/Stable
  12. Classifier: Intended Audience :: Developers
  13. Classifier: Intended Audience :: Science/Research
  14. Classifier: Natural Language :: English
  15. Classifier: Operating System :: OS Independent
  16. Classifier: Programming Language :: Python
  17. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  18. Requires-Python: >=3.6.0
  19. License-File: LICENSE
  20. pefile, Portable Executable reader module
  21. All the PE file basic structures are available with their default names as
  22. attributes of the instance returned.
  23. Processed elements such as the import table are made available with lowercase
  24. names, to differentiate them from the upper case basic structure names.
  25. pefile has been tested against many edge cases such as corrupted and malformed
  26. PEs as well as malware, which often attempts to abuse the format way beyond its
  27. standard use. To the best of my knowledge most of the abuse is handled
  28. gracefully.
  29. Copyright (c) 2005-2024 Ero Carrera <ero.carrera@gmail.com>