-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix typo * docs revamp * index page update * clean up method implementations
- Loading branch information
1 parent
d6e9888
commit 5793896
Showing
10 changed files
with
79 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Pandas | ||
|
||
## PandasSerializer | ||
|
||
Type: `pandas` | ||
|
||
::: src.prefecto.serializers.pandas.PandasSerializer | ||
|
||
## Methods | ||
|
||
`Method` classes for serializing `pandas.DataFrame`. | ||
|
||
| Discriminator | Default Read | Default Write | | ||
| --- | --- | --- | | ||
| `pandas.csv` | `{"index": False}` | `{"index": False}` | | ||
| `pandas.excel` | None | None | | ||
| `pandas.feather` | None | None | | ||
| `pandas.json` | None | None | | ||
| `pandas.jsonl` | None | None | | ||
| `pandas.parquet` | None | None | | ||
| `pandas.pickle` | None | None | | ||
| `pandas.tsv` | `{"sep": "\t", "index": False}` | `{"sep": "\t", "index": False}` | |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Polars | ||
|
||
Serialization module for for the `polars.DataFrame` type. | ||
|
||
## PolarsSerializer | ||
|
||
Type: `polars` | ||
|
||
::: src.prefecto.serializers.polars.PolarsSerializer | ||
|
||
## Methods | ||
|
||
`Method` classes for serializing `polars.DataFrame`. | ||
|
||
| Discriminator | Default Read | Default Write | | ||
| --- | --- | --- | | ||
| `polars.csv` | None | None | | ||
| `polars.excel` | None | None | | ||
| `polars.json` | None | None | | ||
| `polars.ndjson` | None | None | | ||
| `polars.parquet` | None | None | | ||
| `polars.tsv` | `{"separator": "\t"}` | `{"separator": "\t"}` | |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters