Like the users feed :param amount: Specifies how many total likes you want to perform :param randomize: randomly skips posts to be liked on your feed :param unfollow: unfollows the author of a post which was considered inappropriate :param interact: visits t
(self, amount, randomize, unfollow, interact)
| 4122 | return self |
| 4123 | |
| 4124 | def like_by_feed(self, amount, randomize, unfollow, interact): |
| 4125 | """ |
| 4126 | Like the users feed |
| 4127 | |
| 4128 | :param amount: Specifies how many total likes you want to perform |
| 4129 | :param randomize: randomly skips posts to be liked on your feed |
| 4130 | :param unfollow: unfollows the author of a post which was considered inappropriate |
| 4131 | :param interact: visits the author's profile page of a |
| 4132 | """ |
| 4133 | |
| 4134 | if self.aborting: |
| 4135 | return self |
| 4136 | |
| 4137 | for _ in self.like_by_feed_generator(amount, randomize, unfollow, interact): |
| 4138 | pass |
| 4139 | |
| 4140 | return self |
| 4141 | |
| 4142 | def like_by_feed_generator( |
| 4143 | self, |
nothing calls this directly
no test coverage detected