You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* docs: link to examples using full URL in README
PyPI otherwise renders these relative to the `datafusion-python` page,
so when users currently get a 404 when they click on one of these links.
Fixesapache#699
* docs: update project.urls in pyproject.toml
* docs: update README with apache TLP URLs
* docs u pdate docs/README.md with apache TLP URLs
* docs: update index.rst with TLP URLs
* docs: update to new branded logos
This is a Python library that binds to [Apache Arrow](https://arrow.apache.org/) in-memory query engine [DataFusion](https://github.com/apache/arrow-datafusion).
25
+
This is a Python library that binds to [Apache Arrow](https://arrow.apache.org/) in-memory query engine [DataFusion](https://github.com/apache/datafusion).
26
26
27
27
DataFusion's Python bindings can be used as a foundation for building new data systems in Python. Here are some examples:
28
28
29
29
-[Dask SQL](https://github.com/dask-contrib/dask-sql) uses DataFusion's Python bindings for SQL parsing, query
30
30
planning, and logical plan optimizations, and then transpiles the logical plan to Dask operations for execution.
31
-
-[DataFusion Ballista](https://github.com/apache/arrow-ballista) is a distributed SQL query engine that extends
31
+
-[DataFusion Ballista](https://github.com/apache/datafusion-ballista) is a distributed SQL query engine that extends
32
32
DataFusion's Python bindings for distributed use cases.
33
33
34
34
It is also possible to use these Python bindings directly for DataFrame and SQL operations, but you may find that
@@ -120,23 +120,23 @@ See [examples](examples/README.md) for more information.
120
120
121
121
### Executing Queries with DataFusion
122
122
123
-
-[Query a Parquet file using SQL](./examples/sql-parquet.py)
124
-
-[Query a Parquet file using the DataFrame API](./examples/dataframe-parquet.py)
125
-
-[Run a SQL query and store the results in a Pandas DataFrame](./examples/sql-to-pandas.py)
126
-
-[Run a SQL query with a Python user-defined function (UDF)](./examples/sql-using-python-udf.py)
127
-
-[Run a SQL query with a Python user-defined aggregation function (UDAF)](./examples/sql-using-python-udaf.py)
-[Query a Parquet file using SQL](https://github.com/apache/datafusion-python/blob/main/examples/sql-parquet.py)
124
+
-[Query a Parquet file using the DataFrame API](https://github.com/apache/datafusion-python/blob/main/examples/dataframe-parquet.py)
125
+
-[Run a SQL query and store the results in a Pandas DataFrame](https://github.com/apache/datafusion-python/blob/main/examples/sql-to-pandas.py)
126
+
-[Run a SQL query with a Python user-defined function (UDF)](https://github.com/apache/datafusion-python/blob/main/examples/sql-using-python-udf.py)
127
+
-[Run a SQL query with a Python user-defined aggregation function (UDAF)](https://github.com/apache/datafusion-python/blob/main/examples/sql-using-python-udaf.py)
0 commit comments