{ "info": { "author": "Pedro Jorge De Los Santos", "author_email": "delossantosmfq@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", "Intended Audience :: Education", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Desktop Environment", "Topic :: Utilities" ], "description": "iwx\n===\n\n**iwx** is a collection of enhanced controls for wxPython\n\nMini-Demos\n----------\n\nPlot module\n^^^^^^^^^^^\n\n::\n\n # -*- coding: utf-8 -*-\n \"\"\"\n Plotting in wxPython like Matplotlib\n \"\"\"\n\n import numpy as np\n import wx\n from iwx.plot import Figure, Axes\n\n\n def test():\n n = 100 # Number of points\n x = np.linspace(0,3*np.pi,n)\n y1 = np.cos(x) + np.random.random(n)\n y2 = np.sin(x) + np.random.random(n)\n \n fig = Figure()\n ax = fig.add_axes()\n ax.plot(x,y1, color=\"#00ffff\", legend=\"Y1\", width=2)\n ax.plot(x,y2, color=\"#ff00ff\", legend=\"Y2\", width=3)\n ax.set_xlabel(\"X\")\n ax.set_ylabel(\"y\")\n ax.set_title(\"Graphics\")\n ax.grid()\n ax.legend()\n fig.show()\n \n if __name__ == '__main__':\n app = wx.App()\n test()\n app.MainLoop()\n\n\nand obtains:\n\n.. image:: examples/images/plot.PNG\n :scale: 80%\n\nInstallation\n------------\n\nUsing pip\n\n:: \n\n pip install iwx\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/JorgeDeLosSantos/iwx", "keywords": "wxPython,GUI", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "iwx", "package_url": "https://pypi.org/project/iwx/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/iwx/", "project_urls": { "Homepage": "https://github.com/JorgeDeLosSantos/iwx" }, "release_url": "https://pypi.org/project/iwx/0.1.0.dev1/", "requires_dist": null, "requires_python": "", "summary": "wxPython utilities and enhanced controls", "version": "0.1.0.dev1" }, "last_serial": 2080631, "releases": { "0.1.0.dev1": [ { "comment_text": "", "digests": { "md5": "495a5053af538fc446ad58fe2ec5a97e", "sha256": "f689df99b819f8118ca52dfa854acdf2c3f82f3a0e682d628b1f6a1fe9ccfcab" }, "downloads": -1, "filename": "iwx-0.1.0.dev1.zip", "has_sig": false, "md5_digest": "495a5053af538fc446ad58fe2ec5a97e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14682, "upload_time": "2016-04-24T05:34:01", "url": "https://files.pythonhosted.org/packages/4b/2b/c4d3e019017a4600ab05e4e0eaeff2302e675852a6046537b4334868670f/iwx-0.1.0.dev1.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "495a5053af538fc446ad58fe2ec5a97e", "sha256": "f689df99b819f8118ca52dfa854acdf2c3f82f3a0e682d628b1f6a1fe9ccfcab" }, "downloads": -1, "filename": "iwx-0.1.0.dev1.zip", "has_sig": false, "md5_digest": "495a5053af538fc446ad58fe2ec5a97e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14682, "upload_time": "2016-04-24T05:34:01", "url": "https://files.pythonhosted.org/packages/4b/2b/c4d3e019017a4600ab05e4e0eaeff2302e675852a6046537b4334868670f/iwx-0.1.0.dev1.zip" } ] }