File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed
docs/source/contributor-guide Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -30,10 +30,8 @@ DataFusion's Python bindings can be used as a foundation for building new data s
3030 planning, and logical plan optimizations, and then transpiles the logical plan to Dask operations for execution.
3131- [ DataFusion Ballista] ( https://github.com/apache/datafusion-ballista ) is a distributed SQL query engine that extends
3232 DataFusion's Python bindings for distributed use cases.
33-
34- It is also possible to use these Python bindings directly for DataFrame and SQL operations, but you may find that
35- [ Polars] ( http://pola.rs/ ) and [ DuckDB] ( http://www.duckdb.org/ ) are more suitable for this use case, since they have
36- more of an end-user focus and are more actively maintained than these Python bindings.
33+ - [ DataFusion Ray] ( https://github.com/apache/datafusion-ray ) is another distributed query engine that uses
34+ DataFusion's Python bindings.
3735
3836## Features
3937
@@ -114,6 +112,11 @@ Printing the context will show the current configuration settings.
114112print (ctx)
115113```
116114
115+ ## Extensions
116+
117+ For information about how to extend DataFusion Python, please see the extensions page of the
118+ [ online documentation] ( https://datafusion.apache.org/python/ ) .
119+
117120## More Examples
118121
119122See [ examples] ( examples/README.md ) for more information.
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ crate as a dependency and then provide a ``PyTable`` and then to register it wit
3838``SessionContext ``. Unfortunately, this will not work.
3939
4040When you produce your code as a Python library and it needs to interact with the DataFusion
41- library, at the lowest level they communicate through and Application Binary Interface (ABI).
41+ library, at the lowest level they communicate through an Application Binary Interface (ABI).
4242The acronym sounds similar to API (Application Programming Interface), but it is distinctly
4343different.
4444
You can’t perform that action at this time.
0 commit comments