git2net


Namegit2net JSON
Version 1.7.1 PyPI version JSON
download
home_pagehttps://gotec.github.io/git2net/
SummaryAn OpenSource Python package for the extraction of fine-grained and time-stamped co-editing networks from git repositories.
upload_time2023-07-25 13:26:29
maintainer
docs_urlNone
authorChristoph Gote
requires_python
licenseAGPL-3.0+
keywords co-editing network repository mining network-analysis git
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Tests](https://github.com/gotec/git2net/actions/workflows/python-app.yml/badge.svg)](https://github.com/gotec/git2net/actions/workflows/python-app.yml)
[![Documentation Status](https://readthedocs.org/projects/git2net/badge/?version=latest)](https://git2net.readthedocs.io/en/latest/?badge=latest)


# git2net

`git2net` is an Open Source Python package that facilitates the extraction of co-editing networks
from git repositories.


## Download and installation

`git2net` is pure `python` code. It has no platform-specific dependencies and thus works on all
platforms. The only requirement is a version of `git >= 2.0`. Assuming you are using `pip`, you can install latest version of `git2net` by running:

```
> pip install git2net
```

This also installs the necessary dependencies. `git2net` depends on the `python-Levenshtein` package to compute Levenshtein distances for edited lines of code. On sytems running Windows, automatically compiling this C based module might fail during installation. In this case, unofficial Windows binaries can be found [here](https://www.lfd.uci.edu/~gohlke/pythonlibs/#python-levenshtein), which might help you get started.


## How to use git2net

### Tutorials

After installation, we suggest to check out our [tutorials](https://github.com/gotec/git2net-tutorials), detailing how to get started using `git2net`.
We provide tutorials covering different aspects of analysing your repository with `git2net`.
You can directly interact with the notebooks in *Binder*, or view them in *NBViewer* via the badges below.

[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/gotec/git2net-tutorials/HEAD)
[![NBViewer](https://img.shields.io/badge/View%20on-nbviewer-informational)](https://nbviewer.org/github/gotec/git2net-tutorials/tree/main/)

In addition, we provide links to the individual tutorial notebooks below:

| Tutorial | Binder | Google Colab | NBViewer |
| :---     | :---:    | :---:  | :---: |
| 1. Cloning a repository for analysis | [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/gotec/git2net-tutorials/HEAD?labpath=1_Cloning_Git_Repositories.ipynb) | [![Open Cloning Tutorial In Google Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/gotec/git2net-tutorials/blob/master/1_Cloning_Git_Repositories.ipynb) | [![NBViewer](https://img.shields.io/badge/View%20on-nbviewer-informational)](https://nbviewer.org/github/gotec/git2net-tutorials/tree/main/1_Cloning_Git_Repositories.ipynb) |
| 2. Mining git repositories with [`git2net`](https://github.com/gotec/git2net) | [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/gotec/git2net-tutorials/HEAD?labpath=2_Mining_Git_Repositories.ipynb) | [![Open Mining Tutorial In Google Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/gotec/git2net-tutorials/blob/master/2_Mining_Git_Repositories.ipynb) | [![NBViewer](https://img.shields.io/badge/View%20on-nbviewer-informational)](https://nbviewer.org/github/gotec/git2net-tutorials/tree/main/2_Mining_Git_Repositories.ipynb) |
| 3. Author disambiguation with [`gambit`](https://github.com/gotec/gambit) | [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/gotec/git2net-tutorials/HEAD?labpath=3_Author_Disambiguation.ipynb) | [![Open Disambiguation Tutorial In Google Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/gotec/git2net-tutorials/blob/master/3_Author_Disambiguation.ipynb) | [![NBViewer](https://img.shields.io/badge/View%20on-nbviewer-informational)](https://nbviewer.org/github/gotec/git2net-tutorials/tree/main/3_Author_Disambiguation.ipynb) |
| 4. Network analysis with [`pathpy`](https://www.pathpy.net/) | [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/gotec/git2net-tutorials/HEAD?labpath=4_Network_Analysis.ipynb) | [![Open Network Tutorial In Google Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/gotec/git2net-tutorials/blob/master/4_Network_Analysis.ipynb) | [![NBViewer](https://img.shields.io/badge/View%20on-nbviewer-informational)](https://nbviewer.org/github/gotec/git2net-tutorials/tree/main/4_Network_Analysis.ipynb) |
| 5. Database-based analyses | [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/gotec/git2net-tutorials/HEAD?labpath=5_Database_Analysis.ipynb) | [![Open Database Tutorial In Google Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/gotec/git2net-tutorials/blob/master/5_Database_Analysis.ipynb) | [![NBViewer](https://img.shields.io/badge/View%20on-nbviewer-informational)](https://nbviewer.org/github/gotec/git2net-tutorials/tree/main/5_Database_Analysis.ipynb) |
| 6. Computing file complexity [`git2net`](https://github.com/gotec/git2net) | [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/gotec/git2net-tutorials/HEAD?labpath=6_Computing_Complexities.ipynb) | [![Open Database Tutorial In Google Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/gotec/git2net-tutorials/blob/master/6_Computing_Complexities.ipynb) | [![NBViewer](https://img.shields.io/badge/View%20on-nbviewer-informational)](https://nbviewer.org/github/gotec/git2net-tutorials/tree/main/6_Computing_Complexities.ipynb) |

### Documentation

`git2net`'s documentation is available at [git2net.readthedocs.io](https://git2net.readthedocs.io).

### Usage examples

We have published some motivating results as well as details on the mining algorithm in ["git2net - Mining Time-Stamped Co-Editing Networks from Large git Repositories"](https://dl.acm.org/doi/10.1109/MSR.2019.00070).

In ["Analysing Time-Stamped Co-Editing Networks in Software Development Teams using git2net"](https://link.springer.com/article/10.1007/s10664-020-09928-2), we use `git2net` to mine more than 1.2 million commits of over 25,000 developers. We use this data to test a hypothesis on the relation between developer productivity and co-editing patterns in software teams.

Finally, in ["Big Data = Big Insights? Operationalising Brooks' Law in a Massive GitHub Data Set"](https://arxiv.org/abs/2201.04588), we mine a corpus containing over 200 GitHub repositories using `git2net`. Based on the resulting data, we study the relationship between team size and productivity in OSS development teams. If you want to use this extensive data set for your own study, we made it publicly available on [zenodo.org](https://doi.org/10.5281/zenodo.5294965).

[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.5294965.svg)](https://doi.org/10.5281/zenodo.5294965)

## How to cite git2net

```
@inproceedings{gote2019git2net,
  title={git2net: {M}ining time-stamped co-editing networks from large git repositories},
  author={Gote, Christoph and Scholtes, Ingo and Schweitzer, Frank},
  booktitle={Proceedings of the 16th International Conference on Mining Software Repositories},
  pages={433--444},
  year={2019},
  organization={IEEE Press}
}

@article{gote2021analysing,
  title={Analysing time-stamped co-editing networks in software development teams using git2net},
  author={Gote, Christoph and Scholtes, Ingo and Schweitzer, Frank},
  journal={Empirical Software Engineering},
  volume={26},
  number={4},
  pages={1--41},
  year={2021},
  publisher={Springer}
}
```


## License

This software is licensed under the GNU Affero General Public License v3 (AGPL-3.0).

            

Raw data

            {
    "_id": null,
    "home_page": "https://gotec.github.io/git2net/",
    "name": "git2net",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "co-editing,network,repository,mining,network-analysis,git",
    "author": "Christoph Gote",
    "author_email": "cgote@ethz.ch",
    "download_url": "https://files.pythonhosted.org/packages/92/ca/aede0c39cbe82470fcd8697c11f7d5b26ee26eaa462b955c842b5588b61f/git2net-1.7.1.tar.gz",
    "platform": null,
    "description": "[![Tests](https://github.com/gotec/git2net/actions/workflows/python-app.yml/badge.svg)](https://github.com/gotec/git2net/actions/workflows/python-app.yml)\n[![Documentation Status](https://readthedocs.org/projects/git2net/badge/?version=latest)](https://git2net.readthedocs.io/en/latest/?badge=latest)\n\n\n# git2net\n\n`git2net` is an Open Source Python package that facilitates the extraction of co-editing networks\nfrom git repositories.\n\n\n## Download and installation\n\n`git2net` is pure `python` code. It has no platform-specific dependencies and thus works on all\nplatforms. The only requirement is a version of `git >= 2.0`. Assuming you are using `pip`, you can install latest version of `git2net` by running:\n\n```\n> pip install git2net\n```\n\nThis also installs the necessary dependencies. `git2net` depends on the `python-Levenshtein` package to compute Levenshtein distances for edited lines of code. On sytems running Windows, automatically compiling this C based module might fail during installation. In this case, unofficial Windows binaries can be found [here](https://www.lfd.uci.edu/~gohlke/pythonlibs/#python-levenshtein), which might help you get started.\n\n\n## How to use git2net\n\n### Tutorials\n\nAfter installation, we suggest to check out our [tutorials](https://github.com/gotec/git2net-tutorials), detailing how to get started using `git2net`.\nWe provide tutorials covering different aspects of analysing your repository with `git2net`.\nYou can directly interact with the notebooks in *Binder*, or view them in *NBViewer* via the badges below.\n\n[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/gotec/git2net-tutorials/HEAD)\n[![NBViewer](https://img.shields.io/badge/View%20on-nbviewer-informational)](https://nbviewer.org/github/gotec/git2net-tutorials/tree/main/)\n\nIn addition, we provide links to the individual tutorial notebooks below:\n\n| Tutorial | Binder | Google Colab | NBViewer |\n| :---     | :---:    | :---:  | :---: |\n| 1. Cloning a repository for analysis | [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/gotec/git2net-tutorials/HEAD?labpath=1_Cloning_Git_Repositories.ipynb) | [![Open Cloning Tutorial In Google Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/gotec/git2net-tutorials/blob/master/1_Cloning_Git_Repositories.ipynb) | [![NBViewer](https://img.shields.io/badge/View%20on-nbviewer-informational)](https://nbviewer.org/github/gotec/git2net-tutorials/tree/main/1_Cloning_Git_Repositories.ipynb) |\n| 2. Mining git repositories with [`git2net`](https://github.com/gotec/git2net) | [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/gotec/git2net-tutorials/HEAD?labpath=2_Mining_Git_Repositories.ipynb) | [![Open Mining Tutorial In Google Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/gotec/git2net-tutorials/blob/master/2_Mining_Git_Repositories.ipynb) | [![NBViewer](https://img.shields.io/badge/View%20on-nbviewer-informational)](https://nbviewer.org/github/gotec/git2net-tutorials/tree/main/2_Mining_Git_Repositories.ipynb) |\n| 3. Author disambiguation with [`gambit`](https://github.com/gotec/gambit) | [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/gotec/git2net-tutorials/HEAD?labpath=3_Author_Disambiguation.ipynb) | [![Open Disambiguation Tutorial In Google Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/gotec/git2net-tutorials/blob/master/3_Author_Disambiguation.ipynb) | [![NBViewer](https://img.shields.io/badge/View%20on-nbviewer-informational)](https://nbviewer.org/github/gotec/git2net-tutorials/tree/main/3_Author_Disambiguation.ipynb) |\n| 4. Network analysis with [`pathpy`](https://www.pathpy.net/) | [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/gotec/git2net-tutorials/HEAD?labpath=4_Network_Analysis.ipynb) | [![Open Network Tutorial In Google Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/gotec/git2net-tutorials/blob/master/4_Network_Analysis.ipynb) | [![NBViewer](https://img.shields.io/badge/View%20on-nbviewer-informational)](https://nbviewer.org/github/gotec/git2net-tutorials/tree/main/4_Network_Analysis.ipynb) |\n| 5. Database-based analyses | [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/gotec/git2net-tutorials/HEAD?labpath=5_Database_Analysis.ipynb) | [![Open Database Tutorial In Google Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/gotec/git2net-tutorials/blob/master/5_Database_Analysis.ipynb) | [![NBViewer](https://img.shields.io/badge/View%20on-nbviewer-informational)](https://nbviewer.org/github/gotec/git2net-tutorials/tree/main/5_Database_Analysis.ipynb) |\n| 6. Computing file complexity [`git2net`](https://github.com/gotec/git2net) | [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/gotec/git2net-tutorials/HEAD?labpath=6_Computing_Complexities.ipynb) | [![Open Database Tutorial In Google Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/gotec/git2net-tutorials/blob/master/6_Computing_Complexities.ipynb) | [![NBViewer](https://img.shields.io/badge/View%20on-nbviewer-informational)](https://nbviewer.org/github/gotec/git2net-tutorials/tree/main/6_Computing_Complexities.ipynb) |\n\n### Documentation\n\n`git2net`'s documentation is available at [git2net.readthedocs.io](https://git2net.readthedocs.io).\n\n### Usage examples\n\nWe have published some motivating results as well as details on the mining algorithm in [\"git2net - Mining Time-Stamped Co-Editing Networks from Large git Repositories\"](https://dl.acm.org/doi/10.1109/MSR.2019.00070).\n\nIn [\"Analysing Time-Stamped Co-Editing Networks in Software Development Teams using git2net\"](https://link.springer.com/article/10.1007/s10664-020-09928-2), we use `git2net` to mine more than 1.2 million commits of over 25,000 developers. We use this data to test a hypothesis on the relation between developer productivity and co-editing patterns in software teams.\n\nFinally, in [\"Big Data = Big Insights? Operationalising Brooks' Law in a Massive GitHub Data Set\"](https://arxiv.org/abs/2201.04588), we mine a corpus containing over 200 GitHub repositories using `git2net`. Based on the resulting data, we study the relationship between team size and productivity in OSS development teams. If you want to use this extensive data set for your own study, we made it publicly available on [zenodo.org](https://doi.org/10.5281/zenodo.5294965).\n\n[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.5294965.svg)](https://doi.org/10.5281/zenodo.5294965)\n\n## How to cite git2net\n\n```\n@inproceedings{gote2019git2net,\n  title={git2net: {M}ining time-stamped co-editing networks from large git repositories},\n  author={Gote, Christoph and Scholtes, Ingo and Schweitzer, Frank},\n  booktitle={Proceedings of the 16th International Conference on Mining Software Repositories},\n  pages={433--444},\n  year={2019},\n  organization={IEEE Press}\n}\n\n@article{gote2021analysing,\n  title={Analysing time-stamped co-editing networks in software development teams using git2net},\n  author={Gote, Christoph and Scholtes, Ingo and Schweitzer, Frank},\n  journal={Empirical Software Engineering},\n  volume={26},\n  number={4},\n  pages={1--41},\n  year={2021},\n  publisher={Springer}\n}\n```\n\n\n## License\n\nThis software is licensed under the GNU Affero General Public License v3 (AGPL-3.0).\n",
    "bugtrack_url": null,
    "license": "AGPL-3.0+",
    "summary": "An OpenSource Python package for the extraction of fine-grained and time-stamped co-editing networks from git repositories.",
    "version": "1.7.1",
    "project_urls": {
        "Homepage": "https://gotec.github.io/git2net/"
    },
    "split_keywords": [
        "co-editing",
        "network",
        "repository",
        "mining",
        "network-analysis",
        "git"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bdd99f0ad18dbd0157684b8042a385d9e056973b30882ca341682df79fc8d20c",
                "md5": "5f935988a4fd3ef46dd42180307b5f8a",
                "sha256": "2d86f350de6b95c1a488de93ffe53be1ceab4017dead602a3f2daa8f2f4088b2"
            },
            "downloads": -1,
            "filename": "git2net-1.7.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5f935988a4fd3ef46dd42180307b5f8a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 50977,
            "upload_time": "2023-07-25T13:26:28",
            "upload_time_iso_8601": "2023-07-25T13:26:28.183615Z",
            "url": "https://files.pythonhosted.org/packages/bd/d9/9f0ad18dbd0157684b8042a385d9e056973b30882ca341682df79fc8d20c/git2net-1.7.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92caaede0c39cbe82470fcd8697c11f7d5b26ee26eaa462b955c842b5588b61f",
                "md5": "348da51a42df04769bea8fd90facbce0",
                "sha256": "e767d87b2010e99cbf2845ed7efe24e7bfec8770add450d7de5733591f053ccb"
            },
            "downloads": -1,
            "filename": "git2net-1.7.1.tar.gz",
            "has_sig": false,
            "md5_digest": "348da51a42df04769bea8fd90facbce0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 50497,
            "upload_time": "2023-07-25T13:26:29",
            "upload_time_iso_8601": "2023-07-25T13:26:29.827015Z",
            "url": "https://files.pythonhosted.org/packages/92/ca/aede0c39cbe82470fcd8697c11f7d5b26ee26eaa462b955c842b5588b61f/git2net-1.7.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-25 13:26:29",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "git2net"
}
        
Elapsed time: 0.12766s