solubrew / pyqt5pandas

PyQt5 Meets Pandas

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

qt5pandas

Modify to use PyQt5

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

Project Information

Latest Release latest release
Package Status status
Build Status travis build status
PyPI pypi downloads

Codacy Badge Join the chat at https://gitter.im/qt5pandas/Lobby# open issues closed issues

Requirements;

Python 3.5 or greater PyQt5

Install

To install run the following in the command prompt;

pip install qt5pandas

If that doesn't work try installing the lastest version of easy gui;

pip install --upgrade git+https://github.com/robertlugg/easygui.git

If that doesn't work then please report an issue

To use, create a new Python script containing the following:

from PyQt4.QtCore import *
from PyQt4.QtGui import *

from qt5pandas.views.CSVDialogs import CSVImportDialog

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

    app = QApplication(argv)
    dialog = CSVImportDialog()
    dialog.show()
    app.exec_()

Examples

These can be found in qt5pandas/examples.

  • BasicExmple.py

basic

  • Here is TestApp.py

testapp

Development

Wanna contribute?

Any feedback is apprecaited.

  • Report an issue
  • Check out the wiki for development info (coming soon!)
  • Fork us.

Forked from @datalyze-solutions's master.

About

PyQt5 Meets Pandas

License:MIT License


Languages

Language:Python 100.0%