Advertisement
Guest User

Untitled

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