fastdfs 0.2.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (72) hide show
  1. fastdfs-0.2.0/LICENSE +201 -0
  2. fastdfs-0.2.0/PKG-INFO +298 -0
  3. fastdfs-0.2.0/README.md +240 -0
  4. fastdfs-0.2.0/fastdfs/__init__.py +50 -0
  5. fastdfs-0.2.0/fastdfs/adapter/__init__.py +15 -0
  6. fastdfs-0.2.0/fastdfs/adapter/dbinfer.py +163 -0
  7. fastdfs-0.2.0/fastdfs/adapter/dbinfer_bench/__init__.py +20 -0
  8. fastdfs-0.2.0/fastdfs/adapter/dbinfer_bench/dataset_meta.py +180 -0
  9. fastdfs-0.2.0/fastdfs/adapter/dbinfer_bench/download.py +154 -0
  10. fastdfs-0.2.0/fastdfs/adapter/dbinfer_bench/download_config.yaml +112 -0
  11. fastdfs-0.2.0/fastdfs/adapter/dbinfer_bench/rdb_dataset.py +428 -0
  12. fastdfs-0.2.0/fastdfs/adapter/dbinfer_bench/table_loader.py +41 -0
  13. fastdfs-0.2.0/fastdfs/adapter/dbinfer_bench/table_writer.py +65 -0
  14. fastdfs-0.2.0/fastdfs/adapter/dbinfer_bench/version.py +17 -0
  15. fastdfs-0.2.0/fastdfs/adapter/dbinfer_bench/yaml_utils.py +30 -0
  16. fastdfs-0.2.0/fastdfs/adapter/duckdb.py +184 -0
  17. fastdfs-0.2.0/fastdfs/adapter/mysql.py +39 -0
  18. fastdfs-0.2.0/fastdfs/adapter/postgres.py +50 -0
  19. fastdfs-0.2.0/fastdfs/adapter/relbench.py +135 -0
  20. fastdfs-0.2.0/fastdfs/adapter/sql_base.py +168 -0
  21. fastdfs-0.2.0/fastdfs/adapter/sqlite.py +49 -0
  22. fastdfs-0.2.0/fastdfs/api.py +252 -0
  23. fastdfs-0.2.0/fastdfs/dataset/__init__.py +5 -0
  24. fastdfs-0.2.0/fastdfs/dataset/loader.py +25 -0
  25. fastdfs-0.2.0/fastdfs/dataset/meta.py +101 -0
  26. fastdfs-0.2.0/fastdfs/dataset/rdb.py +478 -0
  27. fastdfs-0.2.0/fastdfs/dataset/writer.py +48 -0
  28. fastdfs-0.2.0/fastdfs/dfs/__init__.py +11 -0
  29. fastdfs-0.2.0/fastdfs/dfs/base_engine.py +508 -0
  30. fastdfs-0.2.0/fastdfs/dfs/dfs2sql_engine.py +204 -0
  31. fastdfs-0.2.0/fastdfs/dfs/duckdb_database.py +62 -0
  32. fastdfs-0.2.0/fastdfs/dfs/featuretools_engine.py +88 -0
  33. fastdfs-0.2.0/fastdfs/dfs/gen_sqls.py +815 -0
  34. fastdfs-0.2.0/fastdfs/transform/__init__.py +36 -0
  35. fastdfs-0.2.0/fastdfs/transform/base.py +181 -0
  36. fastdfs-0.2.0/fastdfs/transform/datetime_transform.py +69 -0
  37. fastdfs-0.2.0/fastdfs/transform/dummy_table_transform.py +118 -0
  38. fastdfs-0.2.0/fastdfs/transform/fill_missing_pk.py +221 -0
  39. fastdfs-0.2.0/fastdfs/transform/filter_transform.py +64 -0
  40. fastdfs-0.2.0/fastdfs/transform/infer_schema.py +161 -0
  41. fastdfs-0.2.0/fastdfs/transform/type_transform.py +87 -0
  42. fastdfs-0.2.0/fastdfs/transform/utils.py +46 -0
  43. fastdfs-0.2.0/fastdfs/utils/__init__.py +3 -0
  44. fastdfs-0.2.0/fastdfs/utils/datetime_utils.py +76 -0
  45. fastdfs-0.2.0/fastdfs/utils/device.py +12 -0
  46. fastdfs-0.2.0/fastdfs/utils/logging_config.py +79 -0
  47. fastdfs-0.2.0/fastdfs/utils/type_utils.py +88 -0
  48. fastdfs-0.2.0/fastdfs/utils/yaml_utils.py +24 -0
  49. fastdfs-0.2.0/fastdfs.egg-info/PKG-INFO +298 -0
  50. fastdfs-0.2.0/fastdfs.egg-info/SOURCES.txt +70 -0
  51. fastdfs-0.2.0/fastdfs.egg-info/dependency_links.txt +1 -0
  52. fastdfs-0.2.0/fastdfs.egg-info/requires.txt +35 -0
  53. fastdfs-0.2.0/fastdfs.egg-info/top_level.txt +1 -0
  54. fastdfs-0.2.0/pyproject.toml +109 -0
  55. fastdfs-0.2.0/setup.cfg +4 -0
  56. fastdfs-0.2.0/tests/test_adapter_hints.py +58 -0
  57. fastdfs-0.2.0/tests/test_api.py +166 -0
  58. fastdfs-0.2.0/tests/test_complex_target_columns.py +104 -0
  59. fastdfs-0.2.0/tests/test_create_rdb.py +79 -0
  60. fastdfs-0.2.0/tests/test_dbinfer_adapter.py +128 -0
  61. fastdfs-0.2.0/tests/test_dfs_engines.py +854 -0
  62. fastdfs-0.2.0/tests/test_duckdb_adapter.py +64 -0
  63. fastdfs-0.2.0/tests/test_dummy_table_transform.py +138 -0
  64. fastdfs-0.2.0/tests/test_fill_missing_primary_key.py +423 -0
  65. fastdfs-0.2.0/tests/test_infer_schema.py +176 -0
  66. fastdfs-0.2.0/tests/test_rdb.py +481 -0
  67. fastdfs-0.2.0/tests/test_rdb_save.py +59 -0
  68. fastdfs-0.2.0/tests/test_relbench_adapter.py +176 -0
  69. fastdfs-0.2.0/tests/test_sqlite_adapter.py +79 -0
  70. fastdfs-0.2.0/tests/test_target_history.py +99 -0
  71. fastdfs-0.2.0/tests/test_transforms.py +534 -0
  72. fastdfs-0.2.0/tests/test_type_transform.py +96 -0
