Easy viewing/editing of Excel Files
Project description
easierexcel
EasierExcel allows for an easy way to get and update cell values within Excel sheets.
OpenPyXL is used to do the bulk while easierexcel makes it much easier to use.
76% Test Coverage
Python 3.11+
Quick Start
Install easierexcel using pip:
$ pip install easierexcel
Example Table
| Name | Birth Month | Age | Null |
|---|---|---|---|
| John | John | 31 | null |
| Michael | June | 31 | null |
| Brian | August | 30 | null |
| Rob | July | 34 | null |
| Allison | September | 32 | null |
Code Example
from easierexcel import Excel, Sheet
# class init
excel = Excel('example_excel.xlsx')
# formatting options
options = {
"shrink_to_fit_cell": True,
"header": {"bold": True, "font_size": 16},
"default_align": "center_align",
"left_align": [
"Name",
],
"percent": [
"%",
"Percent",
"Discount",
"Rating Comparison",
"Probable Completion",
],
"currency": ["Price", "MSRP", "Cost"],
"integer": ["ID", "Number"],
"date": ["Last Updated", "Date"],
}
example = Sheet(excel, "Name", sheet_name="Example", options=options)
# deleting
example.delete_column("Null")
example.delete_row("John")
# adding a new line
data = {
"Name":"Billy",
"Birth Month":"December",
"Age":5,
}
example.add_new_line(cell_dict=data)
# accessing and updating
example.get_cell("Michael", "Birth Month") # -> June
example.update_cell("Michael", "Birth Month", "April")
example.get_cell("Michael", "Birth Month") # -> April
excel.save() # Saves the excel file
Final Table
| Name | Birth Month | Age |
|---|---|---|
| Michael | April | 31 |
| Brian | August | 30 |
| Rob | July | 34 |
| Allison | September | 32 |
| Billy | December | 5 |
Documentation
Excel Class
Allows retreiving, adding, updating, deleting and formatting cells within Excel.
init Function
filename is the path to the excel file.
use_logging allows disabling all logs when running.
log_file sets the path for logging.
log_level Sets the logging level of this logger.
level must be an int or a str.
save Function
Backs up the excel file before saving the changes if backup is True.
It will keep trying to save until it completes in case of permission errors caused by the file being open.
use_print determines if info for the saving progress will be printed.
force_save can be used to make sure a save occurs.
open_excel Function
Opens the current excel file if it still exists and then exits.
Saves changes if save is True.
The test arg is only used for testing.
Sheet Class
init Function
Allows interacting with any one sheet within the excel_object given.
excel_object Excel object created using Excel class.
column_name Name of the main column you intend to use for
identifying rows.
sheet_name Name of the sheet to use.
options used to determine auto formatting.
create_dataframe Function
Creates a panda dataframe using the current used sheet.
date_cols sets the columns with dates.
na_vals sets what should be considered N/A values that are ignored.
indirect_cell Function
Returns a string for setting an indirect cell location to a cell.
If you want the cell to be relative to column names then set cur_col
to the column name the formula is going into and ref_col to the
column name you are wanting to reference.
If you know it is simply references a cell that is 3 to the right or
left then just give left or right that value. Only one direction
can be greater than 0.
You can also use manual_set to set the indirect cell offset manually
using a positive or negative number.
get_column_index Function
Creates the column index.
get_row_index Function
Creates the row index based on col_name.
list_in_string Function
Returns True if any entry in the given list is in the given string.
Setting lowercase to True allows you to make the check
set all to lowercase.
get_row_col_index Function
Gets the row and column index for the given values if they exist.
Will return the row_value and column_value if they are
numbers already.
extract_hyperlink Function
Extracts the hyperlink target from a cell_value with the hyperlink
formula.
This is only needed if excel has not applied the hyperlink yet. This often happens when you click on the cell with the hyperlink formula.
get_cell_by_key Function
Gets the cell value based on the row_key and column_key.
This is basically the index in excel for columns and rows.
If the cell is a hyperlink that is currently clickable, the hyperlink target will be returned.
get_cell Function
Gets the cell value based on the row_value and column_value.
If the cell is a hyperlink that is currently clickable, the hyperlink target will be returned.
update_index Function
Updates the current row with the column_key in the row_idx variable.
update_cell_by_key Function
Updates the cell based on row_key and col_key to new_val.
This is basically the index in excel for columns and rows.
Returns True if cell was updated and False if it was not updated.
replace allows you to determine if a cell will have its
existing value changed if it is not None.
update_cell Function
Updates the cell based on row_val and col_val to new_val.
Returns True if cell was updated and False if it was not updated.
replace allows you to determine if a cell will have its
existing value changed if it is not None.
add_new_line Function
Adds cell_dict onto a new line within the excel sheet. The column_name must be given a value.
If dictionary keys match existing columns within the set sheet, it will add the value to that column.
delete_row Function
Deletes row by column_value.
delete_column Function
Deletes column by column_name.
set_border Function
Sets the given cell border to cover all sides with the given style.
set_fill Function
Sets the given cell to have fill with color and fill_type
set_style Function
Sets the given cell to the given format or general by default.
format_picker Function
Determines what formatting to apply to a column.
get_column_formats Function
Gets the formats to use for each column.
format_header Function
Formats the top header of the sheet.
format_cell Function
Formats a cell based on the column name using row_i and col_i.
format_row Function
Formats the entire row by row_identifier
format_all_cells Function
Auto formats all cells.
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
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 easierexcel-0.10.1.tar.gz.
File metadata
- Download URL: easierexcel-0.10.1.tar.gz
- Upload date:
- Size: 15.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
296a2ee3b0ed70d2ec1db7c6cf33068b15ab2e67bb8d7b18cd52a327cbd42992
|
|
| MD5 |
c93e49c77fca2c1be48e087d76634673
|
|
| BLAKE2b-256 |
b704127b1326659c330373c333d5ecd0bfda6f1d35378db9d4b08fe00a96fa59
|
File details
Details for the file easierexcel-0.10.1-py3-none-any.whl.
File metadata
- Download URL: easierexcel-0.10.1-py3-none-any.whl
- Upload date:
- Size: 19.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ecfbd980e1e52c3b0123e4d992f4f71055f36ea4e31534fe0ecd0cf9d96ce89e
|
|
| MD5 |
df81e1c5fee73bf1985b795625bb82c8
|
|
| BLAKE2b-256 |
ea052fc5cd19ed667e1dfb61af52eda2ff186817247e99250207be4a2afbf243
|