├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md └── data └── pen-collected-items.csv /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cooperhewitt/the-pen-data/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *# 3 | *.pyc 4 | .DS_Store -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cooperhewitt/the-pen-data/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cooperhewitt/the-pen-data/HEAD/README.md -------------------------------------------------------------------------------- /data/pen-collected-items.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cooperhewitt/the-pen-data/HEAD/data/pen-collected-items.csv --------------------------------------------------------------------------------