fastdfs-0.2.0/LICENSE ADDED
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or Derivative
95
+ Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2026 HKU Shanghai X-Lab
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
fastdfs-0.2.0/PKG-INFO ADDED
@@ -0,0 +1,298 @@
1
+ Metadata-Version: 2.4
2
+ Name: fastdfs
3
+ Version: 0.2.0
4
+ Summary: Fast Deep Feature Synthesis for tabular data
5
+ Author: HKU Shanghai X-Lab
6
+ Maintainer: HKU Shanghai X-Lab
7
+ License: Apache-2.0
8
+ Project-URL: Homepage, https://github.com/HKUSHXLab/fastdfs
9
+ Project-URL: Repository, https://github.com/HKUSHXLab/fastdfs
10
+ Project-URL: Documentation, https://github.com/HKUSHXLab/fastdfs/blob/main/fastdfs/README.md
11
+ Project-URL: Bug Tracker, https://github.com/HKUSHXLab/fastdfs/issues
12
+ Keywords: feature engineering,deep feature synthesis,tabular data,automated ML
13
+ Classifier: Development Status :: 4 - Beta
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Intended Audience :: Science/Research
16
+ Classifier: License :: OSI Approved :: Apache Software License
17
+ Classifier: Operating System :: OS Independent
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
22
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
+ Requires-Python: >=3.10
24
+ Description-Content-Type: text/markdown
25
+ License-File: LICENSE
26
+ Requires-Dist: pandas<3.0,>=2.3.3
27
+ Requires-Dist: numpy
28
+ Requires-Dist: scipy
29
+ Requires-Dist: scikit-learn
30
+ Requires-Dist: pyarrow<21.0.0
31
+ Requires-Dist: featuretools
32
+ Requires-Dist: sqlalchemy
33
+ Requires-Dist: duckdb
34
+ Requires-Dist: sqlglot<28.0.0,>=27.8.0
35
+ Requires-Dist: sql_formatter
36
+ Requires-Dist: pydantic
37
+ Requires-Dist: pyyaml
38
+ Requires-Dist: tqdm
39
+ Requires-Dist: psutil
40
+ Requires-Dist: loguru
41
+ Requires-Dist: boto3
42
+ Requires-Dist: requests
43
+ Provides-Extra: dev
44
+ Requires-Dist: pytest>=7.0.0; extra == "dev"
45
+ Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
46
+ Requires-Dist: black>=22.0.0; extra == "dev"
47
+ Requires-Dist: isort>=5.10.0; extra == "dev"
48
+ Requires-Dist: flake8>=5.0.0; extra == "dev"
49
+ Requires-Dist: mypy>=0.991; extra == "dev"
50
+ Provides-Extra: postgres
51
+ Requires-Dist: psycopg2-binary; extra == "postgres"
52
+ Provides-Extra: mysql
53
+ Requires-Dist: pymysql; extra == "mysql"
54
+ Provides-Extra: all
55
+ Requires-Dist: psycopg2-binary; extra == "all"
56
+ Requires-Dist: pymysql; extra == "all"
57
+ Dynamic: license-file
58
+
59
+ # FastDFS - Deep Feature Synthesis for Tabular Data
60
+
61
+ FastDFS is a Python library for automated feature engineering using Deep Feature Synthesis (DFS). It augments target dataframes with rich features derived from relational database structures, making it easy to create powerful features for machine learning without manual feature engineering.
62
+
63
+ ## Core Concept
64
+
65
+ FastDFS treats feature engineering as a **table augmentation process**: given any target dataframe and a relational database (RDB) containing related tables, it automatically generates new features by aggregating information across relationships.
66
+
67
+ ```python
68
+ # Your target dataframe (what you want to predict on)
69
+ target_df = pd.DataFrame({
70
+ "user_id": [1, 2, 3],
71
+ "item_id": [100, 200, 300],
72
+ "interaction_time": ["2024-01-01", "2024-01-02", "2024-01-03"]
73
+ })
74
+
75
+ # Your relational database (context for feature generation)
76
+ rdb = fastdfs.load_rdb("ecommerce_data/") # Contains user, item, interaction tables
77
+
78
+ # Generate features automatically
79
+ enriched_df = fastdfs.compute_dfs_features(
80
+ rdb=rdb,
81
+ target_dataframe=target_df,
82
+ key_mappings={"user_id": "user.user_id", "item_id": "item.item_id"},
83
+ cutoff_time_column="interaction_time"
84
+ )
85
+ # Result: Original columns + 50+ new features like user_avg_rating, item_count_purchases, etc.
86
+ ```
87
+
88
+ ## Installation
89
+
90
+ ```bash
91
+ pip install fastdfs
92
+ ```
93
+
94
+ Or for development:
95
+ ```bash
96
+ git clone https://github.com/dglai/fastdfs.git
97
+ cd fastdfs
98
+ pip install -e .
99
+ ```
100
+
101
+ ## Quick Start
102
+
103
+ ### 1. Prepare Your Data
104
+
105
+ FastDFS provides multiple ways to prepare your relational data.
106
+
107
+ #### Option A: Create from DataFrames (Recommended)
108
+
109
+ You can create an RDB directly from pandas DataFrames. FastDFS will automatically infer the schema.
110
+
111
+ ```python
112
+ import fastdfs
113
+ import pandas as pd
114
+
115
+ # 1. Define your tables
116
+ users_df = pd.DataFrame(...)
117
+ items_df = pd.DataFrame(...)
118
+ interactions_df = pd.DataFrame(...)
119
+
120
+ # 2. Create RDB with relationships
121
+ rdb = fastdfs.create_rdb(
122
+ name="ecommerce",
123
+ tables={
124
+ "user": users_df,
125
+ "item": items_df,
126
+ "interaction": interactions_df
127
+ },
128
+ primary_keys={
129
+ "user": "user_id",
130
+ "item": "item_id"
131
+ },
132
+ foreign_keys=[
133
+ ("interaction", "user_id", "user", "user_id"),
134
+ ("interaction", "item_id", "item", "item_id")
135
+ ],
136
+ time_columns={
137
+ "interaction": "timestamp"
138
+ }
139
+ )
140
+
141
+ # 3. Save for later use
142
+ rdb.save("ecommerce_rdb/")
143
+
144
+ # 4. Load it back
145
+ rdb = fastdfs.load_rdb("ecommerce_rdb/")
146
+ ```
147
+
148
+ #### Option B: Adapt Existing Datasets
149
+
150
+ FastDFS includes adapters for popular relational dataset benchmarks.
151
+
152
+ **RelBench**
153
+ ```python
154
+ from fastdfs.adapter.relbench import RelBenchAdapter
155
+
156
+ # Load and convert RelBench dataset
157
+ adapter = RelBenchAdapter("rel-stack")
158
+ rdb = adapter.load()
159
+ rdb.save("rel-stack-rdb/")
160
+ ```
161
+
162
+ **DBInfer**
163
+ ```python
164
+ from fastdfs.adapter.dbinfer import DBInferAdapter
165
+
166
+ # Load and convert DBInfer dataset
167
+ adapter = DBInferAdapter("diginetica")
168
+ rdb = adapter.load()
169
+ rdb.save("diginetica-rdb/")
170
+ ```
171
+
172
+ #### Option C: Load from Relational Database
173
+
174
+ FastDFS supports loading data directly from SQL databases (SQLite, MySQL, PostgreSQL, DuckDB).
175
+
176
+ ```python
177
+ from fastdfs.adapter.sqlite import SQLiteAdapter
178
+ # from fastdfs.adapter.mysql import MySQLAdapter
179
+ # from fastdfs.adapter.postgres import PostgreSQLAdapter
180
+
181
+ # Connect to database
182
+ adapter = SQLiteAdapter(
183
+ "ecommerce.db",
184
+ time_columns={"orders": "created_at"}, # (Optional) specify which column is the time column for which table
185
+ type_hints={"users": {"age": "float"}} # (Optional) specify the desired column data type
186
+ )
187
+
188
+ # Or for MySQL/PostgreSQL:
189
+ # adapter = MySQLAdapter("mysql+pymysql://user:pass@host/db")
190
+
191
+ rdb = adapter.load()
192
+ ```
193
+
194
+ ### 2. Generate Features
195
+
196
+ ```python
197
+ import fastdfs
198
+ import pandas as pd
199
+
200
+ # Prepare your rdb from the methods above
201
+ rdb = ...
202
+
203
+ # Create or load your target dataframe
204
+ target_df = pd.DataFrame({
205
+ "user_id": [1, 2, 3],
206
+ "item_id": [10, 20, 30],
207
+ "prediction_time": ["2024-01-01", "2024-01-02", "2024-01-03"]
208
+ })
209
+
210
+ # Generate features
211
+ features = fastdfs.compute_dfs_features(
212
+ rdb=rdb,
213
+ target_dataframe=target_df,
214
+ key_mappings={
215
+ "user_id": "user.user_id",
216
+ "item_id": "item.item_id"
217
+ },
218
+ cutoff_time_column="prediction_time",
219
+ config_overrides={"max_depth": 2}
220
+ )
221
+
222
+ print(f"Original columns: {len(target_df.columns)}")
223
+ print(f"With features: {len(features.columns)}")
224
+ ```
225
+
226
+ ### 3. Advanced Usage with Transforms
227
+
228
+ ```python
229
+ # Apply preprocessing transforms before feature generation
230
+ from fastdfs.transform import RDBTransformWrapper, RDBTransformPipeline, HandleDummyTable, FeaturizeDatetime
231
+
232
+ pipeline = fastdfs.DFSPipeline(
233
+ transform_pipeline=RDBTransformPipeline([
234
+ HandleDummyTable(),
235
+ RDBTransformWrapper(FeaturizeDatetime(features=["year", "month", "hour"]))
236
+ ]),
237
+ dfs_config=fastdfs.DFSConfig(max_depth=3, engine="dfs2sql")
238
+ )
239
+
240
+ features = pipeline.run(
241
+ rdb=rdb,
242
+ target_dataframe=target_df,
243
+ key_mappings=key_mappings,
244
+ cutoff_time_column="prediction_time"
245
+ )
246
+ ```
247
+
248
+ ## Key Features
249
+
250
+ - **Table-Centric Design**: Augment any dataframe, not just predefined datasets
251
+ - **Multiple DFS Engines**: Choose between Featuretools (pandas) or DFS2SQL (high-performance)
252
+ - **Temporal Consistency**: Built-in cutoff time support prevents data leakage
253
+ - **Flexible Key Mapping**: Connect target data to RDB with simple column mappings
254
+ - **Transform Pipeline**: Composable preprocessing transforms for data cleaning
255
+ - **Type Safety**: Full type hints and runtime validation
256
+ - **Minimal Dependencies**: Focused, lightweight package
257
+
258
+ ## Engine Comparison
259
+
260
+ | Feature | Featuretools | DFS2SQL |
261
+ |---------|-------------|---------|
262
+ | Performance | Good for small data | Excellent for large data |
263
+ | Memory Usage | High (pandas) | Low (SQL-based) |
264
+ | Primitives | Rich set | Core primitives |
265
+ | Backend | Pandas | DuckDB |
266
+
267
+ ## Documentation
268
+
269
+ - **[User Guide](docs/user_guide.md)**: Complete tutorial with concepts and examples
270
+ - **[API Reference](docs/api_reference.md)**: Detailed API documentation
271
+ - **[Examples](examples/)**: Runnable code examples
272
+
273
+ ## Why FastDFS?
274
+
275
+ **Before FastDFS** (manual feature engineering):
276
+ ```python
277
+ # Manual aggregations for each feature
278
+ user_avg_rating = interactions.groupby('user_id')['rating'].mean()
279
+ user_total_purchases = interactions.groupby('user_id').size()
280
+ item_avg_rating = interactions.groupby('item_id')['rating'].mean()
281
+ # ... dozens more features ...
282
+ ```
283
+
284
+ **With FastDFS** (automated):
285
+ ```python
286
+ # Automatic generation of 50+ features
287
+ features = fastdfs.compute_dfs_features(rdb, target_df, key_mappings)
288
+ ```
289
+
290
+ FastDFS automatically discovers relationships in your data and generates meaningful aggregation features, saving weeks of manual feature engineering work.
291
+
292
+ ## Contributing
293
+
294
+ We welcome contributions! See our [development logs](dev_logs/) for project history and architecture decisions.
295
+
296
+ ## License
297
+
298
+ Apache-2.0 License