-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.py
More file actions
46 lines (40 loc) · 1.02 KB
/
Copy pathbase.py
File metadata and controls
46 lines (40 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
-----------------------------------------
@Author: zhaocy
@Email: 19110240027@fudan.edu.cn
@Created: 2019/11/20
------------------------------------------
@Modify: 2019/11/20
------------------------------------------
@Description:
"""
from abc import abstractmethod
from model.base import SOPost
class SOPostAPIRecognition:
@abstractmethod
def recognize(self, post: SOPost):
return set()
class SOPostAPILinker:
"""
for api mentioned in the SO discussion, complete it into the qualified name
"""
def link_one(self, post: SOPost, api):
"""
try to link one api
:param post:
:param api: the api need to linked
:return:
"""
# todo: need to implement
return api
def link_batch(self, post: SOPost, api):
"""
try to link one api
:param post:
:param api: the api need to linked
:return:
"""
# todo: need to implement
return api