Metadata-Version: 2.1
Name: aioircd
Version: 2.0.2
Summary: A minimalist asynchronous IRC server
Home-page: https://github.com/readthedocs-fr/aioircd
Author: Astremy, DrLazor
Author-email: astremy.com@gmail.com, julien.castiaux@gmail.com
License: MIT
Download-URL: https://pypi.drlazor.be/aioircd/
Platform: UNKNOWN
Classifier: Environment :: No Input/Output (Daemon)
Classifier: Framework :: AsyncIO
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Communications :: Chat :: Internet Relay Chat
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

aioircd
=======

A minimalist asynchronous IRC server

### Installation

Download and install the latest stable version using pip.
Windows users might replace `python3` by `py`.

	python3 -m pip install -i https://pypi.drlazor.be aioircd

Then simply run the `aioircd` command with the optionnal argument
listed bellow.

	usage: aioircd [--host HOST] [--port PORT] [-v] [-s]

	optional arguments:
	  --host HOST (default: ::1)
	  --port PORT (default: 6667)
	  --pwd PASS (default: None)
	  -v, --verbose
	  -s, --silent

The server by default only logs `WARNING` level messages and above. You
can increase the verbosity by repeating the `-v` option.


