├── .gitignore ├── pycs.py ├── readme.md └── resources ├── comments.py ├── confutil.py ├── formats ├── creation.txt ├── eggdrop.cfg ├── hexchat.cfg ├── irccloud.cfg ├── irssi.cfg ├── mirc.cfg └── xchat.cfg ├── generate.py ├── htmlout.py ├── startops.py └── themes ├── creation.txt └── default ├── index.html └── resources ├── fonts └── OpenSans │ ├── Apache License Version 2.txt │ ├── OpenSans-Bold-webfont.eot │ ├── OpenSans-Bold.ttf │ ├── OpenSans-Light-webfont.eot │ ├── OpenSans-Light.ttf │ ├── OpenSans-Regular-webfont.eot │ ├── OpenSans-Regular.ttf │ ├── OpenSans-Semibold-webfont.eot │ └── OpenSans-Semibold.ttf ├── images ├── quote.png ├── stat.png └── time │ ├── dawn.png │ ├── day.png │ ├── morning.png │ └── night.png └── stylesheet.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/.gitignore -------------------------------------------------------------------------------- /pycs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/pycs.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/readme.md -------------------------------------------------------------------------------- /resources/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/comments.py -------------------------------------------------------------------------------- /resources/confutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/confutil.py -------------------------------------------------------------------------------- /resources/formats/creation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/formats/creation.txt -------------------------------------------------------------------------------- /resources/formats/eggdrop.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/formats/eggdrop.cfg -------------------------------------------------------------------------------- /resources/formats/hexchat.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/formats/hexchat.cfg -------------------------------------------------------------------------------- /resources/formats/irccloud.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/formats/irccloud.cfg -------------------------------------------------------------------------------- /resources/formats/irssi.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/formats/irssi.cfg -------------------------------------------------------------------------------- /resources/formats/mirc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/formats/mirc.cfg -------------------------------------------------------------------------------- /resources/formats/xchat.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/formats/xchat.cfg -------------------------------------------------------------------------------- /resources/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/generate.py -------------------------------------------------------------------------------- /resources/htmlout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/htmlout.py -------------------------------------------------------------------------------- /resources/startops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/startops.py -------------------------------------------------------------------------------- /resources/themes/creation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/themes/creation.txt -------------------------------------------------------------------------------- /resources/themes/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/themes/default/index.html -------------------------------------------------------------------------------- /resources/themes/default/resources/fonts/OpenSans/Apache License Version 2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/themes/default/resources/fonts/OpenSans/Apache License Version 2.txt -------------------------------------------------------------------------------- /resources/themes/default/resources/fonts/OpenSans/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/themes/default/resources/fonts/OpenSans/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /resources/themes/default/resources/fonts/OpenSans/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/themes/default/resources/fonts/OpenSans/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /resources/themes/default/resources/fonts/OpenSans/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/themes/default/resources/fonts/OpenSans/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /resources/themes/default/resources/fonts/OpenSans/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/themes/default/resources/fonts/OpenSans/OpenSans-Light.ttf -------------------------------------------------------------------------------- /resources/themes/default/resources/fonts/OpenSans/OpenSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/themes/default/resources/fonts/OpenSans/OpenSans-Regular-webfont.eot -------------------------------------------------------------------------------- /resources/themes/default/resources/fonts/OpenSans/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/themes/default/resources/fonts/OpenSans/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /resources/themes/default/resources/fonts/OpenSans/OpenSans-Semibold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/themes/default/resources/fonts/OpenSans/OpenSans-Semibold-webfont.eot -------------------------------------------------------------------------------- /resources/themes/default/resources/fonts/OpenSans/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/themes/default/resources/fonts/OpenSans/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /resources/themes/default/resources/images/quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/themes/default/resources/images/quote.png -------------------------------------------------------------------------------- /resources/themes/default/resources/images/stat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/themes/default/resources/images/stat.png -------------------------------------------------------------------------------- /resources/themes/default/resources/images/time/dawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/themes/default/resources/images/time/dawn.png -------------------------------------------------------------------------------- /resources/themes/default/resources/images/time/day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/themes/default/resources/images/time/day.png -------------------------------------------------------------------------------- /resources/themes/default/resources/images/time/morning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/themes/default/resources/images/time/morning.png -------------------------------------------------------------------------------- /resources/themes/default/resources/images/time/night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/themes/default/resources/images/time/night.png -------------------------------------------------------------------------------- /resources/themes/default/resources/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obskyr/pycs/HEAD/resources/themes/default/resources/stylesheet.css --------------------------------------------------------------------------------