diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-04-10 21:47:24 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-04-10 21:47:24 +0000 |
| commit | 6432633dc3379e516a199edb221df9c6c922dfdb (patch) | |
| tree | 309d10e5ab9f11a33a296ef868c773558970c0b9 | |
| parent | 4d9b47a89db83bed2680c2ca8f706c0348f633e3 (diff) | |
automatic import of python-pyzipcode
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-pyzipcode.spec | 165 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 167 insertions, 0 deletions
@@ -0,0 +1 @@ +/pyzipcode-3.0.1.tar.gz diff --git a/python-pyzipcode.spec b/python-pyzipcode.spec new file mode 100644 index 0000000..df7ef2d --- /dev/null +++ b/python-pyzipcode.spec @@ -0,0 +1,165 @@ +%global _empty_manifest_terminate_build 0 +Name: python-pyzipcode +Version: 3.0.1 +Release: 1 +Summary: query zip codes and location data +License: MIT +URL: https://github.com/vangheem/pyzipcode +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/3f/b9/9cf79708df6bdcbbd512424cf5b7321b571b3477eb2e9648fec13e2b2b91/pyzipcode-3.0.1.tar.gz +BuildArch: noarch + + +%description +This package will allow you to get zip code information. The data used in this +package can be retrieved from +https://web.archive.org/web/20101126192032/http://pablotron.org/files/zipcodes-csv-10-Aug-2004.zip +`pyzipcode` uses a local sqlite database to run. You can replace it with your +own other storage mechanism with a little effort. +Here is some basic usage... +```pycon +>>> from pyzipcode import ZipCodeDatabase +>>> zcdb = ZipCodeDatabase() +>>> zcdb[54115] +ZipCode(zip='54115', city='De Pere', state='WI', longitude=-88.07896, latitude=44.42042, timezone=-6, dst=1) +>>> zcdb[210] +ZipCode(zip='00210', city='Portsmouth', state='NH', longitude=-71.013202, latitude=43.005895, timezone=-5, dst=1) +``` +Search zip codes... +```pycon +>>> from pyzipcode import ZipCodeDatabase +>>> zcdb = ZipCodeDatabase() +>>> len(zcdb.find_zip(city="Oshkosh")) +7 +>>> len(zcdb.find_zip(city="O%")) # all cities starting with "O" using SQL wildcard +60 +>>> len(zcdb.find_zip(city="Doesn't Exist")) # returns None +>>> +``` +Get a list of zipcodes around a radius of a zipcode (this actually searches a square area) +```pycon +>>> from pyzipcode import ZipCodeDatabase +>>> zcdb = ZipCodeDatabase() +>>> [z.zip for z in zcdb.get_zipcodes_around_radius('54901', 10)] +['54901', '54902', '54903', '54904', '54906', '54927', '54952', '54956', '54957', '54979', '54985'] +``` + +%package -n python3-pyzipcode +Summary: query zip codes and location data +Provides: python-pyzipcode +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-pyzipcode +This package will allow you to get zip code information. The data used in this +package can be retrieved from +https://web.archive.org/web/20101126192032/http://pablotron.org/files/zipcodes-csv-10-Aug-2004.zip +`pyzipcode` uses a local sqlite database to run. You can replace it with your +own other storage mechanism with a little effort. +Here is some basic usage... +```pycon +>>> from pyzipcode import ZipCodeDatabase +>>> zcdb = ZipCodeDatabase() +>>> zcdb[54115] +ZipCode(zip='54115', city='De Pere', state='WI', longitude=-88.07896, latitude=44.42042, timezone=-6, dst=1) +>>> zcdb[210] +ZipCode(zip='00210', city='Portsmouth', state='NH', longitude=-71.013202, latitude=43.005895, timezone=-5, dst=1) +``` +Search zip codes... +```pycon +>>> from pyzipcode import ZipCodeDatabase +>>> zcdb = ZipCodeDatabase() +>>> len(zcdb.find_zip(city="Oshkosh")) +7 +>>> len(zcdb.find_zip(city="O%")) # all cities starting with "O" using SQL wildcard +60 +>>> len(zcdb.find_zip(city="Doesn't Exist")) # returns None +>>> +``` +Get a list of zipcodes around a radius of a zipcode (this actually searches a square area) +```pycon +>>> from pyzipcode import ZipCodeDatabase +>>> zcdb = ZipCodeDatabase() +>>> [z.zip for z in zcdb.get_zipcodes_around_radius('54901', 10)] +['54901', '54902', '54903', '54904', '54906', '54927', '54952', '54956', '54957', '54979', '54985'] +``` + +%package help +Summary: Development documents and examples for pyzipcode +Provides: python3-pyzipcode-doc +%description help +This package will allow you to get zip code information. The data used in this +package can be retrieved from +https://web.archive.org/web/20101126192032/http://pablotron.org/files/zipcodes-csv-10-Aug-2004.zip +`pyzipcode` uses a local sqlite database to run. You can replace it with your +own other storage mechanism with a little effort. +Here is some basic usage... +```pycon +>>> from pyzipcode import ZipCodeDatabase +>>> zcdb = ZipCodeDatabase() +>>> zcdb[54115] +ZipCode(zip='54115', city='De Pere', state='WI', longitude=-88.07896, latitude=44.42042, timezone=-6, dst=1) +>>> zcdb[210] +ZipCode(zip='00210', city='Portsmouth', state='NH', longitude=-71.013202, latitude=43.005895, timezone=-5, dst=1) +``` +Search zip codes... +```pycon +>>> from pyzipcode import ZipCodeDatabase +>>> zcdb = ZipCodeDatabase() +>>> len(zcdb.find_zip(city="Oshkosh")) +7 +>>> len(zcdb.find_zip(city="O%")) # all cities starting with "O" using SQL wildcard +60 +>>> len(zcdb.find_zip(city="Doesn't Exist")) # returns None +>>> +``` +Get a list of zipcodes around a radius of a zipcode (this actually searches a square area) +```pycon +>>> from pyzipcode import ZipCodeDatabase +>>> zcdb = ZipCodeDatabase() +>>> [z.zip for z in zcdb.get_zipcodes_around_radius('54901', 10)] +['54901', '54902', '54903', '54904', '54906', '54927', '54952', '54956', '54957', '54979', '54985'] +``` + +%prep +%autosetup -n pyzipcode-3.0.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-pyzipcode -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 3.0.1-1 +- Package Spec generated @@ -0,0 +1 @@ +7f95a28b7652860ac975d5354d6dcfe9 pyzipcode-3.0.1.tar.gz |
