small business module for Python
Project description
This module is for easily read/write with EXCEL using Python.
The target is for easily control for EXCEL.
Therefore pyezxl is focused to control easily as follows.
the function name is consist of 3 parts (action_target_role)
read_range_value
write_cell_value
delete_cell_value
function name is linked with underbar(_) and text is all lowcase
action words : read, write, Insert, delete, change, set, copy, move
target words : range, sheet, x, y, line
role words : name, color, value, end
word definition
read: when you want to read cell value
check : read some data except cell value as like color, font etc
write : when you want to write cell value
set : write some data except cell value as like color, line etc
cell : 1 cell
range : minimum 2 cells and over
web-site : please visit for more information
www.halmoney.com
simple example
When you want to input [A1]=”sujin”
import pyezxl
excel = pyezxl.pyezxl(“”)
excel.write_cell_value(“”,[1,1],”sujin”)
When you want to input value in some range
import pyezxl
excel = pyezxl.pyezxl(“”)
activesheet_name = excel.read_activesheet_name()
my_range = [2,1,10,5]
[x1, y1, x2, y2 ] = excel.check_address_value(my_range)
for x in range(x1, x2+1):
for y in range(y1, y2+1):
excel.write_cell_value(activesheet_name,[x, y],”sujin” )
Project details
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file halmoney-1.0.0.tar.gz.
File metadata
- Download URL: halmoney-1.0.0.tar.gz
- Upload date:
- Size: 3.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6be2a3deec95ca5a94587ed38745f3bce81e73484c2a83257250c7abdd51aae7
|
|
| MD5 |
93dd4ade1ba760eb84c7b52a6612959d
|
|
| BLAKE2b-256 |
cacb37f6f5597ba2aae6c7402e520a80c3c1cec5878b91f9cae28ba3e9fee875
|
File details
Details for the file halmoney-1.0.0-py3-none-any.whl.
File metadata
- Download URL: halmoney-1.0.0-py3-none-any.whl
- Upload date:
- Size: 3.0 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7fcc4d39937b35ab8f713ea7d5b92896e39ccb96e586291dd35e583a5c62ff9a
|
|
| MD5 |
43850ee4adfa29910cc722214d2b9e80
|
|
| BLAKE2b-256 |
5750115efb3ce5d901ef650ae926a78d91a86422896092d38d41714d0dd4bcab
|