Basic tools for Python
Project description
Py Basic Tools
A package including some basic tools for Python (3)
Author
Installation
Install my-project with pip
pip install py_basic_commands
pip3 install py_baisc_commands
Examples
fprint
from py_basic_tools import fprint
print('Hello world')
>> Hello world!
fprint('Hello world!') # new line after string
>> Hello world!\n
fprint('Hello world!', nl=False) # No new line after string (works like normal print)
>> Hello world
enter_to_continue
from py_basic_tools import enter_to_continue
enter_to_continue()
>> Press enter to continue...
>>
>>
enter_to_continue('Waiting')
>> Waiting (enter to continue)
>>
>>
enter_to_continue('Waiting', nl=False) # Removes new line after input
>> Waiting
>>
returned_value = enter_to_continue('Should this continue?', ret=True) # If the input isn't empty, the returned value is False
print(f'Returned value: {returned_value}')
>> Should this continue? (enter to continue)
>>
>> Returned value: True
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 py_basic_commands-0.0.2.tar.gz
.
File metadata
- Download URL: py_basic_commands-0.0.2.tar.gz
- Upload date:
- Size: 2.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 209ae1c35d43f26c1d3a8ca30d67547752488ee65be9c04d3199a71341b5b084 |
|
MD5 | 85cc0e8db93e83b780c0e229624fa4fa |
|
BLAKE2b-256 | 627a0427c29ab98e96972f9a951e4036b226c06bed901d23e3183148c0535d73 |
File details
Details for the file py_basic_commands-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: py_basic_commands-0.0.2-py3-none-any.whl
- Upload date:
- Size: 3.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 92628f119f2adf3599e7245de24575fd21a746998ac923b158eeee9fe288a102 |
|
MD5 | 6f6f18d5396c561a6b3c39bb7dd274e1 |
|
BLAKE2b-256 | cf93014b6d4be63108ce140286ce03431980aca916e51fa0bfc180bf69e35eec |