Skip to content

Commit 7aafb3f

Browse files
committed
2 parents 4d9bb37 + 80144f6 commit 7aafb3f

10 files changed

Lines changed: 31 additions & 18 deletions

File tree

.vs/ProjectSettings.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

.vs/Python-backend/v16/.suo

-22 KB
Binary file not shown.
-260 KB
Binary file not shown.

.vs/VSWorkspaceState.json

Lines changed: 0 additions & 8 deletions
This file was deleted.

.vs/slnx.sqlite

-168 KB
Binary file not shown.

__pycache__/lists.cpython-38.pyc

-28 Bytes
Binary file not shown.

lists.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
names = []
2+
emails = []

main.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,6 @@
1616

1717
listToWrite = ["hi","this","is","a","test"]
1818

19-
messages = """<html>
20-
<head><title>My first Python CGI app</title></head>
21-
<body>
22-
<p>Hello, 'world'!</p>
23-
</body>
24-
</html>"""
25-
2619
s = smtplib.SMTP('smtp.gmail.com', 587)
2720

2821
username = ""
@@ -34,6 +27,7 @@
3427
l = "smtp.gmail.com"
3528
s = smtplib.SMTP(l, 587)
3629
listLen = 0
30+
loginWorked = 0
3731

3832
class email:
3933
def save():

poetry.lock

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[build-system]
2+
build-backend = "poetry.masonry.api"
3+
requires = ["poetry>=0.12"]
4+
5+
[tool]
6+
[tool.poetry]
7+
authors = ["ad101-lab <adickhans@gmail.com>"]
8+
description = ""
9+
name = "python-backend"
10+
version = "0.1.0"
11+
[tool.poetry.dependencies]
12+
lists = "^1.3"
13+
python = "^3.7"
14+
[tool.poetry.dev-dependencies]

0 commit comments

Comments
 (0)