Python script to get all pull requests from the lodash organization. This will include getting pull requests from all repositories under the lodash org.
This uses Basic Authentication for ease of use as a starter to learn the API.
- pandas [http://pandas.pydata.org/]
- requests [http://docs.python-requests.org/en/master/]
- pytest [https://docs.pytest.org/en/latest/contents.html]
- re (built-in regular expression module)
- python v3.6
- pip3
- Run unit tests
>> pytest
py_test.py ...
=====3 Tests======
- Modify app.py and replace
user_name
anduser_pwd
with real git authenticated user/password
user_name = 'johndoe' # CHANGE ME!
user_pwd = '123abc' # CHANGE ME!
- Run app.py