GyuhoLee

[Add] init

1 +<component name="InspectionProjectProfileManager">
2 + <settings>
3 + <option name="USE_PROJECT_PROFILE" value="false" />
4 + <version value="1.0" />
5 + </settings>
6 +</component>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<project version="4">
3 + <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.7 (src)" project-jdk-type="Python SDK" />
4 +</project>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<project version="4">
3 + <component name="ProjectModuleManager">
4 + <modules>
5 + <module fileurl="file://$PROJECT_DIR$/.idea/src.iml" filepath="$PROJECT_DIR$/.idea/src.iml" />
6 + </modules>
7 + </component>
8 +</project>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<module type="PYTHON_MODULE" version="4">
3 + <component name="NewModuleRootManager">
4 + <content url="file://$MODULE_DIR$" />
5 + <orderEntry type="inheritedJdk" />
6 + <orderEntry type="sourceFolder" forTests="false" />
7 + </component>
8 +</module>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<project version="4">
3 + <component name="VcsDirectoryMappings">
4 + <mapping directory="$PROJECT_DIR$/.." vcs="Git" />
5 + </component>
6 +</project>
...\ No newline at end of file ...\ No newline at end of file
...@@ -21,7 +21,6 @@ ...@@ -21,7 +21,6 @@
21 <component name="ChangeListManager"> 21 <component name="ChangeListManager">
22 <list default="true" id="b9decb0c-dc9e-4239-bdad-09ea8dd5179d" name="Default Changelist" comment=""> 22 <list default="true" id="b9decb0c-dc9e-4239-bdad-09ea8dd5179d" name="Default Changelist" comment="">
23 <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" /> 23 <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
24 - <change beforePath="$PROJECT_DIR$/subtitle.py" beforeDir="false" afterPath="$PROJECT_DIR$/subtitle.py" afterDir="false" />
25 </list> 24 </list>
26 <option name="SHOW_DIALOG" value="false" /> 25 <option name="SHOW_DIALOG" value="false" />
27 <option name="HIGHLIGHT_CONFLICTS" value="true" /> 26 <option name="HIGHLIGHT_CONFLICTS" value="true" />
...@@ -40,7 +39,6 @@ ...@@ -40,7 +39,6 @@
40 <component name="PropertiesComponent"> 39 <component name="PropertiesComponent">
41 <property name="ASKED_SHARE_PROJECT_CONFIGURATION_FILES" value="true" /> 40 <property name="ASKED_SHARE_PROJECT_CONFIGURATION_FILES" value="true" />
42 <property name="RunOnceActivity.OpenProjectViewOnStart" value="true" /> 41 <property name="RunOnceActivity.OpenProjectViewOnStart" value="true" />
43 - <property name="SHARE_PROJECT_CONFIGURATION_FILES" value="true" />
44 <property name="last_opened_file_path" value="$PROJECT_DIR$" /> 42 <property name="last_opened_file_path" value="$PROJECT_DIR$" />
45 <property name="settings.editor.selected.configurable" value="com.jetbrains.python.configuration.PyActiveSdkModuleConfigurable" /> 43 <property name="settings.editor.selected.configurable" value="com.jetbrains.python.configuration.PyActiveSdkModuleConfigurable" />
46 </component> 44 </component>
...@@ -93,8 +91,13 @@ ...@@ -93,8 +91,13 @@
93 </entry> 91 </entry>
94 </map> 92 </map>
95 </option> 93 </option>
94 + <option name="oldMeFiltersMigrated" value="true" />
96 </component> 95 </component>
97 <component name="WindowStateProjectService"> 96 <component name="WindowStateProjectService">
97 + <state x="740" y="275" key="FileChooserDialogImpl" timestamp="1604836455343">
98 + <screen x="0" y="0" width="1920" height="1040" />
99 + </state>
100 + <state x="740" y="275" key="FileChooserDialogImpl/0.0.1920.1040/1920.0.1920.1040@0.0.1920.1040" timestamp="1604836455343" />
98 <state width="1899" height="282" key="GridCell.Tab.0.bottom" timestamp="1604306110978"> 101 <state width="1899" height="282" key="GridCell.Tab.0.bottom" timestamp="1604306110978">
99 <screen x="1920" y="0" width="1920" height="1040" /> 102 <screen x="1920" y="0" width="1920" height="1040" />
100 </state> 103 </state>
......
1 +__name__ = 'textrank'
2 +__author__ = 'GyuhoLee'
3 +__version__ = '0.0.1'
4 +
5 +from .summarizer import KeywordSummarizer
6 +from .summarizer import KeysentenceSummarizer
...\ No newline at end of file ...\ No newline at end of file