From 9e5efac6297f09082af60ebb149350cb013d81fa Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Wed, 31 May 2023 05:39:07 +0000 Subject: automatic import of python-pythonanywhere --- .gitignore | 1 + python-pythonanywhere.spec | 306 +++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 308 insertions(+) create mode 100644 python-pythonanywhere.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index e69de29..465a1e8 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/pythonanywhere-0.11.0.tar.gz diff --git a/python-pythonanywhere.spec b/python-pythonanywhere.spec new file mode 100644 index 0000000..1728834 --- /dev/null +++ b/python-pythonanywhere.spec @@ -0,0 +1,306 @@ +%global _empty_manifest_terminate_build 0 +Name: python-pythonanywhere +Version: 0.11.0 +Release: 1 +Summary: PythonAnywhere helper tools for users +License: MIT +URL: https://github.com/pythonanywhere/helper_scripts/ +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/e5/29/7fe0cce4fb1120c2a2e58f05198751e8ee189f365b727a476fef7af5a9df/pythonanywhere-0.11.0.tar.gz +BuildArch: noarch + + +%description +![Build Status](https://github.com/pythonanywhere/helper_scripts/actions/workflows/tests.yaml/badge.svg) +[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) +[![PyPI](https://img.shields.io/pypi/v/pythonanywhere)](https://pypi.org/project/pythonanywhere/) +[![Downloads](https://pepy.tech/badge/pythonanywhere)](https://pepy.tech/project/pythonanywhere) + +# PythonAnywhere cli tool + +`pa` is a single command to manage PythonAnywhere services. + +It is designed to be run from PythonAnywhere consoles, but many subcommands can be executed directly +from your own machine (see [usage](#Usage) below). + +## Installing +### On PythonAnywhere +In a PythonAnywhere Bash console, run: + + pip3.10 install --user pythonanywhere + +If there is no `python3.9` on your PythonAnywhere account, +you should upgrade your account to the newest system image. +See [here](https://help.pythonanywhere.com/pages/ChangingSystemImage) how to do that. +`pa` works with python 3.7, 3.8 and 3.9, but we recommend using the latest system image. + +### On your own machine +Install the `pythonanywhere` package from [PyPI](https://pypi.org/project/pythonanywhere/). +We recommend using `pipx` if you want to use it only as a cli tool, or a virtual environment +if you want to use a programmatic interface in your own code. + +## Usage + +There are two ways to use the package. You can just run the scripts or use the underlying api wrappers directly in your scripts. + +### Command line interface + +### Running `pa` on your local machine + +`pa` expects the presence of some environment variables that are provided when you run your code in a PythonAnywere console. +You need to provide them if you run `pa` on your local machine. + +`API_TOKEN` -- you need to set this to allow `pa` to connect to the [PythonAnywere API](https://help.pythonanywhere.com/pages/API). +To get an API token, log into PythonAnywhere and go to the "Account" page using the link at the top right. +Click on the "API token" tab, and click the "Create a new API token" button to get your token. + +`PYTHONANYWHERE_SITE` is used to connect to PythonAnywhere API and defaults to `www.pythonanywhere.com`, +but you may need to set it to `eu.pythonanywhere.com` if you use our EU site. + +If your username on PythonAnywhere is different from the username on your local machine, +you may need to set `USER` for the environment you run `pa` in. + +### Programmatic usage in your code + +Take a look at the [`pythonanywhere.task`](https://github.com/pythonanywhere/helper_scripts/blob/master/pythonanywhere/task.py) +module and docstrings of `pythonanywhere.task.Task` class and its methods. + +### Legacy scripts + +Some legacy [scripts](https://github.com/pythonanywhere/helper_scripts/blob/master/legacy.md) (separate for each action) are still available. + +## Contributing + +Pull requests are welcome! You'll find tests in the [tests](https://github.com/pythonanywhere/helper_scripts/blob/master/tests) folder... + + # prep your dev environment + mkvirtualenv --python=python3.10 helper_scripts + pip install -r requirements.txt + pip install -e . + + # running the tests: + pytest + + # make sure that the code that you have written is well tested: + pytest --cov=pythonanywhere --cov=scripts + + # to just run the fast tests: + pytest -m 'not slowtest' -v + + + + + +%package -n python3-pythonanywhere +Summary: PythonAnywhere helper tools for users +Provides: python-pythonanywhere +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-pythonanywhere +![Build Status](https://github.com/pythonanywhere/helper_scripts/actions/workflows/tests.yaml/badge.svg) +[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) +[![PyPI](https://img.shields.io/pypi/v/pythonanywhere)](https://pypi.org/project/pythonanywhere/) +[![Downloads](https://pepy.tech/badge/pythonanywhere)](https://pepy.tech/project/pythonanywhere) + +# PythonAnywhere cli tool + +`pa` is a single command to manage PythonAnywhere services. + +It is designed to be run from PythonAnywhere consoles, but many subcommands can be executed directly +from your own machine (see [usage](#Usage) below). + +## Installing +### On PythonAnywhere +In a PythonAnywhere Bash console, run: + + pip3.10 install --user pythonanywhere + +If there is no `python3.9` on your PythonAnywhere account, +you should upgrade your account to the newest system image. +See [here](https://help.pythonanywhere.com/pages/ChangingSystemImage) how to do that. +`pa` works with python 3.7, 3.8 and 3.9, but we recommend using the latest system image. + +### On your own machine +Install the `pythonanywhere` package from [PyPI](https://pypi.org/project/pythonanywhere/). +We recommend using `pipx` if you want to use it only as a cli tool, or a virtual environment +if you want to use a programmatic interface in your own code. + +## Usage + +There are two ways to use the package. You can just run the scripts or use the underlying api wrappers directly in your scripts. + +### Command line interface + +### Running `pa` on your local machine + +`pa` expects the presence of some environment variables that are provided when you run your code in a PythonAnywere console. +You need to provide them if you run `pa` on your local machine. + +`API_TOKEN` -- you need to set this to allow `pa` to connect to the [PythonAnywere API](https://help.pythonanywhere.com/pages/API). +To get an API token, log into PythonAnywhere and go to the "Account" page using the link at the top right. +Click on the "API token" tab, and click the "Create a new API token" button to get your token. + +`PYTHONANYWHERE_SITE` is used to connect to PythonAnywhere API and defaults to `www.pythonanywhere.com`, +but you may need to set it to `eu.pythonanywhere.com` if you use our EU site. + +If your username on PythonAnywhere is different from the username on your local machine, +you may need to set `USER` for the environment you run `pa` in. + +### Programmatic usage in your code + +Take a look at the [`pythonanywhere.task`](https://github.com/pythonanywhere/helper_scripts/blob/master/pythonanywhere/task.py) +module and docstrings of `pythonanywhere.task.Task` class and its methods. + +### Legacy scripts + +Some legacy [scripts](https://github.com/pythonanywhere/helper_scripts/blob/master/legacy.md) (separate for each action) are still available. + +## Contributing + +Pull requests are welcome! You'll find tests in the [tests](https://github.com/pythonanywhere/helper_scripts/blob/master/tests) folder... + + # prep your dev environment + mkvirtualenv --python=python3.10 helper_scripts + pip install -r requirements.txt + pip install -e . + + # running the tests: + pytest + + # make sure that the code that you have written is well tested: + pytest --cov=pythonanywhere --cov=scripts + + # to just run the fast tests: + pytest -m 'not slowtest' -v + + + + + +%package help +Summary: Development documents and examples for pythonanywhere +Provides: python3-pythonanywhere-doc +%description help +![Build Status](https://github.com/pythonanywhere/helper_scripts/actions/workflows/tests.yaml/badge.svg) +[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) +[![PyPI](https://img.shields.io/pypi/v/pythonanywhere)](https://pypi.org/project/pythonanywhere/) +[![Downloads](https://pepy.tech/badge/pythonanywhere)](https://pepy.tech/project/pythonanywhere) + +# PythonAnywhere cli tool + +`pa` is a single command to manage PythonAnywhere services. + +It is designed to be run from PythonAnywhere consoles, but many subcommands can be executed directly +from your own machine (see [usage](#Usage) below). + +## Installing +### On PythonAnywhere +In a PythonAnywhere Bash console, run: + + pip3.10 install --user pythonanywhere + +If there is no `python3.9` on your PythonAnywhere account, +you should upgrade your account to the newest system image. +See [here](https://help.pythonanywhere.com/pages/ChangingSystemImage) how to do that. +`pa` works with python 3.7, 3.8 and 3.9, but we recommend using the latest system image. + +### On your own machine +Install the `pythonanywhere` package from [PyPI](https://pypi.org/project/pythonanywhere/). +We recommend using `pipx` if you want to use it only as a cli tool, or a virtual environment +if you want to use a programmatic interface in your own code. + +## Usage + +There are two ways to use the package. You can just run the scripts or use the underlying api wrappers directly in your scripts. + +### Command line interface + +### Running `pa` on your local machine + +`pa` expects the presence of some environment variables that are provided when you run your code in a PythonAnywere console. +You need to provide them if you run `pa` on your local machine. + +`API_TOKEN` -- you need to set this to allow `pa` to connect to the [PythonAnywere API](https://help.pythonanywhere.com/pages/API). +To get an API token, log into PythonAnywhere and go to the "Account" page using the link at the top right. +Click on the "API token" tab, and click the "Create a new API token" button to get your token. + +`PYTHONANYWHERE_SITE` is used to connect to PythonAnywhere API and defaults to `www.pythonanywhere.com`, +but you may need to set it to `eu.pythonanywhere.com` if you use our EU site. + +If your username on PythonAnywhere is different from the username on your local machine, +you may need to set `USER` for the environment you run `pa` in. + +### Programmatic usage in your code + +Take a look at the [`pythonanywhere.task`](https://github.com/pythonanywhere/helper_scripts/blob/master/pythonanywhere/task.py) +module and docstrings of `pythonanywhere.task.Task` class and its methods. + +### Legacy scripts + +Some legacy [scripts](https://github.com/pythonanywhere/helper_scripts/blob/master/legacy.md) (separate for each action) are still available. + +## Contributing + +Pull requests are welcome! You'll find tests in the [tests](https://github.com/pythonanywhere/helper_scripts/blob/master/tests) folder... + + # prep your dev environment + mkvirtualenv --python=python3.10 helper_scripts + pip install -r requirements.txt + pip install -e . + + # running the tests: + pytest + + # make sure that the code that you have written is well tested: + pytest --cov=pythonanywhere --cov=scripts + + # to just run the fast tests: + pytest -m 'not slowtest' -v + + + + + +%prep +%autosetup -n pythonanywhere-0.11.0 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-pythonanywhere -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 31 2023 Python_Bot - 0.11.0-1 +- Package Spec generated diff --git a/sources b/sources new file mode 100644 index 0000000..68eab5b --- /dev/null +++ b/sources @@ -0,0 +1 @@ +fd8a020f2cae6082f660ddc98080c2dd pythonanywhere-0.11.0.tar.gz -- cgit v1.2.3