wreq-python
An ergonomic, privacy-aware Python HTTP Client
파일 탐색기
최종 버전 다운로드 (.zip)- hypersolutions.jpg
- nodemaven.svg
- scrapedo.svg
- bug_report.md
- feature_request.md
- ci.yml
- dependabot.yml
- FUNDING.yml
- musl_build.sh
- benchmark.py
- README.md
- server.py
- blocking.md
- cookie.md
- dns.md
- emulation.md
- exceptions.md
- header.md
- http1.md
- http2.md
- proxy.md
- redirect.md
- tls.md
- wreq.md
- installation.md
- introduction.md
- quickstart.md
- advanced.md
- auth.md
- basic.md
- blocking.md
- cookie.md
- emulation.md
- proxy.md
- redirect-errors.md
- websocket.md
- index.md
- sponsors.md
- mkdocs.yml
- auth.py
- basic_auth.py
- bearer_auth.py
- body.py
- client.py
- cookie.py
- emulation.py
- form.py
- get.py
- json.py
- multipart.py
- proxy.py
- query.py
- stream.py
- auth.py
- basic_auth.py
- bearer_auth.py
- body.py
- emulation.py
- exceptions.py
- form.py
- header_map.py
- http1_websocket.py
- http2_websocket.py
- json.py
- keylog.py
- multipart.py
- orig_headers.py
- proxy.py
- query.py
- redirect.py
- request.py
- stream.py
- __init__.py
- blocking.py
- cookie.py
- dns.py
- emulation.py
- exceptions.py
- header.py
- http1.py
- http2.py
- proxy.py
- py.typed
- redirect.py
- tls.py
- wreq.py
- README.md
- form.rs
- json.rs
- multipart.rs
- stream.rs
- cmd.rs
- msg.rs
- ext.rs
- http.rs
- ws.rs
- body.rs
- nogil.rs
- param.rs
- query.rs
- req.rs
- resp.rs
- identity.rs
- keylog.rs
- store.rs
- buffer.rs
- client.rs
- cookie.rs
- dns.rs
- emulate.rs
- error.rs
- extractor.rs
- header.rs
- http.rs
- http1.rs
- http2.rs
- lib.rs
- macros.rs
- proxy.rs
- redirect.rs
- tls.rs
- cookie_test.py
- dns_test.py
- error_test.py
- header_test.py
- multipart_test.py
- redirect_test.py
- request_test.py
- response_test.py
- tls_test.py
- .gitignore
- .readthedocs.yaml
- Cargo.toml
- cliff.toml
- LICENSE
- pyproject.toml
- README.md
- RELEASE.md
- rustfmt.toml
# 설치 가이드
1. 코드 내려받기
git clone https://github.com/0x676e67/wreq-python
깃허브에서 프로젝트 코드 전체를 내 컴퓨터로 내려받습니다.
cd wreq-python
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
2. 공식 설치 스크립트
쉬움 추천사전 준비물
- Python 3 pip 명령어를 쓰려면 Python이 필요합니다.
- APT (Debian/Ubuntu 계열) Debian/Ubuntu 계열 리눅스에 기본 내장된 패키지 매니저입니다.
pip install wreq
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
sudo apt install -y build-essential cmake perl pkg-config libclang-dev musl-tools git
APT 패키지 저장소에서 바로 설치합니다 (Debian/Ubuntu 계열).
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
공식 설치 스크립트를 다운로드해서 바로 실행합니다. 이 한 줄로 필요한 게 자동으로 설치됩니다.
pip install uv maturin
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
설치 후 새 터미널을 열고, 프로그램의 버전 확인 명령(예: --version)으로 정상 설치됐는지 확인하세요.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
3. Python
쉬움사전 준비물
pip install wreq
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
pip install uv maturin
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
에러 메시지 없이 실행되고 터미널에 안내 문구가 출력되면 정상입니다.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
4. Rust
보통사전 준비물
- Git GitHub에서 프로젝트 코드를 내려받으려면 필요합니다.
- Rust (rustup) rustup으로 설치하면 cargo도 함께 설치됩니다.
cargo build --release
Rust 프로젝트를 컴파일합니다.
cargo run
빌드 후 바로 실행까지 진행합니다.
cargo build가 에러 없이 끝나면 성공입니다. target/ 폴더에 실행 파일이 생성됩니다.
// repository documentation
Was this content helpful?
(0 ratings)
