cashd 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. cashd-0.1.0/.coveragerc +2 -0
  2. cashd-0.1.0/.gitignore +167 -0
  3. cashd-0.1.0/LICENSE +21 -0
  4. cashd-0.1.0/PKG-INFO +62 -0
  5. cashd-0.1.0/README.md +9 -0
  6. cashd-0.1.0/notebooks/plot_studio.ipynb +2817 -0
  7. cashd-0.1.0/pyproject.toml +55 -0
  8. cashd-0.1.0/setup.cfg +4 -0
  9. cashd-0.1.0/src/cashd/__init__.py +0 -0
  10. cashd-0.1.0/src/cashd/__main__.css +188 -0
  11. cashd-0.1.0/src/cashd/app.py +500 -0
  12. cashd-0.1.0/src/cashd/assets/EurostileExtendedBlack.ttf +0 -0
  13. cashd-0.1.0/src/cashd/assets/ICO_LogoIcone.ico +0 -0
  14. cashd-0.1.0/src/cashd/assets/PNG_LogoFavicon.png +0 -0
  15. cashd-0.1.0/src/cashd/assets/SVG_ConfiguracaoAzul.svg +25 -0
  16. cashd-0.1.0/src/cashd/assets/SVG_ConfiguracaoBranco.svg +27 -0
  17. cashd-0.1.0/src/cashd/assets/SVG_ContasAzul.svg +25 -0
  18. cashd-0.1.0/src/cashd/assets/SVG_ContasBranco.svg +27 -0
  19. cashd-0.1.0/src/cashd/assets/SVG_DadosBranco.svg +28 -0
  20. cashd-0.1.0/src/cashd/assets/SVG_TransacaoAzul.svg +25 -0
  21. cashd-0.1.0/src/cashd/assets/SVG_TransacaoBranco.svg +27 -0
  22. cashd-0.1.0/src/cashd/assets/gh_banner-cashd.png +0 -0
  23. cashd-0.1.0/src/cashd/backup.py +295 -0
  24. cashd-0.1.0/src/cashd/configs/backup.ini +4 -0
  25. cashd-0.1.0/src/cashd/configs/logging.ini +0 -0
  26. cashd-0.1.0/src/cashd/db.py +511 -0
  27. cashd-0.1.0/src/cashd/pages/__init__.py +0 -0
  28. cashd-0.1.0/src/cashd/pages/analise.py +66 -0
  29. cashd-0.1.0/src/cashd/pages/configs.py +67 -0
  30. cashd-0.1.0/src/cashd/pages/contas.py +79 -0
  31. cashd-0.1.0/src/cashd/pages/dialogo.py +81 -0
  32. cashd-0.1.0/src/cashd/pages/transac.py +102 -0
  33. cashd-0.1.0/src/cashd/plot.py +157 -0
  34. cashd-0.1.0/src/cashd/startup.pyw +20 -0
  35. cashd-0.1.0/src/cashd.egg-info/PKG-INFO +62 -0
  36. cashd-0.1.0/src/cashd.egg-info/SOURCES.txt +40 -0
  37. cashd-0.1.0/src/cashd.egg-info/dependency_links.txt +1 -0
  38. cashd-0.1.0/src/cashd.egg-info/entry_points.txt +2 -0
  39. cashd-0.1.0/src/cashd.egg-info/requires.txt +13 -0
  40. cashd-0.1.0/src/cashd.egg-info/top_level.txt +1 -0
  41. cashd-0.1.0/tests/__init__.py +0 -0
  42. cashd-0.1.0/tests/test_backup.py +138 -0
