Skip to content

Commit

Permalink
test: update files for docstring examples
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-reimann committed Sep 17, 2024
1 parent 5d2f6fb commit 1635662
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 12 deletions.
7 changes: 1 addition & 6 deletions src/resources/from_json_file.json
Original file line number Diff line number Diff line change
@@ -1,6 +1 @@
{
"columns": [
{ "name": "a", "datatype": "Int64", "bit_settings": "", "values": [1, 2, 3] },
{ "name": "b", "datatype": "Int64", "bit_settings": "", "values": [4, 5, 6] }
]
}
[{"a":1,"b":4},{"a":2,"b":5},{"a":3,"b":6}]
7 changes: 1 addition & 6 deletions src/resources/to_json_file.json
Original file line number Diff line number Diff line change
@@ -1,6 +1 @@
{
"columns": [
{ "name": "a", "datatype": "Int64", "bit_settings": "", "values": [1, 2, 3] },
{ "name": "b", "datatype": "Int64", "bit_settings": "", "values": [4, 5, 6] }
]
}
[{"a":1,"b":4},{"a":2,"b":5},{"a":3,"b":6}]
Binary file modified src/resources/to_parquet_file.parquet
Binary file not shown.
4 changes: 4 additions & 0 deletions src/src/resources/to_csv_file.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
a,b
1,4
2,5
3,6
1 change: 1 addition & 0 deletions src/src/resources/to_json_file.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[{"a":1,"b":4},{"a":2,"b":5},{"a":3,"b":6}]
Binary file added src/src/resources/to_parquet_file.parquet
Binary file not shown.

0 comments on commit 1635662

Please sign in to comment.