Remote HTTP data is truncated
Open
- Dominant language
- Python
- Stars
- 1.1k
- Forks
- 151
- Avg merge
- 8h 24m
- Merged PRs (30d)
- 2
Description
It seems like data fetched through http is being truncated. Is that intentional?
```python
>>> x = intake.open_csv("https://raw.githubusercontent.com/hadley/nycflights13/master/data-raw/airports.csv").read()
>>> y = pd.read_csv("https://raw.githubusercontent.com/hadley/nycflights13/master/data-raw/airports.csv")
>>> len(x), len(y)
(519, 1458)
```
If I download the data and read it with intake, the full dataset is read
```
!wget https://raw.githubusercontent.com/hadley/nycflights13/master/data-raw/airports.csv
len(intake.open_csv("airports.csv").read())
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.