Skip to content
This repository was archived by the owner on Aug 27, 2018. It is now read-only.

Commit 661b3b4

Browse files
committedJun 11, 2015
init ChannelWorm web site. Fixed #37, #17.
1 parent 4ebe92d commit 661b3b4

File tree

943 files changed

+250823
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

943 files changed

+250823
-0
lines changed
 

‎.gitignore

+108
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
*~
2+
*.pyc
3+
*.pyo
4+
# Byte-compiled / optimized / DLL files
5+
__pycache__/
6+
*.py[cod]
7+
*$py.class
8+
9+
# C extensions
10+
*.so
11+
12+
# Distribution / packaging
13+
.Python
14+
env/
15+
build/
16+
develop-eggs/
17+
dist/
18+
downloads/
19+
eggs/
20+
.eggs/
21+
lib/
22+
lib64/
23+
parts/
24+
sdist/
25+
var/
26+
*.egg-info/
27+
.installed.cfg
28+
*.egg
29+
30+
# PyInstaller
31+
# Usually these files are written by a python script from a template
32+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
33+
*.manifest
34+
*.spec
35+
36+
# Installer logs
37+
pip-log.txt
38+
pip-delete-this-directory.txt
39+
40+
# Unit test / coverage reports
41+
htmlcov/
42+
.tox/
43+
.coverage
44+
.coverage.*
45+
.cache
46+
nosetests.xml
47+
coverage.xml
48+
*,cover
49+
50+
# Translations
51+
*.mo
52+
*.pot
53+
54+
# Django stuff:
55+
*.log
56+
57+
# Sphinx documentation
58+
docs/_build/
59+
60+
# PyBuilder
61+
target/
62+
63+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion
64+
65+
*.iml
66+
67+
## Directory-based project format:
68+
.idea/
69+
# if you remove the above rule, at least ignore the following:
70+
71+
# User-specific stuff:
72+
# .idea/workspace.xml
73+
# .idea/tasks.xml
74+
# .idea/dictionaries
75+
76+
# Sensitive or high-churn files:
77+
# .idea/dataSources.ids
78+
# .idea/dataSources.xml
79+
# .idea/sqlDataSources.xml
80+
# .idea/dynamic.xml
81+
# .idea/uiDesigner.xml
82+
83+
# Gradle:
84+
# .idea/gradle.xml
85+
# .idea/libraries
86+
87+
# Mongo Explorer plugin:
88+
# .idea/mongoSettings.xml
89+
90+
## File-based project format:
91+
*.ipr
92+
*.iws
93+
94+
## Plugin-specific files:
95+
96+
# IntelliJ
97+
/out/
98+
99+
# mpeltonen/sbt-idea plugin
100+
.idea_modules/
101+
102+
# JIRA plugin
103+
atlassian-ide-plugin.xml
104+
105+
# Crashlytics plugin (for Android Studio and IntelliJ)
106+
com_crashlytics_export_strings.xml
107+
crashlytics.properties
108+
crashlytics-build.properties

‎ChannelWorm/channelworm/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# -*- coding: utf-8 -*-

0 commit comments

Comments
 (0)
This repository has been archived.