chibi_requests
handle urls in a more easy and human way
Free software: WTFPL
Documentation: https://chibi-requests.readthedocs.io.
how to use
Chibi_url
from chibi_requests import Chibi_url
url = Chibi_url( "http://ifconfig.me'" )
response = url.get()
assert response.status_code == 200
assert response.is_text
assert isinstance( response.native, str )
response = url.post()
assert response.status_code == 200
assert response.json
assert isinstance( response.native, dict )
url = Chibi_url( "https://google.com" )
url += "cosa/cosa2'
assert "https://google.com/cosa/cosa2" == url
url += "cosa3"
assert "https://google.com/cosa/cosa2/cosa3" == url
url = Chibi_url( "https://google.com" )
url += { 'param1': 'value1', 'param2': 'value2' }
assert url.parmas == { 'param1': 'value1', 'param2': 'value2' }
url = Chibi_url( "https://google.com" )
url += "?param1=value1"
assert url.params == { 'param1': 'value1' }
url = Chibi_url( "https://google.com" )
assert url.host == 'google.com'
assert url.schema == 'https'
Features
TODO
Credits
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
History
2.3.0 ( 2026-08-19 )
ahora la propiedad de url elimana los fragmentos de la url o lo que sigue de #
2.3.0 ( 2026-07-30 )
se cambio la excepcion de 400 status code
2.1.1 ( 2026-07-21 )
correcion de bug que agregaba 2 // cuando sumaba un string que ya tenia al final /
se agrego excepcion para los status code 400
2.1.0 ( 2026-07-21 )
se agrego el caso de que la url empiese con // solo remplace el protocolo
2.0.0 ( 2026-05-10 )
se agrego la propiedad de context a las respuestas para enviar el contexto a los serializadores
1.5.0 ( 2026-03-21 )
se agrega el manejo del context de marshmallow version > 4
1.4.0 ( 2025-09-18 )
se agrega la copia de los status codes de django rest framwork en chibi_requests.status_code
1.3.1 ( 2025-03-11 )
se agrego la funcion parse_like_html
1.3.0 ( 2025-02-08 )
se agrego la funcion from_response
1.2.2 ( 2025-02-01 )
se agrego la posibilidad que los response lanzen excepciones segun el codigo de error
1.2.1 ( 2025-02-01 )
dependencia de marshmallow > 2.26
1.2.0 ( 2024-10-26 )
se agrego funcion para sufijos
1.1.0 ( 2024-10-26 )
regresa el tipo correcto con herencia
0.0.1 (2019-11-14)
First release on PyPI.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file chibi_requests-2.3.0.tar.gz.
File metadata
- Download URL: chibi_requests-2.3.0.tar.gz
- Upload date:
- Size: 16.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.14.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
19ce9d2e6ac4717805bdf47f1ca299ac532090203baf4b2122b1b45780471833
|
|
| MD5 |
f0699ebff9ae24f96a32dd3087da3803
|
|
| BLAKE2b-256 |
d12c3b31ceb5f498ec9a1675e2cf0d02850380eff70a0181e081b2d8db2c045c
|
File details
Details for the file chibi_requests-2.3.0-py2.py3-none-any.whl.
File metadata
- Download URL: chibi_requests-2.3.0-py2.py3-none-any.whl
- Upload date:
- Size: 10.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.14.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50a11daa6ec7706d4efd46523b16ab4fff842a212919528b5c41d865a44e365e
|
|
| MD5 |
956aa1076c49697c48c934a98469761e
|
|
| BLAKE2b-256 |
036b46df66f8f64e2093115e3ba841bb1f3e0153bc6f8601817482d0a12032c1
|