asyncio support
#1152
|
I'm using the library to backup a bunch o repositories but, due to the quantity it takes a while to clone all of them. Is it possible to clone them in parallel? Is there asyncio support? |
Answered by
Byron
Apr 11, 2020
Replies: 1 comment
|
Hi @tallesl , no, there is no asyncio support. The only way to parallelize GitPython would be to use the multiprocessing package. However, if it's just about the initial clone or update, it might be easier to use I am closing the issue, as I hope the above answers your question. Please feel free to keep posting here for further comments or follow-up questions. |
0 replies
Answer selected by
Byron
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @tallesl ,
no, there is no asyncio support. The only way to parallelize GitPython would be to use the multiprocessing package.
However, if it's just about the initial clone or update, it might be easier to use
xargs.I am closing the issue, as I hope the above answers your question. Please feel free to keep posting here for further comments or follow-up questions.