• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

documentation/H03-May-2022-2,8851,834

examples/H03-May-2022-2,3771,908

pyserial.egg-info/H03-May-2022-4438

serial/H23-Nov-2020-8,5366,426

test/H23-Nov-2020-1,6821,113

CHANGES.rstH A D23-Nov-202027.6 KiB826600

MANIFEST.inH A D04-Apr-20201 KiB4035

PKG-INFOH A D23-Nov-20201.6 KiB4438

README.rstH A D16-Sep-20201.9 KiB5741

pylintrcH A D04-Apr-202012.2 KiB379257

setup.cfgH A D23-Nov-2020125 128

setup.pyH A D21-Sep-20203.1 KiB10981

README.rst

1=================================
2 pySerial  |build-status| |docs|
3=================================
4
5Overview
6========
7This module encapsulates the access for the serial port. It provides backends
8for Python_ running on Windows, OSX, Linux, BSD (possibly any POSIX compliant
9system) and IronPython. The module named "serial" automatically selects the
10appropriate backend.
11
12- Project Homepage: https://github.com/pyserial/pyserial
13- Download Page: https://pypi.python.org/pypi/pyserial
14
15BSD license, (C) 2001-2020 Chris Liechti <cliechti@gmx.net>
16
17
18Documentation
19=============
20For API documentation, usage and examples see files in the "documentation"
21directory.  The ".rst" files can be read in any text editor or being converted to
22HTML or PDF using Sphinx_. An HTML version is online at
23https://pythonhosted.org/pyserial/
24
25Examples
26========
27Examples and unit tests are in the directory examples_.
28
29
30Installation
31============
32``pip install pyserial`` should work for most users.
33
34Detailed information can be found in `documentation/pyserial.rst`_.
35
36The usual setup.py for Python_ libraries is used for the source distribution.
37Windows installers are also available (see download link above).
38
39or
40
41To install this package with conda run:
42
43``conda install -c conda-forge pyserial``
44
45conda builds are available for linux, mac and windows.
46
47.. _`documentation/pyserial.rst`: https://github.com/pyserial/pyserial/blob/master/documentation/pyserial.rst#installation
48.. _examples: https://github.com/pyserial/pyserial/blob/master/examples
49.. _Python: http://python.org/
50.. _Sphinx: http://sphinx-doc.org/
51.. |build-status| image:: https://travis-ci.org/pyserial/pyserial.svg?branch=master
52   :target: https://travis-ci.org/pyserial/pyserial
53   :alt: Build status
54.. |docs| image:: https://readthedocs.org/projects/pyserial/badge/?version=latest
55   :target: http://pyserial.readthedocs.io/
56   :alt: Documentation
57