All Projects → ishepard → Pydriller

ishepard / Pydriller

Licence: apache-2.0
Python Framework to analyse Git repositories

Programming Languages

python
139335 projects - #7 most used programming language
python3
1442 projects

Projects that are alternatives of or similar to Pydriller

yt-channels-DS-AI-ML-CS
A comprehensive list of 180+ YouTube Channels for Data Science, Data Engineering, Machine Learning, Deep learning, Computer Science, programming, software engineering, etc.
Stars: ✭ 1,038 (+140.28%)
Mutual labels:  software-engineering
OOP-In-CPlusPlus
An Awesome Repository On Object Oriented Programming In C++ Language. Ideal For Computer Science Undergraduates, This Repository Holds All The Resources Created And Used By Me - Code & Theory For One To Master Object Oriented Programming. Filled With Theory Slides, Number Of Programs, Concept-Clearing Projects And Beautifully Explained, Well Doc…
Stars: ✭ 27 (-93.75%)
Mutual labels:  software-engineering
Tensorflow Project Template
A best practice for tensorflow project template architecture.
Stars: ✭ 3,466 (+702.31%)
Mutual labels:  software-engineering
sre
📚 Index for my study topics
Stars: ✭ 47 (-89.12%)
Mutual labels:  software-engineering
ml4se
A curated list of papers, theses, datasets, and tools related to the application of Machine Learning for Software Engineering
Stars: ✭ 46 (-89.35%)
Mutual labels:  software-engineering
Eseur Book
Issue handling for Evidence-based Software Engineering: based on the publicly available data
Stars: ✭ 263 (-39.12%)
Mutual labels:  software-engineering
ose-course-scientific-computing
course on the basics of scientific computing for economists
Stars: ✭ 21 (-95.14%)
Mutual labels:  software-engineering
Learn Something Every Day
📝 A compilation of everything that I learn; Computer Science, Software Development, Engineering, Math, and Coding in General. Read the rendered results here ->
Stars: ✭ 362 (-16.2%)
Mutual labels:  software-engineering
Book
Metaprogramming. Multi-paradigm approach in the Software Engineering.
Stars: ✭ 116 (-73.15%)
Mutual labels:  software-engineering
Bugbug
Platform for Machine Learning projects on Software Engineering
Stars: ✭ 334 (-22.69%)
Mutual labels:  software-engineering
Restaurant-Management-System
👨‍🍳 An Android based RMS that aims to digitalize the day to day processes of various restaurant operations including ordering, billing, kitchen, hall and inventory management.
Stars: ✭ 105 (-75.69%)
Mutual labels:  software-engineering
anabneri
✨ This is a README that appears on the homepage of my profile.
Stars: ✭ 14 (-96.76%)
Mutual labels:  software-engineering
Practical Fm
A gently curated list of companies using verification formal methods in industry
Stars: ✭ 272 (-37.04%)
Mutual labels:  software-engineering
enterprise-applications-patterns
Collection of enterprise application patterns
Stars: ✭ 17 (-96.06%)
Mutual labels:  software-engineering
Technical Interview Prep
These are coding solutions for problems I study while preparing for technical interviews at tech companies
Stars: ✭ 335 (-22.45%)
Mutual labels:  software-engineering
SEES
Software Engineering for Engineering Students
Stars: ✭ 27 (-93.75%)
Mutual labels:  software-engineering
coding-interview-guide
A systematic coding interview guide
Stars: ✭ 76 (-82.41%)
Mutual labels:  software-engineering
Laravel
[DEPRECATED] See https://github.com/lucidarch/lucid
Stars: ✭ 373 (-13.66%)
Mutual labels:  software-engineering
Eseur Code Data
Code and data used to create the examples in "Evidence-based Software Engineering based on the publicly available data"
Stars: ✭ 340 (-21.3%)
Mutual labels:  software-engineering
Lifelong Learning
✅ ✅ ✅ A massive repo filled with notes on everything from coding to philosophy to psychology to marketing to product
Stars: ✭ 297 (-31.25%)
Mutual labels:  software-engineering

Build Status Documentation Status codecov Downloads Language grade: Python

PyDriller

PyDriller is a Python framework that helps developers in analyzing Git repositories. With PyDriller you can easily extract information such as commits, developers, modifications, diffs, and source codes.

Alt Text

Table of contents

How to cite PyDriller

@inproceedings{Spadini2018,
	address = {New York, New York, USA},
	author = {Spadini, Davide and Aniche, Maur\'{i}cio and Bacchelli, Alberto},
	booktitle = {Proceedings of the 2018 26th ACM Joint Meeting on European Software Engineering Conference and Symposium on the Foundations of Software Engineering - ESEC/FSE 2018},
	doi = {10.1145/3236024.3264598},
	isbn = {9781450355735},
	keywords = {2018,acm reference format,and alberto bacchelli,davide spadini,git,gitpython,maur\'{i}cio aniche,mining software repositories,pydriller,python},
	pages = {908--911},
	publisher = {ACM Press},
	title = {{PyDriller: Python framework for mining software repositories}},
	url = {http://dl.acm.org/citation.cfm?doid=3236024.3264598},
	year = {2018}
}

REQUIREMENTS

Very few! Just:

  • Python3
  • Git

The list of dependencies is shown in ./requirements.txt, however the installer takes care of installing them for you.

INSTALL

Installing PyDriller is easily done using pip. Assuming it is installed, just run the following from the command-line:

pip install pydriller

This will also install the necessary dependencies.

SOURCE CODE

If you like to clone from source, you can do it with very simple steps. First, clone the repo:

> git clone https://github.com/ishepard/pydriller.git
> cd pydriller

OPTIONAL

It is suggested to make use of virtualenv:

> virtualenv -p python3 venv
> source venv/bin/activate

INSTALL THE REQUIREMENTS AND RUN THE TESTS

Install pydriller and the requirements:

> python setup.py install

to run the tests (using pytest):

> pip install -r test-requirements.txt
> unzip test-repos.zip
> pytest

TUTORIAL

For information on how to use PyDriller, refer to the official documentation:

How to contribute

Fork the project and follow the instructions on how to get started with source code. I tend to not accept a Pull Request without tests, so:

  • unzip the test-repos.zip zip file
  • inside you will find many "small repositories" that I manually created to test PyDriller. Choose the one you prefer the most, and test your feature (check the tests I have already written, you'll find inspiration there)
  • if you do not find a repository that is suitable to test your feature, create a new one. Be careful: if you create a new one, do not forget to upload a new zip file test-repos.zip that includes your new repository, otherwise the tests will fail.

License

This software is licensed under the Apache 2.0 License.

This project has received funding from the European Unions’ Horizon 2020 research and innovation programme under the Marie Sklodowska-Curie grant agreement No. 642954.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].