Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kfields/botsley
Asynchronous Behavior System in Python
https://github.com/kfields/botsley
Last synced: 3 days ago
JSON representation
Asynchronous Behavior System in Python
- Host: GitHub
- URL: https://github.com/kfields/botsley
- Owner: kfields
- License: mit
- Created: 2020-04-23T05:19:41.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-13T07:26:00.000Z (7 months ago)
- Last Synced: 2024-04-13T21:11:30.839Z (7 months ago)
- Language: Python
- Size: 465 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Botsley :robot:
The little bot who could
## Quick Links
:notebook: [Documentation](https://botsley.readthedocs.io/en/latest/)
:package: [Package](https://pypi.org/project/botsley/)
## Installation
### From PyPI
#### TLDR - do this at your own risk
pip install botsley
#### Recommended - pipX
If you don't already have it installed go to https://pypi.org/project/pipx/ for instructions
pipx install botsley
### From GitHub
Clone the repository
git clone https://github.com/kfields/botsley.git
Navigate to the new directory which contains the repositorycd botsley
Create a Python 3 virtual environment called `env`
python3 -m venv env
Activate the environmentsource env/bin/activate
Install required packagespip install -r requirements.txt