2
0
mirror of https://github.com/esiur/esiur-js.git synced 2025-05-06 12:32:58 +00:00
esiur-js/README.md
2022-02-17 18:06:02 +03:00

19 lines
525 B
Markdown

# Esiur.JS
Esiur Library for Javascript
# Usage
npm run demo
import io;
import sys;
import json;
res = json.load(sys.stdin)
temp = res['main']['temp']
hum = res['main']['humidity']
vis = res['visibility']
wind = res['wind']['speed']
desc = res['weather'][0]['description']
sys.stdout.buffer.write(f'مرحبا بكم في أعمال, درجة الحرارة {temp} مئوية, الرطوبة {hum}%, مدى الرؤية {vis} متر, سرعة الرياح {wind} كيلومتر في الساعة, {desc}'.encode('utf8'))