Skip to content

Latest commit

 

History

20 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

👁️blink

A hot-reload configuration dictionary

Introduction

blink allows you to create configuration dictionary to your python program which autoupdates when your file changes. Usually when you load a config file, the loaded dictionary is stored in memory and when the actual config file changes, those changes are not reflected in memory. blink can help you with that problem by updating your config dictionary based on file changes safely.

You can access configuration exactly how you access your dictionary in python.

How to use

Just import

from blink import Config

config = Config("config.json")

and use it like a normal dictionary!

val = config["key1"]["subkey1"]
print(config["number"])

About

A hot-reload configuration dictionary

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages