Skip to content

Commit

Permalink
review: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
hugo-gomes authored Nov 21, 2023
1 parent 16e1b50 commit e8b159a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ Netius is a Python network library that can be used for the rapid creation of as
servers and clients. It has no dependencies, it's cross-platform, and brings some sample netius-powered
servers out of the box, namely a production-ready WSGI server.

Simplicity and performance are the main drivers of this project. The codebase adheres to very strict
code standards, and is extensively commented; and as far as performance is concerned, it aims to
be up to par with equivalent native implementations, where [PyPy](http://pypy.org) can be used to
Simplicity and performance are the main drivers of this project. The codebase adheres to rigorous
code standards and is extensively commented on. As far as performance is concerned, it aims to
be up to par with equivalent native implementations, where [PyPy](http://pypy.org) can
provide the extra boost to raise performance up to these standards.

Bear in mind that although netius is non-blocking, it will naturally still block if the operations
performed within the event loop are blocking, like reading or writing a file, which are both blocking
operations in the Python standard library. Running multiple netius instances in parallel, and having
a fast server like [NGINX](http://nginx.org) act as their reverse proxy, is one way of minimising the
a fast server like [NGINX](http://nginx.org) acts as their reverse proxy, which is one way of minimizing the
perceptibility of such blockages.

## Installation
Expand All @@ -25,9 +25,9 @@ pip install netius

Or download the source from [GitHub](https://github.com/hivesolutions/netius).

Netius has no dependencies, and is therefore cross-platform. It's compatible with [PyPy](http://pypy.org),
with which it benefits of performance increases up to 1.5x - 2.5x faster in most environments, when
compared with running it with the cPython interpreter.
Netius has no dependencies and is therefore cross-platform. It's compatible with [PyPy](http://pypy.org),
with which its benefits of performance increase up to 1.5x - 2.5x faster in most environments, when
compared with running it with the CPython interpreter.

## Usage

Expand Down

0 comments on commit e8b159a

Please sign in to comment.