blob: e515c402593e5f05720917ae19e1f9d7f107b833 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Pasteme's client
Usage: pastit [-u url] [FILE]
Arguments:
FILE File to send
If missing, reads from stdin
If FILE is an url, then the corresponding file
is downloaded and written on stdout.
Options:
-u, --url url Alternate url of the pasteme
Default is http://paste.devys.org/
"""
import sys
import requests
from docopt import docopt
def post(text, url):
try:
req = requests.post(url, data={"content":text})
except requests.exceptions.ConnectionError as e:
sys.exit(e)
return req.url
def get(url):
if not url.endswith("/raw"):
url += "/raw"
try:
req = requests.get(url)
except requests.exceptions.ConnectionError as e:
sys.exit(e)
return req.text
def main():
args = docopt(__doc__)
if '://' in args["FILE"]:
print(get(args["FILE"]))
return
url = args["--url"] or "http://paste.devys.org/"
if args["FILE"]:
try:
text = open(args["FILE"]).read()
except (FileNotFoundError,PermissionError) as e:
exit(e)
else:
text = sys.stdin.read()
print(post(text, url))
if __name__ == "__main__":
main()
|