Work with packages
Read a package
Packages may contain data of any size or type. A given package instance--specified by a hash, tag, or version--is immutable for reproducibility.
Install a data package from user uciml
uciml
Note: most Quilt commands are available both on the command line and in Python.
You can install a package as follows:
Import the package
Read more about the uciml/iris
package on its landing page, or browse packages on Quilt.
Edit a package
Start by installing and importing the package you wish to modify:
Alternatively, you can build an empty package and import it for editing:
Update: As of version 2.9.9, easiest method to edit a package is to use subpackage build and push.
Edit dataframe nodes
Use the Pandas API to edit existing dataframes:
Add package nodes
Use the _set
helper method on the top-level package node to create new groups and data nodes:
Delete package nodes
Use del
to delete attributes:
Edit metadata
Use the _meta
attribute to attach any JSON-serializable dictionary of metadata to a group or a data node:
Data nodes contain a built-in key _meta['_system']
with information such as the original file path. You may access it, but any modifications to it may be lost.
Persist changes
At this point, your changes only exist in memory. To persist your changes, read on to learn about build
and push
.
Build a package
Building a package creates a local bundle of serialized data. $ quilt ls
displays your local packages and their location on disk.
There are three ways to build data packages with Quilt:
Implicitly with
quilt build USR/PKG DIRECTORY
. Implicit builds are good for taking quick snapshots of unstructured data like images or text files. Quilt serializes columnar formats formats (xls, csv, tsv, etc.) to data frames; all other files will be copied "as is".Explicitly with
quilt build USR/PKG FILE.YML
. Explicit builds allow fine-grained control over package names, types, and contents.One the fly, in Python
Each of the above methods for building packages is supported in Python and on the command line.
Implicit builds
To implicitly build a package of unserialized data:
Everything in DIR
and it's subdirectories will be packaged into USR/PKG
.
To publish your package:
Users on Individual and Business plans can omit the --public
flag to create private packages.
Explicit builds
Explicit builds cue from a YAML file, conventionally called build.yml
.
build.yml
specifies the structure and contents of a package.
quilt generate
creates a build.yml
file
quilt generate
creates a build.yml
fileAn easy way to create a build.yml
file is as follows:
The above command creates build.yml
and README.md
files that you can modify to your liking. A README.md
file is highly recommended as it populates your package landing page with documentation. See the API section for more on how README markdown is converted to HTML.
See build.yml
syntax for more.
Directory and file naming in quilt generate
Directories and files that start with a numeric character or underscore will be prefixed with the letter
n
. If a name collision results, the build will fail with an error.If two files have the same path and root name, but different file extensions (
foo.txt
,foo.csv
), the extensions will be appended as follows:foo_txt
,foo_csv
. If, after appending, there remains a name collision, the build will fail with an error.
Build on the fly
Valid package names
Package handles take the form USER_NAME/PACKAGE_NAME
. The package name and all of its children must be valid Python identifiers:
Start with a letter
Contain only alphanumerics and underscore
The above criteria ensure that packages can be accessed with Python's dot operator.
Push a package
Pushing a package stores a built package in a server-side registry. Push a package to back up changes or share your package with others.
Or, in Python:
Users on Individual and Business plans can omit is_public=True to create private packages.
Last updated