https://github.com/ishankhare07/rpc
a python to python implementation of rpc (RMI) for generating hashes(sha256/sha512)
https://github.com/ishankhare07/rpc
Last synced: 10 months ago
JSON representation
a python to python implementation of rpc (RMI) for generating hashes(sha256/sha512)
- Host: GitHub
- URL: https://github.com/ishankhare07/rpc
- Owner: ishankhare07
- Created: 2014-11-05T19:21:10.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-11-18T11:06:13.000Z (over 11 years ago)
- Last Synced: 2025-06-15T20:23:07.532Z (about 1 year ago)
- Language: Python
- Size: 914 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
rpc
===
a python to python implementation of rpc (RMI) for generating hashes(sha256/sha512)
Tutorial
========
Step 1 :
==========
>Download the repo
Step 2 :
==========
>Extract the zip
Step 3 :
==========
>Rename the extracted folder to 'rpc'
Step 4 :
==========
>Start the server by the command :-
>```shell
>python rpc/server.py
>```
Step 5 :
==========
Run the client in a separate terminal as follows :-
>```python
>import rpc
>c = rpc.client()
>#generate a sha256 hash
>c.sha(256,'this is my string')
>#generate a sha512 hash
>c.sha(512,'this is another string')
>```