Possibly linux@lemmy.zip to F-Droid@lemmy.mlEnglish · 7 months agoIdea: we need a bot that posts a random app each weekmessage-square20fedilinkarrow-up1110
arrow-up1110message-squareIdea: we need a bot that posts a random app each weekPossibly linux@lemmy.zip to F-Droid@lemmy.mlEnglish · 7 months agomessage-square20fedilink
minus-square56!@lemmy.mllinkfedilinkarrow-up3·7 months agoHere is a list of apps (taken from the names of metadata/*.yml files on the f-droid gitlab): apps.txt (pastebin) Choose one at random: #!/usr/bin/env python import random names = open("apps.txt").readlines() print("https://f-droid.org/en/packages/"+random.choice(names)[:-1]+"/")
Here is a list of apps (taken from the names of metadata/*.yml files on the f-droid gitlab): apps.txt (pastebin)
Choose one at random:
#!/usr/bin/env python import random names = open("apps.txt").readlines() print("https://f-droid.org/en/packages/"+random.choice(names)[:-1]+"/")