Where can I find Python code examples or tutorials for social network style features / components?

I am looking for tutorials and / or examples for specific components of a social networking web application that may include Python code examples:

  • user auto-generator function (database)
  • friend / follow function (Twitter / Facebook style)
  • messaging / reply function (Twitter style)
  • chat function (Facebook style)
  • blog function
  • public forums (e.g. Get Satisfaction or Stack Overflow)
  • profile page auto-generator function

I just want to start telling how Python can be used to create these functions. I am not looking for a solution like Pinax as it is built on Django and I will ultimately use Pylons or just straight up Python .

+3
source share
1 answer

So, you are not interested in a fixed solution, but want to program it yourself, I understand correctly? If not: go with a fixed solution. It will be a lot of programming effort, and all you want to do after that, do it in a different structure than you planned, would be a much smaller problem.

, , , " python ", , , - , , (, , ). .

, friend/follow: , , , (, , > 100 000 , ;). , , , Python? , , , , , , ( " " ). , (, ;). , Pinax ( , , ) , . , Pylons, , , , , , , , -, .

tl; dr, URL-, !

+5

Source: https://habr.com/ru/post/1774711/


All Articles