METADATA 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. Metadata-Version: 2.1
  2. Name: win-inet-pton
  3. Version: 1.1.0
  4. Summary: Native inet_pton and inet_ntop implementation for Python on Windows (with ctypes).
  5. Home-page: https://github.com/hickeroar/win_inet_pton
  6. Author: Ryan Vennell
  7. Author-email: ryan.vennell@gmail.com
  8. Maintainer: Seth Michael Larson
  9. Maintainer-email: sethmichaellarson@gmail.com
  10. License: This software released into the public domain. Anyone is free to copy,
  11. modify, publish, use, compile, sell, or distribute this software,
  12. either in source code form or as a compiled binary, for any purpose,
  13. commercial or non-commercial, and by any means.
  14. Classifier: Development Status :: 5 - Production/Stable
  15. Classifier: Intended Audience :: Developers
  16. Classifier: Operating System :: OS Independent
  17. Classifier: Operating System :: Microsoft :: Windows
  18. Classifier: License :: Public Domain
  19. Classifier: Programming Language :: Python
  20. Classifier: Programming Language :: Python :: 2
  21. Classifier: Programming Language :: Python :: 2.7
  22. Classifier: Programming Language :: Python :: 3
  23. Classifier: Programming Language :: Python :: 3.3
  24. Classifier: Topic :: Utilities
  25. License-File: LICENSE
  26. win_inet_pton
  27. =============
  28. Native inet_pton and inet_ntop implementation for Python on Windows (with ctypes).
  29. Credit Where Credit Is Due
  30. --------------------------
  31. This package is based on code that was originally written by https://github.com/nnemkin here: https://gist.github.com/nnemkin/4966028
  32. Why?
  33. ----
  34. I needed this functionality in https://github.com/SerenitySoftwareLLC/cahoots to get full windows support. I figured, since there were other people looking for a solution to this on the net, I should publish it.
  35. Usage
  36. -----
  37. .. code-block:: bash
  38. python -m pip install win_inet_pton
  39. Just import it, and it will auto-add the methods to the socket library:
  40. .. code-block:: python
  41. import win_inet_pton
  42. import socket
  43. socket.inet_pton(...)
  44. socket.inet_ntop(...)
  45. License
  46. -------
  47. This software released into the public domain. Anyone is free to copy,
  48. modify, publish, use, compile, sell, or distribute this software,
  49. either in source code form or as a compiled binary, for any purpose,
  50. commercial or non-commercial, and by any means.