Skip to content

jzarzycki/dynamic_input

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Module

This module was written in C, it allows for getting user input without the need to constantly confirm every input with enter key

Install

sudo python3 setup.py install

Usage

import dynamic_input as din

s = ""

print("Write some letters!")

for _ in range(6):
    ch = din.get()
    s += ch.decode("utf-8")

print(s)

About

Python module, written in C with the Python library

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published