Skip to content

Commit fb8136d

Browse files
authored
Merge pull request #1 from iamcryptoki/0.1.2
0.1.2
2 parents a16fbe8 + f1d33bc commit fb8136d

File tree

7 files changed

+80124
-61
lines changed

7 files changed

+80124
-61
lines changed

.gitignore

+218-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,221 @@
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/macos,windows,linux,python,visualstudiocode,virtualenv
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,windows,linux,python,visualstudiocode,virtualenv
4+
5+
### Linux ###
6+
*~
7+
8+
# temporary files which can be created if a process still has a handle open of a deleted file
9+
.fuse_hidden*
10+
11+
# KDE directory preferences
12+
.directory
13+
14+
# Linux trash folder which might appear on any partition or disk
15+
.Trash-*
16+
17+
# .nfs files are created when an open file is removed but is still being accessed
18+
.nfs*
19+
20+
### macOS ###
21+
# General
122
.DS_Store
2-
.vscode/
23+
.AppleDouble
24+
.LSOverride
25+
26+
# Icon must end with two \r
27+
Icon
28+
29+
# Thumbnails
30+
._*
31+
32+
# Files that might appear in the root of a volume
33+
.DocumentRevisions-V100
34+
.fseventsd
35+
.Spotlight-V100
36+
.TemporaryItems
37+
.Trashes
38+
.VolumeIcon.icns
39+
.com.apple.timemachine.donotpresent
40+
41+
# Directories potentially created on remote AFP share
42+
.AppleDB
43+
.AppleDesktop
44+
Network Trash Folder
45+
Temporary Items
46+
.apdisk
47+
48+
### Python ###
49+
# Byte-compiled / optimized / DLL files
350
__pycache__/
51+
*.py[cod]
52+
*$py.class
53+
54+
# C extensions
55+
*.so
56+
57+
# Distribution / packaging
58+
.Python
59+
build/
60+
develop-eggs/
461
dist/
5-
*.pyc
6-
passcat.egg-info/
62+
downloads/
63+
eggs/
64+
.eggs/
65+
lib/
66+
lib64/
67+
parts/
68+
sdist/
69+
var/
70+
wheels/
71+
pip-wheel-metadata/
72+
share/python-wheels/
73+
*.egg-info/
74+
.installed.cfg
75+
*.egg
76+
MANIFEST
77+
78+
# PyInstaller
79+
# Usually these files are written by a python script from a template
80+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
81+
*.manifest
82+
*.spec
83+
84+
# Installer logs
85+
pip-log.txt
86+
pip-delete-this-directory.txt
87+
88+
# Unit test / coverage reports
89+
htmlcov/
90+
.tox/
91+
.nox/
92+
.coverage
93+
.coverage.*
94+
.cache
95+
nosetests.xml
96+
coverage.xml
97+
*.cover
98+
.hypothesis/
99+
.pytest_cache/
100+
101+
# Translations
102+
*.mo
103+
*.pot
104+
105+
# Django stuff:
106+
*.log
107+
local_settings.py
108+
db.sqlite3
109+
110+
# Flask stuff:
111+
instance/
112+
.webassets-cache
113+
114+
# Scrapy stuff:
115+
.scrapy
116+
117+
# Sphinx documentation
118+
docs/_build/
119+
120+
# PyBuilder
121+
target/
122+
123+
# Jupyter Notebook
124+
.ipynb_checkpoints
125+
126+
# IPython
127+
profile_default/
128+
ipython_config.py
129+
130+
# pyenv
131+
.python-version
132+
133+
# pipenv
134+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
135+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
136+
# having no cross-platform support, pipenv may install dependencies that don’t work, or not
137+
# install all needed dependencies.
138+
#Pipfile.lock
139+
140+
# celery beat schedule file
141+
celerybeat-schedule
142+
143+
# SageMath parsed files
144+
*.sage.py
145+
146+
# Environments
147+
.env
148+
.venv
149+
env/
150+
venv/
151+
ENV/
152+
env.bak/
153+
venv.bak/
154+
155+
# Spyder project settings
156+
.spyderproject
157+
.spyproject
158+
159+
# Rope project settings
160+
.ropeproject
161+
162+
# mkdocs documentation
163+
/site
164+
165+
# mypy
166+
.mypy_cache/
167+
.dmypy.json
168+
dmypy.json
169+
170+
# Pyre type checker
171+
.pyre/
172+
173+
### VirtualEnv ###
174+
# Virtualenv
175+
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
176+
[Bb]in
177+
[Ii]nclude
178+
[Ll]ib
179+
[Ll]ib64
180+
[Ll]ocal
181+
[Ss]cripts
182+
pyvenv.cfg
183+
pip-selfcheck.json
184+
185+
### VisualStudioCode ###
186+
.vscode/*
187+
!.vscode/settings.json
188+
!.vscode/tasks.json
189+
!.vscode/launch.json
190+
!.vscode/extensions.json
191+
192+
### VisualStudioCode Patch ###
193+
# Ignore all local history of files
194+
.history
195+
196+
### Windows ###
197+
# Windows thumbnail cache files
198+
Thumbs.db
199+
ehthumbs.db
200+
ehthumbs_vista.db
201+
202+
# Dump file
203+
*.stackdump
204+
205+
# Folder config file
206+
[Dd]esktop.ini
207+
208+
# Recycle Bin used on file shares
209+
$RECYCLE.BIN/
210+
211+
# Windows Installer files
212+
*.cab
213+
*.msi
214+
*.msix
215+
*.msm
216+
*.msp
217+
218+
# Windows shortcuts
219+
*.lnk
220+
221+
# End of https://www.toptal.com/developers/gitignore/api/macos,windows,linux,python,visualstudiocode,virtualenv

LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2017 Galou Gentil
3+
Copyright (c) 2020 Galou Gentil
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

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Eff
3131
English
3232
French
3333
German
34+
Indonesian
3435
Italian
3536
Spanish
3637
```

README.txt

-52
This file was deleted.

passcat/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.1"
1+
__version__ = "0.1.2"

0 commit comments

Comments
 (0)