Usage example from README not works
See original GitHub issueAm i do something wrong in this?
Python 3.6.8 (default, Aug 20 2019, 17:12:48)
[GCC 8.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import deezer
>>> client = deezer.Client()
>>> client.get_album(12).title
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'Resource' object has no attribute 'title'
Issue Analytics
- State:
- Created 4 years ago
- Comments:7 (7 by maintainers)
Top Results From Across the Web
Image not showing up in README.md on GitHub
I was facing the problem, especially when working with the single image. Example: <p> <img src="relativePath/file.png" width="220" ...
Read more >How to Write a Good README File for Your GitHub Project
In simple words, we can describe a README file as a guide that gives users a detailed description of a project you have...
Read more >README File – Everything you Need to Know - Great Learning
A README file is a text file that describes and launches a project. It comprises information that is frequently needed to grasp the...
Read more >Markdown relative link to image and other readme does ... - Jira
Same issue as others mentioned. Relative URLs do not work when the README is displayed in the directory/overview. But works if I am...
Read more >Project Settings - ReadMe Documentation
Changing this does not impact your subdomain. ... To see how the import process works, you can use example zipped files for single...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The problem here is that the album 12 does not exist, and the method default to returning Ressource type.
So this issue is more about error handling. There are many ways one can go there:
@browniebroke
I’ve put up a pull request to add @spvkgn! 🎉