https://github.com/bcongdon/git_lambda
🐙 Git binary package for the Python AWS Lambda runtime
https://github.com/bcongdon/git_lambda
Last synced: 9 months ago
JSON representation
🐙 Git binary package for the Python AWS Lambda runtime
- Host: GitHub
- URL: https://github.com/bcongdon/git_lambda
- Owner: bcongdon
- License: mit
- Created: 2017-08-01T03:59:46.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-08-14T05:02:51.000Z (over 8 years ago)
- Last Synced: 2025-03-23T08:04:18.292Z (10 months ago)
- Language: Python
- Size: 19.6 MB
- Stars: 9
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# git_lambda
🐙 Git binary package for the Python AWS Lambda runtime
`git_lambda` includes a tar archive of git binaries for use in AWS Lambda. Calling `git_lambda.setup()` unzips the binaries, puts them in the right spot, and updates the current process' `PATH` so that `git` can be called via a [subprocess](https://docs.python.org/3.6/library/subprocess.html)
## Usage
```python
import git_lambda
git_lambda.setup()
# git is now available in your $PATH for calling via a subprocess!
```
## Attribution
Package inspired by and binary provided [pimterry/lambda-git](https://github.com/pimterry/lambda-git)