Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/SblipDev/PyServed
A beautiful cli with network transfer/hosting utilities to make life easier.
https://github.com/SblipDev/PyServed
hosting networking python utility-tool
Last synced: 3 months ago
JSON representation
A beautiful cli with network transfer/hosting utilities to make life easier.
- Host: GitHub
- URL: https://github.com/SblipDev/PyServed
- Owner: SblipDev
- License: mit
- Created: 2021-12-08T08:49:15.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-10T03:48:56.000Z (about 2 years ago)
- Last Synced: 2024-07-01T13:09:42.212Z (5 months ago)
- Topics: hosting, networking, python, utility-tool
- Language: Python
- Homepage:
- Size: 14.3 MB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# PyServed v2.1
[![Downloads](https://static.pepy.tech/personalized-badge/pyserved?period=total&units=none&left_color=black&right_color=red&left_text=Downloads)](https://pepy.tech/project/pyserved)
A beautiful cli with network transfer/hosting utilities to make life easier.
## Installation
#### Using pip (recommended) ->
![Pip Installation](images/installationwithpip.gif)
```
$ pip install pyserved
```Pypi Link -> https://pypi.org/project/pyserved/
#### Using Git and SETUP.py install (for latest updates) ->
![Source Installation](images/installationwithgit.gif)
```
$ git clone https://github.com/SblipDev/pyserved.git
$ cd pyserved
$ python3 setup.py install
```## Usage
Once installed, you will be able to send files across computers with the package and python on it OR
you can host a folder on network so anyone on network may download its contents.
If there is any problem you can file and issue on this repo.### To listen for files
To send files, you will have to run the following command (The correct output is also shown):
```
$ pdlisten[SERVER]: Server is listening on 192.168.1.5:8080
[SERVER]: Connection Key: 192@168@1@58+8080
[SERVER]: Waiting for a connection for files...
```To change the default port(8080), add the '-port XXXX' argument to the command and try again.
If someone else conects using the pyserved 'pdsnd' command, enter the connection key which is showed. It will write the file to the current working directory### To get files.
To send files, you will have to run the `pdsnd` command. It will prompt for the filepath of the file you want to send.
If everything goes right, the file will be sent to the person listening in the same network.
To change the default port(8080), add the '-port XXXX' argument to the command and try again.```
$ pdsnd[SERVER] : Program Initialized at current directory './'
[SERVER] : Connection Key: {Connection Key from pdlisten program}
[SERVER] : Filename: {Path of file which you want to transfer.}
```### To host folder.
To host a folder, you have to use the `pdhost` command. You can use the `-port` command so you may change the default port `6789`.
PS. Don't use in production environments! It only has basic security features!```
$ pdhost -port 7070[SERVER]: started at 192.168.1.58:7070
192.168.1.58 - - [22/Mar/2022 20:15:54] "GET / HTTP/1.1" 200 -
192.168.1.58 - - [22/Mar/2022 20:15:55] code 404, message File not found
192.168.1.58 - - [22/Mar/2022 20:15:55] "GET /favicon.ico HTTP/1.1" 404 -
```## Thats it.
Have a nice day## LICENSE
```
MIT LicenseCopyright (c) 2022 SblipDev.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```#### This project was constructed with [Choam](https://github.com/cowboycodr/choam) by [cowboycodr](https://github.com/cowboycodr/)