mirror of
https://github.com/httpie/cli.git
synced 2024-11-24 08:22:22 +02:00
README
This commit is contained in:
parent
b671ee35e7
commit
f87884dd8d
@ -709,7 +709,12 @@ On OS X, you can send the contents of the clipboard with ``pbpaste``:
|
||||
|
||||
|
||||
Passing data through ``stdin`` cannot be combined with data fields specified
|
||||
on the command line.
|
||||
on the command line:
|
||||
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
$ echo 'data' | http POST example.org more=data # This is invalid
|
||||
|
||||
|
||||
-------------------------
|
||||
|
7
setup.py
7
setup.py
@ -1,6 +1,5 @@
|
||||
import os
|
||||
import sys
|
||||
import re
|
||||
import codecs
|
||||
from setuptools import setup
|
||||
import httpie
|
||||
@ -24,12 +23,8 @@ if 'win32' in str(sys.platform).lower():
|
||||
|
||||
|
||||
def long_description():
|
||||
"""Pre-process the README so that PyPi can render it properly."""
|
||||
with codecs.open('README.rst', encoding='utf8') as f:
|
||||
rst = f.read()
|
||||
code_block = '(:\n\n)?\.\. code-block::.*'
|
||||
rst = re.sub(code_block, '::', rst)
|
||||
return rst
|
||||
return f.read()
|
||||
|
||||
|
||||
setup(
|
||||
|
Loading…
Reference in New Issue
Block a user