Skip to content

Commit

Permalink
readme updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeutschler committed Sep 23, 2024
1 parent 51490ec commit eae7c83
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 20 deletions.
27 changes: 16 additions & 11 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cubedpandas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from cubedpandas.schema.schema import Schema
from cubedpandas.settings import CachingStrategy

__version__ = "0.2.35"
__version__ = "0.2.36"
__author__ = "Thomas Zeutschler"
__copyright__ = "(C) 2024 Thomas Zeutschler"

Expand Down
10 changes: 5 additions & 5 deletions cubedpandas/cube.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def __init__(self, df: pd.DataFrame,
exclude: str | list | tuple | None = None,
read_only: bool = True,
ignore_member_key_errors: bool = True,
ignore_case: bool = True,
ignore_case: bool = False,
ignore_key_errors: bool = True,
caching: CachingStrategy = CachingStrategy.LAZY
):
Expand Down Expand Up @@ -62,10 +62,10 @@ def __init__(self, df: pd.DataFrame,
Default value is `True`.
ignore_case:
(optional) If set to `True`, the case of member names will be ignored, 'Apple' and 'apple'
will be treated as the same member. If set to `False`, member names are case-sensitive,
'Apple' and 'apple' will be treated as different members.
Default value is `True`.
(optional) FEATURE NOT YET RELEASED - If set to `True`, the case of member names will be ignored,
'Apple' and 'apple' will be treated as the same member. If set to `False`, member names are
case-sensitive and 'Apple' and 'apple' will be treated as different members.
Default value is `False`.
ignore_key_errors:
(optional) If set to `True`, key errors for members of dimensions will be ignored and
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "cubedpandas"
description = "Filter faster, analyze smarter – because your DataFrames deserve it!"
description = "Filter faster, analyze smarter – your DataFrames deserve it!"
keywords = ['pandas', 'analysis', 'database', 'olap', 'planning', 'reporting', 'forecasting', 'multidimensional', 'cube', 'data', 'dataframe', 'pivot', 'table']
classifiers = [
"Intended Audience :: Science/Research",
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ from numpy.distutils.system_info import dfftw_info

# CubedPandas

## Filter faster, analyze smarter – because your DataFrames deserve it!
## Filter faster, analyze smarter – your DataFrames deserve it!

![GitHub license](https://img.shields.io/github/license/Zeutschler/cubedpandas?color=A1C547)
![PyPI version](https://img.shields.io/pypi/v/cubedpandas?logo=pypi&logoColor=979DA4&color=A1C547)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/

VERSION = CUBEDPANDAS_VERSION
DESCRIPTION = "CubedPandas - Filter faster, analyze smarter – because your DataFrames deserve it!"
DESCRIPTION = "CubedPandas - Filter faster, analyze smarter – your DataFrames deserve it!"
LONG_DESCRIPTION = """
CubedPandas offer a new ***easy, fast & fun approach to navigate and analyze Pandas dataframes***.
CubedPandas is inspired by the powerful concepts of OLAP (Online Analytical Processing) and MDX (Multi-Dimensional
Expand Down

0 comments on commit eae7c83

Please sign in to comment.