`rsrc` plugin for working with web resources.
Project description
rsrc_web
In what follows
pythonis an alias forpython3.5or any later version (python3.6and so on),pypyis an alias forpypy3.5or any later version (pypy3.6and so on).
Installation
Install the latest pip & setuptools packages versions:
- with
CPythonpython -m pip install --upgrade pip setuptools
- with
PyPypypy -m pip install --upgrade pip setuptools
User
Download and install the latest stable version from PyPI repository:
- with
CPythonpython -m pip install --upgrade rsrc_web
- with
PyPypypy -m pip install --upgrade rsrc_web
Developer
Download the latest version from GitHub repository
git clone https://github.com/lycantropos/rsrc_web.git
cd rsrc_web
Install dependencies:
- with
CPythonpython -m pip install -r requirements.txt
- with
PyPypypy -m pip install -r requirements.txt
Install:
- with
CPythonpython setup.py install
- with
PyPypypy setup.py install
Usage
>>> from rsrc.base import deserialize
>>> readable_resource = deserialize('https://postman-echo.com/get')
>>> readable_resource.exists()
True
>>> writable_resource = deserialize('https://postman-echo.com/post')
>>> writable_resource.exists()
False
>>> writable_resource.receive(readable_resource)
>>> import json
>>> file = readable_resource.open(json={'some_param': 1})
>>> json.load(file)['args']
{'some_param': 1}
Development
Bumping version
Preparation
Install bump2version.
Pre-release
Choose which version number category to bump following semver specification.
Test bumping version
bump2version --dry-run --verbose $CATEGORY
where $CATEGORY is the target version number category name, possible
values are patch/minor/major.
Bump version
bump2version --verbose $CATEGORY
This will set version to major.minor.patch-alpha.
Release
Test bumping version
bump2version --dry-run --verbose release
Bump version
bump2version --verbose release
This will set version to major.minor.patch.
Notes
To avoid inconsistency between branches and pull requests,
bumping version should be merged into master branch
as separate pull request.
Running tests
Install dependencies:
- with
CPythonpython -m pip install -r requirements-tests.txt
- with
PyPypypy -m pip install -r requirements-tests.txt
Plain
pytest
Inside Docker container:
- with
CPythondocker-compose --file docker-compose.cpython.yml up
- with
PyPydocker-compose --file docker-compose.pypy.yml up
Bash script (e.g. can be used in Git hooks):
-
with
CPython./run-tests.sh
or
./run-tests.sh cpython -
with
PyPy./run-tests.sh pypy
PowerShell script (e.g. can be used in Git hooks):
- with
CPython.\run-tests.ps1
or.\run-tests.ps1 cpython
- with
PyPy.\run-tests.ps1 pypy
Project details
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 rsrc_web-0.0.3.tar.gz.
File metadata
- Download URL: rsrc_web-0.0.3.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.5.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f73269f64c695b88948ebfec0d2abc49d0e59ae2f949584ff605e3c49fa4463
|
|
| MD5 |
d3d255ce29569277ec4aaffb3fa4697d
|
|
| BLAKE2b-256 |
edf9f56f5543be8a9c6f9d5527749b36563f9e6668ec4c83dfe9499695852e80
|
File details
Details for the file rsrc_web-0.0.3-py3-none-any.whl.
File metadata
- Download URL: rsrc_web-0.0.3-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.5.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
befbae2850cdd99f9db0dbd695c3a3cb256b403bb886e19eca8383a8fdff5129
|
|
| MD5 |
eb98721a74b8e095d73d347236c5e210
|
|
| BLAKE2b-256 |
c043b4679c99129351c245d5cac8ff64dee39e04a946ea1c2b2158e91f4138ba
|