Skip to main content

To help improve learning a language

Project description

English Assistant Form

This project is related to the implementation of the English Assistant Application, which helps us to learn English as an assistant. And, Also this package has the ability to translate from English to Persian.

Instruction

  1. Install Python.

⚠ WARNING:

After install EnglishAssistantForm, pip install EnglishAssistantForm, Don't forget install en_core_web_sm data. pip install "https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.6.0/en_core_web_sm-3.6.0-py3-none-any.whl"

  1. Install English Assistant Form

  2. Install English Assistant Core and SpaCy-English Core Web Small (en_core_web_sm)

    Windows:

    pip install EnglishAssistantForm & pip install "https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.6.0/en_core_web_sm-3.6.0-py3-none-any.whl"
    

    Linux:

    pip3 install EnglishAssistantForm && pip3 install https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.6.0/en_core_web_sm-3.6.0-py3-none-any.whl
    

Usage

In the Python file(.pyw):

from EnglishAssistantForm.EnglishAssistantForm import App

if __name__ == "__main__":
	app = App()
	app.mainloop()

Or

In the Batch file(.bat):

@echo off

REM Check to Installed en_core_web_sm or not? 
::
set DATA_PACKAGE=en_core_web_sm
pip show %DATA_PACKAGE% >nul 2>&1

if %errorlevel% neq 0 (
    echo %DATA_PACKAGE% not installed. Installing...
	pip install "https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.6.0/en_core_web_sm-3.6.0-py3-none-any.whl"
) else (
	echo %DATA_PACKAGE% is already installed.
)
::

REM Check to Installed EnglishAssistantForm or not? 
::
set PACKAGE_NAME=EnglishAssistantForm
pip show %PACKAGE_NAME% >nul 2>&1

if %errorlevel% neq 0 (
    echo %PACKAGE_NAME% not installed. Installing...
	pip install %PACKAGE_NAME%
) else (
	echo %PACKAGE_NAME% is already installed.
)
::

REM Write a pyw file to Run Application. 
echo from EnglishAssistantForm.EnglishAssistantForm import App>> "%~dp0%EnglishAssistantApplication.pyw"
echo app = App()>> ""%~dp0%EnglishAssistantApplication.pyw"
echo app.mainloop()>> "%~dp0%EnglishAssistantApplication.pyw"

REM Run!!!
start pythonw "%~dp0%EnglishAssistantApplication.pyw"
timeout /T 1

REM Delete exectuer file
del /f "%~dp0%EnglishAssistantApplication.pyw"

REM Do you need pause to see the steps?
::pause

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

englishassistantform-1.0.3.tar.gz (603.9 kB view hashes)

Uploaded Source

Built Distribution

englishassistantform-1.0.3-py3-none-any.whl (604.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page