Skip to content
Snippets Groups Projects
  1. Dec 14, 2020
    • Seok Won's avatar
      Create Ajou notice parse using MySQL · 1d5a67d1
      Seok Won authored
      HTMLParser + Slack API + MySQL in python
      
      First, create a database with a table named "notices".
      
      CREATE TABLE notices (
        id INT,
        title VARCHAR(100),
        date VARCHAR(30),
        link VARCHAR(101),
        writer VARCHAR(25)
      )
      Unverified
      1d5a67d1
  2. Dec 11, 2020
    • Seok Won's avatar
      Update Ajou Notice Parser · ec2cff9a
      Seok Won authored
      Added a test which contains filtering function (it'll filter notices within the array of strings)
      
      Made producer more safe and highthroughput.
      
      Added old notices remover in producer.
      
      Added a little bit of resting time between consuer polling.
      Unverified
      ec2cff9a
  3. Dec 07, 2020
    • Seok Won's avatar
      Update ajou notice parser · 3f53afe7
      Seok Won authored
      Before: some notices have their name in notices
      
      [writer]: [writer] title
      
      After: remove writer in titles
      
      [writer]: title
      3f53afe7
  4. Dec 06, 2020
Loading