1
|
3 |
|
import attr |
|
|
|
|
2
|
3 |
|
import requests |
3
|
3 |
|
import uritemplate |
|
|
|
|
4
|
3 |
|
from pathlib import Path |
5
|
|
|
|
6
|
|
|
|
7
|
3 |
|
EXT_TO_MIME_TYPE = { |
8
|
|
|
'.gz': 'application/x-gzip', |
9
|
|
|
'.whl': 'application/zip', |
10
|
|
|
'.zip': 'application/zip', |
11
|
|
|
} |
12
|
|
|
|
13
|
|
|
|
14
|
3 |
|
@attr.s |
15
|
3 |
|
class GitHubApi(object): |
16
|
3 |
|
ISSUE_ENDPOINT = ( |
17
|
|
|
'https://api.github.com/repos{/owner}{/repo}/issues{/number}' |
18
|
|
|
) |
19
|
3 |
|
LABELS_ENDPOINT = ( |
20
|
|
|
'https://api.github.com/repos{/owner}{/repo}/labels' |
21
|
|
|
) |
22
|
3 |
|
RELEASES_ENDPOINT = ( |
23
|
|
|
'https://api.github.com/repos{/owner}{/repo}/releases' |
24
|
|
|
) |
25
|
|
|
|
26
|
3 |
|
repository = attr.ib() |
27
|
|
|
|
28
|
3 |
|
@property |
29
|
|
|
def owner(self): |
30
|
3 |
|
return self.repository.owner |
31
|
|
|
|
32
|
3 |
|
@property |
33
|
|
|
def repo(self): |
34
|
3 |
|
return self.repository.repo |
35
|
|
|
|
36
|
3 |
|
@property |
37
|
|
|
def auth_token(self): |
38
|
3 |
|
return self.repository.auth_token |
39
|
|
|
|
40
|
3 |
|
def pull_request(self, pr_num): |
41
|
3 |
|
pull_request_api_url = uritemplate.expand( |
42
|
|
|
self.ISSUE_ENDPOINT, |
43
|
|
|
dict( |
44
|
|
|
owner=self.owner, |
45
|
|
|
repo=self.repo, |
46
|
|
|
number=pr_num |
47
|
|
|
), |
48
|
|
|
) |
49
|
|
|
|
50
|
3 |
|
return requests.get( |
51
|
|
|
pull_request_api_url, |
52
|
|
|
headers={ |
53
|
|
|
'Authorization': 'token {}'.format(self.auth_token) |
54
|
|
|
}, |
55
|
|
|
).json() |
56
|
|
|
|
57
|
3 |
|
def labels(self): |
58
|
3 |
|
labels_api_url = uritemplate.expand( |
59
|
|
|
self.LABELS_ENDPOINT, |
60
|
|
|
dict( |
61
|
|
|
owner=self.owner, |
62
|
|
|
repo=self.repo, |
63
|
|
|
), |
64
|
|
|
) |
65
|
|
|
|
66
|
3 |
|
return requests.get( |
67
|
|
|
labels_api_url, |
68
|
|
|
headers={ |
69
|
|
|
'Authorization': 'token {}'.format(self.auth_token) |
70
|
|
|
}, |
71
|
|
|
).json() |
72
|
|
|
|
73
|
3 |
|
def create_release(self, release, uploads=None): |
74
|
3 |
|
params = { |
75
|
|
|
'tag_name': release.version, |
76
|
|
|
'name': release.name, |
77
|
|
|
'body': release.description, |
78
|
|
|
# 'prerelease': True, |
79
|
|
|
} |
80
|
|
|
|
81
|
3 |
|
releases_api_url = uritemplate.expand( |
82
|
|
|
self.RELEASES_ENDPOINT, |
83
|
|
|
dict( |
84
|
|
|
owner=self.owner, |
85
|
|
|
repo=self.repo, |
86
|
|
|
) |
87
|
|
|
) |
88
|
|
|
|
89
|
3 |
|
return requests.post( |
90
|
|
|
releases_api_url, |
91
|
|
|
headers={ |
92
|
|
|
'Authorization': 'token {}'.format(self.auth_token) |
93
|
|
|
}, |
94
|
|
|
# auth=(self.auth_token, 'x-oauth-basic'), |
95
|
|
|
json=params, |
96
|
|
|
).json() |
97
|
|
|
|
98
|
|
|
upload_responses = [] |
99
|
|
|
upload_url = response['upload_url'] |
|
|
|
|
100
|
|
|
for upload in uploads: |
101
|
|
|
upload = Path(upload) |
102
|
|
|
upload_responses.append(requests.post( |
103
|
|
|
uritemplate.expand( |
104
|
|
|
upload_url, |
105
|
|
|
dict(name=upload.name) |
106
|
|
|
), |
107
|
|
|
# auth=(gh_token, 'x-oauth-basic'), |
108
|
|
|
headers={ |
109
|
|
|
'authorization': 'token {}'.format(self.auth_token), |
110
|
|
|
'content-type': EXT_TO_MIME_TYPE[distribution.ext], |
|
|
|
|
111
|
|
|
}, |
112
|
|
|
data=upload.read_bytes(), |
|
|
|
|
113
|
|
|
verify=False, |
114
|
|
|
)) |
115
|
|
|
|
116
|
|
|
return response, upload_responses |
|
|
|
|
117
|
|
|
|
This can be caused by one of the following:
1. Missing Dependencies
This error could indicate a configuration issue of Pylint. Make sure that your libraries are available by adding the necessary commands.
2. Missing __init__.py files
This error could also result from missing
__init__.py
files in your module folders. Make sure that you place one file in each sub-folder.