Skip to content

mlodybercik/tekstowo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

60 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tekstowo.py

Tekstowo is a parser and a way for interaction with Tekstowo using Python with classes in mind.

tekstowo.pl

Tekstowo is a big site made for finding song lyrics, song translations to polish and soundtracks with very subtle social media approach. It has >1 600 000 texts right now, with about 1 000 more waiting to be approved at any time. It's nowhere close to international giant like Genius.

My tekstowo

Project begun some time ago when I was playing with CharNN's to "create" my own music. I quickly created something to parse site and dump all lyrics into one big file. Later I had too much free time so I spent it working more and more on this parser.

Usage

As I said, it is created with classes in mind, so everything is represented as an object. Main file, tekstowo.py contains a way of interaction with models. Most of objects are rather self explenatory. Currently implemented classes:

  • Artist - contains information about an Artist. duuh.
  • Lyrics - text, translation, id, upvotes, comments...
  • Comment - id, comment body, url, child comments...
  • Draft Objects - Song, ArtistDraft, UserDraft.
  • Search - used only to search for artist and song.
  • User - name, sex, rank, points...

Examples:

import tekstowo
zeppelin = tekstowo.getText("http://www.tekstowo.pl/piosenka,led_zeppelin,stairway_to_heaven.html")
if(zeppelin.hasText):
  print(zeppelin.text)
user = tekstowo.getUser("bombelbombel") # he is no1 rn
print(user.name)
for i in user.getLyrics():
  print(i.url)
for i in tekstowo.getAllTexts("Red Hot Chili Peppers"):
  print(i)

Function definitions are rather self-explanatory, in case of trouble use python's help() command.

About

Webscraper for an ancient polish website.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages