Metadata-Version: 2.1
Name: pd-alias
Version: 0.1
Summary: Just import pd
Home-page: https://github.com/amirfru/pd_alias
Author: Amir Fruchtman
Author-email: amir.fru@gmail.com
License: UNKNOWN
Keywords: pyplot,matplotlib
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development
Classifier: License :: OSI Approved :: The Unlicense (Unlicense)
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=2.7, <4
Description-Content-Type: text/markdown

# pd-alias
No more `import pandas as pd`!
<br/>just `import pd` and that's it.
<br/>This package is just a simple alias.

## Installation 
$`pip install pd-alias`

## Usage
```python
import pd  # this is an alias to "import pandas as pd"
tbl = pd.read_csv(whatever)
```



