-
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.
## Associated issue number and/or pull request reference Fixes #70 ## Proposed solution to the issue Changed all namespace from Pandarize to bibReader Updated readme.md Updated tutorial notebooks
- Loading branch information
Showing
11 changed files
with
321 additions
and
317 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,18 @@ | ||
# Pandarize | ||
This project aims to turn all kinds of data structure/types into a nice tabulated pandas DataFrame | ||
[![PyPI](https://github.com/jshinm/pandarize/actions/workflows/publish-package.yml/badge.svg)](https://github.com/jshinm/pandarize/actions/workflows/publish-package.yml) | ||
# bibReader | ||
The bibReader reads non-standard bib format from files/url and convert them into pandas DataFrames to easily work with the data, and then tranforms them back into a standardized bib file. | ||
|
||
# Installation | ||
``` | ||
pip install pandarize | ||
pip install bibReader | ||
``` | ||
|
||
# Basic Usage Guide | ||
```python | ||
from pandarize.frame import Pandarizer | ||
from bibReader.frame import bReader | ||
|
||
pdr = Pandarizer() #instantiate Pandarizer class | ||
pdr.load(source='https://somewebsite.com/filename.bib') #it can load from url or local source | ||
pdr.fit() #infers data types and parse it into pandas dataframe | ||
pdr.transform() #changes pandas dataframe into different mode of data types | ||
bib = bReader() #instantiate bReader class | ||
bib.load(source='https://somewebsite.com/filename.bib') #it can load from url or local source | ||
bib.fit() #infers data types and parse it into pandas dataframe | ||
bib.transform() #changes pandas dataframe into different mode of data types | ||
``` | ||
|
||
# Currently Supported Data Types | ||
- bib | ||
|
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
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
Oops, something went wrong.