jzarzycki / dynamic_input

Python module, written in C with the Python library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

License:GNU General Public License v3.0


Languages

Language:C 70.5%Language:Python 29.5%