We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ea622eb + 885b9ee commit 1a620bdCopy full SHA for 1a620bd
2 files changed
main.py
@@ -1,4 +1,13 @@
1
-from __future__ import print_function
2
-
+from jwt import algorithms
+from django.utils import formats
3
+from rsa import cli
4
+from feedparser import feedparser
5
+from requests import sessions
6
+from lib.Crypto.PublicKey import ElGamal
7
if __name__ == '__main__':
- print('Hello world')
8
+ formats.get_format()
9
+ algorithms.HMACAlgorithm.prepare_key()
10
+ cli.VerifyOperation.perform_operation()
11
+ feedparser.parse()
12
+ sessions.SessionRedirectMixin.resolve_redirects()
13
+ ElGamal.generate()
requirements.txt
@@ -1,5 +1,6 @@
-django==1.6.2
-ipython==3.2.0
-qpid-python==0.32.1
-filebrowser_safe==0.1
-PyJWT==0.1.1
+django==1.7.1
+PyJWT==0.4.2
+rsa==3.0
+feedparser==5.1.1
+requests==2.2.1
+pycrypto==2.4
0 commit comments