Datatamer / tamr-client

Programmatically interact with Tamr
https://tamr-client.readthedocs.io
Apache License 2.0
11 stars 25 forks source link

TC: Create projects in Tamr #433

Closed abafzal closed 4 years ago

abafzal commented 4 years ago

🙋 feature request

Tamr Client Beta should support creation of projects in Tamr

Examples

tc.project.create
(
    name='name of my project', 
    description='description of my project', 
    type='mastering|categorization|schema mapping|golden records'
)
ianbakst commented 4 years ago

Thinking about other possible parameters: enable_transformations = TRUE|false

pcattori commented 4 years ago

Rather than specifying type, we should just have a create function accessed via project type namespace:

tc.mastering.project.create(...)`
abafzal commented 4 years ago

Would the following syntax be fine with folks:

tc.mastering.project.create(...)
tc.categorization.project.create(...)
tc.schema_mapping.project.create(...)
tc.golden_records.project.create(...)
pcattori commented 4 years ago

Resolved by #435