Skip to content

Commit eb691ad

Browse files
Add files via upload
1 parent 133e216 commit eb691ad

File tree

2 files changed

+68
-0
lines changed

2 files changed

+68
-0
lines changed

scraping_main.py

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# #################### SCRAPING MAIN FLOW ####################
2+
# #################### SCRIPT FEATURES ####################
3+
# 1.
4+
# 2.
5+
# 3.
6+
7+
# #################### IMPORT LIBRARIES ####################
8+
import os
9+
# ...
10+
11+
# #################### DEFINE SETTINGS ####################
12+
# from ... import ... as ...
13+
# file manager read write append cav xlsx json yaml ini (config.ini, config.yaml)
14+
# requests
15+
# multithreading
16+
# multiprocess
17+
# async
18+
# db manager
19+
# GUI pyqt5 tkinter pygame
20+
# ...
21+
22+
# #################### MAIN PROCESS ####################
23+
# startScraping()
24+
# login()
25+
# ...
26+
27+
# #################### END SCRAPING ####################
28+
29+
30+
def main():
31+
return 0
32+
33+
if __name__ == '__main__':
34+
main()

script_main.py

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# #################### SCRAPING MAIN FLOW ####################
2+
# #################### SCRIPT FEATURES ####################
3+
# 1.
4+
# 2.
5+
# 3.
6+
7+
# #################### IMPORT LIBRARIES ####################
8+
import os
9+
...
10+
11+
# #################### DEFINE SETTINGS ####################
12+
# from ... import ... as ...
13+
# file manager read write append cav xlsx json yaml ini (config.ini, config.yaml)
14+
# requests
15+
# multithreading
16+
# multiprocess
17+
# async
18+
# db manager
19+
# GUI pyqt5 tkinter pygame ...
20+
21+
# #################### MAIN PROCESS ####################
22+
# startScraping()
23+
# login()
24+
# ...
25+
26+
# #################### END SCRAPING ####################
27+
28+
29+
def main():
30+
return 0
31+
32+
33+
if __name__ == '__main__':
34+
main()

0 commit comments

Comments
 (0)