NVIDIA / NVIDIA/cudf

[FEA] support for read_html

Open
#12,514 0 comments 0 reactions 0 assignees View on GitHub
0 - Backlog feature request Python
Dominant language
C++
Stars
9.8k
Forks
1.1k
Avg merge
3d 6m
Merged PRs (30d)
278

Description

**Is your feature request related to a problem? Please describe.**
working with `import cudf as pd`

**Describe the solution you'd like**
functionality matching https://pandas.pydata.org/docs/reference/api/pandas.read_html.html
```
In [1]: import cudf as pd

In [2]: pd.__version__
Out[2]: '22.12.0'

In [3]: pd.read_html("https://docs.rapids.ai/maintainers")
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
Cell In [3], line 1
----> 1 pd.read_html("https://docs.rapids.ai/maintainers")

AttributeError: module 'cudf' has no attribute 'read_html'

In [4]: import pandas

In [5]: pandas.read_html("https://docs.rapids.ai/maintainers")
Out[5]:
[ Phase Start End Duration
0 Development (cuDF/RMM/rapids-cmake) Thu, Nov 10 Wed, Jan 18 42 days
1 Development (others) Thu, Nov 17 Wed, Jan 25 43 days
2 Burn Down(cuDF/RMM/rapids-cmake) Thu, Jan 19 Wed, Jan 25 5 days
3 Burn Down (others) Thu, Jan 26 Wed, Feb 1 5 days
4 Code Freeze/Testing (cuDF/RMM/rapids-cmake) Thu, Jan 26 Tue, Jan 31 4 days
5 Code Freeze/Testing (others) 1 Thu, Feb 2 Tue, Feb 7 4 days
6 Release Wed, Feb 8 Thu, Feb 9 2 days,
Phase Start End Duration
0 Development (cuDF/RMM/rapids-cmake) Thu, Jan 19 Wed, Mar 22 42 days
1 Development (others) Thu, Jan 26 Wed, Mar 29 42 days
2 Burn Down(cuDF/RMM/rapids-cmake) Thu, Mar 23 Wed, Mar 29 5 days
3 Burn Down (others) Thu, Mar 30 Wed, Apr 5 5 days
4 Code Freeze/Testing (cuDF/RMM/rapids-cmake) Thu, Mar 30 Tue, Apr 4 4 days
5 Code Freeze/Testing (others) 1 Thu, Apr 6 Tue, Apr 11 4 days
6 Release Wed, Apr 12 Thu, Apr 13 2 days]
```

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.