-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## [0.0.2] - 2024-10-21 ### Added - typehints for self - doc strings
- Loading branch information
Showing
7 changed files
with
147 additions
and
66 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [0.0.2] - 2024-10-21 | ||
|
||
### Added | ||
|
||
- typehints for self | ||
- doc strings | ||
|
||
## [0.0.1] - 2024-10-16 | ||
|
||
### Added | ||
|
||
- initial version |
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,30 @@ | ||
# Usage | ||
|
||
## DataFlow.DataFrame | ||
|
||
|
||
Create empty data frame object in memory | ||
```python | ||
|
||
from mysiar_data_flow import DataFlow | ||
|
||
df = DataFlow().DataFrame() | ||
df.from_pandas(df=pandas_data_frame_obj) | ||
|
||
``` | ||
Create data frame object in memory from Pandas data frame | ||
```python | ||
|
||
from mysiar_data_flow import DataFlow | ||
|
||
df = DataFlow().DataFrame().from_pandas(df=pandas_data_frame_obj) | ||
``` | ||
|
||
|
||
|
||
--- | ||
For more check [mysiar_data_flow/data_flow.py](https://github.com/mysiar-org/python-data-flow/blob/master/mysiar_data_flow/data_flow.py) file for interface | ||
|
||
|
||
|
||
![work in progress](.github/5578703.png) |
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 |
---|---|---|
@@ -1 +1,7 @@ | ||
""" | ||
.. include:: ../README.md | ||
.. include:: ../Usage.md | ||
.. include:: ../CHANGELOG.md | ||
""" | ||
|
||
from .data_flow import DataFlow |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
license = {file = "LICENSE"} | ||
[tool.poetry] | ||
name = "mysiar-data-flow" | ||
version = "0.0.2rc1" | ||
version = "0.0.2" | ||
readme = "README.md" | ||
description = "Python data manipulation library" | ||
authors = ["Piotr Synowiec <[email protected]>"] | ||
|
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 |
---|---|---|
|
@@ -4,4 +4,5 @@ pyproject-flake8 | |
pytest | ||
pytest-cov | ||
poetry | ||
twine | ||
twine | ||
pdoc |