Skip to content

Instantly share code, notes, and snippets.

@artemrys
Last active January 5, 2023 13:26
Show Gist options
  • Save artemrys/024103ad08614142ad317eaab191b669 to your computer and use it in GitHub Desktop.
Save artemrys/024103ad08614142ad317eaab191b669 to your computer and use it in GitHub Desktop.
IO file from Config Server and parse it
import io
import jprops
def get_properties_from_config_server(link):
r = requests.get(link)
f = io.StringIO(r.text)
props = jprops.load_properties(f)
return props
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment