Skip to main content

Easily Read / Write Excel using 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.

  1. the function name is consist of 3 parts (action_target_role)

    read_range_value

    write_cell_value

    delete_cell_value

  2. 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

  3. 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

  1. 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

pyezxl-1.6.4.tar.gz (3.0 MB view hashes)

Uploaded Source

Built Distribution

pyezxl-1.6.4-py3-none-any.whl (3.0 MB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page