diff options
| author | Bobby <[email protected]> | 2022-11-14 09:03:46 -0500 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-11-14 09:03:46 -0500 |
| commit | 75b0bb814f9e707e7f2b240e7353029c828e795a (patch) | |
| tree | 7caf7b2639b1382ab0d8fe62b487040b8c0eeb1e | |
| parent | 55889c6f0213a39e8268e1797786396eb072aa08 (diff) | |
| download | thatcomputerscientist-75b0bb814f9e707e7f2b240e7353029c828e795a.tar.xz thatcomputerscientist-75b0bb814f9e707e7f2b240e7353029c828e795a.zip | |
added requests
| -rw-r--r-- | blog/views.py | 4 | ||||
| -rw-r--r-- | requirements.txt | 2 |
2 files changed, 1 insertions, 5 deletions
diff --git a/blog/views.py b/blog/views.py index 775956d8..26d75e69 100644 --- a/blog/views.py +++ b/blog/views.py @@ -12,10 +12,6 @@ import json from .models import Post, Comment from .context_processors import recent_posts from announcements.models import Announcement -import sympy -from django.conf import settings -from django.http import HttpResponse -import os # Create your views here. diff --git a/requirements.txt b/requirements.txt index 1063b930..efee8138 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,4 +6,4 @@ six==1.16.0 cryptocode==0.1 captcha==0.4 PyGithub==1.55 -sympy==1.11.1
\ No newline at end of file +requests==2.28.1
\ No newline at end of file |
