-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
restructure, bug fix for transactions, etc
- Loading branch information
1 parent
282127c
commit 089b1ee
Showing
10 changed files
with
72 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,14 @@ | ||
blinker==1.6.3 | ||
boto3==1.28.84 | ||
botocore==1.31.84 | ||
certifi==2022.9.24 | ||
charset-normalizer==2.1.1 | ||
click==8.1.3 | ||
Flask==2.2.2 | ||
Flask-SQLAlchemy==3.0.2 | ||
gunicorn==21.2.0 | ||
idna==3.4 | ||
itsdangerous==2.1.2 | ||
Jinja2==3.1.2 | ||
jmespath==1.0.1 | ||
MarkupSafe==2.1.1 | ||
packaging==23.2 | ||
python-dateutil==2.8.2 | ||
requests==2.28.1 | ||
s3transfer==0.7.0 | ||
six==1.16.0 | ||
SQLAlchemy==1.4.42 | ||
typing_extensions==4.8.0 | ||
urllib3==1.26.12 | ||
Werkzeug==2.2.2 | ||
python-dotenv~=1.0.0 | ||
blinker | ||
boto3 | ||
cryptography | ||
docopt | ||
firebase-admin | ||
flask-sqlalchemy | ||
grpcio-status | ||
gunicorn | ||
pip-chill | ||
pyrebase | ||
python-dotenv | ||
typing-extensions | ||
venmo-api | ||
yarg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
from flask_sqlalchemy import SQLAlchemy | ||
# from venmo_api import Client | ||
from venmo_api import Client | ||
|
||
import os | ||
|
||
db = SQLAlchemy() | ||
# client = Client(access_token=os.environ["VENMO_TOKEN"]) | ||
client = Client(access_token=os.environ["VENMO_TOKEN"], ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from flask import Blueprint | ||
|
||
bp = Blueprint('services', __name__) | ||
|
||
from src.services import routes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
from src.services import bp | ||
from src.utils import success_message | ||
|
||
|
||
@bp.route('/signup/', methods=['POST']) | ||
def signup(): | ||
pass | ||
|
||
|
||
@bp.route('/signin/', methods=['POST']) | ||
def signin(): | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from flask import Blueprint | ||
|
||
from src.students import routes | ||
|
||
bp = Blueprint('transactions', __name__) | ||
|
||
from src.transactions import routes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.