Skip to main content

The Python framework which is used to build complex Client-Server applications

Project description

csbuilder

The framework supports you to build complex Client-Server applications.

How to build

Our library is only supported by Python 3. Now we test it only on Python 3.7.1. If you meet any problems, even if with other versions, you could create an issue to notify us. We will solve them as quickly as possible.

Create Virtual Environment (optional but IMPORTANT)

If you had your virtual environment, you can ignore this step.

You ought to create a virtual environment to avoid conflicting with other applications on your machine when installing our module. The virtual environment must be installed with Python 3.
I highly recommend you to use Anaconda because of its utilities. The command of creating a virtual environment in Anaconda is:

$ conda create -n your_venv_name
$ conda activate your_venv_name
(your_venv_name) $ _ 

Or use Python venv:

$ python -m venv path/to/your/venv
$ path/to/your/venv/Scripts/activate.bat
(your_venv_name) $ _

Method 1: Install the PyPI version (not completed yet)

(your_venv_name) $ pip install csbuilder

Method 2: Install the newest version (recommendation)

(your_venv_name) $ git clone https://github.com/huykingsofm/csbuilder.git
(your_venv_name) $ cd csbuilder
(your_venv_name) csbuilder $ pip install -e .

How to use

Just use import statement and enjoy it. We will write documentation and tutorials as soon as possible so that you can understand our library easier.

from csbuilder.listener import Listener
from csbuilder.client import ClientResponser

Example

See the library sft supporting file transfer using csbuilder.

Change log

Version 0.0.2

  • Fix the error in wait_result of Session.
  • Remove ActiveSession and PassiveSession. Now csbuilder allows to create the protocol which has both active activation and passive activation.
  • Change size of elements in cspacket.
  • Add role to CSPacket. Now a SessionManager can contain multiple roles of a protocol.
  • Remove the CSPacketUtils. Instead, add from_bytes to CSPacket to extract the packet.

Version 0.0.1

  • Hello world.

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

csbuilder-0.0.2.tar.gz (17.6 kB view hashes)

Uploaded Source

Built Distribution

csbuilder-0.0.2-py3-none-any.whl (24.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page