You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
532 B

6 years ago
  1. [
  2. {
  3. "1": ["weather","temparature","hot"]
  4. },
  5. {
  6. "1":{
  7. "url":"https://api.openweathermap.org/data/2.5/weather",
  8. "parameters": {"q": "GPE"},
  9. "defaults": {"q": "location"},
  10. "apikey": {"appid": "3b0dabc605b0ed0d411b6119846d1321"},
  11. "response": "json",
  12. "data_to_receive": {
  13. "name": {},
  14. "weather": [
  15. {
  16. "main": {}
  17. }
  18. ],
  19. "main": {"temp": {}}
  20. },
  21. "output_format": "Today in {name}, it is {temp} with {main}"
  22. }
  23. }
  24. ]