Skip to content
Snippets Groups Projects
Commit e668154d authored by Carlos Vega's avatar Carlos Vega
Browse files

moved publication to models. import classes from models

parent f2d3b265
No related branches found
No related tags found
No related merge requests found
from abc import ABCMeta, abstractmethod from abc import ABCMeta, abstractmethod
from typing import List from typing import List
from models.publication import Publication
from models.coocurrence import CoOccurrence
class Publication:
def __init__(self, pmc_id=None, pm_id=None, doi=None, preprint_id=None, other_id=None):
self.pmc_id = pmc_id
self.pm_id = pm_id
self.doi = doi
self.preprint_id = preprint_id
self.other_id = other_id
class TextMiningService(metaclass=ABCMeta): class TextMiningService(metaclass=ABCMeta):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment