a b/.gitignore
1
.jekyll-cache/
2
Gemfile.lock  
3
*.bak
4
.gitattributes
5
.last_checked
6
.gitconfig
7
*.bak
8
*.log
9
*~
10
~*
11
_tmp*
12
tmp*
13
tags
14
15
# Byte-compiled / optimized / DLL files
16
__pycache__/
17
*.py[cod]
18
*$py.class
19
20
# C extensions
21
*.so
22
23
# Distribution / packaging
24
.Python
25
env/
26
build/
27
develop-eggs/
28
dist/
29
downloads/
30
eggs/
31
.eggs/
32
lib/
33
lib64/
34
parts/
35
sdist/
36
var/
37
wheels/
38
*.egg-info/
39
.installed.cfg
40
*.egg
41
42
# PyInstaller
43
#  Usually these files are written by a python script from a template
44
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
45
*.manifest
46
*.spec
47
48
# Installer logs
49
pip-log.txt
50
pip-delete-this-directory.txt
51
52
# Unit test / coverage reports
53
htmlcov/
54
.tox/
55
.coverage
56
.coverage.*
57
.cache
58
nosetests.xml
59
coverage.xml
60
*.cover
61
.hypothesis/
62
63
# Translations
64
*.mo
65
*.pot
66
67
# Django stuff:
68
*.log
69
local_settings.py
70
71
# Flask stuff:
72
instance/
73
.webassets-cache
74
75
# Scrapy stuff:
76
.scrapy
77
78
# Sphinx documentation
79
docs/_build/
80
81
# PyBuilder
82
target/
83
84
# Jupyter Notebook
85
.ipynb_checkpoints
86
87
# pyenv
88
.python-version
89
90
# celery beat schedule file
91
celerybeat-schedule
92
93
# SageMath parsed files
94
*.sage.py
95
96
# dotenv
97
.env
98
99
# virtualenv
100
.venv
101
venv/
102
ENV/
103
104
# Spyder project settings
105
.spyderproject
106
.spyproject
107
108
# Rope project settings
109
.ropeproject
110
111
# mkdocs documentation
112
/site
113
114
# mypy
115
.mypy_cache/
116
117
.vscode
118
*.swp
119
120
# osx generated files
121
.DS_Store
122
.DS_Store?
123
.Trashes
124
ehthumbs.db
125
Thumbs.db
126
.idea
127
128
# pytest
129
.pytest_cache
130
131
# tools/trust-doc-nbs
132
docs_src/.last_checked
133
134
# symlinks to fastai
135
docs_src/fastai
136
tools/fastai
137
138
# link checker
139
checklink/cookies.txt
140
141
# .gitconfig is now autogenerated
142
.gitconfig
143