• This project
    • Loading...
  • Sign in

2020-2-capstone-design2 / 2015104491

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • 2015104491
  • proj
  • collector.py
  • 이하영's avatar
    collector 추가 · c2837e2d
    c2837e2d
    이하영 authored 2020-12-06 10:40:50 +0900
collector.py 344 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import pymysql
pymysql.install_as_MySQLdb()
import sys

from library.collector_api import *

class Collector:
    def __init__(self):
        self.collector_api=collector_api()

    def collecting(self):
        self.collector_api.code_update_check()

if __name__=="__main__":
    app=QApplication(sys.argv)
    c=Collector()
    c.collecting()