├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── check-links.yml │ ├── check-order.yml │ └── update-toc.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FAQ.md ├── LICENSE ├── README.md └── scripts ├── LICENSE └── check_order.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: pythonecuador 2 | open_collective: pythonecuador 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | # To get started with Dependabot version updates, you'll need to specify which 2 | # package ecosystems to update and where the package manifests are located. 3 | # Please see the documentation for all configuration options: 4 | # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates 5 | 6 | version: 2 7 | updates: 8 | - package-ecosystem: "github-actions" 9 | directory: "/" # Location of package manifests 10 | schedule: 11 | interval: "weekly" 12 | -------------------------------------------------------------------------------- /.github/workflows/check-links.yml: -------------------------------------------------------------------------------- 1 | name: Check links 2 | 3 | on: 4 | pull_request: 5 | push: 6 | branches: 7 | - main 8 | 9 | jobs: 10 | check-links: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v4 14 | - uses: actions/setup-node@v4 15 | with: 16 | node-version: lts/* 17 | 18 | - name: Install markdown-link-check 19 | run: npm install -g markdown-link-check 20 | 21 | - name: Check links 22 | run: markdown-link-check ./README.md 23 | -------------------------------------------------------------------------------- /.github/workflows/check-order.yml: -------------------------------------------------------------------------------- 1 | name: Check list order 2 | 3 | on: 4 | pull_request: 5 | push: 6 | branches: 7 | - main 8 | 9 | jobs: 10 | check-order: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v4 14 | - uses: actions/setup-python@v5 15 | with: 16 | python-version: '3.11' 17 | 18 | - name: Add Spanish locale 19 | run: sudo locale-gen es_ES.UTF-8 20 | 21 | - run: python scripts/check_order.py 22 | -------------------------------------------------------------------------------- /.github/workflows/update-toc.yml: -------------------------------------------------------------------------------- 1 | name: Update table of contents 2 | on: 3 | push: 4 | branches: 5 | - main 6 | jobs: 7 | update-toc: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - uses: actions/checkout@v4 11 | - uses: actions/setup-node@v4 12 | with: 13 | node-version: lts/* 14 | 15 | - name: Install doctoc 16 | run: npm install -g doctoc 17 | 18 | - name: Update table of contents 19 | run: doctoc --maxlevel 3 README.md 20 | 21 | - name: Commit changes 22 | run: | 23 | git config user.name github-actions 24 | git config user.email github-actions@github.com 25 | git add README.md 26 | git commit -m 'Update table of contents' || echo 'No changes to commit' 27 | git push 28 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by https://www.toptal.com/developers/gitignore/api/node,python 2 | 3 | ### Node ### 4 | # Logs 5 | logs 6 | *.log 7 | npm-debug.log* 8 | yarn-debug.log* 9 | yarn-error.log* 10 | lerna-debug.log* 11 | .pnpm-debug.log* 12 | 13 | # Diagnostic reports (https://nodejs.org/api/report.html) 14 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 15 | 16 | # Runtime data 17 | pids 18 | *.pid 19 | *.seed 20 | *.pid.lock 21 | 22 | # Directory for instrumented libs generated by jscoverage/JSCover 23 | lib-cov 24 | 25 | # Coverage directory used by tools like istanbul 26 | coverage 27 | *.lcov 28 | 29 | # nyc test coverage 30 | .nyc_output 31 | 32 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 33 | .grunt 34 | 35 | # Bower dependency directory (https://bower.io/) 36 | bower_components 37 | 38 | # node-waf configuration 39 | .lock-wscript 40 | 41 | # Compiled binary addons (https://nodejs.org/api/addons.html) 42 | build/Release 43 | 44 | # Dependency directories 45 | node_modules/ 46 | jspm_packages/ 47 | 48 | # Snowpack dependency directory (https://snowpack.dev/) 49 | web_modules/ 50 | 51 | # TypeScript cache 52 | *.tsbuildinfo 53 | 54 | # Optional npm cache directory 55 | .npm 56 | 57 | # Optional eslint cache 58 | .eslintcache 59 | 60 | # Optional stylelint cache 61 | .stylelintcache 62 | 63 | # Microbundle cache 64 | .rpt2_cache/ 65 | .rts2_cache_cjs/ 66 | .rts2_cache_es/ 67 | .rts2_cache_umd/ 68 | 69 | # Optional REPL history 70 | .node_repl_history 71 | 72 | # Output of 'npm pack' 73 | *.tgz 74 | 75 | # Yarn Integrity file 76 | .yarn-integrity 77 | 78 | # dotenv environment variable files 79 | .env 80 | .env.development.local 81 | .env.test.local 82 | .env.production.local 83 | .env.local 84 | 85 | # parcel-bundler cache (https://parceljs.org/) 86 | .cache 87 | .parcel-cache 88 | 89 | # Next.js build output 90 | .next 91 | out 92 | 93 | # Nuxt.js build / generate output 94 | .nuxt 95 | dist 96 | 97 | # Gatsby files 98 | .cache/ 99 | # Comment in the public line in if your project uses Gatsby and not Next.js 100 | # https://nextjs.org/blog/next-9-1#public-directory-support 101 | # public 102 | 103 | # vuepress build output 104 | .vuepress/dist 105 | 106 | # vuepress v2.x temp and cache directory 107 | .temp 108 | 109 | # Docusaurus cache and generated files 110 | .docusaurus 111 | 112 | # Serverless directories 113 | .serverless/ 114 | 115 | # FuseBox cache 116 | .fusebox/ 117 | 118 | # DynamoDB Local files 119 | .dynamodb/ 120 | 121 | # TernJS port file 122 | .tern-port 123 | 124 | # Stores VSCode versions used for testing VSCode extensions 125 | .vscode-test 126 | 127 | # yarn v2 128 | .yarn/cache 129 | .yarn/unplugged 130 | .yarn/build-state.yml 131 | .yarn/install-state.gz 132 | .pnp.* 133 | 134 | ### Node Patch ### 135 | # Serverless Webpack directories 136 | .webpack/ 137 | 138 | # Optional stylelint cache 139 | 140 | # SvelteKit build / generate output 141 | .svelte-kit 142 | 143 | ### Python ### 144 | # Byte-compiled / optimized / DLL files 145 | __pycache__/ 146 | *.py[cod] 147 | *$py.class 148 | 149 | # C extensions 150 | *.so 151 | 152 | # Distribution / packaging 153 | .Python 154 | build/ 155 | develop-eggs/ 156 | dist/ 157 | downloads/ 158 | eggs/ 159 | .eggs/ 160 | lib/ 161 | lib64/ 162 | parts/ 163 | sdist/ 164 | var/ 165 | wheels/ 166 | share/python-wheels/ 167 | *.egg-info/ 168 | .installed.cfg 169 | *.egg 170 | MANIFEST 171 | 172 | # PyInstaller 173 | # Usually these files are written by a python script from a template 174 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 175 | *.manifest 176 | *.spec 177 | 178 | # Installer logs 179 | pip-log.txt 180 | pip-delete-this-directory.txt 181 | 182 | # Unit test / coverage reports 183 | htmlcov/ 184 | .tox/ 185 | .nox/ 186 | .coverage 187 | .coverage.* 188 | nosetests.xml 189 | coverage.xml 190 | *.cover 191 | *.py,cover 192 | .hypothesis/ 193 | .pytest_cache/ 194 | cover/ 195 | 196 | # Translations 197 | *.mo 198 | *.pot 199 | 200 | # Django stuff: 201 | local_settings.py 202 | db.sqlite3 203 | db.sqlite3-journal 204 | 205 | # Flask stuff: 206 | instance/ 207 | .webassets-cache 208 | 209 | # Scrapy stuff: 210 | .scrapy 211 | 212 | # Sphinx documentation 213 | docs/_build/ 214 | 215 | # PyBuilder 216 | .pybuilder/ 217 | target/ 218 | 219 | # Jupyter Notebook 220 | .ipynb_checkpoints 221 | 222 | # IPython 223 | profile_default/ 224 | ipython_config.py 225 | 226 | # pyenv 227 | # For a library or package, you might want to ignore these files since the code is 228 | # intended to run in multiple environments; otherwise, check them in: 229 | # .python-version 230 | 231 | # pipenv 232 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 233 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 234 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 235 | # install all needed dependencies. 236 | #Pipfile.lock 237 | 238 | # poetry 239 | # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. 240 | # This is especially recommended for binary packages to ensure reproducibility, and is more 241 | # commonly ignored for libraries. 242 | # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control 243 | #poetry.lock 244 | 245 | # pdm 246 | # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. 247 | #pdm.lock 248 | # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it 249 | # in version control. 250 | # https://pdm.fming.dev/#use-with-ide 251 | .pdm.toml 252 | 253 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm 254 | __pypackages__/ 255 | 256 | # Celery stuff 257 | celerybeat-schedule 258 | celerybeat.pid 259 | 260 | # SageMath parsed files 261 | *.sage.py 262 | 263 | # Environments 264 | .venv 265 | env/ 266 | venv/ 267 | ENV/ 268 | env.bak/ 269 | venv.bak/ 270 | 271 | # Spyder project settings 272 | .spyderproject 273 | .spyproject 274 | 275 | # Rope project settings 276 | .ropeproject 277 | 278 | # mkdocs documentation 279 | /site 280 | 281 | # mypy 282 | .mypy_cache/ 283 | .dmypy.json 284 | dmypy.json 285 | 286 | # Pyre type checker 287 | .pyre/ 288 | 289 | # pytype static type analyzer 290 | .pytype/ 291 | 292 | # Cython debug symbols 293 | cython_debug/ 294 | 295 | # PyCharm 296 | # JetBrains specific template is maintained in a separate JetBrains.gitignore that can 297 | # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore 298 | # and can be added to the global gitignore or merged into this file. For a more nuclear 299 | # option (not recommended) you can uncomment the following to ignore the entire idea folder. 300 | #.idea/ 301 | 302 | ### Python Patch ### 303 | # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration 304 | poetry.toml 305 | 306 | # ruff 307 | .ruff_cache/ 308 | 309 | # LSP config files 310 | pyrightconfig.json 311 | 312 | # End of https://www.toptal.com/developers/gitignore/api/node,python 313 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | Ten en cuenta que este proyecto sigue un Código de Conducta. 2 | Todos los participantes deben comprometerse a seguir este código en todas las interacciones relacionadas con el proyecto. 3 | Puedes leer el Código de Conducta completo en . 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Guía de Contribución 2 | 3 | ¡Gracias por considerar contribuir al Listado de Software Libre y Open Source del Ecuador! 4 | Tu participación ayuda a destacar y promover el software de código abierto desarrollado por ecuatorianos y comunidades dedicadas a ello. 5 | Recuerda seguir nuestro [código de conducta](CODE_OF_CONDUCT.md). 6 | 7 | ## Agregando un nuevo proyecto 8 | 9 | Si conoces un proyecto de código abierto o libre desarrollado por alguien de Ecuador que aún no está en la lista, ¡agrégralo! 10 | Ayuda a ampliar nuestra colección y a promover el trabajo de la comunidad ecuatoriana. 11 | 12 | Para agregar un nuevo proyecto sigue los siguientes pasos: 13 | 14 | - Asegúrate que el proyecto no se encuentra en la lista. 15 | - Asegúrate que no existe un [pull request abierto](https://github.com/pythonecuador/floss-ecuador/pulls) que está agregando el mismo proyecto. 16 | - Asegúrate que el proyecto tenga una licencia que sea de [software libre](https://www.gnu.org/licenses/license-list.html) u [open source](https://opensource.org/licenses/). 17 | Si el proyecto no tiene una licencia, contacta al autor y ¡sugiérele que agregue una! 18 | - Asegúrate que el proyecto no viola nuestro [código de conducta](CODE_OF_CONDUCT.md). 19 | - Asegúrate que el autor o mantenedor principal sea ecuatoriano, o que viva en Ecuador por un tiempo considerable. 20 | - Coloca el proyecto en la categoría que creas más conveniente, si ninguna de las existentes se ajusta al proyecto ¡siéntete libre de proponer una nueva categoría! 21 | - Sigue el formato: `- [nombre del proyecto](enlace al repositorio) - [emoji] Descripción breve del proyecto.`. 22 | Donde el emoji indica el estado actual del proyecto, puede ser: 23 | - Sin emoji: proyectos que están siendo mantenidos. 24 | - 🚧: proyectos que aún están en progreso. 25 | - 🗃️: proyectos que han sido archivados, que ya no están siendo mantenidos. 26 | 27 | ## Agregando una nueva comunidad 28 | 29 | Si conoces una comunidad de código abierto o libre que aún no está en la lista, ¡agrégrala! 30 | Ayuda a ampliar nuestra colección y a promover el trabajo de la comunidad ecuatoriana. 31 | 32 | Para agregar una nueva comunidad sigue los siguientes pasos: 33 | 34 | - Asegúrate que la comunidad no se encuentra en la lista. 35 | - Asegúrate que no existe un [pull request abierto](https://github.com/pythonecuador/floss-ecuador/pulls) que está agregando la misma comunidad. 36 | - Asegúrate que la comunidad sea relacionada al código abierto o software libre. 37 | - Asegúrate que la comunidad sea ecuatoriana o que sus actividades se realicen en Ecuador. 38 | - Asegúrate que la comunidad no viola nuestro [código de conducta](CODE_OF_CONDUCT.md). 39 | - Agrega una breve descripción de la comunidad y un enlace a su sitio web o comunidad. 40 | - Sigue el formato: `- [nombre de la comunidad](enlace a la comunidad) - Descripción breve de la comunidad.`. 41 | 42 | ## Actualizando el listado 43 | 44 | Si hay proyectos en la lista que necesitan actualizaciones o correcciones, siéntete libre de enviar mejoras. 45 | Esto podría incluir actualizar enlaces, descripciones o cualquier otra información relevante. 46 | -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- 1 | # Preguntas frecuentes 2 | 3 | ## No vivo en Ecuador, ¿puedo agregar mi proyecto? 4 | 5 | Si tienes nacionalidad Ecuatoriana, puedes agregar tu proyecto. 6 | 7 | ## No tengo nacionalidad Ecuatoriana, pero vivo en Ecuador, ¿puedo agregar mi proyecto? 8 | 9 | Si resides en Ecuador por un tiempo considerable, considérate Ecuatoriano! 10 | 11 | ## No quiero que mi proyecto aparezca en la lista, ¿cómo lo remuevo? 12 | 13 | Si eres el dueño del proyecto, puedes abrir un issue, un pull request, 14 | o contactarnos a para removerlo. 15 | Debes proveer información que demuestre que eres el dueño del proyecto 16 | y opcionalmente una razón por la que quieres removerlo. 17 | 18 | ## No quiero que mi comunidad aparezca en la lista, ¿cómo la remuevo? 19 | 20 | Si eres uno de los organizadores de la comunidad, puedes abrir un issue, 21 | un pull request, o contactarnos a para removerla. 22 | Debes proveer información que demuestre que eres uno de los organizadores 23 | de la comunidad y opcionalmente una razón por la que quieres removerla. 24 | 25 | ## ¿Puedo agregar mi proyecto que no es de código abierto o libre? 26 | 27 | No, este listado es exclusivo para proyectos de código abierto y libre 28 | desarrollados por Ecuatorianos. 29 | 30 | ## Mi comunidad trata sobre tecnología, ¿puedo agregarla? 31 | 32 | Si tu comunidad tiene un enfoque o énfasis en el software libre u open source, puedes agregarla. 33 | 34 | ## Tengo un blog, canal, o red social dedicada al código abierto y libre, ¿puedo agregarla? 35 | 36 | Por ahora no, este listado es exclusivo para proyectos de software y comunidades. 37 | Pero en el futuro podríamos ampliar este listado para agregar más contenido relacionado al código abierto y libre. 38 | Siéntete libre de crear un issue para discutirlo. 39 | 40 | ## Puedo agregar todos los proyectos de un mismo autor? 41 | 42 | Si, mientras consideres que sean relevantes o que aporten valor a la comunidad. 43 | 44 | ## No considero que mi proyecto sea de buena calidad (no tiene documentación, tests, buen código, etc), ¿puedo agregarlo? 45 | 46 | No estamos para juzgar la calidad de los proyectos, 47 | si crees que le puede ser útil a alguien más, agrégalo. 48 | 49 | Listando tu proyecto puede que atraiga a más colaboradores que te ayuden a mejorar la calidad de tu proyecto. 50 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Attribution 4.0 International 2 | 3 | ======================================================================= 4 | 5 | Creative Commons Corporation ("Creative Commons") is not a law firm and 6 | does not provide legal services or legal advice. Distribution of 7 | Creative Commons public licenses does not create a lawyer-client or 8 | other relationship. Creative Commons makes its licenses and related 9 | information available on an "as-is" basis. Creative Commons gives no 10 | warranties regarding its licenses, any material licensed under their 11 | terms and conditions, or any related information. Creative Commons 12 | disclaims all liability for damages resulting from their use to the 13 | fullest extent possible. 14 | 15 | Using Creative Commons Public Licenses 16 | 17 | Creative Commons public licenses provide a standard set of terms and 18 | conditions that creators and other rights holders may use to share 19 | original works of authorship and other material subject to copyright 20 | and certain other rights specified in the public license below. The 21 | following considerations are for informational purposes only, are not 22 | exhaustive, and do not form part of our licenses. 23 | 24 | Considerations for licensors: Our public licenses are 25 | intended for use by those authorized to give the public 26 | permission to use material in ways otherwise restricted by 27 | copyright and certain other rights. Our licenses are 28 | irrevocable. Licensors should read and understand the terms 29 | and conditions of the license they choose before applying it. 30 | Licensors should also secure all rights necessary before 31 | applying our licenses so that the public can reuse the 32 | material as expected. Licensors should clearly mark any 33 | material not subject to the license. This includes other CC- 34 | licensed material, or material used under an exception or 35 | limitation to copyright. More considerations for licensors: 36 | wiki.creativecommons.org/Considerations_for_licensors 37 | 38 | Considerations for the public: By using one of our public 39 | licenses, a licensor grants the public permission to use the 40 | licensed material under specified terms and conditions. If 41 | the licensor's permission is not necessary for any reason--for 42 | example, because of any applicable exception or limitation to 43 | copyright--then that use is not regulated by the license. Our 44 | licenses grant only permissions under copyright and certain 45 | other rights that a licensor has authority to grant. Use of 46 | the licensed material may still be restricted for other 47 | reasons, including because others have copyright or other 48 | rights in the material. A licensor may make special requests, 49 | such as asking that all changes be marked or described. 50 | Although not required by our licenses, you are encouraged to 51 | respect those requests where reasonable. More considerations 52 | for the public: 53 | wiki.creativecommons.org/Considerations_for_licensees 54 | 55 | ======================================================================= 56 | 57 | Creative Commons Attribution 4.0 International Public License 58 | 59 | By exercising the Licensed Rights (defined below), You accept and agree 60 | to be bound by the terms and conditions of this Creative Commons 61 | Attribution 4.0 International Public License ("Public License"). To the 62 | extent this Public License may be interpreted as a contract, You are 63 | granted the Licensed Rights in consideration of Your acceptance of 64 | these terms and conditions, and the Licensor grants You such rights in 65 | consideration of benefits the Licensor receives from making the 66 | Licensed Material available under these terms and conditions. 67 | 68 | 69 | Section 1 -- Definitions. 70 | 71 | a. Adapted Material means material subject to Copyright and Similar 72 | Rights that is derived from or based upon the Licensed Material 73 | and in which the Licensed Material is translated, altered, 74 | arranged, transformed, or otherwise modified in a manner requiring 75 | permission under the Copyright and Similar Rights held by the 76 | Licensor. For purposes of this Public License, where the Licensed 77 | Material is a musical work, performance, or sound recording, 78 | Adapted Material is always produced where the Licensed Material is 79 | synched in timed relation with a moving image. 80 | 81 | b. Adapter's License means the license You apply to Your Copyright 82 | and Similar Rights in Your contributions to Adapted Material in 83 | accordance with the terms and conditions of this Public License. 84 | 85 | c. Copyright and Similar Rights means copyright and/or similar rights 86 | closely related to copyright including, without limitation, 87 | performance, broadcast, sound recording, and Sui Generis Database 88 | Rights, without regard to how the rights are labeled or 89 | categorized. For purposes of this Public License, the rights 90 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 91 | Rights. 92 | 93 | d. Effective Technological Measures means those measures that, in the 94 | absence of proper authority, may not be circumvented under laws 95 | fulfilling obligations under Article 11 of the WIPO Copyright 96 | Treaty adopted on December 20, 1996, and/or similar international 97 | agreements. 98 | 99 | e. Exceptions and Limitations means fair use, fair dealing, and/or 100 | any other exception or limitation to Copyright and Similar Rights 101 | that applies to Your use of the Licensed Material. 102 | 103 | f. Licensed Material means the artistic or literary work, database, 104 | or other material to which the Licensor applied this Public 105 | License. 106 | 107 | g. Licensed Rights means the rights granted to You subject to the 108 | terms and conditions of this Public License, which are limited to 109 | all Copyright and Similar Rights that apply to Your use of the 110 | Licensed Material and that the Licensor has authority to license. 111 | 112 | h. Licensor means the individual(s) or entity(ies) granting rights 113 | under this Public License. 114 | 115 | i. Share means to provide material to the public by any means or 116 | process that requires permission under the Licensed Rights, such 117 | as reproduction, public display, public performance, distribution, 118 | dissemination, communication, or importation, and to make material 119 | available to the public including in ways that members of the 120 | public may access the material from a place and at a time 121 | individually chosen by them. 122 | 123 | j. Sui Generis Database Rights means rights other than copyright 124 | resulting from Directive 96/9/EC of the European Parliament and of 125 | the Council of 11 March 1996 on the legal protection of databases, 126 | as amended and/or succeeded, as well as other essentially 127 | equivalent rights anywhere in the world. 128 | 129 | k. You means the individual or entity exercising the Licensed Rights 130 | under this Public License. Your has a corresponding meaning. 131 | 132 | 133 | Section 2 -- Scope. 134 | 135 | a. License grant. 136 | 137 | 1. Subject to the terms and conditions of this Public License, 138 | the Licensor hereby grants You a worldwide, royalty-free, 139 | non-sublicensable, non-exclusive, irrevocable license to 140 | exercise the Licensed Rights in the Licensed Material to: 141 | 142 | a. reproduce and Share the Licensed Material, in whole or 143 | in part; and 144 | 145 | b. produce, reproduce, and Share Adapted Material. 146 | 147 | 2. Exceptions and Limitations. For the avoidance of doubt, where 148 | Exceptions and Limitations apply to Your use, this Public 149 | License does not apply, and You do not need to comply with 150 | its terms and conditions. 151 | 152 | 3. Term. The term of this Public License is specified in Section 153 | 6(a). 154 | 155 | 4. Media and formats; technical modifications allowed. The 156 | Licensor authorizes You to exercise the Licensed Rights in 157 | all media and formats whether now known or hereafter created, 158 | and to make technical modifications necessary to do so. The 159 | Licensor waives and/or agrees not to assert any right or 160 | authority to forbid You from making technical modifications 161 | necessary to exercise the Licensed Rights, including 162 | technical modifications necessary to circumvent Effective 163 | Technological Measures. For purposes of this Public License, 164 | simply making modifications authorized by this Section 2(a) 165 | (4) never produces Adapted Material. 166 | 167 | 5. Downstream recipients. 168 | 169 | a. Offer from the Licensor -- Licensed Material. Every 170 | recipient of the Licensed Material automatically 171 | receives an offer from the Licensor to exercise the 172 | Licensed Rights under the terms and conditions of this 173 | Public License. 174 | 175 | b. No downstream restrictions. You may not offer or impose 176 | any additional or different terms or conditions on, or 177 | apply any Effective Technological Measures to, the 178 | Licensed Material if doing so restricts exercise of the 179 | Licensed Rights by any recipient of the Licensed 180 | Material. 181 | 182 | 6. No endorsement. Nothing in this Public License constitutes or 183 | may be construed as permission to assert or imply that You 184 | are, or that Your use of the Licensed Material is, connected 185 | with, or sponsored, endorsed, or granted official status by, 186 | the Licensor or others designated to receive attribution as 187 | provided in Section 3(a)(1)(A)(i). 188 | 189 | b. Other rights. 190 | 191 | 1. Moral rights, such as the right of integrity, are not 192 | licensed under this Public License, nor are publicity, 193 | privacy, and/or other similar personality rights; however, to 194 | the extent possible, the Licensor waives and/or agrees not to 195 | assert any such rights held by the Licensor to the limited 196 | extent necessary to allow You to exercise the Licensed 197 | Rights, but not otherwise. 198 | 199 | 2. Patent and trademark rights are not licensed under this 200 | Public License. 201 | 202 | 3. To the extent possible, the Licensor waives any right to 203 | collect royalties from You for the exercise of the Licensed 204 | Rights, whether directly or through a collecting society 205 | under any voluntary or waivable statutory or compulsory 206 | licensing scheme. In all other cases the Licensor expressly 207 | reserves any right to collect such royalties. 208 | 209 | 210 | Section 3 -- License Conditions. 211 | 212 | Your exercise of the Licensed Rights is expressly made subject to the 213 | following conditions. 214 | 215 | a. Attribution. 216 | 217 | 1. If You Share the Licensed Material (including in modified 218 | form), You must: 219 | 220 | a. retain the following if it is supplied by the Licensor 221 | with the Licensed Material: 222 | 223 | i. identification of the creator(s) of the Licensed 224 | Material and any others designated to receive 225 | attribution, in any reasonable manner requested by 226 | the Licensor (including by pseudonym if 227 | designated); 228 | 229 | ii. a copyright notice; 230 | 231 | iii. a notice that refers to this Public License; 232 | 233 | iv. a notice that refers to the disclaimer of 234 | warranties; 235 | 236 | v. a URI or hyperlink to the Licensed Material to the 237 | extent reasonably practicable; 238 | 239 | b. indicate if You modified the Licensed Material and 240 | retain an indication of any previous modifications; and 241 | 242 | c. indicate the Licensed Material is licensed under this 243 | Public License, and include the text of, or the URI or 244 | hyperlink to, this Public License. 245 | 246 | 2. You may satisfy the conditions in Section 3(a)(1) in any 247 | reasonable manner based on the medium, means, and context in 248 | which You Share the Licensed Material. For example, it may be 249 | reasonable to satisfy the conditions by providing a URI or 250 | hyperlink to a resource that includes the required 251 | information. 252 | 253 | 3. If requested by the Licensor, You must remove any of the 254 | information required by Section 3(a)(1)(A) to the extent 255 | reasonably practicable. 256 | 257 | 4. If You Share Adapted Material You produce, the Adapter's 258 | License You apply must not prevent recipients of the Adapted 259 | Material from complying with this Public License. 260 | 261 | 262 | Section 4 -- Sui Generis Database Rights. 263 | 264 | Where the Licensed Rights include Sui Generis Database Rights that 265 | apply to Your use of the Licensed Material: 266 | 267 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 268 | to extract, reuse, reproduce, and Share all or a substantial 269 | portion of the contents of the database; 270 | 271 | b. if You include all or a substantial portion of the database 272 | contents in a database in which You have Sui Generis Database 273 | Rights, then the database in which You have Sui Generis Database 274 | Rights (but not its individual contents) is Adapted Material; and 275 | 276 | c. You must comply with the conditions in Section 3(a) if You Share 277 | all or a substantial portion of the contents of the database. 278 | 279 | For the avoidance of doubt, this Section 4 supplements and does not 280 | replace Your obligations under this Public License where the Licensed 281 | Rights include other Copyright and Similar Rights. 282 | 283 | 284 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 285 | 286 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 287 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 288 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 289 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 290 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 291 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 292 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 293 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 294 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 295 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 296 | 297 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 298 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 299 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 300 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 301 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 302 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 303 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 304 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 305 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 306 | 307 | c. The disclaimer of warranties and limitation of liability provided 308 | above shall be interpreted in a manner that, to the extent 309 | possible, most closely approximates an absolute disclaimer and 310 | waiver of all liability. 311 | 312 | 313 | Section 6 -- Term and Termination. 314 | 315 | a. This Public License applies for the term of the Copyright and 316 | Similar Rights licensed here. However, if You fail to comply with 317 | this Public License, then Your rights under this Public License 318 | terminate automatically. 319 | 320 | b. Where Your right to use the Licensed Material has terminated under 321 | Section 6(a), it reinstates: 322 | 323 | 1. automatically as of the date the violation is cured, provided 324 | it is cured within 30 days of Your discovery of the 325 | violation; or 326 | 327 | 2. upon express reinstatement by the Licensor. 328 | 329 | For the avoidance of doubt, this Section 6(b) does not affect any 330 | right the Licensor may have to seek remedies for Your violations 331 | of this Public License. 332 | 333 | c. For the avoidance of doubt, the Licensor may also offer the 334 | Licensed Material under separate terms or conditions or stop 335 | distributing the Licensed Material at any time; however, doing so 336 | will not terminate this Public License. 337 | 338 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 339 | License. 340 | 341 | 342 | Section 7 -- Other Terms and Conditions. 343 | 344 | a. The Licensor shall not be bound by any additional or different 345 | terms or conditions communicated by You unless expressly agreed. 346 | 347 | b. Any arrangements, understandings, or agreements regarding the 348 | Licensed Material not stated herein are separate from and 349 | independent of the terms and conditions of this Public License. 350 | 351 | 352 | Section 8 -- Interpretation. 353 | 354 | a. For the avoidance of doubt, this Public License does not, and 355 | shall not be interpreted to, reduce, limit, restrict, or impose 356 | conditions on any use of the Licensed Material that could lawfully 357 | be made without permission under this Public License. 358 | 359 | b. To the extent possible, if any provision of this Public License is 360 | deemed unenforceable, it shall be automatically reformed to the 361 | minimum extent necessary to make it enforceable. If the provision 362 | cannot be reformed, it shall be severed from this Public License 363 | without affecting the enforceability of the remaining terms and 364 | conditions. 365 | 366 | c. No term or condition of this Public License will be waived and no 367 | failure to comply consented to unless expressly agreed to by the 368 | Licensor. 369 | 370 | d. Nothing in this Public License constitutes or may be interpreted 371 | as a limitation upon, or waiver of, any privileges and immunities 372 | that apply to the Licensor or You, including from the legal 373 | processes of any jurisdiction or authority. 374 | 375 | 376 | ======================================================================= 377 | 378 | Creative Commons is not a party to its public licenses. 379 | Notwithstanding, Creative Commons may elect to apply one of its public 380 | licenses to material it publishes and in those instances will be 381 | considered the “Licensor.” The text of the Creative Commons public 382 | licenses is dedicated to the public domain under the CC0 Public Domain 383 | Dedication. Except for the limited purpose of indicating that material 384 | is shared under a Creative Commons public license or as otherwise 385 | permitted by the Creative Commons policies published at 386 | creativecommons.org/policies, Creative Commons does not authorize the 387 | use of the trademark "Creative Commons" or any other trademark or logo 388 | of Creative Commons without its prior written consent including, 389 | without limitation, in connection with any unauthorized modifications 390 | to any of its public licenses or any other arrangements, 391 | understandings, or agreements concerning use of licensed material. For 392 | the avoidance of doubt, this paragraph does not form part of the public 393 | licenses. 394 | 395 | Creative Commons may be contacted at creativecommons.org. 396 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Software Libre y Open Source del Ecuador 2 | 3 | ¡Descubre el mundo del software libre y open source del Ecuador! 4 | 5 | Este proyecto tiene como objetivo principal reunir y destacar software de código abierto y libre desarrollado por Ecuatorianos o sobre Ecuador, y comunidades del Ecuador dedicadas a ello. 6 | Aquí encontrarás una colección diversa de proyectos de software que reflejan el espíritu de colaboración y la creatividad de la comunidad de código abierto en Ecuador. 7 | 8 | ## Contenido 9 | 10 | 11 | 12 | 13 | 14 | 15 | - [Software](#software) 16 | - [Automatización](#automatizaci%C3%B3n) 17 | - [Comunidades](#comunidades) 18 | - [Django](#django) 19 | - [Editores de código y plugins](#editores-de-c%C3%B3digo-y-plugins) 20 | - [Facturación](#facturaci%C3%B3n) 21 | - [Firma electrónica](#firma-electr%C3%B3nica) 22 | - [Hacking](#hacking) 23 | - [IoT (Internet de las cosas)](#iot-internet-de-las-cosas) 24 | - [Odoo](#odoo) 25 | - [Sistemas operativos](#sistemas-operativos) 26 | - [Utilidades](#utilidades) 27 | - [Video juegos](#video-juegos) 28 | - [Otros](#otros) 29 | - [Comunidades](#comunidades-1) 30 | - [Cómo contribuir](#c%C3%B3mo-contribuir) 31 | - [FAQ](#faq) 32 | - [Licencia](#licencia) 33 | - [TODO](#todo) 34 | 35 | 36 | 37 | ## Software 38 | 39 | Lista de software de código abierto y libre desarrollado por Ecuatorianos. 40 | Algunos proyectos tienen un emoji que indica su estado actual: 41 | 42 | - Sin emoji: proyectos que están siendo mantenidos. 43 | - 🚧: proyectos que aún están en progreso. 44 | - 🗃️: proyectos que han sido archivados, que ya no están siendo mantenidos. 45 | 46 | ### Automatización 47 | 48 | - [automatizacion-sri-facturas](https://github.com/luisprgr/automatizacion-sri-facturas) - Automatización de la creación de facturas en "SRI & Yo en Línea". 49 | - [automatizacion-sri-iva](https://github.com/luisprgr/automatizacion-sri-iva) - 🚧 Automatización de la declaración Personal del IVA en el SRI. 50 | 51 | ### Comunidades 52 | 53 | - [javascript.ec](https://github.com/javascriptecuador/web) - Página web de la comunidad de JavaScript Ecuador. 54 | - [python.ec](https://github.com/pythonecuador/pythonecuador.github.io) - Página web de la comunidad de Python Ecuador. 55 | 56 | ### Django 57 | 58 | [Categoría vacía] 59 | 60 | ### Editores de código y plugins 61 | 62 | - [fzf-checkout.vim](https://github.com/stsewd/fzf-checkout.vim/) - Plugin de Vim/Neovim para gestionar los branches y tag de Git con fzf. 63 | - [spofity.nvim](https://github.com/stsewd/spotify.nvim/) - Integración de Spotify para Neovim. 64 | 65 | ### Facturación 66 | 67 | - [open-factura](https://github.com/miguelangarano/open-factura/) - Facturación electrónica para Ecuador compatible con la ficha técnica para comprobantes electrónicos emitido por el SRI. 68 | 69 | ### Firma electrónica 70 | 71 | - [validador-firmaec](https://github.com/ragutierrez/validador-firmaec) - Validador de documentos firmados electrónicamente usando la API del MINTEL. 72 | 73 | ### Hacking 74 | 75 | [Categoría vacía] 76 | 77 | ### IoT (Internet de las cosas) 78 | 79 | [Categoría vacía] 80 | 81 | ### Odoo 82 | 83 | - [Localizacion Ecuatoriana OCA](https://github.com/OCA/l10n-ecuador) - Localizacion Ecuatoriana para Odoo Comunity V15(Facturas, NC, ND, Guias de remision, Retenciones). Repositorio Oficial para OCA, con funcionalidades estables. 84 | - [Localizacion Ecuatoriana](https://github.com/Odoo-EC/l10n-ecuador) - Localizacion Ecuatoriana para Odoo Comunity V15(Facturas, NC, ND, Guias de remision, Retenciones). Repositorio con funcionalidades bajo desarrollo o no mergeadas en OCA aun. 85 | - [Instalador de Odoo con Doodba/Docker](https://github.com/Odoo-EC/odoo_installer) - Script y asistente para instalar docker e instancias de Odoo con la localizacion Ecuatoriana y generacion de SSL con Let's Encrypt. 86 | 87 | ### Sistemas operativos 88 | 89 | [Categoría vacía] 90 | 91 | ### Utilidades 92 | 93 | - [ieee-pandoc-template](https://github.com/stsewd/ieee-pandoc-template) - Template del formato IEEE para pandoc. 94 | 95 | ### Video juegos 96 | 97 | [Categoría vacía] 98 | 99 | ### Otros 100 | 101 | - [lira](https://github.com/pythonecuador/lira) - 🚧 Tutoriales interactivos en tu terminal. 102 | - [tree-sitter-comment](https://github.com/stsewd/tree-sitter-comment/) - Grammar de tags de comentarios para tree-sitter. 103 | - [tree-sitter-rst](https://github.com/stsewd/tree-sitter-rst/) - Grammar de reStructuredText para tree-sitter. 104 | 105 | ## Comunidades 106 | 107 | Lista de comunidades del Ecuador dedicadas o con un enfoque hacia el software libre y open source. 108 | 109 | - [JavaScript Ecuador](https://javascript.ec): Comunidad sobre el lenguaje de programación JavaScript. 110 | - [Python Ecuador](https://python.ec): Comunidad sobre el lenguaje de programación Python. 111 | 112 | ## Cómo contribuir 113 | 114 | Puedes leer la guía de contribución [aquí](CONTRIBUTING.md). 115 | 116 | ## FAQ 117 | 118 | Puedes encontrar una lista de preguntas frecuentes [aquí](FAQ.md). 119 | 120 | ## Licencia 121 | 122 | El contenido de este proyecto, excepto por la carpeta `scripts`, 123 | está bajo la licencia [CC-BY-4.0](LICENSE). 124 | 125 | El contenido de la carpeta `scripts` está bajo la licencia [MIT](scripts/LICENSE). 126 | 127 | ## TODO 128 | 129 | - [ ] Agregar más proyectos. 130 | - [ ] Agregar más comunidades. 131 | - [ ] Agregar más categorías. 132 | - [x] Agregar un script para generar la tabla de contenido. 133 | - [x] Agregar un script para chequear los links. 134 | - [ ] Agregar un script para chequear la ortografía. 135 | - [ ] Agregar un script para generar un archivo JSON/CSV con los proyectos y comunidades. 136 | - [ ] Agregar un script que ordene los proyectos y comunidades de forma alfabética. 137 | - [x] CI. 138 | - [ ] Elegir otro nombre? Tal vez awesome-floss-ecuador? y aplicar para awesome-lists? 139 | - [ ] Crear un badge para mostrar en los proyectos y comunidades listadas? 140 | - [x] Ampliar el enfoque a todo lo relacionado al código abierto y libre del Ecuador? 141 | - [ ] Decidir los términos a usar: código abierto, open source o código libre, free software o software libre, etc. 142 | - [ ] Agregar templates para agregar un nuevo proyecto o comunidad, PR, issue, etc 143 | -------------------------------------------------------------------------------- /scripts/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Santos Gallegos 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /scripts/check_order.py: -------------------------------------------------------------------------------- 1 | """ 2 | This script checks that the categories in the README.md file are sorted. 3 | 4 | License: MIT License (see scripts/LICENSE). 5 | """ 6 | 7 | from pathlib import Path 8 | import locale 9 | import re 10 | import sys 11 | 12 | TITLE_REGEX = re.compile(r"^(#+) (.+)$") 13 | 14 | 15 | class InvalidCategoryError(Exception): 16 | pass 17 | 18 | 19 | class CategoryNotFoundError(Exception): 20 | pass 21 | 22 | 23 | class SubCategoriesNotFoundError(Exception): 24 | pass 25 | 26 | 27 | class IncorrectLastSubcategoryError(Exception): 28 | pass 29 | 30 | 31 | class IncorrectSubcategoriesOrderError(Exception): 32 | pass 33 | 34 | 35 | def extract_subcategories(content: str, main_category: str): 36 | match = TITLE_REGEX.match(main_category) 37 | if not match: 38 | raise InvalidCategoryError 39 | 40 | lines = content.splitlines() 41 | main_category_level = len(match.group(1)) 42 | try: 43 | main_category_start = lines.index(main_category) 44 | except ValueError: 45 | raise CategoryNotFoundError 46 | 47 | sub_categories = [] 48 | for i in range(main_category_start + 1, len(lines)): 49 | line = lines[i] 50 | match = TITLE_REGEX.match(line) 51 | if not match: 52 | continue 53 | 54 | header_level = len(match.group(1)) 55 | title = match.group(2) 56 | 57 | if header_level > main_category_level + 1: 58 | # It's a sub-sub-category, skip it. 59 | continue 60 | 61 | if header_level <= main_category_level: 62 | # It's a new category, stop. 63 | break 64 | 65 | sub_categories.append(title) 66 | 67 | return sub_categories 68 | 69 | 70 | def check_subcategories_order( 71 | content: str, main_category: str, last_subcategory: str | None = None 72 | ): 73 | sub_categories = extract_subcategories(content, main_category) 74 | if not sub_categories: 75 | raise SubCategoriesNotFoundError 76 | 77 | if last_subcategory: 78 | index_last_subcategory = None 79 | try: 80 | index_last_subcategory = sub_categories.index(last_subcategory) 81 | except ValueError: 82 | # TODO: should this be an error? 83 | print( 84 | f'Categoría "{main_category}" no tiene la sub-categoría "{last_subcategory}".' 85 | ) 86 | 87 | if index_last_subcategory: 88 | if index_last_subcategory != len(sub_categories) - 1: 89 | raise IncorrectLastSubcategoryError 90 | sub_categories.pop() 91 | 92 | # Sort categories using spanish locale. 93 | locale.setlocale(locale.LC_ALL, "es_ES.utf8") 94 | sorted_categories = sorted(sub_categories, key=locale.strxfrm) 95 | # Reset locale. 96 | locale.setlocale(locale.LC_ALL, "") 97 | 98 | if sorted_categories == sub_categories: 99 | return 100 | 101 | # TODO: Move these messages to the caller. 102 | print(f'Las sub-categorías de "{main_category}" no están ordenadas.') 103 | 104 | for i in range(len(sub_categories)): 105 | if sub_categories[i] != sorted_categories[i]: 106 | print(f"Primera categoría desordenada: {sub_categories[i]}") 107 | print(f"En su lugar debería estar: {sorted_categories[i]}") 108 | break 109 | 110 | print("Orden correcto:") 111 | for category in sorted_categories: 112 | print(f"- {category}") 113 | 114 | raise IncorrectSubcategoriesOrderError 115 | 116 | 117 | def main(): 118 | file = Path("README.md") 119 | content = file.read_text() 120 | category = "## Software" 121 | last_subcategory = "Otros" 122 | try: 123 | check_subcategories_order(content, category, last_subcategory) 124 | print("Sub-categorías están ordenadas correctamente.") 125 | except InvalidCategoryError: 126 | print(f'Categoría "{category}" no es un título válido (## Título).') 127 | sys.exit(1) 128 | except CategoryNotFoundError: 129 | print(f'Categoría "{category}" no encontrada.') 130 | sys.exit(1) 131 | except SubCategoriesNotFoundError: 132 | print(f'Categoría "{category}" no tiene sub-categorías.') 133 | sys.exit(1) 134 | except Exception as e: 135 | print(e) 136 | sys.exit(1) 137 | 138 | 139 | if __name__ == "__main__": 140 | main() 141 | --------------------------------------------------------------------------------