@@ -0,0 +1,2 @@
1
+ [run]
2
+ omit = src/cashd/pages/*
cashd-0.1.0/.gitignore ADDED
@@ -0,0 +1,167 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ */__pycache__/*
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py,cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # Databases
86
+ *.db
87
+
88
+ # pyenv
89
+ # For a library or package, you might want to ignore these files since the code is
90
+ # intended to run in multiple environments; otherwise, check them in:
91
+ # .python-version
92
+
93
+ # pipenv
94
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
95
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
96
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
97
+ # install all needed dependencies.
98
+ #Pipfile.lock
99
+
100
+ # poetry
101
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
102
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
103
+ # commonly ignored for libraries.
104
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
105
+ #poetry.lock
106
+
107
+ # pdm
108
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
109
+ #pdm.lock
110
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
111
+ # in version control.
112
+ # https://pdm.fming.dev/#use-with-ide
113
+ .pdm.toml
114
+
115
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
116
+ __pypackages__/
117
+
118
+ # Celery stuff
119
+ celerybeat-schedule
120
+ celerybeat.pid
121
+
122
+ # SageMath parsed files
123
+ *.sage.py
124
+
125
+ # Environments
126
+ .env
127
+ .venv
128
+ env/
129
+ venv/
130
+ ENV/
131
+ env.bak/
132
+ venv.bak/
133
+
134
+ # Spyder project settings
135
+ .spyderproject
136
+ .spyproject
137
+
138
+ # Rope project settings
139
+ .ropeproject
140
+
141
+ # mkdocs documentation
142
+ /site
143
+
144
+ # mypy
145
+ .mypy_cache/
146
+ .dmypy.json
147
+ dmypy.json
148
+
149
+ # Pyre type checker
150
+ .pyre/
151
+
152
+ # pytype static type analyzer
153
+ .pytype/
154
+
155
+ # Cython debug symbols
156
+ cython_debug/
157
+
158
+ # databases
159
+ database.db
160
+
161
+ # PyCharm
162
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
163
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
164
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
165
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
166
+ #.idea/
167
+ .python-version
cashd-0.1.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Vitor Ferreira Lins
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.
cashd-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,62 @@
1
+ Metadata-Version: 2.1
2
+ Name: cashd
3
+ Version: 0.1.0
4
+ Summary: Manage a simple cash flow operations on different accounts locally.
5
+ Author-email: "Vitor F. Lins" <vflins@live.com>
6
+ License: MIT License
7
+
8
+ Copyright (c) 2024 Vitor Ferreira Lins
9
+
10
+ Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ of this software and associated documentation files (the "Software"), to deal
12
+ in the Software without restriction, including without limitation the rights
13
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ copies of the Software, and to permit persons to whom the Software is
15
+ furnished to do so, subject to the following conditions:
16
+
17
+ The above copyright notice and this permission notice shall be included in all
18
+ copies or substantial portions of the Software.
19
+
20
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+ SOFTWARE.
27
+
28
+ Keywords: cash-flow,ftp
29
+ Classifier: Topic :: Office/Business :: Financial :: Accounting
30
+ Classifier: Intended Audience :: Financial and Insurance Industry
31
+ Classifier: Intended Audience :: Customer Service
32
+ Classifier: Natural Language :: Portuguese (Brazilian)
33
+ Classifier: Programming Language :: Python :: 3
34
+ Classifier: Development Status :: 4 - Beta
35
+ Classifier: Operating System :: Microsoft :: Windows :: Windows 10
36
+ Classifier: Operating System :: Microsoft :: Windows :: Windows 11
37
+ Classifier: License :: OSI Approved :: MIT License
38
+ Requires-Python: >=3.8
39
+ Description-Content-Type: text/markdown
40
+ License-File: LICENSE
41
+ Requires-Dist: taipy==3.1.0
42
+ Requires-Dist: SQLAlchemy==2.0.25
43
+ Requires-Dist: pywebview==5.0.5
44
+ Requires-Dist: phonenumbers==8.13.31
45
+ Requires-Dist: pandas==2.2.0
46
+ Requires-Dist: pyshortcuts==1.9.0
47
+ Requires-Dist: plotly==5.22.0
48
+ Provides-Extra: dev
49
+ Requires-Dist: pytest-cov>=5.0.0; extra == "dev"
50
+ Requires-Dist: black>=24.4.2; extra == "dev"
51
+ Requires-Dist: ipykernel; extra == "dev"
52
+ Requires-Dist: nbformat; extra == "dev"
53
+
54
+ ![banner](https://raw.githubusercontent.com/VFLins/cashd/main/src/cashd/assets/gh_banner-cashd.png)
55
+
56
+ Regsitre o seu *cashflow* rapidamente, e tenha total controle sobre os seus dados!
57
+
58
+ [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
59
+
60
+ ## Como usar
61
+
62
+ Visite a [Wiki](https://github.com/VFLins/cashd/wiki) do projeto para mais instruções de uso e tutoriais.
cashd-0.1.0/README.md ADDED
@@ -0,0 +1,9 @@
1
+ ![banner](https://raw.githubusercontent.com/VFLins/cashd/main/src/cashd/assets/gh_banner-cashd.png)
2
+
3
+ Regsitre o seu *cashflow* rapidamente, e tenha total controle sobre os seus dados!
4
+
5
+ [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
6
+
7
+ ## Como usar
8
+
9
+ Visite a [Wiki](https://github.com/VFLins/cashd/wiki) do projeto para mais instruções de uso e tutoriais.