EmpireStateRunUp


NameEmpireStateRunUp JSON
Version 0.0.6 PyPI version JSON
download
home_pageNone
SummaryCollection of scripts to analyze the results of the 2023 Empire State Run Up race
upload_time2024-03-29 19:48:08
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseNone
keywords running race
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Empire State Run Up

[![Downloads](https://static.pepy.tech/badge/EmpireStateRunUp)](https://pepy.tech/project/EmpireStateRunUp)

![empire_state_runup.png](images/empire_state_runup.png)

![ESRU browser](images/esru_browser.png)



Hello. I wrote an application to analyse the results of the 'Empire State Run Up', 2013 edition, after I ran the race. 

Here you will find my code.

## If you just want to install it

See the previous section called 'Packaging', and then install it on your virtual environment:

```shell
python3 -m venv ~/virtualenv/EmpireStateRunUp
. ~/virtualenv/EmpireStateRunUp/bin/activate
pip install --upgrade pip
pip install --upgrade build
pip install --upgrade wheel
python -m build .
pip install --upgrade dist/EmpireStateRunUp-0.0.1-py3-none-any.whl
```

There are 4 scripts that you can run:

* esru_numbers
* esru_outlier
* esru_browser
* esru_plot

If you want to learn more about these programs, please grab a cup of coffe and read the [TUTORIAL](TUTORIAL.md)

## If you are a developer

### Running the code in developer mode

```shell
python3 -m venv ~/virtualenv/EmpireStateRunUp
. ~/virtualenv/EmpireStateRunUp/bin/activate
pip install --upgrade pip
pip install --upgrade build
pip install --upgrade wheel
pip install --editable .
```

#### Modifying the layout without restarting the apps

For example, playing with the 'esru_outlier' application:

```shell
. ~/virtualenv/EmpireStateRunUp/bin/activate
pip install textual-dev
# On another terminal: . ~/virtualenv/EmpireStateRunUp/bin/activate && textual console
textual run --dev empirestaterunup.apps:run_outlier 
```

### Packaging 

```shell
python3 -m venv ~/virtualenv/EmpireStateRunUp
. ~/virtualenv/EmpireStateRunUp/bin/activate
pip install --upgrade pip
pip install --upgrade build
pip install --upgrade wheel
python -m build .
```

### Installation from PiPy

For your user:
```shell
pip install --user EmpireStateRunUp
```

Or using a virtual environment:

```shell
python -m venv ~/virtualenv/EmpireStateRunUp && \
.  ~/virtualenv/EmpireStateRunUp/bin/acvtivate && \
pip install EmpireStateRunUp
```

#### Country codes

I used the files generated by the [ISO-3166-Countries-with-Regional-Codes
](https://github.com/lukes/ISO-3166-Countries-with-Regional-Codes/tree/master) for the flag lookup, using [Regional indicator symbol](https://en.wikipedia.org/wiki/Regional_indicator_symbol).

## Tutorial

Make sure you check the [tutorial](TUTORIAL.md). It explains how this project got started, as well showcases features of the applications.

## Spin off this as a separate project?

If there is enough interest I may spin this off a separate project. Also, if you see a bug please open an Issue and I will work on a fix.


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "EmpireStateRunUp",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "running, race",
    "author": null,
    "author_email": "Jose Vicente Nunez <kodegeek.com@protonmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/3b/d5/5dfe0b9484b87042eb8d1e80691ae51dd8228e5d22e742f01aca9361cf77/EmpireStateRunUp-0.0.6.tar.gz",
    "platform": null,
    "description": "# Empire State Run Up\n\n[![Downloads](https://static.pepy.tech/badge/EmpireStateRunUp)](https://pepy.tech/project/EmpireStateRunUp)\n\n![empire_state_runup.png](images/empire_state_runup.png)\n\n![ESRU browser](images/esru_browser.png)\n\n\n\nHello. I wrote an application to analyse the results of the 'Empire State Run Up', 2013 edition, after I ran the race. \n\nHere you will find my code.\n\n## If you just want to install it\n\nSee the previous section called 'Packaging', and then install it on your virtual environment:\n\n```shell\npython3 -m venv ~/virtualenv/EmpireStateRunUp\n. ~/virtualenv/EmpireStateRunUp/bin/activate\npip install --upgrade pip\npip install --upgrade build\npip install --upgrade wheel\npython -m build .\npip install --upgrade dist/EmpireStateRunUp-0.0.1-py3-none-any.whl\n```\n\nThere are 4 scripts that you can run:\n\n* esru_numbers\n* esru_outlier\n* esru_browser\n* esru_plot\n\nIf you want to learn more about these programs, please grab a cup of coffe and read the [TUTORIAL](TUTORIAL.md)\n\n## If you are a developer\n\n### Running the code in developer mode\n\n```shell\npython3 -m venv ~/virtualenv/EmpireStateRunUp\n. ~/virtualenv/EmpireStateRunUp/bin/activate\npip install --upgrade pip\npip install --upgrade build\npip install --upgrade wheel\npip install --editable .\n```\n\n#### Modifying the layout without restarting the apps\n\nFor example, playing with the 'esru_outlier' application:\n\n```shell\n. ~/virtualenv/EmpireStateRunUp/bin/activate\npip install textual-dev\n# On another terminal: . ~/virtualenv/EmpireStateRunUp/bin/activate && textual console\ntextual run --dev empirestaterunup.apps:run_outlier \n```\n\n### Packaging \n\n```shell\npython3 -m venv ~/virtualenv/EmpireStateRunUp\n. ~/virtualenv/EmpireStateRunUp/bin/activate\npip install --upgrade pip\npip install --upgrade build\npip install --upgrade wheel\npython -m build .\n```\n\n### Installation from PiPy\n\nFor your user:\n```shell\npip install --user EmpireStateRunUp\n```\n\nOr using a virtual environment:\n\n```shell\npython -m venv ~/virtualenv/EmpireStateRunUp && \\\n.  ~/virtualenv/EmpireStateRunUp/bin/acvtivate && \\\npip install EmpireStateRunUp\n```\n\n#### Country codes\n\nI used the files generated by the [ISO-3166-Countries-with-Regional-Codes\n](https://github.com/lukes/ISO-3166-Countries-with-Regional-Codes/tree/master) for the flag lookup, using [Regional indicator symbol](https://en.wikipedia.org/wiki/Regional_indicator_symbol).\n\n## Tutorial\n\nMake sure you check the [tutorial](TUTORIAL.md). It explains how this project got started, as well showcases features of the applications.\n\n## Spin off this as a separate project?\n\nIf there is enough interest I may spin this off a separate project. Also, if you see a bug please open an Issue and I will work on a fix.\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Collection of scripts to analyze the results of the 2023 Empire State Run Up race",
    "version": "0.0.6",
    "project_urls": null,
    "split_keywords": [
        "running",
        " race"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "945445199a1f6ce04980d7fd1c00ae429da2fc898d98b038fc86d7359b4d8679",
                "md5": "ce0b89633dab5750299097a8f095a335",
                "sha256": "0f7b2ada7bac421e4e3bcecba3ab3574842309af88537807842ba624e8445c6b"
            },
            "downloads": -1,
            "filename": "EmpireStateRunUp-0.0.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ce0b89633dab5750299097a8f095a335",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 1024378,
            "upload_time": "2024-03-29T19:48:06",
            "upload_time_iso_8601": "2024-03-29T19:48:06.137175Z",
            "url": "https://files.pythonhosted.org/packages/94/54/45199a1f6ce04980d7fd1c00ae429da2fc898d98b038fc86d7359b4d8679/EmpireStateRunUp-0.0.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3bd55dfe0b9484b87042eb8d1e80691ae51dd8228e5d22e742f01aca9361cf77",
                "md5": "66ea1e21ee4ed9f9463552e5102c25df",
                "sha256": "169716d6453f9d318306e3754e5a008d26c1ffbe29f36cf2bb5e71db27542935"
            },
            "downloads": -1,
            "filename": "EmpireStateRunUp-0.0.6.tar.gz",
            "has_sig": false,
            "md5_digest": "66ea1e21ee4ed9f9463552e5102c25df",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 1028127,
            "upload_time": "2024-03-29T19:48:08",
            "upload_time_iso_8601": "2024-03-29T19:48:08.327101Z",
            "url": "https://files.pythonhosted.org/packages/3b/d5/5dfe0b9484b87042eb8d1e80691ae51dd8228e5d22e742f01aca9361cf77/EmpireStateRunUp-0.0.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-29 19:48:08",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "empirestaterunup"
}
        
Elapsed time: 0.22468s