cfpq-data


Namecfpq-data JSON
Version 4.0.3 PyPI version JSON
download
home_pagehttps://formallanguageconstrainedpathquerying.github.io/CFPQ_Data/
SummaryPython package containing Graphs and Grammars for experimental analysis of Context-Free Path Querying algorithms
upload_time2024-02-24 15:39:15
maintainerNikita Kovalev
docs_urlNone
authorVadim Abzalov
requires_python>=3.8
license
keywords graphs grammars context-free path-query cfpq-data
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            CFPQ_Data
=========

.. image:: https://github.com/FormalLanguageConstrainedPathQuerying/CFPQ_Data/actions/workflows/tests.yml/badge.svg?branch=master
   :target: https://github.com/FormalLanguageConstrainedPathQuerying/CFPQ_Data/actions/workflows/tests.yml

.. image:: https://codecov.io/gh/FormalLanguageConstrainedPathQuerying/CFPQ_Data/branch/master/graph/badge.svg?token=6IAZM6KZT7
   :target: https://codecov.io/gh/FormalLanguageConstrainedPathQuerying/CFPQ_Data

.. image:: https://img.shields.io/pypi/v/cfpq-data.svg
   :target: https://pypi.org/project/cfpq-data/

.. image:: https://img.shields.io/pypi/pyversions/cfpq-data.svg
   :target: https://pypi.org/project/cfpq-data/

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
   :target: https://github.com/ambv/black

.. image:: https://img.shields.io/badge/License-Apache%202.0-blue.svg
   :target: https://github.com/FormalLanguageConstrainedPathQuerying/CFPQ_Data/blob/master/LICENSE.txt

CFPQ_Data is a Python package for the creation, manipulation, and study of the
structure, dynamics, and functions of complex Graphs and Grammars used for
experimental analysis of Context-Free Path Querying algorithms.

- **Website:** https://formallanguageconstrainedpathquerying.github.io/CFPQ_Data
- **Tutorial:** https://formallanguageconstrainedpathquerying.github.io/CFPQ_Data/tutorial.html
- **Documentation:** https://formallanguageconstrainedpathquerying.github.io/CFPQ_Data/reference/index.html
- **Source Code:** https://github.com/formallanguageconstrainedpathquerying/CFPQ_Data
- **Bug Tracker:** https://github.com/formallanguageconstrainedpathquerying/CFPQ_Data/issues

Examples
********

Dataset content
---------------

.. code-block:: python

   >>> import cfpq_data
   >>> cfpq_data.DATASET
   ['skos', 'wc', 'generations', 'travel', 'univ', 'atom', 'biomedical', 'bzip', 'foaf', 'people', 'pr', 'funding', 'ls', 'wine', 'pizza', 'gzip', 'core', 'pathways', 'enzyme', 'eclass', 'go_hierarchy', 'go', 'apache', 'init', 'mm', 'geospecies', 'ipc', 'lib', 'block', 'arch', 'crypto', 'security', 'sound', 'net', 'fs', 'drivers', 'postgre', 'kernel', 'taxonomy', 'taxonomy_hierarchy']

Load graph from Dataset
-----------------------

.. code-block:: python

   >>> bzip_path = cfpq_data.download("bzip")
   >>> bzip = cfpq_data.graph_from_csv(bzip_path)

How to add a new graph?
***********************

Just create

- an ``Issue`` corresponding to the `"Issue template for adding a new graph" <https://github.com/formallanguageconstrainedpathquerying/CFPQ_Data/blob/master/.github/ISSUE_TEMPLATE/graph-add-template.md>`_.
- a ``Pull Request`` corresponding to the `"Pull request template for adding a new graph" <https://github.com/formallanguageconstrainedpathquerying/CFPQ_Data/blob/master/.github/PULL_REQUEST_TEMPLATE/new_graph.md>`_.

            

