├── .gitignore ├── LICENSE ├── README.md ├── createnpk.py ├── dumpnpk.py └── unpacknpk.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kost/mikrotik-npk/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kost/mikrotik-npk/HEAD/README.md -------------------------------------------------------------------------------- /createnpk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kost/mikrotik-npk/HEAD/createnpk.py -------------------------------------------------------------------------------- /dumpnpk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kost/mikrotik-npk/HEAD/dumpnpk.py -------------------------------------------------------------------------------- /unpacknpk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kost/mikrotik-npk/HEAD/unpacknpk.py --------------------------------------------------------------------------------