question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

None: MoreByDeveloper

See original GitHub issue

google_play_scraper.VERSION Write result of google_play_scraper.VERSION 1.0.3 Describe the bug moreByDeveloper is None for apps which have store/apps/dev?id= in the link of developer details. eg. for. com.rhmsoft.code the developer link is: /store/apps/dev?id=5848068795804361091 and scraper returns None for it: but actually it have 7 more apps, so it should return all of these

some more egs: in.krosbits.musicolet , com.simplemobiletools.musicplayer Though it is working for app which have developer?id= not dev?id= in the developer url, like com.goodtoolapps.mp3playe developer link: /store/apps/developer?id=GoodToolApps.com output:

['com.goodtoolapps.mp3converter']

Code

try:
  # 'com.rhmsoft.code'
    result = app(
        `in.krosbits.musicolet`,
    )    
    print(result['moreByDeveloper'])
except Exception as err:    
    print('error : ', err)

Expected behavior Output should be:

['in.krosbits.castplugin']

Issue Analytics

  • State:closed
  • Created a year ago
  • Comments:6 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
hackrxcommented, May 2, 2022

🎉🎉Thanks @JoMingyu, I tested the latest version and it is working as expected!

0reactions
JoMingyucommented, May 2, 2022

It fixed at version 1.0.5.

as-is

result = app(
    'in.krosbits.musicolet',
)
print(result['moreByDeveloper'])

It returned None.

now

result = app(
    'in.krosbits.musicolet',
)
print(result['moreByDeveloper'])

It returns ['in.krosbits.castplugin']

Read more comments on GitHub >

github_iconTop Results From Across the Web

HOW TO DYE YOUR HAIR WITH DEVELOPER ONLY!!!
Hey guys! In this video I test out dying hair with ONLY DEVELOPER. This means no bleach, color, or anything. Just 30 volume...
Read more >
Can I Lighten My Hair With Just Developer? DIY 'How To' Guide
Hair developer is a creamy rinse-out product that helps open up your hair's cuticle so color can be lifted or deposited.
Read more >
Brad Vickers - Web Designer & Developer - None More Black
I have 10+ years experience in Graphic Design, Web Design and Web Development. Experienced with developing themes/plugins for Wordpress and Drupal 7.
Read more >
What Does Hair Developer Do? - All About The Gloss
A 30 volume developer allows you to lighten the hair while coloring by two or three levels and allows more pigment to embed...
Read more >
What Happens if You Put Too Much Developer in Hair Dye ...
And once they rinse the dye and dry their hair, they see the uneven color. And that is because the mix had more...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found