diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-04-11 21:28:22 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-04-11 21:28:22 +0000 |
| commit | df725db2214b1f49df053b622eba619a31d9e911 (patch) | |
| tree | a84b423ed871314ce0065a8c6c91a79403313fdb | |
| parent | c460494a18155fd88921e30281f0da24f6cf9bed (diff) | |
automatic import of python-s3urls
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-s3urls.spec | 210 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 212 insertions, 0 deletions
@@ -0,0 +1 @@ +/s3urls-0.0.3.tar.gz diff --git a/python-s3urls.spec b/python-s3urls.spec new file mode 100644 index 0000000..7889e66 --- /dev/null +++ b/python-s3urls.spec @@ -0,0 +1,210 @@ +%global _empty_manifest_terminate_build 0 +Name: python-s3urls +Version: 0.0.3 +Release: 1 +Summary: Parse and build Amazon S3 URLs +License: MIT +URL: https://github.com/ButoVideo/s3urls +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/d8/fe/f2f0be1ab72c63a5c351c485fe37af9ea781985278e51236874df17b136f/s3urls-0.0.3.tar.gz +BuildArch: noarch + + +%description +# S3urls + +Parse and build [Amazon S3](https://aws.amazon.com/s3/) URLs. + +## Usage + +### Parse S3 URLs + +```Python +from s3urls import parse_url + +>>> parse_url('https://my-bucket.s3.amazonaws.com/my-key/') +{'bucket': 'my-bucket', 'key': 'my-key/'} + +>>> parse_url('https://s3-eu-west-1.amazonaws.com/my-bucket/my-key/') +{'bucket': 'my-bucket', 'key': 'my-key/'} + +>>> parse_url('s3://my-bucket/my-key') +{'bucket': 'my-bucket', 'key': 'my-key/'} + +>>> parse_url('s3://user@my-bucket/my-key') +{'bucket': 'my-bucket', 'key': 'my-key/', 'credential_name': 'user'} +``` + +### Build S3 URLs + +```Python +from s3urls import build_url + +>>> build_url('s3', 'my-bucket', 'my-key/') +'s3://my-bucket/my-key/' + +>>> build_url('s3', 'my-bucket', 'my-key/', credential_name='user') +'s3://user@my-bucket/my-key/' + +>>> build_url('bucket-in-path', 'my-bucket', 'my-key/') +'https://s3.amazonaws.com/my-bucket/my-key/' + +>>> build_url('bucket-in-path', 'my-bucket', 'my-key/', region='eu-west-1') +'https://s3-eu-west-1.amazonaws.com/my-bucket/my-key/' + +>>> build_url('bucket-in-netloc', 'my-bucket', 'my-key/') +'https://my-bucket.s3.amazonaws.com/my-key/' +``` + + + + +%package -n python3-s3urls +Summary: Parse and build Amazon S3 URLs +Provides: python-s3urls +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-s3urls +# S3urls + +Parse and build [Amazon S3](https://aws.amazon.com/s3/) URLs. + +## Usage + +### Parse S3 URLs + +```Python +from s3urls import parse_url + +>>> parse_url('https://my-bucket.s3.amazonaws.com/my-key/') +{'bucket': 'my-bucket', 'key': 'my-key/'} + +>>> parse_url('https://s3-eu-west-1.amazonaws.com/my-bucket/my-key/') +{'bucket': 'my-bucket', 'key': 'my-key/'} + +>>> parse_url('s3://my-bucket/my-key') +{'bucket': 'my-bucket', 'key': 'my-key/'} + +>>> parse_url('s3://user@my-bucket/my-key') +{'bucket': 'my-bucket', 'key': 'my-key/', 'credential_name': 'user'} +``` + +### Build S3 URLs + +```Python +from s3urls import build_url + +>>> build_url('s3', 'my-bucket', 'my-key/') +'s3://my-bucket/my-key/' + +>>> build_url('s3', 'my-bucket', 'my-key/', credential_name='user') +'s3://user@my-bucket/my-key/' + +>>> build_url('bucket-in-path', 'my-bucket', 'my-key/') +'https://s3.amazonaws.com/my-bucket/my-key/' + +>>> build_url('bucket-in-path', 'my-bucket', 'my-key/', region='eu-west-1') +'https://s3-eu-west-1.amazonaws.com/my-bucket/my-key/' + +>>> build_url('bucket-in-netloc', 'my-bucket', 'my-key/') +'https://my-bucket.s3.amazonaws.com/my-key/' +``` + + + + +%package help +Summary: Development documents and examples for s3urls +Provides: python3-s3urls-doc +%description help +# S3urls + +Parse and build [Amazon S3](https://aws.amazon.com/s3/) URLs. + +## Usage + +### Parse S3 URLs + +```Python +from s3urls import parse_url + +>>> parse_url('https://my-bucket.s3.amazonaws.com/my-key/') +{'bucket': 'my-bucket', 'key': 'my-key/'} + +>>> parse_url('https://s3-eu-west-1.amazonaws.com/my-bucket/my-key/') +{'bucket': 'my-bucket', 'key': 'my-key/'} + +>>> parse_url('s3://my-bucket/my-key') +{'bucket': 'my-bucket', 'key': 'my-key/'} + +>>> parse_url('s3://user@my-bucket/my-key') +{'bucket': 'my-bucket', 'key': 'my-key/', 'credential_name': 'user'} +``` + +### Build S3 URLs + +```Python +from s3urls import build_url + +>>> build_url('s3', 'my-bucket', 'my-key/') +'s3://my-bucket/my-key/' + +>>> build_url('s3', 'my-bucket', 'my-key/', credential_name='user') +'s3://user@my-bucket/my-key/' + +>>> build_url('bucket-in-path', 'my-bucket', 'my-key/') +'https://s3.amazonaws.com/my-bucket/my-key/' + +>>> build_url('bucket-in-path', 'my-bucket', 'my-key/', region='eu-west-1') +'https://s3-eu-west-1.amazonaws.com/my-bucket/my-key/' + +>>> build_url('bucket-in-netloc', 'my-bucket', 'my-key/') +'https://my-bucket.s3.amazonaws.com/my-key/' +``` + + + + +%prep +%autosetup -n s3urls-0.0.3 + +%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-s3urls -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 0.0.3-1 +- Package Spec generated @@ -0,0 +1 @@ +6d4abb6c02fae3f660d4fde08a508aa6 s3urls-0.0.3.tar.gz |
