- python-vuejs:
pip install python-vuejs- webpack-bundle-tracker
| #!/usr/bin/python3 | |
| from scapy.utils import rdpcap | |
| from scapy.packet import Packet, bind_layers | |
| from scapy import fields | |
| from scapy.layers.inet import IP | |
| from scapy.all import * | |
| import pcap | |
| class PfSyncHeader(Packet): | |
| name = 'PFSyncHeaderPacket' |
| (function (undefined) { | |
| /** | |
| * moment.easter | |
| * Source: https://github.com/zaygraveyard/moment-easter | |
| * License: MIT | |
| */ | |
| moment.easter = function Easter20ops(year) { | |
| var a = (year / 100 | 0) * 1483 - (year / 400 | 0) * 2225 + 2613; | |
| var b = ((year % 19 * 3510 + (a / 25 | 0) * 319) / 330 | 0) % 29; | |
| var c = 148 - b - ((year * 5 / 4 | 0) + a - b) % 7; |
| from lxml import etree | |
| from zeep import Plugin | |
| class MyLoggingPlugin(Plugin): | |
| def ingress(self, envelope, http_headers, operation): | |
| print(etree.tostring(envelope, pretty_print=True)) | |
| return envelope, http_headers | |
| def egress(self, envelope, http_headers, operation, binding_options): |