monopyly 1.4.4__py3-none-any.whl → 1.4.5__py3-none-any.whl
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.
- monopyly/__init__.py +2 -1
- monopyly/_version.py +2 -2
- monopyly/auth/blueprint.py +1 -0
- monopyly/auth/routes.py +1 -0
- monopyly/auth/tools.py +1 -0
- monopyly/banking/accounts.py +2 -1
- monopyly/banking/actions.py +1 -0
- monopyly/banking/banks.py +1 -0
- monopyly/banking/blueprint.py +1 -0
- monopyly/banking/filters.py +1 -0
- monopyly/banking/forms.py +2 -1
- monopyly/banking/routes.py +1 -0
- monopyly/banking/transactions.py +1 -0
- monopyly/cli/apps.py +1 -0
- monopyly/common/forms/_forms.py +3 -2
- monopyly/common/forms/fields.py +10 -0
- monopyly/common/forms/utils.py +2 -1
- monopyly/common/forms/validators.py +1 -0
- monopyly/common/transactions.py +2 -1
- monopyly/common/utils.py +1 -0
- monopyly/config/default_settings.py +1 -0
- monopyly/config/settings.py +1 -0
- monopyly/core/actions.py +1 -0
- monopyly/core/blueprint.py +1 -0
- monopyly/core/context_processors.py +1 -0
- monopyly/core/filters.py +3 -2
- monopyly/core/internal_transactions.py +1 -0
- monopyly/core/routes.py +1 -0
- monopyly/credit/accounts.py +1 -0
- monopyly/credit/actions.py +1 -0
- monopyly/credit/blueprint.py +1 -0
- monopyly/credit/cards.py +1 -0
- monopyly/credit/forms.py +14 -6
- monopyly/credit/routes.py +1 -0
- monopyly/credit/statements.py +1 -0
- monopyly/credit/transactions/__init__.py +1 -0
- monopyly/credit/transactions/_transactions.py +1 -0
- monopyly/database/__init__.py +2 -1
- monopyly/database/models.py +14 -0
- monopyly/templates/banking/account_summaries.html +1 -1
- monopyly/templates/banking/transactions_table/expanded_row_content.html +1 -1
- monopyly/templates/index.html +1 -1
- {monopyly-1.4.4.dist-info → monopyly-1.4.5.dist-info}/METADATA +6 -6
- {monopyly-1.4.4.dist-info → monopyly-1.4.5.dist-info}/RECORD +48 -48
- {monopyly-1.4.4.dist-info → monopyly-1.4.5.dist-info}/WHEEL +0 -0
- {monopyly-1.4.4.dist-info → monopyly-1.4.5.dist-info}/entry_points.txt +0 -0
- {monopyly-1.4.4.dist-info → monopyly-1.4.5.dist-info}/licenses/COPYING +0 -0
- {monopyly-1.4.4.dist-info → monopyly-1.4.5.dist-info}/licenses/LICENSE +0 -0
monopyly/__init__.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Run a development server for the Monopyly app.
|
|
3
3
|
"""
|
|
4
|
+
|
|
4
5
|
from flask import Flask
|
|
5
6
|
|
|
6
7
|
from monopyly.config import DevelopmentConfig, ProductionConfig
|
|
@@ -38,7 +39,7 @@ def register_blueprints(app):
|
|
|
38
39
|
"""
|
|
39
40
|
Register blueprints with the app.
|
|
40
41
|
|
|
41
|
-
|
|
42
|
+
Notes
|
|
42
43
|
-----
|
|
43
44
|
Blueprints are imported in this function to avoid loading modules
|
|
44
45
|
that require database models before those models have been set up
|
monopyly/_version.py
CHANGED
monopyly/auth/blueprint.py
CHANGED
monopyly/auth/routes.py
CHANGED
monopyly/auth/tools.py
CHANGED
monopyly/banking/accounts.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Tools for interacting with bank accounts in the database.
|
|
3
3
|
"""
|
|
4
|
+
|
|
4
5
|
import sqlalchemy.sql.functions as sql_func
|
|
5
6
|
from authanor.database.handler import DatabaseViewHandler
|
|
6
7
|
from werkzeug.exceptions import abort
|
|
@@ -57,7 +58,7 @@ class BankAccountTypeHandler(
|
|
|
57
58
|
query = query.join(BankAccount).join(Bank).distinct()
|
|
58
59
|
# Get only types for the specified bank
|
|
59
60
|
query = query.where(Bank.id == bank_id)
|
|
60
|
-
account_types = cls._db.session.
|
|
61
|
+
account_types = cls._db.session.scalars(query)
|
|
61
62
|
return account_types
|
|
62
63
|
|
|
63
64
|
@classmethod
|
monopyly/banking/actions.py
CHANGED
monopyly/banking/banks.py
CHANGED
monopyly/banking/blueprint.py
CHANGED
monopyly/banking/filters.py
CHANGED
monopyly/banking/forms.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Generate banking forms for the user to complete.
|
|
3
3
|
"""
|
|
4
|
+
|
|
4
5
|
from wtforms.fields import BooleanField, FieldList, FormField, StringField, SubmitField
|
|
5
6
|
from wtforms.validators import DataRequired, Optional
|
|
6
7
|
|
|
@@ -162,7 +163,7 @@ class BankTransactionForm(TransactionForm):
|
|
|
162
163
|
last_four_digits = LastFourDigitsField(
|
|
163
164
|
"Last Four Digits", validators=[DataRequired()]
|
|
164
165
|
)
|
|
165
|
-
type_name = StringField("
|
|
166
|
+
type_name = StringField("Account Type", validators=[DataRequired()])
|
|
166
167
|
|
|
167
168
|
def get_account(self):
|
|
168
169
|
"""Get the bank account described by the form data."""
|
monopyly/banking/routes.py
CHANGED
monopyly/banking/transactions.py
CHANGED
monopyly/cli/apps.py
CHANGED
monopyly/common/forms/_forms.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
General form constructions.
|
|
3
3
|
"""
|
|
4
|
+
|
|
4
5
|
from abc import ABC, abstractmethod
|
|
5
6
|
|
|
6
7
|
from flask_wtf import FlaskForm
|
|
@@ -33,8 +34,8 @@ class EntryForm(FlaskForm, metaclass=AbstractEntryFormMixinMeta):
|
|
|
33
34
|
"""
|
|
34
35
|
Generate a duplicate prepopulated form.
|
|
35
36
|
|
|
36
|
-
|
|
37
|
-
|
|
37
|
+
Notes
|
|
38
|
+
-----
|
|
38
39
|
WTForms requires that a form be instantiated in order to be
|
|
39
40
|
able to properly introspect fields. Because of this, this method
|
|
40
41
|
will only return a duplicate form matching the type of the
|
monopyly/common/forms/fields.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
General form constructions.
|
|
3
3
|
"""
|
|
4
|
+
|
|
4
5
|
from abc import ABC, abstractmethod
|
|
5
6
|
|
|
6
7
|
from flask_wtf import FlaskForm
|
|
@@ -25,6 +26,15 @@ class DateField(wtforms_fields.DateField):
|
|
|
25
26
|
super().__init__(*args, filters=filters, **kwargs)
|
|
26
27
|
|
|
27
28
|
|
|
29
|
+
class OptionalDateField(DateField):
|
|
30
|
+
"""A date field where the field value is optional."""
|
|
31
|
+
|
|
32
|
+
def process_formdata(self, valuelist):
|
|
33
|
+
"""Process data from the form, ignoring an ommitted value."""
|
|
34
|
+
if valuelist != [""]:
|
|
35
|
+
super().process_formdata(valuelist)
|
|
36
|
+
|
|
37
|
+
|
|
28
38
|
class CurrencyField(wtforms_fields.DecimalField):
|
|
29
39
|
"""A decimal field with currency-specific customizations."""
|
|
30
40
|
|
monopyly/common/forms/utils.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
General utility objects for handling forms.
|
|
3
3
|
"""
|
|
4
|
+
|
|
4
5
|
from functools import wraps
|
|
5
6
|
|
|
6
7
|
from flask import current_app, flash
|
|
@@ -73,7 +74,7 @@ class Autocompleter:
|
|
|
73
74
|
"""Get autocomplete suggestions for a field."""
|
|
74
75
|
# Get information from the database to use for autocompletion
|
|
75
76
|
query = model.select_for_user(getattr(model, field))
|
|
76
|
-
values = current_app.db.session.
|
|
77
|
+
values = current_app.db.session.scalars(query)
|
|
77
78
|
suggestions = sort_by_frequency([value for value in values])
|
|
78
79
|
return suggestions
|
|
79
80
|
|
monopyly/common/transactions.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Tools for building a common transaction interface.
|
|
3
3
|
"""
|
|
4
|
+
|
|
4
5
|
from abc import abstractmethod
|
|
5
6
|
|
|
6
7
|
from authanor.database.handler import DatabaseHandler, DatabaseViewHandler
|
|
@@ -248,7 +249,7 @@ class TransactionTagHandler(DatabaseHandler, model=TransactionTag):
|
|
|
248
249
|
# Filter the query to get only subtags of the given tag
|
|
249
250
|
parent_id = tag.id if tag else None
|
|
250
251
|
query = query.where(cls.model.parent_id == parent_id)
|
|
251
|
-
subtags = cls._db.session.
|
|
252
|
+
subtags = cls._db.session.scalars(query)
|
|
252
253
|
return subtags
|
|
253
254
|
|
|
254
255
|
@classmethod
|
monopyly/common/utils.py
CHANGED
monopyly/config/settings.py
CHANGED
monopyly/core/actions.py
CHANGED
monopyly/core/blueprint.py
CHANGED
monopyly/core/filters.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Filters defined for the application.
|
|
3
3
|
"""
|
|
4
|
+
|
|
4
5
|
from .blueprint import bp
|
|
5
6
|
|
|
6
7
|
|
|
@@ -29,8 +30,8 @@ def make_ordinal(integer):
|
|
|
29
30
|
- 21 => 21st
|
|
30
31
|
- 101 => 101st
|
|
31
32
|
|
|
32
|
-
|
|
33
|
-
|
|
33
|
+
Notes
|
|
34
|
+
-----
|
|
34
35
|
This function is an adaptation of the one proposed by Stack Overflow user
|
|
35
36
|
Florian Brucker (https://stackoverflow.com/a/50992575/8754471).
|
|
36
37
|
|
monopyly/core/routes.py
CHANGED
monopyly/credit/accounts.py
CHANGED
monopyly/credit/actions.py
CHANGED
monopyly/credit/blueprint.py
CHANGED
monopyly/credit/cards.py
CHANGED
monopyly/credit/forms.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Generate credit card forms for the user to complete.
|
|
3
3
|
"""
|
|
4
|
+
|
|
4
5
|
from werkzeug.exceptions import abort
|
|
5
6
|
from wtforms.fields import (
|
|
6
7
|
BooleanField,
|
|
@@ -18,8 +19,8 @@ from ..banking.forms import BankSelectField, BankSubform
|
|
|
18
19
|
from ..common.forms import AcquisitionSubform, EntryForm, EntrySubform, TransactionForm
|
|
19
20
|
from ..common.forms.fields import (
|
|
20
21
|
CustomChoiceSelectField,
|
|
21
|
-
DateField,
|
|
22
22
|
LastFourDigitsField,
|
|
23
|
+
OptionalDateField,
|
|
23
24
|
StringField,
|
|
24
25
|
)
|
|
25
26
|
from ..common.forms.utils import Autocompleter
|
|
@@ -69,13 +70,20 @@ class CreditCardForm(EntryForm):
|
|
|
69
70
|
statement_issue_day = IntegerField("Statement Issue Day", [Optional()])
|
|
70
71
|
statement_due_day = IntegerField("Statement Due Day", [Optional()])
|
|
71
72
|
|
|
72
|
-
def validate(self,
|
|
73
|
-
"""
|
|
74
|
-
|
|
73
|
+
def validate(self, extra_validators=None):
|
|
74
|
+
"""
|
|
75
|
+
Validate the subform.
|
|
76
|
+
|
|
77
|
+
Notes
|
|
78
|
+
-----
|
|
79
|
+
Unset values on the ``CustomChoiceSelectField`` will take a
|
|
80
|
+
default value that will be considered to be invalid. They
|
|
81
|
+
must be replaced (after processing) with the inferred value.
|
|
82
|
+
"""
|
|
75
83
|
if self.bank_info.bank_id.data == -1:
|
|
76
84
|
account = self.get_account()
|
|
77
85
|
self.bank_info.bank_id.data = account.bank.id
|
|
78
|
-
return super().validate(
|
|
86
|
+
return super().validate(extra_validators=extra_validators)
|
|
79
87
|
|
|
80
88
|
def get_account(self):
|
|
81
89
|
return self._produce_entry_from_field("account_id")
|
|
@@ -185,7 +193,7 @@ class CreditTransactionForm(TransactionForm):
|
|
|
185
193
|
# Fields to identify the card/bank information for the statement
|
|
186
194
|
card_info = FormField(CardSubform)
|
|
187
195
|
# Fields pertaining to the statement
|
|
188
|
-
issue_date =
|
|
196
|
+
issue_date = OptionalDateField("Statement Date")
|
|
189
197
|
|
|
190
198
|
def get_statement(self, transaction_date):
|
|
191
199
|
"""Get the credit card statement described by the form data."""
|
monopyly/credit/routes.py
CHANGED
monopyly/credit/statements.py
CHANGED
monopyly/database/__init__.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Expose commonly used database functionality to the rest of the package.
|
|
3
3
|
"""
|
|
4
|
+
|
|
4
5
|
import sqlite3
|
|
5
6
|
from pathlib import Path
|
|
6
7
|
|
|
@@ -49,7 +50,7 @@ class SQLAlchemy(_SQLAlchemy):
|
|
|
49
50
|
super().initialize(app)
|
|
50
51
|
|
|
51
52
|
|
|
52
|
-
SQLAlchemy.create_default_interface()
|
|
53
|
+
SQLAlchemy.create_default_interface(echo_engine=False)
|
|
53
54
|
|
|
54
55
|
|
|
55
56
|
@click.command("init-db")
|
monopyly/database/models.py
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from authanor.database.models import AuthorizedAccessMixin, Model
|
|
2
2
|
from sqlalchemy import Column, Date, Float, ForeignKey, Integer, String, Table
|
|
3
|
+
from sqlalchemy.ext.hybrid import hybrid_property
|
|
3
4
|
from sqlalchemy.orm import mapped_column, relationship
|
|
4
5
|
|
|
5
6
|
|
|
@@ -72,6 +73,8 @@ class TransactionTag(AuthorizedAccessMixin, Model):
|
|
|
72
73
|
parent_id = mapped_column(Integer, ForeignKey("transaction_tags.id"))
|
|
73
74
|
tag_name = mapped_column(String, nullable=False)
|
|
74
75
|
# Relationships
|
|
76
|
+
parent = relationship("TransactionTag", back_populates="children", remote_side=[id])
|
|
77
|
+
children = relationship("TransactionTag", back_populates="parent")
|
|
75
78
|
bank_subtransactions = relationship(
|
|
76
79
|
"BankSubtransaction",
|
|
77
80
|
secondary=bank_tag_link_table,
|
|
@@ -83,6 +86,13 @@ class TransactionTag(AuthorizedAccessMixin, Model):
|
|
|
83
86
|
back_populates="tags",
|
|
84
87
|
)
|
|
85
88
|
|
|
89
|
+
@property
|
|
90
|
+
def depth(self):
|
|
91
|
+
tag, depth = self, 0
|
|
92
|
+
while (tag := tag.parent) is not None:
|
|
93
|
+
depth += 1
|
|
94
|
+
return depth
|
|
95
|
+
|
|
86
96
|
|
|
87
97
|
class Bank(AuthorizedAccessMixin, Model):
|
|
88
98
|
__tablename__ = "banks"
|
|
@@ -256,6 +266,7 @@ class BankTransactionView(AuthorizedAccessMixin, Model):
|
|
|
256
266
|
subtransactions = relationship(
|
|
257
267
|
"BankSubtransaction",
|
|
258
268
|
back_populates="transaction",
|
|
269
|
+
lazy="selectin",
|
|
259
270
|
)
|
|
260
271
|
|
|
261
272
|
|
|
@@ -281,6 +292,7 @@ class BankSubtransaction(AuthorizedAccessMixin, Model):
|
|
|
281
292
|
"TransactionTag",
|
|
282
293
|
secondary=bank_tag_link_table,
|
|
283
294
|
back_populates="bank_subtransactions",
|
|
295
|
+
lazy="selectin",
|
|
284
296
|
)
|
|
285
297
|
|
|
286
298
|
|
|
@@ -429,6 +441,7 @@ class CreditTransactionView(AuthorizedAccessMixin, Model):
|
|
|
429
441
|
subtransactions = relationship(
|
|
430
442
|
"CreditSubtransaction",
|
|
431
443
|
back_populates="transaction",
|
|
444
|
+
lazy="selectin",
|
|
432
445
|
)
|
|
433
446
|
|
|
434
447
|
|
|
@@ -460,4 +473,5 @@ class CreditSubtransaction(AuthorizedAccessMixin, Model):
|
|
|
460
473
|
"TransactionTag",
|
|
461
474
|
secondary=credit_tag_link_table,
|
|
462
475
|
back_populates="credit_subtransactions",
|
|
476
|
+
lazy="selectin",
|
|
463
477
|
)
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
{% for account_type in type_accounts %}
|
|
4
4
|
<div class="account-type-block grouping">
|
|
5
5
|
|
|
6
|
-
{% for account in type_accounts[account_type] %}
|
|
6
|
+
{% for account in type_accounts[account_type]|sort(attribute='last_four_digits') %}
|
|
7
7
|
|
|
8
8
|
<a class="account-block button-block" href="{{ url_for('banking.load_account_details', account_id=account.id) }}">
|
|
9
9
|
<div class="title">
|
monopyly/templates/index.html
CHANGED
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
See account summaries
|
|
51
51
|
</a>
|
|
52
52
|
<ul>
|
|
53
|
-
{% for account in bank_accounts[bank] %}
|
|
53
|
+
{% for account in bank_accounts[bank]|sort(attribute='account_type.type_common_name,last_four_digits') %}
|
|
54
54
|
<li>
|
|
55
55
|
<a href="{{ url_for('banking.load_account_details', account_id=account.id) }}">
|
|
56
56
|
{{ account.account_type.type_common_name }} {{ account.last_four_digits }}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: monopyly
|
|
3
|
-
Version: 1.4.
|
|
3
|
+
Version: 1.4.5
|
|
4
4
|
Summary: A homemade personal finance manager.
|
|
5
5
|
Project-URL: Download, https://pypi.org/project/monopyly
|
|
6
6
|
Project-URL: Homepage, http://monopyly.com
|
|
@@ -25,13 +25,13 @@ Classifier: Topic :: Office/Business :: Financial :: Spreadsheet
|
|
|
25
25
|
Requires-Python: <3.11,>=3.10
|
|
26
26
|
Requires-Dist: authanor==1.1.0
|
|
27
27
|
Requires-Dist: flask-wtf==1.2.1
|
|
28
|
-
Requires-Dist: flask==3.0.
|
|
28
|
+
Requires-Dist: flask==3.0.2
|
|
29
29
|
Requires-Dist: fuisce==1.0.2
|
|
30
30
|
Requires-Dist: gunicorn==21.2.0
|
|
31
|
-
Requires-Dist: markdown==3.
|
|
32
|
-
Requires-Dist: python-dateutil==2.
|
|
33
|
-
Requires-Dist: rich==13.7.
|
|
34
|
-
Requires-Dist: sqlalchemy==2.0.
|
|
31
|
+
Requires-Dist: markdown==3.6
|
|
32
|
+
Requires-Dist: python-dateutil==2.9.0
|
|
33
|
+
Requires-Dist: rich==13.7.1
|
|
34
|
+
Requires-Dist: sqlalchemy==2.0.29
|
|
35
35
|
Description-Content-Type: text/markdown
|
|
36
36
|
|
|
37
37
|
<div id="header">
|
|
@@ -1,47 +1,47 @@
|
|
|
1
1
|
monopyly/README.md,sha256=T-Avdpr3whgP6g0P_w-u02CSwzBH2yRnleRrM1sKrj4,8281
|
|
2
|
-
monopyly/__init__.py,sha256=
|
|
3
|
-
monopyly/_version.py,sha256=
|
|
2
|
+
monopyly/__init__.py,sha256=YxMJAI5ig4-jlFyBGy4gOC_H5cp8a4L2sGmoX5bRYjU,1763
|
|
3
|
+
monopyly/_version.py,sha256=Q6unsBbzWHPRNufBzIDL-pvFPHC27FQ8CYCDAcnbQoY,160
|
|
4
4
|
monopyly/auth/actions.py,sha256=T99eAP8dxFZMzLu2LxZFIXGYIroP8I7KJ-WJ8GJ1gws,260
|
|
5
|
-
monopyly/auth/blueprint.py,sha256=
|
|
6
|
-
monopyly/auth/routes.py,sha256=
|
|
7
|
-
monopyly/auth/tools.py,sha256=
|
|
8
|
-
monopyly/banking/accounts.py,sha256=
|
|
9
|
-
monopyly/banking/actions.py,sha256=
|
|
10
|
-
monopyly/banking/banks.py,sha256=
|
|
11
|
-
monopyly/banking/blueprint.py,sha256=
|
|
12
|
-
monopyly/banking/filters.py,sha256=
|
|
13
|
-
monopyly/banking/forms.py,sha256=
|
|
14
|
-
monopyly/banking/routes.py,sha256
|
|
15
|
-
monopyly/banking/transactions.py,sha256=
|
|
16
|
-
monopyly/cli/apps.py,sha256=
|
|
5
|
+
monopyly/auth/blueprint.py,sha256=sFbmTvSBhjv1pn2gJLH5J6zanPLuemmWbgEj5ZKCiTY,244
|
|
6
|
+
monopyly/auth/routes.py,sha256=mODJHrdFhffusfbYwQ_wpIY7eAE7Gh7irosIef4Mluc,2902
|
|
7
|
+
monopyly/auth/tools.py,sha256=hifCHBN06Ht-FnMhJPzzj-xjMN8uwbeJ-azRVjnT99c,801
|
|
8
|
+
monopyly/banking/accounts.py,sha256=BYGqDISd5FszktDa1NW494ipcNgqI1Y03Gn07kBeiWE,9828
|
|
9
|
+
monopyly/banking/actions.py,sha256=am8AlVWJGhrTvWNiAQPba-2guxdESmhzl6mIJhjAmlg,1565
|
|
10
|
+
monopyly/banking/banks.py,sha256=X1seKJrec-o8z-bM0wVTR42vMx1q5A9Lf2jNUtINlrQ,1745
|
|
11
|
+
monopyly/banking/blueprint.py,sha256=PDsqe4DmiT7cDYW9IxxTfizu9Lqol1Lhp7ajMK6fUuI,255
|
|
12
|
+
monopyly/banking/filters.py,sha256=wCsAUh592B5BmGFC9NqmrJZ0NdQZi21hvy0QsKqhgLg,685
|
|
13
|
+
monopyly/banking/forms.py,sha256=p-YGZgdKugk3VKILLiQNEH5KQmXop5G8P1Bs4sUqbK0,10506
|
|
14
|
+
monopyly/banking/routes.py,sha256=BAV6PBQf20dSTxqY88Zh0FGAzpj7TxgZaHPxGCJneJ4,8149
|
|
15
|
+
monopyly/banking/transactions.py,sha256=2_wFXl4ZrHzLoFGz72ksYA2_8UvB0N1wtBFd8kTwTyQ,8454
|
|
16
|
+
monopyly/cli/apps.py,sha256=ufyKali-sLsUONuERoMTvSjbFzageShtG62JO0p9fIo,2689
|
|
17
17
|
monopyly/cli/run.py,sha256=8NHv5TW5Ze6pyhxZCOjmba-EU4Nu6sObYfNJbDPtrds,3838
|
|
18
|
-
monopyly/common/transactions.py,sha256=
|
|
19
|
-
monopyly/common/utils.py,sha256=
|
|
18
|
+
monopyly/common/transactions.py,sha256=2-EkctGC9k5W5kodXdYJIBXu5l5JNI9dxfgbp2Nxccg,12185
|
|
19
|
+
monopyly/common/utils.py,sha256=BjXhfNXGWkAPt-ebldvmZ2z00P8MhKJzjxrJJ6mzRQY,5867
|
|
20
20
|
monopyly/common/forms/__init__.py,sha256=6iFTlcoaQmCbrjS1KfFhWXQUfyqnA-vKPMVxLyJMlXY,120
|
|
21
|
-
monopyly/common/forms/_forms.py,sha256=
|
|
22
|
-
monopyly/common/forms/fields.py,sha256=
|
|
23
|
-
monopyly/common/forms/utils.py,sha256=
|
|
24
|
-
monopyly/common/forms/validators.py,sha256=
|
|
21
|
+
monopyly/common/forms/_forms.py,sha256=IlN1CMBNNFicvGzH82YYqd4SZodoRm-rlc7VwNgmHro,7814
|
|
22
|
+
monopyly/common/forms/fields.py,sha256=XgvkfszpUAZyIs-osHGFADmzuo0Ni_e78NXtG-grBdI,4082
|
|
23
|
+
monopyly/common/forms/utils.py,sha256=awZOtWaohzSW_SZrXhUpJBY1AXPnKBFTG2cqim22Db0,5676
|
|
24
|
+
monopyly/common/forms/validators.py,sha256=C5_NN8ktvBw6MrSXwv_x9_SQohCNmnp4brNQFELHBlI,1205
|
|
25
25
|
monopyly/config/__init__.py,sha256=pW2lHNhsdM2gRjLAWumnLUHZMAOEdprX4aXaONwo6AY,73
|
|
26
|
-
monopyly/config/default_settings.py,sha256=
|
|
27
|
-
monopyly/config/settings.py,sha256=
|
|
28
|
-
monopyly/core/actions.py,sha256=
|
|
29
|
-
monopyly/core/blueprint.py,sha256=
|
|
30
|
-
monopyly/core/context_processors.py,sha256=
|
|
31
|
-
monopyly/core/filters.py,sha256=
|
|
32
|
-
monopyly/core/internal_transactions.py,sha256=
|
|
33
|
-
monopyly/core/routes.py,sha256=
|
|
34
|
-
monopyly/credit/accounts.py,sha256=
|
|
35
|
-
monopyly/credit/actions.py,sha256=
|
|
36
|
-
monopyly/credit/blueprint.py,sha256=
|
|
37
|
-
monopyly/credit/cards.py,sha256=
|
|
38
|
-
monopyly/credit/forms.py,sha256
|
|
39
|
-
monopyly/credit/routes.py,sha256=
|
|
40
|
-
monopyly/credit/statements.py,sha256=
|
|
41
|
-
monopyly/credit/transactions/__init__.py,sha256=
|
|
42
|
-
monopyly/credit/transactions/_transactions.py,sha256=
|
|
43
|
-
monopyly/database/__init__.py,sha256=
|
|
44
|
-
monopyly/database/models.py,sha256=
|
|
26
|
+
monopyly/config/default_settings.py,sha256=jtWz4ElasnAbfBCiRfbsYyy--L6N6jTOGRh3PNWnVj4,1829
|
|
27
|
+
monopyly/config/settings.py,sha256=YEctSb8mRDvuMA1tTs1N7862Z2bMY7DPf0xo4Ist2pg,1984
|
|
28
|
+
monopyly/core/actions.py,sha256=M886J8DrxMfpessVPwigbkkUfUo7au1mj1La-BfFTkw,1220
|
|
29
|
+
monopyly/core/blueprint.py,sha256=Kbl4M2Sdr4Sf2l9RPxCVFP6R_cBzYzdbIEG5ozUKGIc,252
|
|
30
|
+
monopyly/core/context_processors.py,sha256=NZktwVLUUvE-Zv25ZqTAjIWGWx74Bda4LeZPcDTflsE,821
|
|
31
|
+
monopyly/core/filters.py,sha256=9EQCHqLD3LEuyVkAE6_XCVjU1BezgAUsSWAS4PAzIb4,1253
|
|
32
|
+
monopyly/core/internal_transactions.py,sha256=PImeViMU9rdDDPLXld1xC6bdAoulzRDr0zci4pUQY8I,459
|
|
33
|
+
monopyly/core/routes.py,sha256=BSeqMFu5XSm2MuMBDHwPAaOiLeMjO3KsFYm5RySzS8c,2427
|
|
34
|
+
monopyly/credit/accounts.py,sha256=otQmuTDJZYX868EZl80n89XlzfiwlnBkfSXZa65rSqI,1898
|
|
35
|
+
monopyly/credit/actions.py,sha256=ilYdpNjzzbZSYx3pTkBTcfqA_vS8g74ee0l4_EgLpZ8,5334
|
|
36
|
+
monopyly/credit/blueprint.py,sha256=XbrMhtyCp2732uWPB2kjn_W8P8pH8RVTwo9P8Pt--Is,251
|
|
37
|
+
monopyly/credit/cards.py,sha256=9Ug51aY2-G8SzooLC-FemRNeTBLd9JOpXHFW74EcdLU,5614
|
|
38
|
+
monopyly/credit/forms.py,sha256=-Oj7NxmDKNY39McbtqSC-v_Tppec0BfDZmeUnbnugCo,12250
|
|
39
|
+
monopyly/credit/routes.py,sha256=H31HfAcl9MBCwf-gHGpdfeAmWoijsC2XSgcMpvWyN0c,17880
|
|
40
|
+
monopyly/credit/statements.py,sha256=IMwggNvo9XS9-khwvIMH6A-ChM9KIqtCA0XhzX5KtIk,6520
|
|
41
|
+
monopyly/credit/transactions/__init__.py,sha256=1Exn6T--HtwNCHzS_hDJ0ba7qCB7w_8C-yY3KSxvFKg,165
|
|
42
|
+
monopyly/credit/transactions/_transactions.py,sha256=LqbZV1Q2bb_B6tATmBihCPm8YhcbABRUCCYhNRg9qtk,8771
|
|
43
|
+
monopyly/database/__init__.py,sha256=tlZsXmzH8hB5m_RASbKTjPRqLel-xbymqrzo0TPoFCk,3402
|
|
44
|
+
monopyly/database/models.py,sha256=TqIwIe4tVv3TS0azz8Bm9nL1qT2RAyq292myPW0XH1A,15095
|
|
45
45
|
monopyly/database/preloads.sql,sha256=KBS_WYRofFdOVN-IgHzZhfyJrY6ZOwHeExN-fQr3htU,363
|
|
46
46
|
monopyly/database/schema.sql,sha256=cdl9b5CnYrnQ-lck147GtwArx_JJbX1vF9YYLivTeyw,4660
|
|
47
47
|
monopyly/database/views.sql,sha256=UTO2QRkVTfQ12bMVkR-O6Qv80DvYo8hngPHn2A1_1F8,3853
|
|
@@ -137,14 +137,14 @@ monopyly/static/js/modules/manage-subforms.js,sha256=-yKA7l8ZI0294auTI307LrKkw_B
|
|
|
137
137
|
monopyly/static/js/modules/update-database-widget.js,sha256=S67hmqaGwzbPy94IjYrag0ZPOur4r5y_tb3_5t7xuYI,1581
|
|
138
138
|
monopyly/static/js/modules/update-display-ajax.js,sha256=MJBiRMmeIHRG7lLbqIcXkUecKNNMFFVJXwhs_N8LKl0,878
|
|
139
139
|
monopyly/templates/credits.html,sha256=U2lOe7XrW1Rt9DCvo7pRxHDzRzBnYxHjX3cS5z36NI8,506
|
|
140
|
-
monopyly/templates/index.html,sha256=
|
|
140
|
+
monopyly/templates/index.html,sha256=caoQuizzJibU90nivf1-Esnptg5wzFWyhVJoAkEPKdE,4374
|
|
141
141
|
monopyly/templates/layout.html,sha256=ETQ7fNC4H0JjZZTnamZoJKwXbsXEHW72ZhahOER3NkQ,4741
|
|
142
142
|
monopyly/templates/profile.html,sha256=qFU1lu5lbzC6p36OCcZGgRHcygmSqPpXDTLxaRDnLXU,2291
|
|
143
143
|
monopyly/templates/story.html,sha256=fUvIE8t5oG_Mw443Oeu4vWKospFQv8dSfBOCisn5L0g,3207
|
|
144
144
|
monopyly/templates/auth/login.html,sha256=CBEIxnDVrZ8dH3fgsYi5BVyesEUAvUGYQW7hW_gI8aE,441
|
|
145
145
|
monopyly/templates/auth/register.html,sha256=eFSDl2vUiFil9VAB7uMuxNT872MSQugvVXCfXtVT5ac,445
|
|
146
146
|
monopyly/templates/banking/account_page.html,sha256=pP7j6pRngqO8D_kQKbRINTQ61L5VJs66dsNPscO0czs,1946
|
|
147
|
-
monopyly/templates/banking/account_summaries.html,sha256=
|
|
147
|
+
monopyly/templates/banking/account_summaries.html,sha256=h_grH5xF94Um8F2a8Ag1I9_bwstr7e6Lpx4Ak5ISeiQ,647
|
|
148
148
|
monopyly/templates/banking/account_summaries_page.html,sha256=LuAAjd8U0LDxgJoBKAtVUw-b6KGni0Osre8O3gN17fY,1086
|
|
149
149
|
monopyly/templates/banking/account_summary.html,sha256=45vsPptiN_ZLVFG54hib9alKJHArUWtIvgqS0foi2JE,655
|
|
150
150
|
monopyly/templates/banking/accounts_page.html,sha256=JYI0cfaK6lxF-aDsYQLQkfEkx9xWdgAfW1xYbZRQmGs,2149
|
|
@@ -157,7 +157,7 @@ monopyly/templates/banking/transaction_form/transaction_form_page_new.html,sha25
|
|
|
157
157
|
monopyly/templates/banking/transaction_form/transaction_form_page_update.html,sha256=4PljOpO7wTNNEq-mhFzA-uHvUxzerfRMbDddWvSMzlo,350
|
|
158
158
|
monopyly/templates/banking/transaction_form/transfer_form.html,sha256=ar3ttK7kgEWQpvnD23-ud8OcLPgtvGDrKRIp4UWGoQw,168
|
|
159
159
|
monopyly/templates/banking/transactions_table/condensed_row_content.html,sha256=5eHwrdoGxNouRWSPe-NxTtvcpiZafw1WPSR_d_O3YTc,416
|
|
160
|
-
monopyly/templates/banking/transactions_table/expanded_row_content.html,sha256=
|
|
160
|
+
monopyly/templates/banking/transactions_table/expanded_row_content.html,sha256=NtOiMMm-6n8dBTa7JAJh-JqMV7aRooK44Aj6lIx1avQ,1278
|
|
161
161
|
monopyly/templates/banking/transactions_table/transaction_field_titles.html,sha256=WvjcRAByg1xSHqfNEkcJYB1eFnNfm4-qfHZben_YApI,600
|
|
162
162
|
monopyly/templates/banking/transactions_table/transactions.html,sha256=emId66z4LXyOF1xdiJIAwrGqE4WSY-iv03yZF4kye1k,486
|
|
163
163
|
monopyly/templates/common/form_page.html,sha256=Sx2Y6dhNsjkDQBaepTBPBvVeIe7N730llhgbcAQOrCk,107
|
|
@@ -197,9 +197,9 @@ monopyly/templates/credit/transactions_table/condensed_row_content.html,sha256=T
|
|
|
197
197
|
monopyly/templates/credit/transactions_table/expanded_row_content.html,sha256=oL1BqlEC3H6s3fSI9Vb65DLL-P9OPliPqqiGL4av4Xs,1971
|
|
198
198
|
monopyly/templates/credit/transactions_table/transaction_field_titles.html,sha256=km-3YEDJaygwcKV-rwYnrE7xF8u4Z7jCBsk0Ia-LO-M,758
|
|
199
199
|
monopyly/templates/credit/transactions_table/transactions.html,sha256=tcppv0qNV-Qq6U5jfxoNyGKPXmyV9h9nR6rw4jXfBsY,481
|
|
200
|
-
monopyly-1.4.
|
|
201
|
-
monopyly-1.4.
|
|
202
|
-
monopyly-1.4.
|
|
203
|
-
monopyly-1.4.
|
|
204
|
-
monopyly-1.4.
|
|
205
|
-
monopyly-1.4.
|
|
200
|
+
monopyly-1.4.5.dist-info/METADATA,sha256=TqoEGZHc_0jVkZcUAEajm_heYNktTAYJs0r_LdrLaQ0,10206
|
|
201
|
+
monopyly-1.4.5.dist-info/WHEEL,sha256=Fd6mP6ydyRguakwUJ05oBE7fh2IPxgtDN9IwHJ9OqJQ,87
|
|
202
|
+
monopyly-1.4.5.dist-info/entry_points.txt,sha256=ANAwWNF6IG83opRITM2P9i_im_b6qLdG1n7dAcS2ZNU,51
|
|
203
|
+
monopyly-1.4.5.dist-info/licenses/COPYING,sha256=5X8cMguM-HmKfS_4Om-eBqM6A1hfbgZf6pfx2G24QFI,35150
|
|
204
|
+
monopyly-1.4.5.dist-info/licenses/LICENSE,sha256=94rIicMccmTPhqXiRLV9JsU8P2ocMuEUUtUpp6LPKiE,253
|
|
205
|
+
monopyly-1.4.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|