You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fantastic and useful library. Is it possible to add SymmetricDifference method?
Its already part of python netaddr library:
from netaddr import *
subnet1= IPSet(IPNetwork("10.0.0.0/15"))
subnet2 = IPSet(IPNetwork("10.0.0.0/16"))
result = subnet1 ^ subnet2
print(result)
The text was updated successfully, but these errors were encountered:
Fantastic and useful library. Is it possible to add SymmetricDifference method?
Its already part of python netaddr library:
from netaddr import *
subnet1= IPSet(IPNetwork("10.0.0.0/15"))
subnet2 = IPSet(IPNetwork("10.0.0.0/16"))
result = subnet1 ^ subnet2
print(result)
The text was updated successfully, but these errors were encountered: