|
7 | 7 |
|
8 | 8 | [](https://github.com/databrickslabs/dbldatagen/actions?query=workflow%3Abuild+branch%3Amaster)
|
9 | 9 | [](https://codecov.io/gh/databrickslabs/dbldatagen)
|
10 |
| - |
11 | 10 | [](https://hanadigital.github.io/grev/?user=databrickslabs&repo=dbldatagen)
|
12 | 11 | [](https://lgtm.com/projects/g/databrickslabs/dbldatagen/context:python)
|
13 | 12 |
|
@@ -42,6 +41,7 @@ used in other computations
|
42 | 41 | * Generating values to conform to a schema or independent of an existing schema
|
43 | 42 | * use of SQL expressions in test data generation
|
44 | 43 | * plugin mechanism to allow use of 3rd party libraries such as Faker
|
| 44 | +* Use of data generator to generate sources in Databricks Delta Live Tables |
45 | 45 |
|
46 | 46 | Details of these features can be found in the [Developer Docs](docs/source/APIDOCS.md) and the online help
|
47 | 47 | (which contains the full documentation including the HTML version of the Developer Docs) -
|
@@ -69,24 +69,24 @@ release notes for library compatibility
|
69 | 69 | The release binaries can be accessed at:
|
70 | 70 | - Databricks Labs Github Data Generator releases - https://github.com/databrickslabs/dbldatagen/releases
|
71 | 71 |
|
72 |
| -To use download a wheel file and install using the Databricks install mechanism to install a wheel based |
73 |
| -library into your workspace. |
74 |
| - |
75 |
| -Alternatively, you can install the library as a notebook scoped library when working within the Databricks |
76 |
| -notebook environment through the use of a `%pip` cell in your notebook. |
| 72 | +You can install the library as a notebook scoped library when working within the Databricks |
| 73 | +notebook environment through the use of a `%pip install` cell in your notebook. |
77 | 74 |
|
78 | 75 | To install as a notebook-scoped library, create and execute a notebook cell with the following text:
|
79 | 76 |
|
80 | 77 | > `%pip install git+https://github.com/databrickslabs/dbldatagen`
|
81 | 78 |
|
82 |
| -The `%pip install` method will work in the Databricks Community Environment also. |
| 79 | +The `%pip install` method will work in Delta Live Tables pipelines and in the Databricks Community |
| 80 | +Environment also. |
83 | 81 |
|
84 |
| -The latest pre-release is code complete and fully functional. |
| 82 | +Alternatively, you can download a wheel file and install using the Databricks install mechanism to install a wheel based |
| 83 | +library into your workspace. |
85 | 84 |
|
86 |
| -## Using the Project |
87 |
| -To use the project, the generated wheel should be installed in your Python notebook as a wheel based library |
| 85 | +## Using the Data Generator |
| 86 | +To use the data generator, install the library using the `%pip install` method or install the Python wheel directly |
| 87 | +in your environment. |
88 | 88 |
|
89 |
| -Once the library has been installed, you can use it to generate a test data frame. |
| 89 | +Once the library has been installed, you can use it to generate a data frame composed of synthetic data. |
90 | 90 |
|
91 | 91 | For example
|
92 | 92 |
|
|
0 commit comments