Skip to content

Commit 2e7bb43

Browse files
committed
Initial commit.
0 parents  commit 2e7bb43

Some content is hidden

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

59 files changed

+4909
-0
lines changed

.editorconfig

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# http://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
indent_style = space
7+
indent_size = 4
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
charset = utf-8
11+
end_of_line = lf
12+
13+
[*.bat]
14+
indent_style = tab
15+
end_of_line = crlf
16+
17+
[LICENSE]
18+
insert_final_newline = false
19+
20+
[Makefile]
21+
indent_style = tab

.gitattributes

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
###############################################################################
2+
# Set default behavior to automatically normalize line endings.
3+
###############################################################################
4+
* text=auto
5+
6+
###############################################################################
7+
# Set default behavior for command prompt diff.
8+
#
9+
# This is need for earlier builds of msysgit that does not have it on by
10+
# default for csharp files.
11+
# Note: This is only used by command line
12+
###############################################################################
13+
#*.cs diff=csharp
14+
15+
###############################################################################
16+
# Set the merge driver for project and solution files
17+
#
18+
# Merging from the command prompt will add diff markers to the files if there
19+
# are conflicts (Merging from VS is not affected by the settings below, in VS
20+
# the diff markers are never inserted). Diff markers may cause the following
21+
# file extensions to fail to load in VS. An alternative would be to treat
22+
# these files as binary and thus will always conflict and require user
23+
# intervention with every merge. To do so, just uncomment the entries below
24+
###############################################################################
25+
#*.sln merge=binary
26+
#*.csproj merge=binary
27+
#*.vbproj merge=binary
28+
#*.vcxproj merge=binary
29+
#*.vcproj merge=binary
30+
#*.dbproj merge=binary
31+
#*.fsproj merge=binary
32+
#*.lsproj merge=binary
33+
#*.wixproj merge=binary
34+
#*.modelproj merge=binary
35+
#*.sqlproj merge=binary
36+
#*.wwaproj merge=binary
37+
38+
###############################################################################
39+
# behavior for image files
40+
#
41+
# image files are treated as binary by default.
42+
###############################################################################
43+
#*.jpg binary
44+
#*.png binary
45+
#*.gif binary
46+
47+
###############################################################################
48+
# diff behavior for common document formats
49+
#
50+
# Convert binary document formats to text before diffing them. This feature
51+
# is only available from the command line. Turn it on by uncommenting the
52+
# entries below.
53+
###############################################################################
54+
#*.doc diff=astextplain
55+
#*.DOC diff=astextplain
56+
#*.docx diff=astextplain
57+
#*.DOCX diff=astextplain
58+
#*.dot diff=astextplain
59+
#*.DOT diff=astextplain
60+
#*.pdf diff=astextplain
61+
#*.PDF diff=astextplain
62+
#*.rtf diff=astextplain
63+
#*.RTF diff=astextplain

.github/ISSUE_TEMPLATE.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
* bleak version:
2+
* Python version:
3+
* Operating System:
4+
5+
### Description
6+
7+
Describe what you were trying to get done.
8+
Tell us what happened, what went wrong, and what you expected to happen.
9+
10+
### What I Did
11+
12+
```
13+
Paste the command(s) you ran and the output.
14+
If there was a crash, please include the traceback here.
15+
```

.gitignore

