gitextract_3puwzenn/ ├── .flake8 ├── .github/ │ └── workflows/ │ └── makefile.yml ├── .gitignore ├── .golangci.yaml ├── .travis.yml ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── bin/ │ ├── geo-proxy.py │ ├── proxy.py │ └── srv.py ├── config/ │ └── services/ │ └── services.yaml ├── doc/ │ ├── integrations.md │ └── terminal-images.md ├── go.mod ├── go.sum ├── internal/ │ ├── config/ │ │ └── config.go │ ├── fmt/ │ │ └── png/ │ │ ├── colors.go │ │ ├── go.mod │ │ ├── go.sum │ │ └── png.go │ ├── geo/ │ │ ├── ip/ │ │ │ ├── convert.go │ │ │ ├── ip.go │ │ │ └── ip_test.go │ │ └── location/ │ │ ├── cache.go │ │ ├── convert.go │ │ ├── location.go │ │ ├── nominatim.go │ │ ├── nominatim_locationiq.go │ │ ├── nominatim_opencage.go │ │ ├── response.go │ │ └── search.go │ ├── logging/ │ │ ├── logging.go │ │ └── suppress.go │ ├── options/ │ │ ├── options.go │ │ ├── parse.go │ │ └── processlog.go │ ├── processor/ │ │ ├── j1.go │ │ ├── peak.go │ │ └── processor.go │ ├── routing/ │ │ └── routing.go │ ├── stats/ │ │ └── stats.go │ ├── types/ │ │ ├── errors.go │ │ └── types.go │ ├── util/ │ │ ├── files.go │ │ ├── http.go │ │ └── yaml.go │ └── view/ │ └── v1/ │ ├── api.go │ ├── cmd.go │ ├── format.go │ ├── icons.go │ ├── locale.go │ └── view1.go ├── lib/ │ ├── airports.py │ ├── buttons.py │ ├── cache.py │ ├── constants.py │ ├── datasource/ │ │ └── README.md │ ├── duplicate_translations.py │ ├── extract_emoji.py │ ├── fields.py │ ├── fmt/ │ │ ├── __init__.py │ │ ├── png.py │ │ └── unicodedata2.py │ ├── globals.py │ ├── limits.py │ ├── location.py │ ├── metno.py │ ├── parse_query.py │ ├── proxy_log.py │ ├── translations.py │ ├── translations_v2.py │ ├── view/ │ │ ├── __init__.py │ │ ├── line.py │ │ ├── moon.py │ │ ├── prometheus.py │ │ ├── v2.py │ │ └── wttr.py │ ├── weather_data.py │ └── wttr_srv.py ├── requirements.txt ├── share/ │ ├── aliases │ ├── ansi2html.sh │ ├── bash-function.txt │ ├── blacklist │ ├── docker/ │ │ └── supervisord.conf │ ├── help.txt │ ├── iterm2.txt │ ├── list-of-iata-codes.txt │ ├── salt/ │ │ ├── README.md │ │ ├── init.sls │ │ ├── pillar.sls │ │ ├── start.sh │ │ ├── wegorc │ │ └── wttr.service │ ├── screenrc │ ├── scripts/ │ │ ├── build-welang.sh │ │ ├── clean-cache.sh │ │ ├── log-space.sh │ │ └── start-screen.sh │ ├── static/ │ │ ├── malformed-response.html │ │ └── style.css │ ├── systemd/ │ │ ├── README.md │ │ ├── wttrin.service │ │ └── wttrin.sh │ ├── templates/ │ │ └── index.html │ ├── test-thunder.txt │ ├── translation.txt │ └── translations/ │ ├── af-help.txt │ ├── af.txt │ ├── am-help.txt │ ├── am.txt │ ├── ar-help.txt │ ├── ar.txt │ ├── az.txt │ ├── be-help.txt │ ├── be.txt │ ├── bg-help.txt │ ├── bn-help.txt │ ├── bn.txt │ ├── bs.txt │ ├── ca-help.txt │ ├── ca.txt │ ├── cs-help.txt │ ├── cs.txt │ ├── cy.txt │ ├── da-help.txt │ ├── da.txt │ ├── de-help.txt │ ├── de.txt │ ├── dk-help.txt │ ├── el-help.txt │ ├── el.txt │ ├── en.txt │ ├── eo.txt │ ├── es-help.txt │ ├── es.txt │ ├── et-help.txt │ ├── et.txt │ ├── eu-help.txt │ ├── eu.txt │ ├── fa-help.txt │ ├── fa.txt │ ├── fr-help.txt │ ├── fr.txt │ ├── fy.txt │ ├── ga.txt │ ├── gl-help.txt │ ├── gl.txt │ ├── gu-help.txt │ ├── gu.txt │ ├── he.txt │ ├── hi-help.txt │ ├── hi.txt │ ├── hr.txt │ ├── hu-help.txt │ ├── hu.txt │ ├── hy.txt │ ├── ia-help.txt │ ├── ia.txt │ ├── id-help.txt │ ├── id.txt │ ├── is.txt │ ├── it-help.txt │ ├── it.txt │ ├── ja.txt │ ├── kk-help.txt │ ├── kk.txt │ ├── lt-help.txt │ ├── lt.txt │ ├── lv-help.txt │ ├── lv.txt │ ├── messages/ │ │ ├── en.yaml │ │ └── gu.yaml │ ├── mg-help.txt │ ├── mg.txt │ ├── mk.txt │ ├── mr-help.txt │ ├── mr.txt │ ├── nb-help.txt │ ├── nb.txt │ ├── nl-help.txt │ ├── nl.txt │ ├── nn.txt │ ├── oc-help.txt │ ├── oc.txt │ ├── pl-help.txt │ ├── pl.txt │ ├── pt-br-help.txt │ ├── pt-br.txt │ ├── pt-help.txt │ ├── pt.txt │ ├── ro-help.txt │ ├── ro.txt │ ├── ru-help.txt │ ├── ru.txt │ ├── sl.txt │ ├── ta-help.txt │ ├── ta.txt │ ├── te-help.txt │ ├── te.txt │ ├── th-help.txt │ ├── th.txt │ ├── tr-help.txt │ ├── tr.txt │ ├── uk-help.txt │ ├── uk.txt │ ├── ukr-help.txt │ ├── uz.txt │ ├── vi-help.txt │ ├── vi.txt │ ├── zh-cn-help.txt │ ├── zh-cn.txt │ ├── zh-tw-help.txt │ └── zh-tw.txt ├── spec/ │ └── options/ │ └── options.yaml ├── srv.go └── test/ ├── proxy-data/ │ ├── data1 │ └── data1.headers ├── query.sh └── test-data/ └── signatures