Metadata-Version: 2.1
Name: cse163-utils
Version: 0.1.1
Summary: Useful helper functions for CSE 163: Intermediate Data Programming course content. https://cse163.github.io/book/
Home-page: https://cse163.github.io/book/#
License: MIT
Author: Hunter Schafer
Author-email: hschafer@cs.washington.edu
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: pandas (>=1.4.1,<2.0.0)
Project-URL: Documentation, https://github.com/cse163/cse163_utils
Project-URL: Repository, https://github.com/cse163/cse163_utils
Description-Content-Type: text/markdown

This package contains useful methods for CSE 163: Intermediate Data Programming.

The most commonly used functions for students will be

```python
from cse163_utils import download

download("earthquakes.csv")
```

and

```python
from cse163_utils import assert_equals

assert_equals(4, my_function("abc"))
```


Find out more:

* Book: https://cse163.github.io/book/#
* Course Website: cs.washington.edu/163
* Source code: https://github.com/cse163/cse163_utils

