# Including CSV Files in a Package I'm Developing..?

**URL:** https://discourse.julialang.org/t/including-csv-files-in-a-package-im-developing/31532
**Category:** General Usage
**Tags:** package
**Created:** [November 26, 2019, 2:37pm UTC](https://discourse.julialang.org/t/including-csv-files-in-a-package-im-developing/31532 "2019-11-26T14:37:06Z")
**Posts on this page:** 1
**Showing post:** 4

<div class="post-metadata">

### Author: ![Tamas\_Papp](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/tamas_papp/32/25949_2.png) [@Tamas\_Papp](https://discourse.julialang.org/u/Tamas_Papp)
#### Post date: [November 26, 2019, 3:12pm UTC](https://discourse.julialang.org/t/including-csv-files-in-a-package-im-developing/31532/4 "2019-11-26T15:12:08Z")

</div>

I think that saving small example datasets a directory of your choice (eg `data/`) within a package is fine. And CSV is a great choice, since for small datasets size and other considerations (like reading time, ability to mmap, etc) not very significant compared to the advantages (simplicity, transparency, lightweight dependencies).

For certain kinds of data,

[https://docs.julialang.org/en/v1/stdlib/DelimitedFiles/](https://docs.julialang.org/en/v1/stdlib/DelimitedFiles/)

may be enough, too.

You can then define a [path lookup function](https://discourse.julialang.org/t/correct-way-of-passing-paths-in-the-repl-for-a-project-containing-sub-folders/30380/2) in your package.

---

_[View the full topic](https://discourse.julialang.org/t/including-csv-files-in-a-package-im-developing/31532)._
