github v3 API - delete / remove a repo
问题 I would like to programmatically delete a github repo, when setting up a unit test environment for my application. I am already using the v3 API, which seems to be most supported and the path going forward. I am using the following python lines to successfully CREATE a repo, just fine: import urllib2, base64 createData = '{\"name\": \"UnitTest-SubModules\", \"description\": \"This is a Fake repo used for testing\"}' request = urllib2.Request("https://api.github.com/user/repos") base64string =