"Ah, if only I could get someone to read this for feedback." "Only if I could know which keywords to target..."
We all have been there, haven't we?
OpnEco is a Python3 project developed just for that. To be a constant companion throughout your content writing process. By content writers, for content writers.
- Hassle-free installation
- Can work without Internet (some modules need them though.)
OpnEco doesn't require any lengthy installation process. You can do in any of the following ways:
-
You can simply download, resolve its dependencies, and build it.
-
If you are a Windows user, you can run
setup.bat
by double clicking it. If you are a Linux user, a simple./setup.sh
will do.
But ensure that you have a proper Internet connection and Python installed and properly configured. Windows users may need to check if Python is added to the PATH environment variable in their systems.
- Download this project code and open the top-level directory.
- Install the Python dependencies using
pip install -r requirements.txt
(orpip3 install -r requirements.txt
if you have two versions of Python installed.) - Run init.py using
python init.py
(orpython3 init.py
if you have two versions of Python installed.) - Run manage.py using
python manage.py runserver
(orpython3 manage.py runserver
if you have two versions of Python installed.)
- If you are a Windows user, you can run
start.bat
by double clicking it. If you are a Linux user, a simple./start.sh
will do. - If you built it from scratch, follow steps 0 and 3 above.
- Open
127.0.0.1:8000
orlocalhost:8000
on your browser if you have installed with default settings.