Skip to content

Commit 7b29d9d

Browse files
authored
Merge pull request #1 from systemallica/update
Update
2 parents 8285d97 + 0d5181e commit 7b29d9d

File tree

15 files changed

+796
-380
lines changed

15 files changed

+796
-380
lines changed

.gitignore

Lines changed: 211 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
### Python template
12
# Byte-compiled / optimized / DLL files
23
__pycache__/
34
*.py[cod]
@@ -8,7 +9,6 @@ __pycache__/
89

910
# Distribution / packaging
1011
.Python
11-
env/
1212
build/
1313
develop-eggs/
1414
dist/
@@ -20,6 +20,7 @@ lib64/
2020
parts/
2121
sdist/
2222
var/
23+
wheels/
2324
*.egg-info/
2425
.installed.cfg
2526
*.egg
@@ -42,48 +43,237 @@ htmlcov/
4243
.cache
4344
nosetests.xml
4445
coverage.xml
45-
*,cover
46+
*.cover
4647
.hypothesis/
4748

4849
# Translations
4950
*.mo
5051
*.pot
5152

5253
# Django stuff:
53-
*.log
54-
local_settings.py
55-
56-
# Flask stuff:
57-
instance/
58-
.webassets-cache
59-
60-
# Scrapy stuff:
61-
.scrapy
54+
staticfiles/
6255

6356
# Sphinx documentation
6457
docs/_build/
6558

6659
# PyBuilder
6760
target/
6861

69-
# IPython Notebook
70-
.ipynb_checkpoints
71-
7262
# pyenv
7363
.python-version
7464

7565
# celery beat schedule file
7666
celerybeat-schedule
7767

78-
# dotenv
68+
# Environments
69+
.envrc
7970
.env
80-
81-
# virtualenv
71+
.venv
72+
env/
8273
venv/
8374
ENV/
8475

85-
# Spyder project settings
86-
.spyderproject
87-
8876
# Rope project settings
89-
.ropeproject
77+
.ropeproject
78+
79+
# mkdocs documentation
80+
/site
81+
82+
# mypy
83+
.mypy_cache/
84+
85+
86+
### Node template
87+
# Logs
88+
logs
89+
*.log
90+
npm-debug.log*
91+
yarn-debug.log*
92+
yarn-error.log*
93+
94+
# Runtime data
95+
pids
96+
*.pid
97+
*.seed
98+
*.pid.lock
99+
100+
# Directory for instrumented libs generated by jscoverage/JSCover
101+
lib-cov
102+
103+
# Coverage directory used by tools like istanbul
104+
coverage
105+
106+
# nyc test coverage
107+
.nyc_output
108+
109+
# Bower dependency directory (https://bower.io/)
110+
bower_components
111+
112+
# node-waf configuration
113+
.lock-wscript
114+
115+
# Compiled binary addons (http://nodejs.org/api/addons.html)
116+
build/Release
117+
118+
# Dependency directories
119+
node_modules/
120+
jspm_packages/
121+
122+
# Typescript v1 declaration files
123+
typings/
124+
125+
# Optional npm cache directory
126+
.npm
127+
128+
# Optional eslint cache
129+
.eslintcache
130+
131+
# Optional REPL history
132+
.node_repl_history
133+
134+
# Output of 'npm pack'
135+
*.tgz
136+
137+
# Yarn Integrity file
138+
.yarn-integrity
139+
140+
141+
### Linux template
142+
*~
143+
144+
# temporary files which can be created if a process still has a handle open of a deleted file
145+
.fuse_hidden*
146+
147+
# KDE directory preferences
148+
.directory
149+
150+
# Linux trash folder which might appear on any partition or disk
151+
.Trash-*
152+
153+
# .nfs files are created when an open file is removed but is still being accessed
154+
.nfs*
155+
156+
157+
### VisualStudioCode template
158+
.vscode/*
159+
!.vscode/settings.json
160+
!.vscode/tasks.json
161+
!.vscode/launch.json
162+
!.vscode/extensions.json
163+
164+
165+
166+
167+
168+
### Windows template
169+
# Windows thumbnail cache files
170+
Thumbs.db
171+
ehthumbs.db
172+
ehthumbs_vista.db
173+
174+
# Dump file
175+
*.stackdump
176+
177+
# Folder config file
178+
Desktop.ini
179+
180+
# Recycle Bin used on file shares
181+
$RECYCLE.BIN/
182+
183+
# Windows Installer files
184+
*.cab
185+
*.msi
186+
*.msm
187+
*.msp
188+
189+
# Windows shortcuts
190+
*.lnk
191+
192+
193+
### macOS template
194+
# General
195+
*.DS_Store
196+
.AppleDouble
197+
.LSOverride
198+
199+
# Icon must end with two \r
200+
Icon
201+
202+
# Thumbnails
203+
._*
204+
205+
# Files that might appear in the root of a volume
206+
.DocumentRevisions-V100
207+
.fseventsd
208+
.Spotlight-V100
209+
.TemporaryItems
210+
.Trashes
211+
.VolumeIcon.icns
212+
.com.apple.timemachine.donotpresent
213+
214+
# Directories potentially created on remote AFP share
215+
.AppleDB
216+
.AppleDesktop
217+
Network Trash Folder
218+
Temporary Items
219+
.apdisk
220+
221+
222+
### SublimeText template
223+
# Cache files for Sublime Text
224+
*.tmlanguage.cache
225+
*.tmPreferences.cache
226+
*.stTheme.cache
227+
228+
# Workspace files are user-specific
229+
*.sublime-workspace
230+
231+
# Project files should be checked into the repository, unless a significant
232+
# proportion of contributors will probably not be using Sublime Text
233+
# *.sublime-project
234+
235+
# SFTP configuration file
236+
sftp-config.json
237+
238+
# Package control specific files
239+
Package Control.last-run
240+
Package Control.ca-list
241+
Package Control.ca-bundle
242+
Package Control.system-ca-bundle
243+
Package Control.cache/
244+
Package Control.ca-certs/
245+
Package Control.merged-ca-bundle
246+
Package Control.user-ca-bundle
247+
oscrypto-ca-bundle.crt
248+
bh_unicode_properties.cache
249+
250+
# Sublime-github package stores a github token in this file
251+
# https://packagecontrol.io/packages/sublime-github
252+
GitHub.sublime-settings
253+
254+
255+
### Vim template
256+
# Swap
257+
[._]*.s[a-v][a-z]
258+
[._]*.sw[a-p]
259+
[._]s[a-v][a-z]
260+
[._]sw[a-p]
261+
262+
# Session
263+
Session.vim
264+
265+
# Temporary
266+
.netrwhist
267+
268+
# VSCode
269+
.vscode
270+
271+
# Auto-generated tag files
272+
tags
273+
274+
### Project template
275+
.envs
276+
dmenu/media/
277+
.pytest_cache/
278+
.idea/
279+
.ipynb_checkpoints/

.pre-commit-config.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
repos:
2+
- repo: https://github.com/pycqa/isort
3+
rev: 5.6.4
4+
hooks:
5+
- id: isort
6+
args:
7+
- "--profile"
8+
- black
9+
name: isort
10+
- repo: https://github.com/ambv/black
11+
rev: 20.8b1
12+
hooks:
13+
- id: black
14+
language_version: python3

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2016 David Díaz
3+
Copyright (c) 2020 Andrés Reverón Molina
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)