https://github.com/barcawebcloud/bsconf-py
A library Python for define server configurations, repairs and installations in various operating environments.
https://github.com/barcawebcloud/bsconf-py
barca barca-cloud barcacloud bsconf bwc bwc-bsconf email-server game-servers pip python web-server
Last synced: about 1 year ago
JSON representation
A library Python for define server configurations, repairs and installations in various operating environments.
- Host: GitHub
- URL: https://github.com/barcawebcloud/bsconf-py
- Owner: BarcaWebCloud
- License: mit
- Created: 2023-04-19T20:08:49.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-20T14:18:03.000Z (about 3 years ago)
- Last Synced: 2025-01-31T08:34:15.468Z (over 1 year ago)
- Topics: barca, barca-cloud, barcacloud, bsconf, bwc, bwc-bsconf, email-server, game-servers, pip, python, web-server
- Language: Python
- Homepage: https://pypi.org/project/bwc-bsconf/
- Size: 4.88 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### [bwc-bsconf 0.1.1](https://pypi.org/project/bwc-bsconf/0.1.1/)
This project better define server configurations, repairs and installations in various operating environments.
Developers can use the main features of the tool with this pip package.
Facilitate the installation of web servers, games, email, etc.
#### To Developers
### Installation
Install the package with pip:
via PyPI:
`pip install bwc-bsconf`
or via GitHub
`pip install git+https://github.com/BarcaWebCloud/bsconf-py.git`
Now Create a Python file to start using the **bwc-bsconf** package in your project. In the example below, the file named `main.py` was specified to run the bsconf module. Add the following content in the main file.
`main.py`
```py
import importlib
bwc_bsconf = importlib.import_module("bwc-bsconf")
init = bwc_bsconf.bsconf
init()
```
Run the main program
```
python3 main.py*
```
Will display on your screen something like this:
```
Welcome to BSconf
```