All Projects → Winand → mikrotik-json-parser

Winand / mikrotik-json-parser

Licence: MIT license
JSON parser library for RouterOS

Projects that are alternatives of or similar to mikrotik-json-parser

Responsive-Mikrotik-Template
Responsive Mikrotik Template Base on Bootstrap 4
Stars: ✭ 35 (-14.63%)
Mutual labels:  mikrotik
TwoWayMirror
Adapt Swift’s Mirror functionality to make it bidirectional.
Stars: ✭ 38 (-7.32%)
Mutual labels:  json-parser
RouterOS Useful Scripts
MikroTik RouterOS Useful Scripts for various use
Stars: ✭ 66 (+60.98%)
Mutual labels:  mikrotik
jisoni
A native JSON parser written in pure @vlang/v
Stars: ✭ 13 (-68.29%)
Mutual labels:  json-parser
phpmixbill
PHP Mikrotik Billing - Voucher management for Mikrotik Hotspot
Stars: ✭ 134 (+226.83%)
Mutual labels:  mikrotik
Easy-HotSpot
Easy HotSpot is a super easy WiFi hotspot user management utility for Mikrotik RouterOS based Router devices. Voucher printing in 6 ready made templates are available. Can be installed in any PHP/MySql enabled servers locally or in Internet web servers. Uses the PHP PEAR2 API Client by boenrobot.
Stars: ✭ 45 (+9.76%)
Mutual labels:  mikrotik
jackson-js
JavaScript object serialization and deserialization library using decorators. It supports also advanced Object concepts such as polymorphism, Object identity and cyclic objects.
Stars: ✭ 86 (+109.76%)
Mutual labels:  json-parser
JsonSwiftson
A JSON parser with concise API written in Swift.
Stars: ✭ 14 (-65.85%)
Mutual labels:  json-parser
representable
Maps representation documents from and to Ruby objects. Includes JSON, XML and YAML support, plain properties and compositions.
Stars: ✭ 689 (+1580.49%)
Mutual labels:  json-parser
coronavirus-dresden
Collects official SARS-CoV-2 infection statistics published by the city of Dresden.
Stars: ✭ 19 (-53.66%)
Mutual labels:  json-parser
telegram bot
Script ini digunakan untuk mengontrol MikroTik Anda hanya dengan menggunakan sosial media Telegram.
Stars: ✭ 27 (-34.15%)
Mutual labels:  mikrotik
npk-tools
Mikrotik's NPK files managing tools
Stars: ✭ 63 (+53.66%)
Mutual labels:  mikrotik
docker-routeros
Mikrotik RouterOS inside Docker container
Stars: ✭ 225 (+448.78%)
Mutual labels:  mikrotik
ajson
Abstract JSON for Golang with JSONPath support
Stars: ✭ 144 (+251.22%)
Mutual labels:  json-parser
aws-vpn-mikrotik
Shell script to transform a Generic AWS VPN configuration guide to MikroTik specific set up commands that can be copy pasted into a mikrotik console to set up the customer end of the connection.
Stars: ✭ 38 (-7.32%)
Mutual labels:  mikrotik
Mikrotik-Router-Monitoring-System
SNMP based Router Monitoring System for Mikrotik Routers
Stars: ✭ 29 (-29.27%)
Mutual labels:  mikrotik
topolograph
Topolograph.com is an online project which can visualize OSPF/ISIS topology based on single OSPF LinkState DataBase scrapping from one network device ( thanks OSPF =). Then you can not only see (and check) the shortest path from source to destination, but also see the outcome from link or node failure along the path to the destination. The exist…
Stars: ✭ 84 (+104.88%)
Mutual labels:  mikrotik
PowerJSON
Powerjson is json's improved data format.
Stars: ✭ 24 (-41.46%)
Mutual labels:  json-parser
format-to-json
An algorithm that can format a string to json-like template. 字符串JSON格式化的算法。
Stars: ✭ 30 (-26.83%)
Mutual labels:  json-parser
libstud-json
JSON pull-parser/push-serializer library for C++
Stars: ✭ 20 (-51.22%)
Mutual labels:  json-parser

Mikrotik JSON Parser

Based on Chupakabra303's JSON parser for RouterOS.

Usage:

# Load library (set library functions to global variables)
/system script run "JParseFunctions"; global JSONLoad; global JSONLoads; global JSONUnload

# Parse data and print `ParsedResults[0].ParsedText` value
global content "{\"ParsedResults\": [{\"ParsedText\": \"Hello, world!\"}]}"
put ([$JSONLoads $content]->"ParsedResults"->0->"ParsedText")
set content

# or load JSON from file
put ([$JSONLoad "tmp"]->"ParsedResults"->0->"ParsedText")

# Unload library (clear global variables)
$JSONUnload

See links below:

http://www.embest.ru/mikrotik/json-parser-script

https://habr.com/post/337978/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].