1- ![ license] ( https://img.shields.io/pypi/l/runtime-config-py?style=for-the-badge ) ![ python version] ( https://img.shields.io/pypi/pyversions/runtime-config-py?style=for-the-badge ) [ ![ version] ( https://img.shields.io/pypi/v/runtime-config-py?style=for-the-badge )] ( https://pypi.org/project/runtime-config-py/ ) ![ coverage] ( https://img.shields.io/codecov/c/github/aleksey925 /runtime-config-py/master?style=for-the-badge ) [ ![ tests status] ( https://img.shields.io/github/workflow/status/aleksey925 /runtime-config-py/Tests/master?style=for-the-badge )] ( https://github.com/aleksey925 /runtime-config-py/actions?query=branch%3Amaster ) [ ![ ] ( https://img.shields.io/pypi/dm/runtime-config-py?style=for-the-badge )] ( https://pypi.org/project/runtime-config-py/ )
1+ ![ license] ( https://img.shields.io/pypi/l/runtime-config-py?style=for-the-badge ) ![ python version] ( https://img.shields.io/pypi/pyversions/runtime-config-py?style=for-the-badge ) [ ![ version] ( https://img.shields.io/pypi/v/runtime-config-py?style=for-the-badge )] ( https://pypi.org/project/runtime-config-py/ ) [ ![ coverage] ( https://img.shields.io/codecov/c/github/runtime-config /runtime-config-py/master?style=for-the-badge )] ( https://app.codecov.io/gh/runtime-config/runtime-config-py ) [ ![ tests status] ( https://img.shields.io/github/workflow/status/runtime-config /runtime-config-py/Tests/master?style=for-the-badge )] ( https://github.com/runtime-config /runtime-config-py/actions?query=branch%3Amaster ) [ ![ ] ( https://img.shields.io/pypi/dm/runtime-config-py?style=for-the-badge )] ( https://pypi.org/project/runtime-config-py/ )
22
33runtime-config-py
44=================
55
66This library allows you to update project settings at runtime. In its basic use case, it is just a client for the
7- [ server] ( https://github.com/aleksey925 /runtime-config ) , but if necessary, you can implement your adapter for the
7+ [ server] ( https://github.com/runtime-config /runtime-config ) , but if necessary, you can implement your adapter for the
88desired source and get settings from them.
99
1010runtime-config-py supports Python 3.8+.
@@ -39,7 +39,7 @@ pip install runtime-config-py
3939Or it can be installed directly from git:
4040
4141```
42- pip install git+https://github.com/aleksey925 /runtime-config-py.git
42+ pip install git+https://github.com/runtime-config /runtime-config-py.git
4343```
4444
4545# Usage
@@ -75,7 +75,7 @@ app.add_routes([web.get('/', hello)])
7575web.run_app(app, port = 5000 )
7676```
7777
78- Before running this code, you need to run [ server] ( https://github.com/aleksey925 /runtime-config ) from which this
78+ Before running this code, you need to run [ server] ( https://github.com/runtime-config /runtime-config ) from which this
7979library can take new values for your variables.
8080If you don't do this, nothing bad will not happen. You simply cannot change the value of the name variable at runtime :)
8181
@@ -99,7 +99,7 @@ print(config.get('name', default='Dima'))
9999
100100# Backend
101101
102- Currently, only 1 [ backend] ( https://github.com/aleksey925 /runtime-config ) is supported. Later, support for other
102+ Currently, only 1 [ backend] ( https://github.com/runtime-config /runtime-config ) is supported. Later, support for other
103103backends, such as redis, will probably be added to the library, but this is not in the nearest plans.
104104
105105If you need support for another settings storage source right now, you can write your own source. Implementing this is
0 commit comments