PKG-INFO 1.3 KB

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