summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-12 00:03:30 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-12 00:03:30 +0000
commitb48f684cf5b387fe37b008a98d9185ffc36ba9a7 (patch)
treedf7ec919c3b5e1abeaa5e2a982ed857a1c4ebf5e
parent177980f235e0ad490cba35fe1a723df4caa37997 (diff)
automatic import of python-phantomjs
-rw-r--r--.gitignore1
-rw-r--r--python-phantomjs.spec297
-rw-r--r--sources1
3 files changed, 299 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..c36061c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/phantomjs-1.4.1.tar.gz
diff --git a/python-phantomjs.spec b/python-phantomjs.spec
new file mode 100644
index 0000000..ce0a1ba
--- /dev/null
+++ b/python-phantomjs.spec
@@ -0,0 +1,297 @@
+%global _empty_manifest_terminate_build 0
+Name: python-phantomjs
+Version: 1.4.1
+Release: 1
+Summary: Python wrapper for PhantomJS
+License: BSD
+URL: https://github.com/neurobin/phantomjspy
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/7e/24/0177951cade2762531d6c16e8323e600e51f4eaf5e1057b03cae59f08b5a/phantomjs-1.4.1.tar.gz
+BuildArch: noarch
+
+
+%description
+[![Build Status](https://travis-ci.org/neurobin/phantomjspy.svg?branch=release)](https://travis-ci.org/neurobin/phantomjspy)
+
+PhantomJS wrapper in Python
+
+# Pre requisites
+
+1. **phantomjs:** `phantomjs` command line tool.
+2. **Python 3**
+
+# Install
+
+```bash
+pip install phantomjs
+```
+
+# Usage
+
+## Using with a custom phantomjs script:
+
+```python
+
+from phantomjs import Phantom
+
+phantom = Phantom()
+
+conf = {
+ 'url': 'http://example.com/', # Mandatory field
+}
+output = phantom.download_page(conf, js_path='/my/phantomjs/script/path')
+```
+
+In your phantomjs script, you can take the url as:
+
+```javascript
+var system = require('system');
+var json = JSON.parse(system.args[1]);
+var url = json.url;
+```
+
+## Using the default phantomjs script provided with this package:
+
+```python
+
+from phantomjs import Phantom
+
+phantom = Phantom()
+
+conf = {
+ 'url': 'http://example.com/', # Mandatory field
+ 'output_type': 'html', # json for json
+ 'min_wait': 1000, # 1 second
+ 'max_wait': 30000, # 30 seconds
+ 'selector': '', # CSS selector if there's any
+ 'resource_timeout': 3000, # 3 seconds
+ 'headers': {
+ "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.72 Safari/537.36",
+ "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3",
+ "Sec-Fetch-Mode": "navigate",
+ 'Sec-Fetch-Site': 'same-origin',
+ 'Upgrade-Insecure-Requests': '1',
+ },
+ 'cookies': [
+ {'name': '_Country', 'value': 'US', 'domain': '.google.com',},
+ {'name': '_Currency', 'value': 'USD', 'domain': '.google.com',},
+ ],
+ 'functions': [
+ 'function(){window.location.replace("http://icanhazip.com/");}',
+ ],
+}
+
+
+output = phantom.download_page(conf)
+```
+
+
+
+
+%package -n python3-phantomjs
+Summary: Python wrapper for PhantomJS
+Provides: python-phantomjs
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-phantomjs
+[![Build Status](https://travis-ci.org/neurobin/phantomjspy.svg?branch=release)](https://travis-ci.org/neurobin/phantomjspy)
+
+PhantomJS wrapper in Python
+
+# Pre requisites
+
+1. **phantomjs:** `phantomjs` command line tool.
+2. **Python 3**
+
+# Install
+
+```bash
+pip install phantomjs
+```
+
+# Usage
+
+## Using with a custom phantomjs script:
+
+```python
+
+from phantomjs import Phantom
+
+phantom = Phantom()
+
+conf = {
+ 'url': 'http://example.com/', # Mandatory field
+}
+output = phantom.download_page(conf, js_path='/my/phantomjs/script/path')
+```
+
+In your phantomjs script, you can take the url as:
+
+```javascript
+var system = require('system');
+var json = JSON.parse(system.args[1]);
+var url = json.url;
+```
+
+## Using the default phantomjs script provided with this package:
+
+```python
+
+from phantomjs import Phantom
+
+phantom = Phantom()
+
+conf = {
+ 'url': 'http://example.com/', # Mandatory field
+ 'output_type': 'html', # json for json
+ 'min_wait': 1000, # 1 second
+ 'max_wait': 30000, # 30 seconds
+ 'selector': '', # CSS selector if there's any
+ 'resource_timeout': 3000, # 3 seconds
+ 'headers': {
+ "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.72 Safari/537.36",
+ "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3",
+ "Sec-Fetch-Mode": "navigate",
+ 'Sec-Fetch-Site': 'same-origin',
+ 'Upgrade-Insecure-Requests': '1',
+ },
+ 'cookies': [
+ {'name': '_Country', 'value': 'US', 'domain': '.google.com',},
+ {'name': '_Currency', 'value': 'USD', 'domain': '.google.com',},
+ ],
+ 'functions': [
+ 'function(){window.location.replace("http://icanhazip.com/");}',
+ ],
+}
+
+
+output = phantom.download_page(conf)
+```
+
+
+
+
+%package help
+Summary: Development documents and examples for phantomjs
+Provides: python3-phantomjs-doc
+%description help
+[![Build Status](https://travis-ci.org/neurobin/phantomjspy.svg?branch=release)](https://travis-ci.org/neurobin/phantomjspy)
+
+PhantomJS wrapper in Python
+
+# Pre requisites
+
+1. **phantomjs:** `phantomjs` command line tool.
+2. **Python 3**
+
+# Install
+
+```bash
+pip install phantomjs
+```
+
+# Usage
+
+## Using with a custom phantomjs script:
+
+```python
+
+from phantomjs import Phantom
+
+phantom = Phantom()
+
+conf = {
+ 'url': 'http://example.com/', # Mandatory field
+}
+output = phantom.download_page(conf, js_path='/my/phantomjs/script/path')
+```
+
+In your phantomjs script, you can take the url as:
+
+```javascript
+var system = require('system');
+var json = JSON.parse(system.args[1]);
+var url = json.url;
+```
+
+## Using the default phantomjs script provided with this package:
+
+```python
+
+from phantomjs import Phantom
+
+phantom = Phantom()
+
+conf = {
+ 'url': 'http://example.com/', # Mandatory field
+ 'output_type': 'html', # json for json
+ 'min_wait': 1000, # 1 second
+ 'max_wait': 30000, # 30 seconds
+ 'selector': '', # CSS selector if there's any
+ 'resource_timeout': 3000, # 3 seconds
+ 'headers': {
+ "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.72 Safari/537.36",
+ "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3",
+ "Sec-Fetch-Mode": "navigate",
+ 'Sec-Fetch-Site': 'same-origin',
+ 'Upgrade-Insecure-Requests': '1',
+ },
+ 'cookies': [
+ {'name': '_Country', 'value': 'US', 'domain': '.google.com',},
+ {'name': '_Currency', 'value': 'USD', 'domain': '.google.com',},
+ ],
+ 'functions': [
+ 'function(){window.location.replace("http://icanhazip.com/");}',
+ ],
+}
+
+
+output = phantom.download_page(conf)
+```
+
+
+
+
+%prep
+%autosetup -n phantomjs-1.4.1
+
+%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-phantomjs -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Wed Apr 12 2023 Python_Bot <Python_Bot@openeuler.org> - 1.4.1-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..68d9a6e
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+f67a50a2f1180ef4bcc18a4ffed7c0ce phantomjs-1.4.1.tar.gz