GithubHelp home page GithubHelp logo

Comments (2)

miromannino avatar miromannino commented on May 27, 2024 1

Hello definitely you can! For example this is my script to import from multiple repos

import sys
import git
import datetime
from git_contributions_importer import *

repos_path = [
    'path/to/project1',
    'path/to/project2',
    'path/to/project3',
    ...
]
repos = []
for repo_path in repos_path:
    repos.append(git.Repo(repo_path))

mock_repo_path = '/path/to/mock-repo/'
mock_repo = git.Repo.init(mock_repo_path)

importer = Importer(repos, mock_repo)
# importer.set_author(['[email protected]', '[email protected]'])
importer.set_changes_commits_max_time_backward(60*60*24*30)
importer.set_ignored_file_types(['.csv', '.txt', '.pdf', '.log', '.sql', '', '.json'])
importer.set_ignore_before_date(datetime.datetime(2019, 4, 7).timestamp())
importer.set_collapse_multiple_changes_to_one(True)
importer.import_repository()

from contributions-importer-for-github.

nautatva avatar nautatva commented on May 27, 2024

Awesome, works great!!

from contributions-importer-for-github.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.