diff options
Diffstat (limited to 'python-xbox.spec')
-rw-r--r-- | python-xbox.spec | 204 |
1 files changed, 204 insertions, 0 deletions
diff --git a/python-xbox.spec b/python-xbox.spec new file mode 100644 index 0000000..4ab3d90 --- /dev/null +++ b/python-xbox.spec @@ -0,0 +1,204 @@ +%global _empty_manifest_terminate_build 0 +Name: python-xbox +Version: 0.1.3 +Release: 1 +Summary: A wrapper around Microsoft's undocumented Xbox One APIs +License: MIT +URL: https://github.com/buttscicles/xbox/ +Source0: https://mirrors.aliyun.com/pypi/web/packages/73/ec/632f902e51b40e617e7c2971d42098c5fee736ad264c591624431dff2028/xbox-0.1.3.tar.gz +BuildArch: noarch + + +%description +|Documentation| |Build Status| |Coverage Status| |PyPI Version| +About +~~~~~ +This project is a wrapper around Microsoft’s set of private APIs in use +by the Xbox One and related apps. +Goals +~~~~~ +The main goals of this project are to achieve a decent, usable API, +everything else is secondary. +Installation +~~~~~~~~~~~~ +Install using ``pip`` +``$ pip install xbox`` +Usage +~~~~~ + >>> import xbox + >>> xbox.client.authenticate(login='joe@example.org', password='hunter2') + >>> # get a gamer + >>> gt = xbox.GamerProfile.from_gamertag('JoeAlcorn') + >>> gt.gamerscore + 22056 + >>> gt.gamerpic + 'http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToBrrCmIEEXHC9UNrdJ6P7KIFXxmxGDtE9Vkd62rOpb7JcGvME9LzjeruYo3cC50qVYelz5LjucMJtB5xOqvr7WR' + >>> # get iterator of recorded clips + >>> clips = gt.clips() + >>> # convert iterator to a list so we can index it + >>> clips = list(clips) + >>> clip = clips[0] + >>> clip.media_url + 'http://gameclipscontent-d2005.xboxlive.com/asset-886c5b78-8876-4823-b31b-fbc77d8caa67/GameClip-Original.MP4?sv=2012-02-12&st=2014-09-03T22%3A40%3A58Z&se=2014-09-03T23%3A45%3A58Z&sr=c&sp=r&sig=Q5qvyDvFRM2Bn2tztJ%2F%2BEf9%2FQOpkTPuFniByvE%2Bc9cc%3D&__gda__=1409787958_f22b516f9d29da56911b7cac03f15d05' + >>> clip.views + 4 + >>> clip.state + 'Published' + >>> clip.duration + 54 + >>> clip.thumbnails.large + 'http://gameclipscontent-t2005.xboxlive.com/00090000014d6bae-7638b9fd-2a19-4ef1-b621-505a6ac93488/Thumbnail_Large.PNG' +Links +~~~~~ +- `Code`_ +- `Issues & Bugs`_ +- `Documentation`_ +- `PyPI`_ +- `Roadmap`_ + +%package -n python3-xbox +Summary: A wrapper around Microsoft's undocumented Xbox One APIs +Provides: python-xbox +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-xbox +|Documentation| |Build Status| |Coverage Status| |PyPI Version| +About +~~~~~ +This project is a wrapper around Microsoft’s set of private APIs in use +by the Xbox One and related apps. +Goals +~~~~~ +The main goals of this project are to achieve a decent, usable API, +everything else is secondary. +Installation +~~~~~~~~~~~~ +Install using ``pip`` +``$ pip install xbox`` +Usage +~~~~~ + >>> import xbox + >>> xbox.client.authenticate(login='joe@example.org', password='hunter2') + >>> # get a gamer + >>> gt = xbox.GamerProfile.from_gamertag('JoeAlcorn') + >>> gt.gamerscore + 22056 + >>> gt.gamerpic + 'http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToBrrCmIEEXHC9UNrdJ6P7KIFXxmxGDtE9Vkd62rOpb7JcGvME9LzjeruYo3cC50qVYelz5LjucMJtB5xOqvr7WR' + >>> # get iterator of recorded clips + >>> clips = gt.clips() + >>> # convert iterator to a list so we can index it + >>> clips = list(clips) + >>> clip = clips[0] + >>> clip.media_url + 'http://gameclipscontent-d2005.xboxlive.com/asset-886c5b78-8876-4823-b31b-fbc77d8caa67/GameClip-Original.MP4?sv=2012-02-12&st=2014-09-03T22%3A40%3A58Z&se=2014-09-03T23%3A45%3A58Z&sr=c&sp=r&sig=Q5qvyDvFRM2Bn2tztJ%2F%2BEf9%2FQOpkTPuFniByvE%2Bc9cc%3D&__gda__=1409787958_f22b516f9d29da56911b7cac03f15d05' + >>> clip.views + 4 + >>> clip.state + 'Published' + >>> clip.duration + 54 + >>> clip.thumbnails.large + 'http://gameclipscontent-t2005.xboxlive.com/00090000014d6bae-7638b9fd-2a19-4ef1-b621-505a6ac93488/Thumbnail_Large.PNG' +Links +~~~~~ +- `Code`_ +- `Issues & Bugs`_ +- `Documentation`_ +- `PyPI`_ +- `Roadmap`_ + +%package help +Summary: Development documents and examples for xbox +Provides: python3-xbox-doc +%description help +|Documentation| |Build Status| |Coverage Status| |PyPI Version| +About +~~~~~ +This project is a wrapper around Microsoft’s set of private APIs in use +by the Xbox One and related apps. +Goals +~~~~~ +The main goals of this project are to achieve a decent, usable API, +everything else is secondary. +Installation +~~~~~~~~~~~~ +Install using ``pip`` +``$ pip install xbox`` +Usage +~~~~~ + >>> import xbox + >>> xbox.client.authenticate(login='joe@example.org', password='hunter2') + >>> # get a gamer + >>> gt = xbox.GamerProfile.from_gamertag('JoeAlcorn') + >>> gt.gamerscore + 22056 + >>> gt.gamerpic + 'http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToBrrCmIEEXHC9UNrdJ6P7KIFXxmxGDtE9Vkd62rOpb7JcGvME9LzjeruYo3cC50qVYelz5LjucMJtB5xOqvr7WR' + >>> # get iterator of recorded clips + >>> clips = gt.clips() + >>> # convert iterator to a list so we can index it + >>> clips = list(clips) + >>> clip = clips[0] + >>> clip.media_url + 'http://gameclipscontent-d2005.xboxlive.com/asset-886c5b78-8876-4823-b31b-fbc77d8caa67/GameClip-Original.MP4?sv=2012-02-12&st=2014-09-03T22%3A40%3A58Z&se=2014-09-03T23%3A45%3A58Z&sr=c&sp=r&sig=Q5qvyDvFRM2Bn2tztJ%2F%2BEf9%2FQOpkTPuFniByvE%2Bc9cc%3D&__gda__=1409787958_f22b516f9d29da56911b7cac03f15d05' + >>> clip.views + 4 + >>> clip.state + 'Published' + >>> clip.duration + 54 + >>> clip.thumbnails.large + 'http://gameclipscontent-t2005.xboxlive.com/00090000014d6bae-7638b9fd-2a19-4ef1-b621-505a6ac93488/Thumbnail_Large.PNG' +Links +~~~~~ +- `Code`_ +- `Issues & Bugs`_ +- `Documentation`_ +- `PyPI`_ +- `Roadmap`_ + +%prep +%autosetup -n xbox-0.1.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-xbox -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Jun 20 2023 Python_Bot <Python_Bot@openeuler.org> - 0.1.3-1 +- Package Spec generated |