Skip to content

Commit 9d14185

Browse files
committed
Update README links
1 parent 9085d7c commit 9d14185

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# CSVFiles
22

33
[![Project Status: Active - The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active)
4-
[![Build Status](https://travis-ci.org/davidanthoff/CSVFiles.jl.svg?branch=master)](https://travis-ci.org/davidanthoff/CSVFiles.jl)
5-
[![Build status](https://ci.appveyor.com/api/projects/status/6l1m4w26s2b7x9jt/branch/master?svg=true)](https://ci.appveyor.com/project/davidanthoff/csvfiles-jl/branch/master)
4+
[![Build Status](https://travis-ci.org/queryverse/CSVFiles.jl.svg?branch=master)](https://travis-ci.org/queryverse/CSVFiles.jl)
5+
[![Build status](https://ci.appveyor.com/api/projects/status/6l1m4w26s2b7x9jt/branch/master?svg=true)](https://ci.appveyor.com/project/queryverse/csvfiles-jl/branch/master)
66
[![CSVFiles](http://pkg.julialang.org/badges/CSVFiles_0.6.svg)](http://pkg.julialang.org/?pkg=CSVFiles)
7-
[![codecov.io](http://codecov.io/github/davidanthoff/CSVFiles.jl/coverage.svg?branch=master)](http://codecov.io/github/davidanthoff/CSVFiles.jl?branch=master)
7+
[![codecov.io](http://codecov.io/github/queryverse/CSVFiles.jl/coverage.svg?branch=master)](http://codecov.io/github/queryverse/CSVFiles.jl?branch=master)
88

99
## Overview
1010

@@ -27,7 +27,7 @@ using CSVFiles, DataFrames
2727
df = DataFrame(load("data.csv"))
2828
````
2929

30-
The call to ``load`` returns a ``struct`` that is an [IterableTable.jl](https://github.com/davidanthoff/IterableTables.jl), so it can be passed to any function that can handle iterable tables, i.e. all the sinks in [IterableTable.jl](https://github.com/davidanthoff/IterableTables.jl). Here are some examples of materializing a CSV file into data structures that are not a ``DataFrame``:
30+
The call to ``load`` returns a ``struct`` that is an [IterableTable.jl](https://github.com/queryverse/IterableTables.jl), so it can be passed to any function that can handle iterable tables, i.e. all the sinks in [IterableTable.jl](https://github.com/queryverse/IterableTables.jl). Here are some examples of materializing a CSV file into data structures that are not a ``DataFrame``:
3131

3232
````julia
3333
using CSVFiles, DataTables, IndexedTables, TimeSeries, Temporal, Gadfly
@@ -85,7 +85,7 @@ using CSVFiles
8585

8686
save("output.csv", it)
8787
````
88-
This will work as long as ``it`` is any of the types supported as sources in [IterableTables.jl](https://github.com/davidanthoff/IterableTables.jl).
88+
This will work as long as ``it`` is any of the types supported as sources in [IterableTables.jl](https://github.com/queryverse/IterableTables.jl).
8989

9090
One can also save into an arbitrary stream:
9191
````julia
@@ -127,4 +127,4 @@ df = # Aquire a DataFrame somehow
127127
df |> save("output.csv")
128128
````
129129

130-
The pipe syntax is especially useful when combining it with [Query.jl](https://github.com/davidanthoff/Query.jl) queries, for example one can easily load a CSV file, pipe it into a query, then pipe it to the ``save`` function to store the results in a new file.
130+
The pipe syntax is especially useful when combining it with [Query.jl](https://github.com/queryverse/Query.jl) queries, for example one can easily load a CSV file, pipe it into a query, then pipe it to the ``save`` function to store the results in a new file.

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ end
5858
@testset "Less Basic" begin
5959
array = [@NT(Name="John",Age=34.,Children=2),@NT(Name="Sally",Age=54.,Children=1),@NT(Name="Jim",Age=23.,Children=0)]
6060
@testset "remote loading" begin
61-
rem_array = collect(load("https://raw.githubusercontent.com/davidanthoff/CSVFiles.jl/v0.2.0/test/data.csv"))
61+
rem_array = collect(load("https://raw.githubusercontent.com/queryverse/CSVFiles.jl/v0.2.0/test/data.csv"))
6262
@test length(rem_array) == 3
6363
@test rem_array == array
6464
end

0 commit comments

Comments
 (0)