eric-ide-server


Nameeric-ide-server JSON
Version 24.11 PyPI version JSON
download
home_pageNone
Summaryeric7_server is the server part of the eric7 IDE.
upload_time2024-10-31 12:43:39
maintainerDetlev Offenbach
docs_urlNone
authorDetlev Offenbach
requires_python<3.14,>=3.8
licenseGPLv3
keywords development eric-ide ide python3
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # README for the eric-ide Server

## 0. What is eric-ide-server?
eric-ide-server is an extension for the eric7 IDE. It allows remote editing
and debugging of Python scripts and projects. By having the eric7_server
script installed and running on a remote computer the eric7 IDE will be able
to connect to it for loading and saving files and run a debug session. This
works for simple (single) scripts as well as complete eric-ide projects.
For more details see
[https://eric-ide.python-projects.org](https://eric-ide.python-projects.org)

## 1. Installation
Installing eric7_server is a simple process. It is recommended to run the
server in its own Python virtual environment in order to not mess with your
system. Installation should be done using the package provided via PyPI. The
steps are shown below.

### 1.1 Create a Python virtual environment for eric7_server
In order to create that environment execute the following command in a terminal
window.

__Linux, macOS__

    python3 -m venv eric7_server_venv

__Windows__

    python.exe -m venv eric7_server_venv

Replace `eric7_server_venv` with the desired path to the directory for the virtual
environment. All further instructions will assume this environment name.

### 1.2 Installation via the Python Package Index PyPI

Enter the following command in a terminal window.

__Linux, macOS__

    ~/eric7_server_venv/bin/python3 -m pip install --upgrade --prefer-binary eric-ide-server

__Windows__

    eric7_server_venv\Scripts\python.exe -m pip install --upgrade --prefer-binary eric-ide-server

## 2. Usage
In order to use the eric-ide server on a remote host just login to this host (preferable
via ssh) and start the server. When serving files via the eric-ide server file dialog,
the current directory (i.e. the one the server was started in) will be shown first. Some
aspects of the server may be changed via command line switches. The supported switches
are

- -h, --help  
    Show some help message giving the supported switches and exit.
- -p PORT, --port PORT  
    Listen on the given port for connections from an eric IDE (default 42024).
- -6, --with-ipv6  
    Listen on IPv6 interfaces as well, if the system supports the creation of TCP
    sockets, which can handle both IPv4 and IPv6.
- -V, --version  
    Show version information and exit.

## 3. License
eric7 (and the eric7 tools) is released under the conditions of the GPLv3. See 
separate license file `LICENSE.GPL3` for more details. Third party software
included in eric7 is released under their respective license and contained in
the eric7 distribution for convenience. 

## 4. Bugs and other reports
Please send bug reports, feature requests or contributions to eric bugs
address. Just send an email to
[eric-bugs@eric-ide.python-projects.org](mailto:eric-bugs@eric-ide.python-projects.org).
To request a new feature send an email to
[eric-featurerequest@eric-ide.python-projects.org](mailto:eric-featurerequest@eric-ide.python-projects.org).

Alternatively bugs may be reported or features requested via the eric7 issue tracker
at 
[https://tracker.die-offenbachs.homelinux.org/](https://tracker.die-offenbachs.homelinux.org/).

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "eric-ide-server",
    "maintainer": "Detlev Offenbach",
    "docs_url": null,
    "requires_python": "<3.14,>=3.8",
    "maintainer_email": "Detlev Offenbach <detlev@die-offenbachs.de>",
    "keywords": "Development, eric-ide, IDE, Python3",
    "author": "Detlev Offenbach",
    "author_email": "Detlev Offenbach <detlev@die-offenbachs.de>",
    "download_url": "https://files.pythonhosted.org/packages/cf/8c/b7634bbebc9ff6039fa6b209f40899fadcf46c00c16701775fa8ccf23e64/eric_ide_server-24.11.tar.gz",
    "platform": "FreeBSD",
    "description": "# README for the eric-ide Server\n\n## 0. What is eric-ide-server?\neric-ide-server is an extension for the eric7 IDE. It allows remote editing\nand debugging of Python scripts and projects. By having the eric7_server\nscript installed and running on a remote computer the eric7 IDE will be able\nto connect to it for loading and saving files and run a debug session. This\nworks for simple (single) scripts as well as complete eric-ide projects.\nFor more details see\n[https://eric-ide.python-projects.org](https://eric-ide.python-projects.org)\n\n## 1. Installation\nInstalling eric7_server is a simple process. It is recommended to run the\nserver in its own Python virtual environment in order to not mess with your\nsystem. Installation should be done using the package provided via PyPI. The\nsteps are shown below.\n\n### 1.1 Create a Python virtual environment for eric7_server\nIn order to create that environment execute the following command in a terminal\nwindow.\n\n__Linux, macOS__\n\n    python3 -m venv eric7_server_venv\n\n__Windows__\n\n    python.exe -m venv eric7_server_venv\n\nReplace `eric7_server_venv` with the desired path to the directory for the virtual\nenvironment. All further instructions will assume this environment name.\n\n### 1.2 Installation via the Python Package Index PyPI\n\nEnter the following command in a terminal window.\n\n__Linux, macOS__\n\n    ~/eric7_server_venv/bin/python3 -m pip install --upgrade --prefer-binary eric-ide-server\n\n__Windows__\n\n    eric7_server_venv\\Scripts\\python.exe -m pip install --upgrade --prefer-binary eric-ide-server\n\n## 2. Usage\nIn order to use the eric-ide server on a remote host just login to this host (preferable\nvia ssh) and start the server. When serving files via the eric-ide server file dialog,\nthe current directory (i.e. the one the server was started in) will be shown first. Some\naspects of the server may be changed via command line switches. The supported switches\nare\n\n- -h, --help  \n    Show some help message giving the supported switches and exit.\n- -p PORT, --port PORT  \n    Listen on the given port for connections from an eric IDE (default 42024).\n- -6, --with-ipv6  \n    Listen on IPv6 interfaces as well, if the system supports the creation of TCP\n    sockets, which can handle both IPv4 and IPv6.\n- -V, --version  \n    Show version information and exit.\n\n## 3. License\neric7 (and the eric7 tools) is released under the conditions of the GPLv3. See \nseparate license file `LICENSE.GPL3` for more details. Third party software\nincluded in eric7 is released under their respective license and contained in\nthe eric7 distribution for convenience. \n\n## 4. Bugs and other reports\nPlease send bug reports, feature requests or contributions to eric bugs\naddress. Just send an email to\n[eric-bugs@eric-ide.python-projects.org](mailto:eric-bugs@eric-ide.python-projects.org).\nTo request a new feature send an email to\n[eric-featurerequest@eric-ide.python-projects.org](mailto:eric-featurerequest@eric-ide.python-projects.org).\n\nAlternatively bugs may be reported or features requested via the eric7 issue tracker\nat \n[https://tracker.die-offenbachs.homelinux.org/](https://tracker.die-offenbachs.homelinux.org/).\n",
    "bugtrack_url": null,
    "license": "GPLv3",
    "summary": "eric7_server is the server part of the eric7 IDE.",
    "version": "24.11",
    "project_urls": {
        "Donation": "https://www.paypal.com/donate/?hosted_button_id=XG3RSPKE3YAJ2",
        "Download": "https://sourceforge.net/projects/eric-ide/files/latest/download",
        "Homepage": "https://eric-ide.python-projects.org",
        "Issues Tracker": "https://tracker.die-offenbachs.homelinux.org/",
        "Mailing List": "https://www.riverbankcomputing.com/mailman/listinfo/eric",
        "News": "https://eric-ide.python-projects.org/eric-news.html",
        "Source Code": "https://hg.die-offenbachs.homelinux.org/eric/"
    },
    "split_keywords": [
        "development",
        " eric-ide",
        " ide",
        " python3"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "327e133caa1e613d2e72d62f91014f51606e55e18ba5161d54f11d3f03198826",
                "md5": "76a014334cd168f14a1b18b2d81bae5e",
                "sha256": "5a8304df9adcaabfa14ba4acaf430a642a50b21c9ca39e5596596ba8c839be6e"
            },
            "downloads": -1,
            "filename": "eric_ide_server-24.11-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "76a014334cd168f14a1b18b2d81bae5e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.14,>=3.8",
            "size": 87305,
            "upload_time": "2024-10-31T12:43:37",
            "upload_time_iso_8601": "2024-10-31T12:43:37.292613Z",
            "url": "https://files.pythonhosted.org/packages/32/7e/133caa1e613d2e72d62f91014f51606e55e18ba5161d54f11d3f03198826/eric_ide_server-24.11-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf8cb7634bbebc9ff6039fa6b209f40899fadcf46c00c16701775fa8ccf23e64",
                "md5": "9fe2392f9c1d852096cab0079ba24429",
                "sha256": "13f37ba91f9c73cb434735f80de80364fc37f4588f2a1542dafed298691a4bc7"
            },
            "downloads": -1,
            "filename": "eric_ide_server-24.11.tar.gz",
            "has_sig": false,
            "md5_digest": "9fe2392f9c1d852096cab0079ba24429",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.14,>=3.8",
            "size": 85257,
            "upload_time": "2024-10-31T12:43:39",
            "upload_time_iso_8601": "2024-10-31T12:43:39.071096Z",
            "url": "https://files.pythonhosted.org/packages/cf/8c/b7634bbebc9ff6039fa6b209f40899fadcf46c00c16701775fa8ccf23e64/eric_ide_server-24.11.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-31 12:43:39",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "eric-ide-server"
}
        
Elapsed time: 1.12939s