cuallee
cuallee: A Python package for data quality checks across multiple DataFrame APIs - Published in JOSS (2024)
Science Score: 98.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
✓DOI references
Found 6 DOI reference(s) in README and JOSS metadata -
✓Academic publication links
Links to: joss.theoj.org, zenodo.org -
○Committers with academic emails
-
○Institutional organization owner
-
✓JOSS paper metadata
Published in Journal of Open Source Software
Keywords
Keywords from Contributors
Repository
Possibly the fastest DataFrame-agnostic quality check library in town.
Basic Info
- Host: GitHub
- Owner: canimus
- License: apache-2.0
- Language: Python
- Default Branch: main
- Homepage: https://canimus.github.io/cuallee/
- Size: 2.28 MB
Statistics
- Stars: 202
- Watchers: 10
- Forks: 20
- Open Issues: 8
- Releases: 47
Topics
Metadata Files
README.md
cuallee
Meaning good in Aztec (Nahuatl), pronounced: QUAL-E
This library provides an intuitive API to describe data quality checks initially just for PySpark dataframes v3.3.0. And extended to pandas, snowpark, duckdb, daft and more.
It is a replacement written in pure python of the pydeequ framework.
I gave up in deequ as after extensive use, the API is not user-friendly, the Python Callback servers produce additional costs in our compute clusters, and the lack of support to the newest version of PySpark.
As result cuallee was born
This implementation goes in hand with the latest API from PySpark and uses the Observation API to collect metrics
at the lower cost of computation.
When benchmarking against pydeequ, cuallee uses circa <3k java classes underneath and remarkably less memory.
Support
cuallee is the data quality framework truly dataframe agnostic.
Provider | API | Versions
------- | ----------- | ------
|
snowpark | 1.11.1, 1.4.0
|
pyspark & spark-connect |3.5.x, 3.4.0, 3.3.x, 3.2.x
| bigquery | 3.4.1
|
pandas| 2.0.2, 1.5.x, 1.4.x
|duckdb | 1.0.0, ~~0.10.2~~,~~0.9.2~~,~~0.8.0~~
|
polars| 1.0.0, ~~0.19.6~~
|daft| 0.2.24, ~~0.2.19~~
Logos are trademarks of their own brands.
Install
bash
pip install cuallee
Checks
The most common checks for data integrity validations are completeness and uniqueness an example of this dimensions shown below:
```python from cuallee import Check, CheckLevel # WARN:0, ERR: 1
Nulls on column Id
check = Check(CheckLevel.WARNING, "Completeness") ( check .iscomplete("id") .isunique("id") .validate(df) ).show() # Returns a pyspark.sql.DataFrame ```
[!IMPORTANT] A new version of the
validateoutput is currently under construction.
Dates
Perhaps one of the most useful features of cuallee is its extensive number of checks for Date and Timestamp values. Including, validation of ranges, set operations like inclusion, or even a verification that confirms continuity on dates using the is_daily check function.
```python
Unique values on id
check = Check(CheckLevel.WARNING, "CheckIsBetweenDates") df = spark.sql( """ SELECT explode( sequence( todate('2022-01-01'), todate('2022-01-10'), interval 1 day)) as date """) assert ( check.is_between("date", ("2022-01-01", "2022-01-10")) .validate(df) .first() .status == "PASS" ) ```
Membership
Other common test is the validation of list of values as part of the multiple integrity checks required for better quality data.
python
df = spark.createDataFrame([[1, 10], [2, 15], [3, 17]], ["ID", "value"])
check = Check(CheckLevel.WARNING, "is_contained_in_number_test")
check.is_contained_in("value", (10, 15, 20, 25)).validate(df)
Regular Expressions
When it comes to the flexibility of matching, regular expressions are always to the rescue. cuallee makes use of the regular expressions to validate that fields of type String conform to specific patterns.
python
df = spark.createDataFrame([[1, "is_blue"], [2, "has_hat"], [3, "is_smart"]], ["ID", "desc"])
check = Check(CheckLevel.WARNING, "has_pattern_test")
check.has_pattern("desc", r"^is.*t$") # only match is_smart 33% of rows.
check.validate(df).first().status == "FAIL"
Anomalies
Statistical tests are a great aid for verifying anomalies on data. Here an example that shows that will PASS only when 40% of data is inside the interquartile range
```python df = spark.range(10) check = Check(CheckLevel.WARNING, "IQRTest") check.isinsideinterquartilerange("id", pct=0.4) check.validate(df).first().status == "PASS"
+---+-------------------+-----+-------+------+-----------------------------+-----+----+----------+---------+--------------+------+ |id |timestamp |check|level |column|rule |value|rows|violations|passrate|passthreshold|status| +---+-------------------+-----+-------+------+-----------------------------+-----+----+----------+---------+--------------+------+ |1 |2022-10-19 00:09:39|IQR |WARNING|id |isinsideinterquartile_range|10000|10 |4 |0.6 |0.4 |PASS | +---+-------------------+-----+-------+------+-----------------------------+-----+----+----------+---------+--------------+------+ ```
Workflows (Process Mining)
Besides the common citizen-like checks, cuallee offers out-of-the-box real-life checks. For example, suppose that you are working SalesForce or SAP environment. Very likely your business processes will be driven by a lifecycle:
- Order-To-Cash
- Request-To-Pay
- Inventory-Logistics-Delivery
- Others.
In this scenario, cuallee offers the ability that the sequence of events registered over time, are according to a sequence of events, like the example below:
```python import pyspark.sql.functions as F from cuallee import Check, CheckLevel
data = pd.DataFrame({ "name":["herminio", "herminio", "virginie", "virginie"], "event":["new","active", "new", "active"], "date": ["2022-01-01", "2022-01-02", "2022-01-03", "2022-02-04"]} ) df = spark.createDataFrame(data).withColumn("date", F.to_date("date"))
Cuallee Process Mining
Testing that all edges on workflows
check = Check(CheckLevel.WARNING, "WorkflowViolations")
Validate that 50% of data goes from new => active
check.has_workflow("name", "event", "date", [("new", "active")], pct=0.5) check.validate(df).show(truncate=False)
+---+-------------------+------------------+-------+-------------------------+------------+--------------------+----+----------+---------+--------------+------+ |id |timestamp |check |level |column |rule |value |rows|violations|passrate|passthreshold|status| +---+-------------------+------------------+-------+-------------------------+------------+--------------------+----+----------+---------+--------------+------+ |1 |2022-11-07 23:08:50|WorkflowViolations|WARNING|('name', 'event', 'date')|has_workflow|(('new', 'active'),)|4 |2.0 |0.5 |0.5 |PASS | +---+-------------------+------------------+-------+-------------------------+------------+--------------------+----+----------+---------+--------------+------+
```
Assertions
[2024-09-28] ✨ New feature! Return a simple true|false as a unified result for your check
```python
import pandas as pd
from cuallee import Check
df = pd.DataFrame({"X":[1,2,3]})
.ok(dataframe) method of a check will call validate and then verify that all rules are PASS
assert Check().is_complete("X").ok(df) ```
Controls
Simplify the entire validation of a dataframe in a particular dimension. ```python import pandas as pd from cuallee import Control df = pd.DataFrame({"X":[1,2,3], "Y": [10,20,30]})
Checks all columns in dataframe for using is_complete check
Control.completeness(df) ```
cuallee VS pydeequ
In the test folder there are docker containers with the requirements to match the tests. Also a perftest.py available at the root folder for interests.
```
1000 rules / # of seconds
cuallee: ▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 162.00 pydeequ: ▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 322.00 ```
Catalogue
Check | Description | DataType
------- | ----------- | ----
is_complete | Zero nulls | agnostic
is_unique | Zero duplicates | agnostic
is_primary_key | Zero duplicates | agnostic
are_complete | Zero nulls on group of columns | agnostic
are_unique | Composite primary key check | agnostic
is_composite_key | Zero duplicates on multiple columns | agnostic
is_greater_than | col > x | numeric
is_positive | col > 0 | numeric
is_negative | col < 0 | numeric
is_greater_or_equal_than | col >= x | numeric
is_less_than | col < x | numeric
is_less_or_equal_than | col <= x | numeric
is_equal_than | col == x | numeric
is_contained_in | col in [a, b, c, ...] | agnostic
is_in | Alias of is_contained_in | agnostic
not_contained_in | col not in [a, b, c, ...] | agnostic
not_in | Alias of not_contained_in | agnostic
is_between | a <= col <= b | numeric, date
has_pattern | Matching a pattern defined as a regex | string
is_legit | String not null & not empty ^\S$ | string
has_min | min(col) == x | numeric
has_max | max(col) == x | numeric
has_std | σ(col) == x | numeric
has_mean | μ(col) == x | numeric
has_sum | Σ(col) == x | numeric
has_percentile | %(col) == x | numeric
has_cardinality | count(distinct(col)) == x | agnostic
has_infogain | count(distinct(col)) > 1 | agnostic
has_max_by | A utilitary predicate for max(col_a) == x for max(col_b) | agnostic
has_min_by | A utilitary predicate for min(col_a) == x for min(col_b) | agnostic
has_correlation | Finds correlation between 0..1 on corr(col_a, col_b) | numeric
has_entropy | Calculates the entropy of a column entropy(col) == x for classification problems | numeric
is_inside_interquartile_range | Verifies column values reside inside limits of interquartile range Q1 <= col <= Q3 used on anomalies. | numeric
is_in_millions | col >= 1e6 | numeric
is_in_billions | col >= 1e9 | numeric
is_t_minus_1 | For date fields confirms 1 day ago t-1 | date
is_t_minus_2 | For date fields confirms 2 days ago t-2 | date
is_t_minus_3 | For date fields confirms 3 days ago t-3 | date
is_t_minus_n | For date fields confirms n days ago t-n | date
is_today | For date fields confirms day is current date t-0 | date
is_yesterday | For date fields confirms 1 day ago t-1 | date
is_on_weekday | For date fields confirms day is between Mon-Fri | date
is_on_weekend | For date fields confirms day is between Sat-Sun | date
is_on_monday | For date fields confirms day is Mon | date
is_on_tuesday | For date fields confirms day is Tue | date
is_on_wednesday | For date fields confirms day is Wed | date
is_on_thursday | For date fields confirms day is Thu | date
is_on_friday | For date fields confirms day is Fri | date
is_on_saturday | For date fields confirms day is Sat | date
is_on_sunday | For date fields confirms day is Sun | date
is_on_schedule | For date fields confirms time windows i.e. 9:00 - 17:00 | timestamp
is_daily | Can verify daily continuity on date fields by default. [2,3,4,5,6] which represents Mon-Fri in PySpark. However new schedules can be used for custom date continuity | date
has_workflow | Adjacency matrix validation on 3-column graph, based on group, event, order columns. | agnostic
is_custom | User-defined custom function applied to dataframe for row-based validation. | agnostic
satisfies | An open SQL expression builder to construct custom checks | agnostic
validate | The ultimate transformation of a check with a dataframe input for validation | agnostic
Controls pyspark
Check | Description | DataType
------- | ----------- | ----
completeness | Zero nulls | agnostic
information | Zero nulls and cardinality > 1 | agnostic
intelligence | Zero nulls, zero empty strings and cardinality > 1 | agnostic
percentage_fill | % rows not empty | agnostic
percentage_empty | % rows empty | agnostic
ISO Standard
A new module has been incorporated in cuallee==0.4.0 which allows the verification of International Standard Organization columns in data frames. Simply access the check.iso interface to add the set of checks as shown below.
Check | Description | DataType
------- | ----------- | ----
iso_4217 | currency compliant ccy | string
iso_3166 | country compliant country | string
python
df = spark.createDataFrame([[1, "USD"], [2, "MXN"], [3, "CAD"], [4, "EUR"], [5, "CHF"]], ["id", "ccy"])
check = Check(CheckLevel.WARNING, "ISO Compliant")
check.iso.iso_4217("ccy")
check.validate(df).show()
+---+-------------------+-------------+-------+------+---------------+--------------------+----+----------+---------+--------------+------+
| id| timestamp| check| level|column| rule| value|rows|violations|pass_rate|pass_threshold|status|
+---+-------------------+-------------+-------+------+---------------+--------------------+----+----------+---------+--------------+------+
| 1|2023-05-14 18:28:02|ISO Compliant|WARNING| ccy|is_contained_in|{'BHD', 'CRC', 'M...| 5| 0.0| 1.0| 1.0| PASS|
+---+-------------------+-------------+-------+------+---------------+--------------------+----+----------+---------+--------------+------+
Snowflake Connection
In order to establish a connection to your SnowFlake account cuallee relies in the following environment variables to be avaialble in your environment:
- SF_ACCOUNT
- SF_USER
- SF_PASSWORD
- SF_ROLE
- SF_WAREHOUSE
- SF_DATABASE
- SF_SCHEMA
Spark Connect
Just add the environment variable SPARK_REMOTE to your remote session, then cuallee will connect using
python
spark_connect = SparkSession.builder.remote(os.getenv("SPARK_REMOTE")).getOrCreate()
and convert all checks to select as opposed to Observation API compute instructions.
Databricks Connection
By default cuallee will search for a SparkSession available in the globals so there is literally no need to ~~SparkSession.builder~~. When working in a local environment it will automatically search for an available session, or start one.
DuckDB
For testing on duckdb simply pass your table name to your check et voilà
```python import duckdb conn = duckdb.connect(":memory:") check = Check(CheckLevel.WARNING, "DuckDB", tablename="temp/taxi/*.parquet") check.iscomplete("VendorID") check.iscomplete("tpeppickup_datetime") check.validate(conn)
id timestamp check level column rule value rows violations passrate passthreshold status 0 1 2022-10-31 23:15:06 test WARNING VendorID iscomplete N/A 19817583 0.0 1.0 1.0 PASS 1 2 2022-10-31 23:15:06 test WARNING tpeppickupdatetime iscomplete N/A 19817583 0.0 1.0 1.0 PASS ```
Roadmap
100% data frame agnostic implementation of data quality checks.
Define once, run everywhere
- ~~[x] PySpark 3.5.0~~
- ~~[x] PySpark 3.4.0~~
- ~~[x] PySpark 3.3.0~~
- ~~[x] PySpark 3.2.x~~
- ~~[x] Snowpark DataFrame~~
- ~~[x] Pandas DataFrame~~
- ~~[x] DuckDB Tables~~
- ~~[x] BigQuery Client~~
- ~~[x] Polars DataFrame~~
- ~~[*] Dagster Integration~~
- ~~[x] Spark Connect~~
- ~~[x] Daft~~
- [-] PDF Report
- [ ] Metadata check
- [ ] Help us in a discussion?
Whilst expanding the functionality feels a bit as an overkill because you most likely can connect spark via its drivers to whatever DBMS of your choice.
In the desire to make it even more user-friendly we are aiming to make cuallee portable to all the providers above.
Authors
- canimus / Herminio Vazquez / 🇲🇽
- vestalisvirginis / Virginie Grosboillot / 🇫🇷
Contributors
Guidelines
Documentation
Paper
cuallee has been published in the Journal of Open Source Software
Vazquez et al., (2024). cuallee: A Python package for data quality checks across multiple DataFrame APIs. Journal of Open Source Software, 9(98), 6684, https://doi.org/10.21105/joss.06684
If you use cuallee please consider citing this work. Citation
License
Apache License 2.0 Free for commercial use, modification, distribution, patent use, private use. Just preserve the copyright and license.
Made with ❤️ in Utrecht 🇳🇱
Maintained over ⌛ from Ljubljana 🇸🇮
Extended 🚀 by contributions all over the 🌎
Owner
- Name: Herminio Vazquez
- Login: canimus
- Kind: user
- Location: Utrecht, Netherlands
- Company: iovio
- Website: http://iovio.com
- Twitter: canimus
- Repositories: 23
- Profile: https://github.com/canimus
JOSS Publication
cuallee: A Python package for data quality checks across multiple DataFrame APIs
Authors
Tags
python data quality data checks data unit tests data pipelines data validation data observability data lake pyspark duckdb pandas snowpark polars big dataCitation (CITATION.cff)
cff-version: "1.2.0"
authors:
- family-names: Vazquez
given-names: Herminio
orcid: "https://orcid.org/0000-0003-1937-8006"
- family-names: Grosboillot
given-names: Virginie
orcid: "https://orcid.org/0000-0002-8249-7182"
doi: 10.5281/zenodo.12206787
message: If you use this software, please cite our article in the
Journal of Open Source Software.
preferred-citation:
authors:
- family-names: Vazquez
given-names: Herminio
orcid: "https://orcid.org/0000-0003-1937-8006"
- family-names: Grosboillot
given-names: Virginie
orcid: "https://orcid.org/0000-0002-8249-7182"
date-published: 2024-06-23
doi: 10.21105/joss.06684
issn: 2475-9066
issue: 98
journal: Journal of Open Source Software
publisher:
name: Open Journals
start: 6684
title: "cuallee: A Python package for data quality checks across
multiple DataFrame APIs"
type: article
url: "https://joss.theoj.org/papers/10.21105/joss.06684"
volume: 9
title: "cuallee: A Python package for data quality checks across
multiple DataFrame APIs"
GitHub Events
Total
- Create event: 85
- Issues event: 5
- Release event: 2
- Watch event: 35
- Delete event: 80
- Issue comment event: 70
- Push event: 83
- Pull request event: 161
- Fork event: 1
Last Year
- Create event: 85
- Issues event: 5
- Release event: 2
- Watch event: 35
- Delete event: 80
- Issue comment event: 70
- Push event: 83
- Pull request event: 161
- Fork event: 1
Committers
Last synced: 5 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Herminio Vazquez | c****s@g****m | 407 |
| dependabot[bot] | 4****] | 75 |
| Virginie Grosboillot | v****s@g****m | 69 |
| Corey Runkel | 3****y | 3 |
| Herminio Vazquez | 7****o | 3 |
| Daniel Saad | d****8 | 2 |
| Demetrius Albuquerque | d****e@y****r | 2 |
| Mehmet Hakan Satman | m****n@g****m | 2 |
| Herminio Vazquez | h****o@c****m | 2 |
| Alexey Mints | m****o | 1 |
| Evaristo Rojas • GECI | e****s@i****x | 1 |
| Jonatan Kronander | j****r@g****m | 1 |
| Ryan Julyan | r****n@j****z | 1 |
| ScottWilliamAnderson | 4****n | 1 |
| Yuki | 4****i | 1 |
| dCodeYL | 6****L | 1 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 4 months ago
All Time
- Total issues: 35
- Total pull requests: 591
- Average time to close issues: 8 days
- Average time to close pull requests: 6 days
- Total issue authors: 15
- Total pull request authors: 14
- Average comments per issue: 1.77
- Average comments per pull request: 0.41
- Merged pull requests: 322
- Bot issues: 2
- Bot pull requests: 372
Past Year
- Issues: 6
- Pull requests: 191
- Average time to close issues: 4 days
- Average time to close pull requests: 9 days
- Issue authors: 6
- Pull request authors: 5
- Average comments per issue: 2.5
- Average comments per pull request: 0.59
- Merged pull requests: 52
- Bot issues: 1
- Bot pull requests: 169
Top Authors
Issue Authors
- canimus (10)
- FlorianK13 (7)
- devarops (4)
- dependabot[bot] (2)
- GeorgelPreput (2)
- pwolff42 (1)
- hardiktalati (1)
- shaunryan (1)
- g-kannan (1)
- vestalisvirginis (1)
- Ranji-1712 (1)
- marrov (1)
- dsaad68 (1)
- maltzsama (1)
- jkkronk (1)
Pull Request Authors
- dependabot[bot] (413)
- canimus (142)
- vestalisvirginis (52)
- dsaad68 (8)
- maltzsama (6)
- runkelcorey (5)
- jbytecode (3)
- jkkronk (2)
- ScottWilliamAnderson (2)
- minzastro (2)
- StuffbyYuki (2)
- devarops (2)
- RyanJulyan (1)
- dCodeYL (1)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- pypi 49,315 last-month
- Total dependent packages: 1
- Total dependent repositories: 1
- Total versions: 94
- Total maintainers: 2
pypi.org: cuallee
Python library for data validation on DataFrame APIs including Snowflake/Snowpark, Apache/PySpark and Pandas/DataFrame.
- Homepage: https://github.com/canimus/cuallee
- Documentation: https://cuallee.readthedocs.io/
- License: Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
-
Latest release: 0.15.2
published about 1 year ago
Rankings
Maintainers (2)
Dependencies
- actions/checkout master composite
- actions/checkout v3 composite
- actions/setup-python master composite
- actions/setup-python v4 composite
- codecov/codecov-action v3 composite
- python 3.8.10 build
- python 3.8.10 build
- colorama >= 0.4.6
- lxml >= 4.9.2
- pandas >=1.5.3
- pygments >= 2.15.1
- requests >= 2.28.2
- toolz >= 0.12.0
