I have models for eg like this.
class Mp3(models.Model): title=models.CharField(max_length=30) artist=models.ForeignKey(\'Artist\')
The answer would be:
newMp3=Mp3(title="sth", artist=the_artist)
where 'the_artist' is an actual instance of an Artist
Artist