Cosmos Automated Data Exchange Tool 👩‍🚀
Перейти к файлу
Hannah Kennedy 1a2e8914ca Removes the `--no-use-pep517` flag on the Mac build. Prematurely added. 2019-02-04 14:14:47 -05:00
.github Initial feature-set docs and starter code (#2) 2019-01-04 16:45:05 -05:00
package Initial feature-set docs and starter code (#2) 2019-01-04 16:45:05 -05:00
src Fixes a possible capitalization problem with a linux build. 2019-02-04 13:36:55 -05:00
.gitignore Initial feature-set docs and starter code (#2) 2019-01-04 16:45:05 -05:00
CONTRIBUTING.md Creates the `cadet import` command (#4) 2019-01-29 15:21:42 -05:00
LICENSE Initial commit 2019-01-04 10:45:09 -08:00
README.md Removes a space from the build status image. (#8) 2019-01-30 10:57:31 -05:00
azure-pipelines.yml Removes the `--no-use-pep517` flag on the Mac build. Prematurely added. 2019-02-04 14:14:47 -05:00

README.md

cadet-cli

Build Status

Cosmos Automated Data Exchange Tool - A cross-platform utility to synchronize data with a DocumentDB-backed Azure Cosmos DB instance. 👩‍🚀

Cadet-cli branded logo of a rocketship

You can install the latest version of cadet from the Releases page, right here on GitHub.

How it works

Note: at this time, cadet does not support downloading data from Azure Cosmos DB.

Cadet is designed to make it simple to exchange data with Azure Cosmos DB instances that are using the DocumentDB backing store. It is a cross-platform python CLI that leverages the Azure Cosmos DB python SDK under the hood. Here are some common things you can do using cadet:

Import data from csv

The following command will import a comma-separated values file into the Azure Cosmos DB server located at your-server-connection-string into the collection your-collection-name on database your-database-name. It will read the data from path/to/csv.csv, and will output progress as data uploads.

cadet import --type csv --connection-string "your-server-connection-string" --database "your-database-name" --collection "your-collection-name" path/to/csv.csv

Import data from tsv

The following command will import a tab-separated values file into the Azure Cosmos DB server located at your-server-connection-string into the collection your-collection-name on database your-database-name. It will read the data from path/to/tsv.tsv, and will output progress as data uploads.

cadet import --type tsv --connection-string "your-server-connection-string" --database "your-database-name" --collection "your-collection-name" path/to/tsv.tsv

Contributing

For more information - including how to get started - see the CONTRIBUTING document.

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.