Added old project, half finished and in many parts. More great improvements coming soon

This commit is contained in:
2017-03-05 00:06:24 +01:00
parent 0f22c371f3
commit c8be2fecdc
13 changed files with 10588 additions and 2 deletions

19
createPastebin.py Executable file
View File

@@ -0,0 +1,19 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# @Author: KevinMidboe
# @Date: 2017-03-04 14:56:30
# @Last Modified by: KevinMidboe
# @Last Modified time: 2017-03-04 15:27:02
from pasteee import Paste
def main():
pasteText = """Some text to paste
Some more text
Foo bar baz
"""
paste = Paste(pasteText, private=False, desc="My first paste", views=15)
print(paste)
if __name__ == '__main__':
main()