From 56c3ecd4c2c847a2c9bee8dc449c538b8543bd52 Mon Sep 17 00:00:00 2001 From: GodSaveTheDoge <51802433+GodSaveTheDoge@users.noreply.github.com> Date: Tue, 11 May 2021 22:21:22 +0200 Subject: [PATCH] Updated README.md --- README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 48a6b46..4790d49 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,10 @@ # PyConstants -A library to make constants in python +Adds constants in python -# Goals -- Make it working -- Detect type hinted constants (typing.Final) -- Detect constants by the name (CONSTANT_VAR) -- Add a way to make any varible constant (const .foo = "bar") +# Usage +``` +from pyconstants import const +const .a = 5 +a = 7 # Raises SyntaxError +```