Metadata-Version: 2.0
Name: panqt
Version: 0.2.1
Summary: Utilities to use pandas (the data analysis / manipulation library for Python) with Qt.
Home-page: https://github.com/draperjames/panqt
Author: Matthias Ludwig, Marcel Radischat, James Draper, Zeke
Author-email: draperjames@duke.edu
License: MIT License
Platform: any
Classifier: Programming Language :: Python
Classifier: Development Status :: 4 - Beta
Classifier: Natural Language :: English
Classifier: Environment :: X11 Applications :: Qt
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: User Interfaces
Requires-Dist: easygui
Requires-Dist: pandas (==0.17.1)
Requires-Dist: pytest
Requires-Dist: pytest-cov
Requires-Dist: pytest-qt (==1.2.2)
Requires-Dist: python-magic (==0.4.6)
Provides-Extra: testing
Requires-Dist: easygui; extra == 'testing'
Requires-Dist: pandas (==0.17.1); extra == 'testing'
Requires-Dist: pyside; extra == 'testing'
Requires-Dist: pytest; extra == 'testing'
Requires-Dist: pytest-cov; extra == 'testing'
Requires-Dist: pytest-qt; extra == 'testing'
Requires-Dist: python-magic (==0.4.6); extra == 'testing'

# QtPandas

### Utilities to use pandas (the data analysis/manipulation library for Python) with Qt.

## Project Information

[![Join the chat at https://gitter.im/qtpandas/Lobby#](https://badges.gitter.im/qtpandas/lobby.svg)](https://gitter.im/qtpandas/Lobby#)

## Build Status

[![Travis status](https://travis-ci.org/draperjames/QtPandas.svg?branch=master)](https://travis-ci.org/draperjames/QtPandas)

Requirements;
> Python 3.x    
> Pandas 20.0   
> PyQt 4.7.8

To install run the following in the command prompt;
```
pip install git+https://github.com/zbarge/QtPandas.git
pip install --upgrade git+https://github.com/robertlugg/easygui.git
```

To use, create a new Python script containing the following:
```
from PyQt4.QtCore import *
from PyQt4.QtGui import *

from panqt.views.CSVDialogs import CSVImportDialog

if __name__ == "__main__":
    from sys import argv, exit

    app = QApplication(argv)
    dialog = CSVImportDialog()
    dialog.show()
    app.exec_()
```
Several examples can also be found in the exmples directory.

# Development

## Wanna contribute?

Join us on [gitter](https://gitter.im/qtpandas/Lobby#)

### TO DO:
- [x] Reach out to @kaotika and @datalyze-solutions
- [ ] Secure qtpandas namespace on pip.
- [ ] Wait for reply
    - [ ] If no reply create new repo for QtPandas.
- [x] Create .travis.yml file.
    - [x] integrate into README.md
- [ ] Add documentation.
- [ ] Add screen shots
- [ ] Create Wiki
- [ ] Make verison agnostic.
- [ ] Create specific Python version tests.
- [ ] Add Windows, Apple, and Linux tests.
- [ ] Consider adding functions seen in [Spyder IDE's dataframeeditor](https://github.com/spyder-ide/spyder/blob/f2b36f00f873cf4080087bfb529e6256b3e24792/spyder/widgets/variableexplorer/dataframeeditor.py)
    - [ ] Sort
    - [ ] Color coding    


Forked from @datalyze-solutions's [master](https://github.com/datalyze-solutions/pan-qt).


