Skip to content

generate qr codes in the terminal (available as a flask app or .py script)

License

Notifications You must be signed in to change notification settings

D-Chandrahas/encodeQR

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Usage

app.py

start the flask/wsgi server,
then send requests using curl or Invoke-WebRequest. (Note: using curl.exe on windows is not recomended)

$ curl http:https://[server address]/[text or url]
> (Invoke-WebRequest http:https://[server address]/[text or url]).Content
 or
> (iwr http:https://[server address]/[text or url]).Content

Examples:

curl-example iwr-example

main.py

python main.py [text or url]

Example:

mainpy-example