Skip to content

Commit 9663703

Browse files
author
10063374
committed
Initial Release Commit
1 parent f18ebc6 commit 9663703

File tree

337 files changed

+58431
-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.

337 files changed

+58431
-0
lines changed

.gitignore

+317
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,317 @@
1+
2+
# Created by https://www.gitignore.io/api/pycharm,python,django
3+
# Edit at https://www.gitignore.io/?templates=pycharm,python,django
4+
5+
### Django ###
6+
*.log
7+
*.pot
8+
*.pyc
9+
__pycache__/
10+
local_settings.py
11+
db.sqlite3
12+
db.sqlite3-journal
13+
media
14+
15+
# If your build process includes running collectstatic, then you probably don't need or want to include staticfiles/
16+
# in your Git repository. Update and uncomment the following line accordingly.
17+
# <django-project-name>/staticfiles/
18+
19+
### Django.Python Stack ###
20+
# Byte-compiled / optimized / DLL files
21+
*.py[cod]
22+
*$py.class
23+
24+
# C extensions
25+
*.so
26+
27+
# Distribution / packaging
28+
.Python
29+
build/
30+
develop-eggs/
31+
dist/
32+
downloads/
33+
eggs/
34+
.eggs/
35+
lib/
36+
lib64/
37+
parts/
38+
sdist/
39+
var/
40+
wheels/
41+
pip-wheel-metadata/
42+
share/python-wheels/
43+
*.egg-info/
44+
.installed.cfg
45+
*.egg
46+
MANIFEST
47+
48+
# PyInstaller
49+
# Usually these files are written by a python script from a template
50+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
51+
*.manifest
52+
*.spec
53+
54+
# Installer logs
55+
pip-log.txt
56+
pip-delete-this-directory.txt
57+
58+
# Unit test / coverage reports
59+
htmlcov/
60+
.tox/
61+
.nox/
62+
.coverage
63+
.coverage.*
64+
.cache
65+
nosetests.xml
66+
coverage.xml
67+
*.cover
68+
.hypothesis/
69+
.pytest_cache/
70+
71+
# Translations
72+
*.mo
73+
74+
# Scrapy stuff:
75+
.scrapy
76+
77+
# Sphinx documentation
78+
# docs/_build/
79+
80+
# PyBuilder
81+
target/
82+
83+
# pyenv
84+
.python-version
85+
86+
# pipenv
87+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
88+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
89+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
90+
# install all needed dependencies.
91+
Watcher/Pipfile.lock
92+
Watcher/Pipfile
93+
Watcher/Watcher/site_monitoring/cutycapt.py
94+
95+
# Output list of dnstwist results
96+
Watcher/Watcher/dns_finder/data/list.json
97+
98+
# celery beat schedule file
99+
celerybeat-schedule
100+
101+
# SageMath parsed files
102+
*.sage.py
103+
104+
# Spyder project settings
105+
.spyderproject
106+
.spyproject
107+
108+
# Rope project settings
109+
.ropeproject
110+
111+
# Mr Developer
112+
.mr.developer.cfg
113+
.project
114+
.pydevproject
115+
116+
# mkdocs documentation
117+
/site
118+
119+
# mypy
120+
.mypy_cache/
121+
.dmypy.json
122+
dmypy.json
123+
124+
# Pyre type checker
125+
.pyre/
126+
127+
### PyCharm ###
128+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
129+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
130+
131+
# User-specific stuff
132+
.idea/**/workspace.xml
133+
.idea/**/tasks.xml
134+
.idea/**/usage.statistics.xml
135+
.idea/**/dictionaries
136+
.idea/**/shelf
137+
138+
# Generated files
139+
.idea/**/contentModel.xml
140+
141+
# Sensitive or high-churn files
142+
.idea/**/dataSources/
143+
.idea/**/dataSources.ids
144+
.idea/**/dataSources.local.xml
145+
.idea/**/sqlDataSources.xml
146+
.idea/**/dynamic.xml
147+
.idea/**/uiDesigner.xml
148+
.idea/**/dbnavigator.xml
149+
150+
# Gradle
151+
.idea/**/gradle.xml
152+
.idea/**/libraries
153+
154+
# Gradle and Maven with auto-import
155+
# When using Gradle or Maven with auto-import, you should exclude module files,
156+
# since they will be recreated, and may cause churn. Uncomment if using
157+
# auto-import.
158+
# .idea/modules.xml
159+
# .idea/*.iml
160+
# .idea/modules
161+
# *.iml
162+
# *.ipr
163+
164+
# CMake
165+
cmake-build-*/
166+
167+
# Mongo Explorer plugin
168+
.idea/**/mongoSettings.xml
169+
170+
# File-based project format
171+
*.iws
172+
173+
# IntelliJ
174+
out/
175+
176+
# mpeltonen/sbt-idea plugin
177+
.idea_modules/
178+
179+
# JIRA plugin
180+
atlassian-ide-plugin.xml
181+
182+
# Cursive Clojure plugin
183+
.idea/replstate.xml
184+
185+
# Crashlytics plugin (for Android Studio and IntelliJ)
186+
com_crashlytics_export_strings.xml
187+
crashlytics.properties
188+
crashlytics-build.properties
189+
fabric.properties
190+
191+
# Editor-based Rest Client
192+
.idea/httpRequests
193+
194+
# Android studio 3.1+ serialized cache file
195+
.idea/caches/build_file_checksums.ser
196+
197+
### PyCharm Patch ###
198+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
199+
200+
# *.iml
201+
# modules.xml
202+
# .idea/misc.xml
203+
# *.ipr
204+
205+
# Sonarlint plugin
206+
.idea/**/sonarlint/
207+
208+
# SonarQube Plugin
209+
.idea/**/sonarIssues.xml
210+
211+
# Markdown Navigator plugin
212+
.idea/**/markdown-navigator.xml
213+
.idea/**/markdown-navigator/
214+
215+
216+
### NODE gitignore
217+
218+
# Logs
219+
logs
220+
*.log
221+
npm-debug.log*
222+
yarn-debug.log*
223+
yarn-error.log*
224+
lerna-debug.log*
225+
226+
# Diagnostic reports (https://nodejs.org/api/report.html)
227+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
228+
229+
# Runtime data
230+
pids
231+
*.pid
232+
*.seed
233+
*.pid.lock
234+
235+
# Directory for instrumented libs generated by jscoverage/JSCover
236+
lib-cov
237+
238+
# Coverage directory used by tools like istanbul
239+
coverage
240+
*.lcov
241+
242+
# nyc test coverage
243+
.nyc_output
244+
245+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
246+
.grunt
247+
248+
# Bower dependency directory (https://bower.io/)
249+
bower_components
250+
251+
# node-waf configuration
252+
.lock-wscript
253+
254+
# Compiled binary addons (https://nodejs.org/api/addons.html)
255+
build/Release
256+
257+
# Dependency directories
258+
node_modules/
259+
jspm_packages/
260+
261+
# TypeScript v1 declaration files
262+
typings/
263+
264+
# TypeScript cache
265+
*.tsbuildinfo
266+
267+
# Optional npm cache directory
268+
.npm
269+
270+
# Optional eslint cache
271+
.eslintcache
272+
273+
# Microbundle cache
274+
.rpt2_cache/
275+
.rts2_cache_cjs/
276+
.rts2_cache_es/
277+
.rts2_cache_umd/
278+
279+
# Optional REPL history
280+
.node_repl_history
281+
282+
# Output of 'npm pack'
283+
*.tgz
284+
285+
# Yarn Integrity file
286+
.yarn-integrity
287+
288+
# parcel-bundler cache (https://parceljs.org/)
289+
.cache
290+
291+
# Next.js build output
292+
.next
293+
294+
# Nuxt.js build / generate output
295+
.nuxt
296+
dist
297+
298+
# Gatsby files
299+
.cache/
300+
# Comment in the public line in if your project uses Gatsby and *not* Next.js
301+
# https://nextjs.org/blog/next-9-1#public-directory-support
302+
# public
303+
304+
# vuepress build output
305+
.vuepress/dist
306+
307+
# Serverless directories
308+
.serverless/
309+
310+
# FuseBox cache
311+
.fusebox/
312+
313+
# DynamoDB Local files
314+
.dynamodb/
315+
316+
# TernJS port file
317+
.tern-port

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Watcher/README.md

Rss-bridge/whitelist.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TwitterBridge

0 commit comments

Comments
 (0)