mirror of
https://github.com/httpie/cli.git
synced 2025-01-06 05:39:08 +01:00
9 lines
199 B
Python
9 lines
199 B
Python
import os
|
|
from requests.compat import is_windows
|
|
|
|
__author__ = 'jakub'
|
|
|
|
|
|
CONFIG_DIR = (os.path.expanduser('~/.httpie') if not is_windows else
|
|
os.path.expandvars(r'%APPDATA%\\httpie'))
|