Skip to content

Latest commit

 

History

History
422 lines (248 loc) · 9.57 KB

README.md

File metadata and controls

422 lines (248 loc) · 9.57 KB

Reference

Bootstrap

Installed with CDN


mecab-ko

  • Link : https://bitbucket.org/eunjeon/mecab-ko

  • Copyright (c) 2001-2008, Taku Kudo
    Copyright (c) 2004-2008, Nippon Telegraph and Telephone Corporation
    All rights reserved.

  • COPYING : MeCab is copyrighted free software by Taku Kudo <[email protected]> and Nippon Telegraph and Telephone Corporation, and is released under any of the GPL, the LGPL, or the BSD License.

  • License : GPL v2, LGPL v2.1, or BSD License (BSD-3-Clause)


은전한닢 프로젝트에서 사용하기 위한 MeCab의 fork 프로젝트


mecab-ko-dic


오픈 소스 형태소 분석 엔진인 MeCab을 사용하여, 한국어 형태소 분석을 하기 위한 프로젝트


Font

  • DOSGothic.ttf (DOS-style Font)
    • Link : https://github.com/leedheo/fonts
    • Copyright (c) 2016 Damheo Lee ([email protected]),
      with Reserved Font Name DOSMyungjo, DOSGothic, DOSSaemmul, Sam3KRFont, MiraeroNormal,
      its OTF and BDF suffix name. (e.g. DOSMyungjo OTF)
    • License : MIT License

Javascript Library

jQuery


Popper.js


ECharts

Download File (graph.html) of ECharts - Les Miserables is modified to sna.html
(Located at /app/templates/viz/viz_result_pages/sna.html)



Python Library

konlpy


fa2 (ForceAtlas2)


psycopg2-binary

Main authors:
  Federico Di Gregorio <[email protected]>
  Daniele Varrazzo <[email protected]>

For the win32 port:
  Jason Erickson <[email protected]>

Additional Help:

  Peter Fein contributed a logging connection/cursor class that even if it
  was not used directly heavily influenced the implementation currently in
  psycopg2.extras.

  Jan Urbański (re)started the work on asynchronous queries and contributed
  both on that and on other parts of psycopg2.
  • License : LGPL v3 or any later version

uwsgi

LINKING EXCEPTION

 In addition to the permissions in the GNU General Public License,
 the authors give you unlimited permission to link the compiled
 version of this library into combinations with other programs,
 and to distribute those combinations without any restriction
 coming from the use of this file. (The General Public License
 restrictions do apply in other respects; for example, they cover
 modification of the file, and distribution when not linked into
 a combined executable.)

matplotlib

  • Link : https://matplotlib.org/

  • © Copyright 2002 - 2012 John Hunter, Darren Dale, Eric Firing, Michael Droettboom and the Matplotlib development team; 2012 - 2018 The Matplotlib development team

  • License : < Link >


Pillow

The Python Imaging Library (PIL) is

    Copyright © 1997-2011 by Secret Labs AB
    Copyright © 1995-2011 by Fredrik Lundh

Pillow is the friendly PIL fork. It is

    Copyright © 2010-2018 by Alex Clark and contributors
  • License : PIL Software License < Link >

awsebcli


boto3

  • Link : https://github.com/boto/boto3

  • Copyright 2013-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.

  • License : Apache License v2.0


wordcloud


django-widget-tweaks


django-extensions


mecab-python3

  • Link : https://pypi.org/project/mecab-python3/

  • Copyright (c) 2001-2008, Taku Kudo
    Copyright (c) 2004-2008, Nippon Telegraph and Telephone Corporation
    All rights reserved.

  • COPYING : MeCab is copyrighted free software by Taku Kudo <[email protected]> and Nippon Telegraph and Telephone Corporation, and is released under any of the GPL, the LGPL, or the BSD License.

  • Maintainer : Tatsuro Yasukawa <[email protected]>

  • License : GPL v2, LGPL v2.1, or BSD License (BSD-3-Clause)


django

  • Link : https://www.djangoproject.com/

  • Copyright (c) Django Software Foundation and individual contributors.
    All rights reserved.

  • License : BSD License (BSD-3-Clause)


scipy

  • Link : https://scipy.org/scipylib/

  • Copyright (c) 2001, 2002 Enthought, Inc.
    All rights reserved.
    Copyright (c) 2003-2017 SciPy Developers.
    All rights reserved.

  • License : BSD License (BSD-3-Clause)


pandas

  • Link : https://pandas.pydata.org/

  • Copyright (c) 2008-2012, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
    All rights reserved.

  • License : BSD License (BSD-3-Clause)


numpy

  • Link : http://www.numpy.org/

  • Copyright © 2005-2018, NumPy Developers
    All rights reserved.

  • License : BSD License (BSD-3-Clause)


networkx


python-louvain


scikit-learn

  • Link : http://scikit-learn.org/

  • © 2007 - 2018, scikit-learn developers
    All rights reserved.

  • License : BSD License (BSD-3-Clause)


ipython


django-stroages



Code

Code For AWS ELB Health Check

Reference

The following code has been added to deploy.py and deploy_simple.py

def is_ec2_linux():
    """
    Detect if we are running on an EC2 Linux Instance
    See http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/identify_ec2_instances.html
    """
    if os.path.isfile("/sys/hypervisor/uuid"):
        with open("/sys/hypervisor/uuid") as f:
            uuid = f.read()
            return uuid.startswith("ec2")
    return False


def get_linux_ec2_private_ip():
    """
    Get the private IP Address of the machine if running on an EC2 linux server
    """
    from urllib.request import urlopen
    if not is_ec2_linux():
        return None
    try:
        response = urlopen('http://169.254.169.254/latest/meta-data/local-ipv4')
        ec2_ip = response.read().decode('utf-8')
        if response:
            response.close()
        return ec2_ip
    except Exception as e:
        print(e)
        return None


private_ip = get_linux_ec2_private_ip()
if private_ip:
    ALLOWED_HOSTS.append(private_ip)