+286
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,286 @@
1+
.idea/
2+
.vs/
3+
[Bb]in/
4+
[Oo]bj/
5+
6+
# Byte-compiled / optimized / DLL files
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
11+
# C extensions
12+
*.so
13+
14+
# Distribution / packaging
15+
.Python
16+
env/
17+
build/
18+
develop-eggs/
19+
dist/
20+
downloads/
21+
eggs/
22+
.eggs/
23+
lib/
24+
lib64/
25+
parts/
26+
sdist/
27+
var/
28+
*.egg-info/
29+
.installed.cfg
30+
*.egg
31+
32+
# PyInstaller
33+
# Usually these files are written by a python script from a template
34+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
35+
*.manifest
36+
*.spec
37+
38+
# Installer logs
39+
pip-log.txt
40+
pip-delete-this-directory.txt
41+
42+
# Unit test / coverage reports
43+
htmlcov/
44+
.tox/
45+
.coverage
46+
.coverage.*
47+
.cache
48+
nosetests.xml
49+
coverage.xml
50+
*,cover
51+
.hypothesis/
52+
53+
# Translations
54+
*.mo
55+
*.pot
56+
57+
# Django stuff:
58+
*.log
59+
60+
# Sphinx documentation
61+
docs/_build/
62+
63+
# PyBuilder
64+
target/
65+
66+
# pyenv python configuration file
67+
.python-version
68+
.idea/vcs.xml
69+
### macOS template
70+
# General
71+
.DS_Store
72+
.AppleDouble
73+
.LSOverride
74+
75+
# Icon must end with two \r
76+
Icon
77+
78+
# Thumbnails
79+
._*
80+
81+
# Files that might appear in the root of a volume
82+
.DocumentRevisions-V100
83+
.fseventsd
84+
.Spotlight-V100
85+
.TemporaryItems
86+
.Trashes
87+
.VolumeIcon.icns
88+
.com.apple.timemachine.donotpresent
89+
90+
# Directories potentially created on remote AFP share
91+
.AppleDB
92+
.AppleDesktop
93+
Network Trash Folder
94+
Temporary Items
95+
.apdisk
96+
### Windows template
97+
# Windows thumbnail cache files
98+
Thumbs.db
99+
ehthumbs.db
100+
ehthumbs_vista.db
101+
102+
# Dump file
103+
*.stackdump
104+
105+
# Folder config file
106+
[Dd]esktop.ini
107+
108+
# Recycle Bin used on file shares
109+
$RECYCLE.BIN/
110+
111+
# Windows Installer files
112+
*.cab
113+
*.msi
114+
*.msm
115+
*.msp
116+
117+
# Windows shortcuts
118+
*.lnk
119+
### JetBrains template
120+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
121+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
122+
123+
# User-specific stuff:
124+
.idea/**/workspace.xml
125+
.idea/**/tasks.xml
126+
.idea/dictionaries
127+
128+
# Sensitive or high-churn files:
129+
.idea/**/dataSources/
130+
.idea/**/dataSources.ids
131+
.idea/**/dataSources.xml
132+
.idea/**/dataSources.local.xml
133+
.idea/**/sqlDataSources.xml
134+
.idea/**/dynamic.xml
135+
.idea/**/uiDesigner.xml
136+
137+
# Gradle:
138+
.idea/**/gradle.xml
139+
.idea/**/libraries
140+
141+
# CMake
142+
cmake-build-debug/
143+
144+
# Mongo Explorer plugin:
145+
.idea/**/mongoSettings.xml
146+
147+
## File-based project format:
148+
*.iws
149+
150+
## Plugin-specific files:
151+
152+
# IntelliJ
153+
out/
154+
155+
# mpeltonen/sbt-idea plugin
156+
.idea_modules/
157+
158+
# JIRA plugin
159+
atlassian-ide-plugin.xml
160+
161+
# Cursive Clojure plugin
162+
.idea/replstate.xml
163+
164+
# Crashlytics plugin (for Android Studio and IntelliJ)
165+
com_crashlytics_export_strings.xml
166+
crashlytics.properties
167+
crashlytics-build.properties
168+
fabric.properties
169+
### VisualStudioCode template
170+
.vscode/*
171+
!.vscode/settings.json
172+
!.vscode/tasks.json
173+
!.vscode/launch.json
174+
!.vscode/extensions.json
175+
### Python template
176+
# Byte-compiled / optimized / DLL files
177+
178+
# C extensions
179+
180+
# Distribution / packaging
181+
wheels/
182+
MANIFEST
183+
184+
# PyInstaller
185+
# Usually these files are written by a python script from a template
186+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
187+
188+
# Installer logs
189+
190+
# Unit test / coverage reports
191+
*.cover
192+
193+
# Translations
194+
195+
# Django stuff:
196+
.static_storage/
197+
.media/
198+
local_settings.py
199+
200+
# Flask stuff:
201+
instance/
202+
.webassets-cache
203+
204+
# Scrapy stuff:
205+
.scrapy
206+
207+
# Sphinx documentation
208+
209+
# PyBuilder
210+
211+
# Jupyter Notebook
212+
.ipynb_checkpoints
213+
214+
# pyenv
215+
216+
# celery beat schedule file
217+
celerybeat-schedule
218+
219+
# SageMath parsed files
220+
*.sage.py
221+
222+
# Environments
223+
.env
224+
.venv
225+
venv/
226+
ENV/
227+
env.bak/
228+
venv.bak/
229+
230+
# Spyder project settings
231+
.spyderproject
232+
.spyproject
233+
234+
# Rope project settings
235+
.ropeproject
236+
237+
# mkdocs documentation
238+
/site
239+
240+
# mypy
241+
.mypy_cache/
242+
### Linux template
243+
*~
244+
245+
# temporary files which can be created if a process still has a handle open of a deleted file
246+
.fuse_hidden*
247+
248+
# KDE directory preferences
249+
.directory
250+
251+
# Linux trash folder which might appear on any partition or disk
252+
.Trash-*
253+
254+
# .nfs files are created when an open file is removed but is still being accessed
255+
.nfs*
256+
### SublimeText template
257+
# Cache files for Sublime Text
258+
*.tmlanguage.cache
259+
*.tmPreferences.cache
260+
*.stTheme.cache
261+
262+
# Workspace files are user-specific
263+
*.sublime-workspace
264+
265+
# Project files should be checked into the repository, unless a significant
266+
# proportion of contributors will probably not be using Sublime Text
267+
# *.sublime-project
268+
269+
# SFTP configuration file
270+
sftp-config.json
271+
272+
# Package control specific files
273+
Package Control.last-run
274+
Package Control.ca-list
275+
Package Control.ca-bundle
276+
Package Control.system-ca-bundle
277+
Package Control.cache/
278+
Package Control.ca-certs/
279+
Package Control.merged-ca-bundle
280+
Package Control.user-ca-bundle
281+
oscrypto-ca-bundle.crt
282+
bh_unicode_properties.cache
283+
284+
# Sublime-github package stores a github token in this file
285+
# https://packagecontrol.io/packages/sublime-github
286+
GitHub.sublime-settings

0 commit comments

Comments
 (0)