Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# This is the list of LeanFrame's significant contributors.
#
# This does not necessarily list everyone who has contributed code,
# especially since many employees of one corporation may be contributing.
# To see the full list of contributors, see the revision history in
# source control.
Google LLC
Vodafone
Andreas Beschorner (Vodafone)
Timothy Swena (Google LLC)
19 changes: 14 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,27 @@ Create a DataFrame from a table.
df = session.read_sql_table("bigquery-public-data.usa_names.usa_1910_2013")
```

Perform pandas operations.

```
TODO
```
Perform pandas operations. See
https://github.com/tswast/leanframe/tree/main/demos for examples.

Get your results as a pandas DataFrame.

```python
pddf = df.to_pandas()
```

## Contributors

Authors of significant contributions are listed in the
[AUTHORS](https://github.com/tswast/leanframe/blob/main/AUTHORS) file. This
project was founded by Andreas Beschorner (Vodafone) and Timothy Swena (Google
LLC).

## License

Apache 2.0 license. See
[LICENSE](https://github.com/tswast/leanframe/blob/main/LICENSE) for details.

## Disclaimer

This is a personal project. Does not reflect my employer.
Loading