Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.46 KB | None | 0 0
  1. 1
  2. 2     RepositoryMining('path/to/the/repo',
  3. 3     single='6411e3096dd2070438a17b225f4447')
  4. 4
  5. 5     # Since 8/10/2016
  6. 6     dt1 = datetime(2016, 10, 8)
  7. 7     RepositoryMining('path/to/the/repo', since=dt1) 8
  8. 9     # Between 2 dates
  9. 10     dt1 = datetime(2016, 10, 8, 17, 0, 0)
  10. 11     dt2 = datetime(2016, 10, 8, 17, 59, 0)
  11. 12     RepositoryMining('path/to/the/repo', since=dt1, to=dt2) 13
  12. 14     # Between tags
  13. 15     first_tag = 'tag1'
  14. 16     last_tag = 'tag2'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement