windows and pip/easy_install are funny sometimes.
I often do something like this:
#+BEGIN_SRC python
from setuptools.command import easy_install
easy_install.main( ["-U","requests"] )
#+END_SRC
#+RESULTS:
#+begin_example
Searching for requests
Reading http://pypi.python.org/simple/requests/
Best
Hi John!
* John Kitchin wrote:
>
> I think you could do this via requests directly. It could be done in emacs:
> https://github.com/tkf/emacs-request
Thanks for the pointer.
I evaluated it and it seems not that good for my requirements
because I need it mainly for documenting stuff/issues/...
I think you could do this via requests directly. It could be done in emacs:
https://github.com/tkf/emacs-request
or python: http://docs.python-requests.org/en/latest/
In your case you could have a block like this:
#+BEGIN_SRC python
import requests
headers = {"Authorization": "Basic YmVfcmVzdF9h
Hi!
I am not an ELISP programmer (unfortunately) but a proud heavy-user
of Org-mode. At work, I need a REST-client to talk to a REST API
very often.
Recently, I found [1] which works quite well. However, I need to
open a new buffer into restclient-mode to execute requests.
Wouldn't it be nice if