Skip to content

Commit

Permalink
[DOCS] Fixes post review
Browse files Browse the repository at this point in the history
  • Loading branch information
francis-clairicia committed Sep 21, 2023
1 parent e3cc4be commit 2698683
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 11 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ on:
- '.github/**'
- '!.github/actions/setup-tox/**'
- '!.github/workflows/build.yml'
- 'docs/**'
push:
branches:
- main
Expand All @@ -32,6 +33,7 @@ on:
- '.github/**'
- '!.github/actions/setup-tox/**'
- '!.github/workflows/build.yml'
- 'docs/**'
workflow_dispatch:
inputs:
SOURCE_DATE_EPOCH:
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,13 @@ pip install --user .
```

## Overview
EasyNetwork fully encapsulates socket handling, offering you a high-level interface enabling an application/software to fully handle the logic part
with Python objects without worrying about how to process, send or receive data across the network.
EasyNetwork completely encapsulates the socket handling, providing you with a higher level interface
that allows an application/software to completely handle the logic part with Python objects,
without worrying about how to process, send or receive data over the network.

The communication protocol can be whatever you want, be it JSON, pickle, ASCII, structure, base64 encoded, compressed, encrypted,
or any other format not part of the standard library.
You choose the data format, and the library takes care of the rest.
The communication protocol can be whatever you want, be it JSON, Pickle, ASCII, structure, base64 encoded,
compressed, encrypted, or any other format that is not part of the standard library.
You choose the data format and the library takes care of the rest.

Works with TCP and UDP.

Expand Down
1 change: 1 addition & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
copyright = "2023, Francis Clairicia-Rose-Claire-Josephine"
author = "FrankySnow9"
release = "1.0.0rc4"
version = release

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion docs/source/quickstart/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To use EasyNetwork, first install it using :program:`pip`:
Optional Dependencies
=====================

EasyNetwork has no required dependencies, but the library comes with a bunch of optional dependencies to meet specific needs.
EasyNetwork has no required dependencies, but comes with many optional dependencies to meet specific needs.

Here is the full list:

Expand Down
11 changes: 6 additions & 5 deletions docs/source/quickstart/overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
Overview
********

EasyNetwork fully encapsulates socket handling, offering you a high-level interface enabling an application/software to fully handle the logic part
with Python objects without worrying about how to process, send or receive data across the network.
EasyNetwork completely encapsulates the socket handling, providing you with a higher level interface
that allows an application/software to completely handle the logic part with Python objects,
without worrying about how to process, send or receive data over the network.

The communication protocol can be whatever you want, be it JSON, pickle, ASCII, structure, base64 encoded, compressed, encrypted,
or any other format not part of the standard library.
You choose the data format, and the library takes care of the rest.
The communication protocol can be whatever you want, be it JSON, Pickle, ASCII, structure, base64 encoded,
compressed, encrypted, or any other format that is not part of the standard library.
You choose the data format and the library takes care of the rest.

Works with TCP and UDP.

0 comments on commit 2698683

Please sign in to comment.