{ "info": { "author": "Algebraix Data Corporation", "author_email": "algebraixlib@algebraixdata.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: Education", "Intended Audience :: Information Technology", "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3 :: Only", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Information Analysis", "Topic :: Scientific/Engineering :: Mathematics", "Topic :: Software Development", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": ".. Algebraix Technology Core Library documentation.\n Copyright Algebraix Data Corporation 2015 - 2017\n\n This file is part of algebraixlib .\n\n algebraixlib is free software: you can redistribute it and/or modify it under the terms of\n version 3 of the GNU Lesser General Public License as published by the Free Software Foundation.\n\n algebraixlib is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without\n even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n\n You should have received a copy of the GNU Lesser General Public License along with algebraixlib.\n If not, see .\n\n This file is not included via toctree. Mark it as orphan to suppress the warning that it isn't\n included in any toctree.\n\n:orphan:\n\n|logo|_\n\nalgebraixlib\n============\n\nWhat Is It?\n-----------\n\n``algebraixlib`` is a library that provides constructs and facilities to harness the fundamentals\nof data algebra. Data algebra consists of mathematical constructs that can represent all data, no\nmatter how it is structured, and the operations on that data. With this, all the advantages of a\nmathematically rigorous modeling can be unleashed. See also\n`A Beginner's Introduction to Data Algebra`_.\n\nGetting Started\n---------------\n\n#. Make sure you have the required versions of Python and Jupyter Notebook installed (see\n `Requirements`_ below).\n#. Install the ``algebraixlib`` library (see `How to Install`_ below).\n#. Download the `examples`_ from our `GitHub`_ repository.\n#. Try the Hello_World.ipynb example first.\n\n(Alternatively, you can also look at a static version of the notebooks in `nbviewer`_; see the\nREADME file in our `examples`_ directory for direct links. For this you don't need to install or\ndownload anything. You can also start with the simpler hello_world.py. However, you'll lose out\non some math and need to read up on it in our documentation at `Read the Docs`_. )\n\nDocumentation and Support\n-------------------------\n\n* Find documentation at `Read the Docs`_.\n* Find the ``pip`` installer on `PyPI`_.\n* Find the source code, the bugtracker and contribute on `GitHub`_.\n* Find tutorials and example code in the `examples`_ directory on GitHub.\n* Post questions about algebraixlib on `Stack Overflow`_ using the tag `[algebraixlib]`_.\n* Post questions about the mathematics of data algebra on `math.stackexchange`_ using the tag\n `[data-algebra]`_.\n* Contact us by `email`_.\n\nSee also our `GitHub project page`_. In addition, there is a `book`_ about data algebra.\n\n\nDetailed Instructions\n=====================\n\nRequirements\n------------\n\n* `Python`_: Tested with 3.6.1. Likely to run with Python 3.6.x and later. It may run with earlier\n Python 3 versions, but you may run into issues. Does not run with any version of Python before\n Python 3.\n\n * For installing and using multiple versions of Python on the same machine, see\n `Official multiple python versions on the same machine? (Stack Overflow)`_,\n `How to install both Python 2.x and Python 3.x in Windows 7 (Stack Overflow)`_ and\n `A Python Launcher For Windows (Python Insider)`_.\n\n* `Jupyter Notebook`_: Tested with Jupyter 5.2 (used in the Jupyter notebook tutorials and\n examples).\n\n * See `Jupyter Installation`_ for instructions how to install the Jupyter notebook\n (``pip install jupyter``).\n * If you don't want Jupyter in your system environment, you can install it into a virtual\n environment (see `Creation of virtual environments`_).\n\nHow to Install\n--------------\n\nIf you already have Python installed and are familiar with installing packages, you can install\n``algebraixlib`` with ``pip``::\n\n> pip install algebraixlib\n\nAdditional user permissions may be necessary to complete the installation. In such a situation,\nother options include installing the package for a single user (in the user's home directory)::\n\n> pip install algebraixlib --user \n\nor in a virtual environment (see `Creation of virtual environments`_).\n\nYou can also manually download ``algebraixlib`` from `GitHub`_ or `PyPI`_. To install from a\ndownload, unpack it and run the following command from the top-level source directory (the\ndirectory that contains the file setup.py)::\n\n> python setup.py install\n\n(The same considerations about permissions apply.)\n\nUnit Tests\n----------\n\nThe unit tests require the following libraries to be installed:\n\n* `nose`_\n* `coverage`_\n\nTo execute the unit tests, download the file `runtests.py`_ and the directory `test`_ into any\nlocation on your system, then run `runtests.py`_::\n\n> mkdir algebraixlib-test\n> cd algebraixlib-test\n> svn export https://github.com/AlgebraixData/algebraixlib/trunk/runtests.py\n> svn export https://github.com/AlgebraixData/algebraixlib/trunk/test\n> python runtests.py\n\nDocumentation Build\n-------------------\n\nThe documentation build requires the following libraries be installed:\n\n* `Sphinx`_ (1.3.2 or later)\n\nTo run a documentation build, you need a local working copy of our complete `GitHub`_ repository.\nThen run `build.py`_ in the directory `docs`_::\n\n> mkdir algebraixlib\n> cd algebraixlib\n> svn export https://github.com/AlgebraixData/algebraixlib/trunk\n> cd trunk/docs\n> python build.py\n\n\nLegalese\n========\n\nCopyright\n---------\n\nCopyright(c) 2017 Algebraix Data Corporation.\n\nLicense\n-------\n\n``algebraixlib`` is free software: you can redistribute it and/or modify it under the terms of\n`version 3 of the GNU Lesser General Public License`_ as published by the\n`Free Software Foundation`_. A copy of the GNU Lesser General Public License is published along\nwith ``algebraixlib`` on `GitHub`_. Otherwise, see `GNU licenses`_.\n\nWarranty\n--------\n\n``algebraixlib`` is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;\nwithout even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU Lesser General Public License for more details.\n\n.. _[algebraixlib]:\n http://stackoverflow.com/questions/tagged/algebraixlib\n.. _A Beginner's Introduction to Data Algebra:\n http://algebraixlib.readthedocs.org/en/latest/intro.html\n.. _A Python Launcher For Windows (Python Insider):\n http://blog.python.org/2011/07/python-launcher-for-windows_11.html\n.. _book:\n https://algebraixdata.com/resources/the-algebra-of-data/\n.. _build.py:\n https://github.com/AlgebraixData/algebraixlib/blob/master/docs/build.py\n.. _coverage:\n https://pypi.python.org/pypi/coverage\n.. _Creation of virtual environments:\n https://docs.python.org/3/library/venv.html\n.. _[data-algebra]:\n http://math.stackexchange.com/questions/tagged/data-algebra\n.. _docs:\n https://github.com/AlgebraixData/algebraixlib/tree/master/docs\n.. _Examples:\n https://github.com/AlgebraixData/algebraixlib/tree/master/examples\n.. _Free Software Foundation:\n http://www.fsf.org/\n.. _How to install both Python 2.x and Python 3.x in Windows 7 (Stack Overflow):\n http://stackoverflow.com/questions/3809314/how-to-install-both-python-2-x-and-python-3-x-in-windows-7\n.. _email:\n mailto:algebraixlib@algebraixdata.com\n.. _GitHub:\n http://github.com/AlgebraixData/algebraixlib\n.. _GitHub project page:\n http://algebraixdata.github.io/algebraixlib/\n.. _GNU Licenses:\n http://www.gnu.org/licenses/\n.. _Hello_World.ipynb:\n https://github.com/AlgebraixData/algebraixlib/blob/master/examples/Hello_World.ipynb\n.. _Jupyter Installation:\n http://jupyter.readthedocs.org/en/latest/install.html\n.. _Jupyter Notebook:\n https://jupyter.org/\n.. _math.stackexchange:\n http://math.stackexchange.com/\n.. _nbviewer:\n http://nbviewer.ipython.org/\n.. _nose:\n https://pypi.python.org/pypi/nose/\n.. _Official multiple python versions on the same machine? (Stack Overflow):\n http://stackoverflow.com/questions/2547554/official-multiple-python-versions-on-the-same-machine\n.. _PyPI:\n http://pypi.python.org/pypi/algebraixlib\n.. _Python:\n http://python.org\n.. _Read the Docs:\n http://algebraixlib.rtfd.org/\n.. _runtests.py:\n https://github.com/AlgebraixData/algebraixlib/blob/master/runtests.py\n.. _Sphinx:\n https://pypi.python.org/pypi/Sphinx\n.. _Stack Overflow:\n http://stackoverflow.com/\n.. _test:\n https://github.com/AlgebraixData/algebraixlib/tree/master/test\n.. _Version 3 of the GNU Lesser General Public License:\n http://www.gnu.org/licenses/lgpl-3.0-standalone.html\n\n.. |logo| image:: https://raw.githubusercontent.com/AlgebraixData/algebraixlib/gh-pages/ALGBX-Logo-Color-150DPI.png\n.. _logo: http://www.algebraixdata.com/technology/#algebraix-library\n\n\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/AlgebraixData/algebraixlib", "keywords": "data algebra set theory", "license": "http://www.gnu.org/licenses/lgpl-3.0-standalone.html", "maintainer": "", "maintainer_email": "", "name": "algebraixlib", "package_url": "https://pypi.org/project/algebraixlib/", "platform": "any", "project_url": "https://pypi.org/project/algebraixlib/", "project_urls": { "Homepage": "https://github.com/AlgebraixData/algebraixlib" }, "release_url": "https://pypi.org/project/algebraixlib/1.4/", "requires_dist": [ "rdflib (>=4.2)" ], "requires_python": "", "summary": "A data algebra library", "version": "1.4" }, "last_serial": 3314416, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "c90a22cfb4699bccd08e4ed10e7726bb", "sha256": "c7eb5528e54e7c0df6d4f6fab108fedc4e8a98a72dbc509d898cfd3d4a057fd6" }, "downloads": -1, "filename": "algebraixlib-1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c90a22cfb4699bccd08e4ed10e7726bb", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 80955, "upload_time": "2015-07-20T19:28:38", "url": "https://files.pythonhosted.org/packages/b8/1b/0e4e9c8d014228d46bb7f4f126b7d25be8b9c1f6624343407622f49c6f82/algebraixlib-1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ab9b9f2daf702405db7d4060236149b7", "sha256": "09e0145527a11b9d26a690d7cf1bdd011a64fa6b7fa45f0394ec2617eaa28abd" }, "downloads": -1, "filename": "algebraixlib-1.0.zip", "has_sig": false, "md5_digest": "ab9b9f2daf702405db7d4060236149b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 129146, "upload_time": "2015-07-20T19:28:35", "url": "https://files.pythonhosted.org/packages/c0/18/f562f3acbbe30aceb6a0a1b8de2d470b9b9c414987bca4f909a4e994efea/algebraixlib-1.0.zip" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "3bd1d38ca0ef48c90660cd54ba02524c", "sha256": "b15a9324beb7872a8fac2f15b3037f6244e70364172e55c55e3a0aa960f9ef66" }, "downloads": -1, "filename": "algebraixlib-1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "3bd1d38ca0ef48c90660cd54ba02524c", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 86764, "upload_time": "2015-07-28T21:17:20", "url": "https://files.pythonhosted.org/packages/97/12/9a29817da088dc84ad67eab5bc45a80d52a20fc4b4a1ce9d4ccc29e2f70d/algebraixlib-1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9219b5fbb1acc17ee637a60c2877a7c9", "sha256": "c730c5cccc3736e26ac0b7ac66be13990bc1a9415cd0f087d45330e6c7bd0053" }, "downloads": -1, "filename": "algebraixlib-1.1.zip", "has_sig": false, "md5_digest": "9219b5fbb1acc17ee637a60c2877a7c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 136385, "upload_time": "2015-07-28T21:17:16", "url": "https://files.pythonhosted.org/packages/c4/c0/ac1f656995463fb8ddd6b04786289ee8c46c4d904e173991f9dec605d76b/algebraixlib-1.1.zip" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "8116b5ac3b02ec42fac733b9706ddb77", "sha256": "c68ca3e63a8c8efcaa9fdfbdaf6cedc3f7564572bf758ed60787bf9a4331a13b" }, "downloads": -1, "filename": "algebraixlib-1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "8116b5ac3b02ec42fac733b9706ddb77", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 103410, "upload_time": "2015-08-21T20:56:43", "url": "https://files.pythonhosted.org/packages/00/92/3bcf4764d4f7719b715369fa544edc4e8327911bc4cd2ca2e989b53add7f/algebraixlib-1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7bdd057d564e5740133dce00827906b5", "sha256": "a733b5ec9d694f2dce85317dc593266310ed9f104f3722ca8ce6750e412748b0" }, "downloads": -1, "filename": "algebraixlib-1.2.zip", "has_sig": false, "md5_digest": "7bdd057d564e5740133dce00827906b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 157065, "upload_time": "2015-08-21T20:56:40", "url": "https://files.pythonhosted.org/packages/e7/10/8c259d9901a6f572223791b792983e2f26a8b1b073443b9bd3beb6379127/algebraixlib-1.2.zip" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "2ade4c9ff990233e0fbe15e80f91b20b", "sha256": "accfa0ec7fb1a2b141e5c4508cbd192d4d38111565e323aeb9e3801b3c5bd2bf" }, "downloads": -1, "filename": "algebraixlib-1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "2ade4c9ff990233e0fbe15e80f91b20b", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 110854, "upload_time": "2015-12-09T23:26:32", "url": "https://files.pythonhosted.org/packages/4c/99/aaca9624fee78d01924e30cbba00f1b2a47322dff927d97364cd463474b2/algebraixlib-1.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4385d4bd952a0dd416a799fff0479da9", "sha256": "8d2e86018288d63c13a34b910b95d92e96dc9109202a40cbf44800f701142308" }, "downloads": -1, "filename": "algebraixlib-1.3.zip", "has_sig": false, "md5_digest": "4385d4bd952a0dd416a799fff0479da9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 167235, "upload_time": "2015-12-09T23:26:25", "url": "https://files.pythonhosted.org/packages/e3/b2/67a08c7444dc054df83e80f8582d56a45bf9f8c38dd091a0d695765a66c4/algebraixlib-1.3.zip" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "b42717d602b3f6b521a4df6974935dcc", "sha256": "9f8634769412e98e98fccc055f2e9d15b2348b2cb1481eba806ca9b1e4d9e011" }, "downloads": -1, "filename": "algebraixlib-1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "b42717d602b3f6b521a4df6974935dcc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 109731, "upload_time": "2017-11-08T00:13:29", "url": "https://files.pythonhosted.org/packages/e1/b6/0c862a9d4a6003fc05a5f7c83ae517765da747d278517469454a9e362492/algebraixlib-1.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8df8e4e2662949116571529ac27c5ee1", "sha256": "ccf1855e5ec3122ad1128304a6f8f681a636a5359fd717b2005a2babc165c809" }, "downloads": -1, "filename": "algebraixlib-1.4.tar.gz", "has_sig": false, "md5_digest": "8df8e4e2662949116571529ac27c5ee1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 100496, "upload_time": "2017-11-08T00:13:30", "url": "https://files.pythonhosted.org/packages/75/46/f321db970240cb5fab2af97238932f7e23ed072488e39b0a12717484bdf3/algebraixlib-1.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b42717d602b3f6b521a4df6974935dcc", "sha256": "9f8634769412e98e98fccc055f2e9d15b2348b2cb1481eba806ca9b1e4d9e011" }, "downloads": -1, "filename": "algebraixlib-1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "b42717d602b3f6b521a4df6974935dcc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 109731, "upload_time": "2017-11-08T00:13:29", "url": "https://files.pythonhosted.org/packages/e1/b6/0c862a9d4a6003fc05a5f7c83ae517765da747d278517469454a9e362492/algebraixlib-1.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8df8e4e2662949116571529ac27c5ee1", "sha256": "ccf1855e5ec3122ad1128304a6f8f681a636a5359fd717b2005a2babc165c809" }, "downloads": -1, "filename": "algebraixlib-1.4.tar.gz", "has_sig": false, "md5_digest": "8df8e4e2662949116571529ac27c5ee1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 100496, "upload_time": "2017-11-08T00:13:30", "url": "https://files.pythonhosted.org/packages/75/46/f321db970240cb5fab2af97238932f7e23ed072488e39b0a12717484bdf3/algebraixlib-1.4.tar.gz" } ] }