-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexamples.py
39 lines (38 loc) · 906 Bytes
/
examples.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
import data
import scraper
if __name__ == '__main__':
print(
scraper.market_scraper(
'Dreams & Nightmares Case',
data.Apps.CS2.value,
data.Currency.USD.value,
),
)
print(
scraper.market_scraper(
'Mann Co. Supply Crate Key',
data.Apps.TEAM_FORTRESS_2.value,
data.Currency.EUR.value,
),
)
print(
scraper.market_scraper(
'Doomsday Hoodie',
data.Apps.PUBG.value,
data.Currency.GBP.value,
),
)
print(
scraper.market_scraper(
'AWP | Neo-Noir (Factory New)',
data.Apps.CS2.value,
data.Currency.USD.value,
),
)
print(
scraper.market_scraper(
'Snowcamo Jacket',
data.Apps.RUST.value,
data.Currency.CHF.value,
),
)