-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.py
54 lines (39 loc) · 1.39 KB
/
data.py
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
47
48
49
50
51
52
53
54
import urllib.request as get
d = {} # conditions dictionary
class Medication():
def __init__(self, name, contraMeds, sideEffects):
self.name = name
# a list of med names that cause adverse drug reactions
self.contraMeds = contraMeds
# a list of side effects
self.sideEffects = sideEffects
def __hash__(self):
return hash(self.name)
def __eq__(self, other):
return (isinstance(other, A) and (self.name == other.name))
class Condition():
def __init__(self, name, treatments):
self.name = name
self.treatments = treatments
def __hash__(self):
return hash(self.name)
def __eq__(self, other):
return (isinstance(other, A) and (self.name == other.name))
def printer(self):
print(2)
name = 'headache'
treatments = [Medication('name', ['a', 'b'], ['c', 'd'], ['e', 'f']), Medication('name', ['a', 'b'], ['c', 'd'], ['e', 'f'])]
x = Condition(name, treatments)
x.printer()
'''
URL = 'http://www.rxlist.com/drugs/alpha_a.htm'
page = get.urlopen(URL)
xs = str(page.read())
page.close()
print(xs.find('A-Methapred (Methylprednisolone Sodium Succinate)'))
URL2 = 'http://www.rxlist.com/drugs/alpha_b.htm'
page2 = get.urlopen(URL2)
xs2 = str(page2.read())
page2.close()
print(xs.find('B12 (Liver-Stomach Concentrate With Intrinsic Factor)'))
'''