Raw data

            {
    "_id": null,
    "home_page": "https://formallanguageconstrainedpathquerying.github.io/CFPQ_Data/",
    "name": "cfpq-data",
    "maintainer": "Nikita Kovalev",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "Nikitoskova123@gmail.com",
    "keywords": "graphs,grammars,context-free,path-query,cfpq-data",
    "author": "Vadim Abzalov",
    "author_email": "vadim.i.abzalov@gmail.com",
    "download_url": "",
    "platform": "Linux",
    "description": "CFPQ_Data\n=========\n\n.. image:: https://github.com/FormalLanguageConstrainedPathQuerying/CFPQ_Data/actions/workflows/tests.yml/badge.svg?branch=master\n   :target: https://github.com/FormalLanguageConstrainedPathQuerying/CFPQ_Data/actions/workflows/tests.yml\n\n.. image:: https://codecov.io/gh/FormalLanguageConstrainedPathQuerying/CFPQ_Data/branch/master/graph/badge.svg?token=6IAZM6KZT7\n   :target: https://codecov.io/gh/FormalLanguageConstrainedPathQuerying/CFPQ_Data\n\n.. image:: https://img.shields.io/pypi/v/cfpq-data.svg\n   :target: https://pypi.org/project/cfpq-data/\n\n.. image:: https://img.shields.io/pypi/pyversions/cfpq-data.svg\n   :target: https://pypi.org/project/cfpq-data/\n\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg\n   :target: https://github.com/ambv/black\n\n.. image:: https://img.shields.io/badge/License-Apache%202.0-blue.svg\n   :target: https://github.com/FormalLanguageConstrainedPathQuerying/CFPQ_Data/blob/master/LICENSE.txt\n\nCFPQ_Data is a Python package for the creation, manipulation, and study of the\nstructure, dynamics, and functions of complex Graphs and Grammars used for\nexperimental analysis of Context-Free Path Querying algorithms.\n\n- **Website:** https://formallanguageconstrainedpathquerying.github.io/CFPQ_Data\n- **Tutorial:** https://formallanguageconstrainedpathquerying.github.io/CFPQ_Data/tutorial.html\n- **Documentation:** https://formallanguageconstrainedpathquerying.github.io/CFPQ_Data/reference/index.html\n- **Source Code:** https://github.com/formallanguageconstrainedpathquerying/CFPQ_Data\n- **Bug Tracker:** https://github.com/formallanguageconstrainedpathquerying/CFPQ_Data/issues\n\nExamples\n********\n\nDataset content\n---------------\n\n.. code-block:: python\n\n   >>> import cfpq_data\n   >>> cfpq_data.DATASET\n   ['skos', 'wc', 'generations', 'travel', 'univ', 'atom', 'biomedical', 'bzip', 'foaf', 'people', 'pr', 'funding', 'ls', 'wine', 'pizza', 'gzip', 'core', 'pathways', 'enzyme', 'eclass', 'go_hierarchy', 'go', 'apache', 'init', 'mm', 'geospecies', 'ipc', 'lib', 'block', 'arch', 'crypto', 'security', 'sound', 'net', 'fs', 'drivers', 'postgre', 'kernel', 'taxonomy', 'taxonomy_hierarchy']\n\nLoad graph from Dataset\n-----------------------\n\n.. code-block:: python\n\n   >>> bzip_path = cfpq_data.download(\"bzip\")\n   >>> bzip = cfpq_data.graph_from_csv(bzip_path)\n\nHow to add a new graph?\n***********************\n\nJust create\n\n- an ``Issue`` corresponding to the `\"Issue template for adding a new graph\" <https://github.com/formallanguageconstrainedpathquerying/CFPQ_Data/blob/master/.github/ISSUE_TEMPLATE/graph-add-template.md>`_.\n- a ``Pull Request`` corresponding to the `\"Pull request template for adding a new graph\" <https://github.com/formallanguageconstrainedpathquerying/CFPQ_Data/blob/master/.github/PULL_REQUEST_TEMPLATE/new_graph.md>`_.\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Python package containing Graphs and Grammars for experimental analysis of Context-Free Path Querying algorithms",
    "version": "4.0.3",
    "project_urls": {
        "Bug Tracker": "https://github.com/FormalLanguageConstrainedPathQuerying/CFPQ_Data/issues",
        "Documentation": "https://formallanguageconstrainedpathquerying.github.io/CFPQ_Data",
        "Homepage": "https://formallanguageconstrainedpathquerying.github.io/CFPQ_Data/",
        "Source Code": "https://github.com/FormalLanguageConstrainedPathQuerying/CFPQ_Data"
    },
    "split_keywords": [
        "graphs",
        "grammars",
        "context-free",
        "path-query",
        "cfpq-data"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a1fd87fca4d2744c37c4b788f0e3c4c2061a55568ec08e950059f9364f264d0",
                "md5": "17848596d494ec341e42761263f1162c",
                "sha256": "1b64c514938e2fee490727625d7607e90782f7436a466403ffacabceef5f3617"
            },
            "downloads": -1,
            "filename": "cfpq_data-4.0.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "17848596d494ec341e42761263f1162c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 40797,
            "upload_time": "2024-02-24T15:39:15",
            "upload_time_iso_8601": "2024-02-24T15:39:15.013693Z",
            "url": "https://files.pythonhosted.org/packages/0a/1f/d87fca4d2744c37c4b788f0e3c4c2061a55568ec08e950059f9364f264d0/cfpq_data-4.0.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-24 15:39:15",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "FormalLanguageConstrainedPathQuerying",
    "github_project": "CFPQ_Data",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "cfpq-data"
}
        
Elapsed time: 0.19009s