We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Because of ignored problems with DeprecationWarning for PY_SSIZE_T_CLEAN (#67, #68), Pcapy doesn't work anymore on Python3.10 (Note: read https://docs.python.org/3.10/whatsnew/3.10.html#id2)
DeprecationWarning
PY_SSIZE_T_CLEAN
The text was updated successfully, but these errors were encountered:
Minimalistic example which fails:
import pcapy def recv(header, packet): sec, usec = header.getts() print(sec) cap = pcapy.open_live("any", 65535, True, 100) cap.loop(-1, recv)
Sorry, something went wrong.
https://pypi.org/project/pcapy-ng/ (tl;dr: just do the pip install pcapy-ng)
pip install pcapy-ng
You can also try https://github.com/segevfiner/cypcap which is a different project I wrote out of frustration with existing ones, and boredom 😛
No branches or pull requests
Because of ignored problems with
DeprecationWarning
forPY_SSIZE_T_CLEAN
(#67, #68), Pcapy doesn't work anymore on Python3.10 (Note: read https://docs.python.org/3.10/whatsnew/3.10.html#id2)The text was updated successfully, but these errors were encountered: