Read formatted input from the standard input in C style
Project description
pyscanf
A Python package to read formatted input from the standard input in C style.
Jump to installation or usage.
Introduction
Straight up with an example. When you need to read any kind of input in Python, like the one below, how uncomfortable do you think it is?
# Input:
# 5 4
# 1001 12 girl 2.6
# 1002 23 boy 2.2
# 1003 23 girl 2.2
# 1004 45 boy 10.3
# 1005 3 girl 12.0
n, m = map(int, input().split())
matrix = []
for i in range(n):
m = input().split()
matrix.append([int(m[0]), int(m[1]), m[2], float(m[3])])
for i in range(n):
print(matrix[i])
# Output:
# [1001, 12, 'girl', 2.6]
# [1002, 23, 'boy', 2.2]
# [1003, 23, 'girl', 2.2]
# [1004, 45, 'boy', 10.3]
# [1005, 3, 'girl', 12.0]
I do not mean that using map
and split
, and parsing is wrong or bad in any sense. The only thing I want to show you is that you can write this instead:
n, m = scanf("%d %d")
matrix = []
for i in range(n):
matrix.append(scanf("%d %d %s %f"))
Still not impressed? Here is what you also get:
n = scanf("%d")
m = scanf("%d")
matrix = []
for i in range(n):
matrix.append(scanf("%d %d %s %f"))
And both of these examples work for the initial input entered from keyboard while executing the code:
5 4
1001 12 girl 2.6
1002 23 boy 2.2
1003 23 girl 2.2
1004 45 boy 10.3
1005 3 girl 12.0
Installation
To install and use the latest pyscanf
in your python project, run:
$ pip install pyscanf
Usage
Import pyscanf
pyscanf
has no dependencies and is basically just a single function. A simple import will get you running:
from pyscanf import scanf
Basic usage
The scanf()
function is documented to give you usage instructions inside your editor. So, just call scanf()
and provide it a match
(string) query, which is essentially a string with format specifiers to parse the input:
n = scanf("%d")
Format specifiers
Input is read character by character until match
query is exhausted. Supported format specifiers are (note that some are different from standard Python format specifiers):
%d
(int),%r
(bool),%f
(float),%x
(complex number).%s
(string/char),
Raises ValueError
when format specifier and read value did not match.
Raises TypeError
when match query did not have any valid format specifiers.
The number of characters read by each format specifier is limited by limit
. Default is 256.
Read character by character
What makes pyscanf
a successor to the regular way of reading input in Python is its way to read character by character from stdin. Given an input:
32 11.50 foo
You can read it by either:
a, b, s = scanf("%d %f %s")
Or in separate lines even though the input was typed in a single file. This is the core similarity with C's scanf
function:
a = scanf("%d")
b = scanf("%f")
s = scanf("%s")
Overall, pyscanf
can make reading input in Python much more intuitive and straightforward. And requires less overhead with ensuring correct variable types.
# Input:
# 5 4
# 1001 12 girl 2.6
# 1002 23 boy 2.2
# 1003 23 girl 2.2
# 1004 45 boy 10.3
# 1005 3 girl 12.0
n, m = scanf("%d %d")
matrix = []
for i in range(n):
matrix.append(scanf("%d %d %s %f"))
for x in matrix:
assert (type(x[0]) is int
and type(x[1]) is int
and type(x[2]) is str
and type(x[3]) is float)
print(x)
# Output:
# [1001, 12, 'girl', 2.6]
# [1002, 23, 'boy', 2.2]
# [1003, 23, 'girl', 2.2]
# [1004, 45, 'boy', 10.3]
# [1005, 3, 'girl', 12.0]
Future updates
So far, pyscanf
meats its initial creation intentions. But this does not mean that improvements are not welcome. Here, we appreciate the opposite. Below is the list of possible additions to pyscanf
, but you can always open a pull request with your own suggestions as long as they meet pyscanf
's guidelines (see below):
- Parse a given string or a file.
- Use regex to parse input. Similar to what
parse
can do. - Your feature here.
Contributing guidelines
pyscanf
is a small Python package. Its main purpose is to serve a comfortable and easy way to read input in Python. Its main goal is to not necessarily be as feature-rich as possible, but to be ultra compact and applicable for reading input.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyscanf-0.0.1.1.tar.gz
.
File metadata
- Download URL: pyscanf-0.0.1.1.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ca32c53ecfcfe2d6142cb3ef586b165a064ff1cae2c59d958c450bed8d7512ce |
|
MD5 | 2be6bd95b9b680938d21dbd21de62f71 |
|
BLAKE2b-256 | 4914a477aa3225e81c80b95e20060af5649a03117aaddaef298a7784014d5ecb |
File details
Details for the file pyscanf-0.0.1.1-py3-none-any.whl
.
File metadata
- Download URL: pyscanf-0.0.1.1-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bce9400bcb147275bb0043d4a95f4d07dac1ff13ef5183288fad5e0d7aa69468 |
|
MD5 | fa1fdf83c337b92693331495c946c714 |
|
BLAKE2b-256 | bfba4fb5104bec89cbe66c50a64fd03119c2b17042dc088123694cd029282b6c |