Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tiagocordeiro/pypraticopegaxml
https://github.com/tiagocordeiro/pypraticopegaxml
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tiagocordeiro/pypraticopegaxml
- Owner: tiagocordeiro
- Created: 2017-05-17T04:25:40.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-16T08:08:00.000Z (3 months ago)
- Last Synced: 2024-10-30T09:43:23.999Z (3 months ago)
- Language: Python
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
Exercícios Pypratico
--------------------.. image:: https://travis-ci.org/tiagocordeiro/pypraticopegaxml.svg?branch=master
:target: https://travis-ci.org/tiagocordeiro/pypraticopegaxml.. image:: https://pyup.io/repos/github/tiagocordeiro/pypraticopegaxml/shield.svg
:target: https://pyup.io/repos/github/tiagocordeiro/pypraticopegaxml/
:alt: Updates.. image:: https://pyup.io/repos/github/tiagocordeiro/pypraticopegaxml/python-3-shield.svg
:target: https://pyup.io/repos/github/tiagocordeiro/pypraticopegaxml/
:alt: Python 3Exemplos de uso
---------------
Instalando o pacote via pip install``$ pip install pegaxml``
==========
Exemplo 1:
==========.. code-block:: python
>>> from pegaxml.pegadados import lista_titulos
>>> print(lista_titulos())
['Empire Burlesque', 'Hide your heart', 'Greatest Hits', 'Still got the blues', 'Eros', 'One night only', 'Sylvias Mother', 'Maggie May', 'Romanza', 'When a man loves a woman', 'Black angel', '1999 Grammy Nominees', 'For the good times', 'Big Willie style', 'Tupelo Honey', 'Soulsville', 'The very best of', 'Stop', 'Bridge of Spies', 'Private Dancer', 'Midt om natten', 'Pavarotti Gala Concert', 'The dock of the bay', 'Picture book', 'Red', 'Unchain my heart']==========
Exemplo 2:
==========.. code-block:: python
>>> from pegaxml.pegadados import lista_titulos
>>> titulos = lista_titulos()
>>> for titulo in titulos:
... print(titulo)Empire Burlesque
Hide your heart
Greatest Hits
Still got the blues
Eros
One night only
Sylvias Mother
Maggie May
Romanza
When a man loves a woman
Black angel
1999 Grammy Nominees
For the good times
Big Willie style
Tupelo Honey
Soulsville
The very best of
Stop
Bridge of Spies
Private Dancer
Midt om natten
Pavarotti Gala Concert
The dock of the bay
Picture book
Red
Unchain my heart