Skip to content

Commit 154c03b

Browse files
committed
First Commit VERSION: "0.9b13"
0 parents  commit 154c03b

15 files changed

Lines changed: 2200 additions & 0 deletions

.gitignore

Lines changed: 310 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,310 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/pycharm,linux,python
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=pycharm,linux,python
3+
4+
### Linux ###
5+
*~
6+
7+
# temporary files which can be created if a process still has a handle open of a deleted file
8+
.fuse_hidden*
9+
10+
# KDE directory preferences
11+
.directory
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+
### PyCharm ###
21+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
22+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
23+
24+
/.idea/
25+
26+
# User-specific stuff
27+
.idea/**/workspace.xml
28+
.idea/**/tasks.xml
29+
.idea/**/usage.statistics.xml
30+
.idea/**/dictionaries
31+
.idea/**/shelf
32+
33+
# AWS User-specific
34+
.idea/**/aws.xml
35+
36+
# Generated files
37+
.idea/**/contentModel.xml
38+
39+
# Sensitive or high-churn files
40+
.idea/**/dataSources/
41+
.idea/**/dataSources.ids
42+
.idea/**/dataSources.local.xml
43+
.idea/**/sqlDataSources.xml
44+
.idea/**/dynamic.xml
45+
.idea/**/uiDesigner.xml
46+
.idea/**/dbnavigator.xml
47+
48+
# Gradle
49+
.idea/**/gradle.xml
50+
.idea/**/libraries
51+
52+
# Gradle and Maven with auto-import
53+
# When using Gradle or Maven with auto-import, you should exclude module files,
54+
# since they will be recreated, and may cause churn. Uncomment if using
55+
# auto-import.
56+
# .idea/artifacts
57+
# .idea/compiler.xml
58+
# .idea/jarRepositories.xml
59+
# .idea/modules.xml
60+
# .idea/*.iml
61+
# .idea/modules
62+
# *.iml
63+
# *.ipr
64+
65+
# CMake
66+
cmake-build-*/
67+
68+
# Mongo Explorer plugin
69+
.idea/**/mongoSettings.xml
70+
71+
# File-based project format
72+
*.iws
73+
74+
# IntelliJ
75+
out/
76+
77+
# mpeltonen/sbt-idea plugin
78+
.idea_modules/
79+
80+
# JIRA plugin
81+
atlassian-ide-plugin.xml
82+
83+
# Cursive Clojure plugin
84+
.idea/replstate.xml
85+
86+
# SonarLint plugin
87+
.idea/sonarlint/
88+
89+
# Crashlytics plugin (for Android Studio and IntelliJ)
90+
com_crashlytics_export_strings.xml
91+
crashlytics.properties
92+
crashlytics-build.properties
93+
fabric.properties
94+
95+
# Editor-based Rest Client
96+
.idea/httpRequests
97+
98+
# Android studio 3.1+ serialized cache file
99+
.idea/caches/build_file_checksums.ser
100+
101+
### PyCharm Patch ###
102+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
103+
104+
# *.iml
105+
# modules.xml
106+
# .idea/misc.xml
107+
# *.ipr
108+
109+
# Sonarlint plugin
110+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
111+
.idea/**/sonarlint/
112+
113+
# SonarQube Plugin
114+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
115+
.idea/**/sonarIssues.xml
116+
117+
# Markdown Navigator plugin
118+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
119+
.idea/**/markdown-navigator.xml
120+
.idea/**/markdown-navigator-enh.xml
121+
.idea/**/markdown-navigator/
122+
123+
# Cache file creation bug
124+
# See https://youtrack.jetbrains.com/issue/JBR-2257
125+
.idea/$CACHE_FILE$
126+
127+
# CodeStream plugin
128+
# https://plugins.jetbrains.com/plugin/12206-codestream
129+
.idea/codestream.xml
130+
131+
# Azure Toolkit for IntelliJ plugin
132+
# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
133+
.idea/**/azureSettings.xml
134+
135+
### Python ###
136+
# Byte-compiled / optimized / DLL files
137+
__pycache__/
138+
*.py[cod]
139+
*$py.class
140+
141+
# C extensions
142+
*.so
143+
144+
# Distribution / packaging
145+
.Python
146+
build/
147+
develop-eggs/
148+
dist/
149+
downloads/
150+
eggs/
151+
.eggs/
152+
lib/
153+
lib64/
154+
parts/
155+
sdist/
156+
var/
157+
wheels/
158+
share/python-wheels/
159+
*.egg-info/
160+
.installed.cfg
161+
*.egg
162+
MANIFEST
163+
164+
# PyInstaller
165+
# Usually these files are written by a python script from a template
166+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
167+
*.manifest
168+
*.spec
169+
170+
# Installer logs
171+
pip-log.txt
172+
pip-delete-this-directory.txt
173+
174+
# Unit test / coverage reports
175+
htmlcov/
176+
.tox/
177+
.nox/
178+
.coverage
179+
.coverage.*
180+
.cache
181+
nosetests.xml
182+
coverage.xml
183+
*.cover
184+
*.py,cover
185+
.hypothesis/
186+
.pytest_cache/
187+
cover/
188+
189+
# Translations
190+
*.mo
191+
*.pot
192+
193+
# Django stuff:
194+
*.log
195+
local_settings.py
196+
db.sqlite3
197+
db.sqlite3-journal
198+
199+
# Flask stuff:
200+
instance/
201+
.webassets-cache
202+
203+
# Scrapy stuff:
204+
.scrapy
205+
206+
# Sphinx documentation
207+
docs/_build/
208+
209+
# PyBuilder
210+
.pybuilder/
211+
target/
212+
213+
# Jupyter Notebook
214+
.ipynb_checkpoints
215+
216+
# IPython
217+
profile_default/
218+
ipython_config.py
219+
220+
# pyenv
221+
# For a library or package, you might want to ignore these files since the code is
222+
# intended to run in multiple environments; otherwise, check them in:
223+
# .python-version
224+
225+
# pipenv
226+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
227+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
228+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
229+
# install all needed dependencies.
230+
#Pipfile.lock
231+
232+
# poetry
233+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
234+
# This is especially recommended for binary packages to ensure reproducibility, and is more
235+
# commonly ignored for libraries.
236+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
237+
#poetry.lock
238+
239+
# pdm
240+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
241+
#pdm.lock
242+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
243+
# in version control.
244+
# https://pdm.fming.dev/#use-with-ide
245+
.pdm.toml
246+
247+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
248+
__pypackages__/
249+
250+
# Celery stuff
251+
celerybeat-schedule
252+
celerybeat.pid
253+
254+
# SageMath parsed files
255+
*.sage.py
256+
257+
# Environments
258+
.env
259+
.venv
260+
env/
261+
venv/
262+
ENV/
263+
env.bak/
264+
venv.bak/
265+
266+
# Spyder project settings
267+
.spyderproject
268+
.spyproject
269+
270+
# Rope project settings
271+
.ropeproject
272+
273+
# mkdocs documentation
274+
/site
275+
276+
# mypy
277+
.mypy_cache/
278+
.dmypy.json
279+
dmypy.json
280+
281+
# Pyre type checker
282+
.pyre/
283+
284+
# pytype static type analyzer
285+
.pytype/
286+
287+
# Cython debug symbols
288+
cython_debug/
289+
290+
# PyCharm
291+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
292+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
293+
# and can be added to the global gitignore or merged into this file. For a more nuclear
294+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
295+
#.idea/
296+
297+
### Python Patch ###
298+
# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
299+
poetry.toml
300+
301+
# ruff
302+
.ruff_cache/
303+
304+
# LSP config files
305+
pyrightconfig.json
306+
307+
# End of https://www.toptal.com/developers/gitignore/api/pycharm,linux,python
308+
309+
/poetry.lock
310+

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [0.9b13] - 2023-06-23
9+
Public beta release 13
10+
11+
## [0.9b2] - 2023-06-21
12+
Private beta release 2
13+
14+
## [0.0.1] - 2021-03-08
15+
16+
- Bolivarcoin DAO
17+
Proposal: [Propuesta DAO a superbloque 764,336 para desarrollo API y APPs periféricas alrededor del núcleo](https://bit.ly/Superbloque764336)
18+

LICENSE

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Copyright (c) 2018-2023 <Asdrúbal Velásquez Lagrave>
2+
3+
Permission is hereby granted, free of charge, to any person obtaining
4+
a copy of this software and associated documentation files (the
5+
"Software"), to deal in the Software without restriction, including
6+
without limitation the rights to use, copy, modify, merge, publish,
7+
distribute, sublicense, and/or sell copies of the Software, and to
8+
permit persons to whom the Software is furnished to do so, subject to
9+
the following conditions:
10+
11+
The above copyright notice and this permission notice shall be
12+
included in all copies or substantial portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 commit comments

Comments
 (0)