Skip to content
This repository was archived by the owner on Jan 17, 2023. It is now read-only.

Commit 4e916fe

Browse files
committed
Update README.md
1 parent ea29bd4 commit 4e916fe

File tree

2 files changed

+5
-27
lines changed

2 files changed

+5
-27
lines changed

README.md

+4-26
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,15 @@ I have disabled PRs and issues temporarily. I may/may not continue on developmen
1313

1414
[Closed PRs](https://github.com/stypr/clubhouse-py/pulls?q=is%3Apr+is%3Aclosed) / [Closed Issues](https://github.com/stypr/clubhouse-py/issues?q=is%3Aissue+is%3Aclosed)
1515

16+
Please contact by DMs through [@stereotype32](https://twitter.com/stereotype32) for any questions.
1617

1718
## QnA
1819

1920
> Are you affiliated with those guys who built the website that streamed Clubhouse rooms?
2021
2122
No.
2223

23-
I am not affiliated with anyone or any company.
24-
25-
This is just my personal project.
26-
24+
I am not affiliated with anyone or any company with regards to Clubhouse issues.
2725

2826
> Why did you develop this? what is your whole intention about releasing this to public?
2927
@@ -132,13 +130,6 @@ Yes, but there are some reasons why developers are taking some time.
132130
3. It may take a few days to get their updates reviewed by Apple.
133131
4. They also need to have some time to make "best moves" in order to efficiently fix issues.
134132

135-
> What would you do if Clubhouse tries to hire you?
136-
137-
This doesn't make sense in the first place.
138-
1. I don't think Clubhouse team likes me. (Assumption)
139-
2. I see some people who were very uncomfortable about me speaking about these issues in the first place. One guy even kicked me out of his channel for talking about this topic.
140-
3. I'm not an American citizen. It has been always difficult to get US visas for foreigners. Also, I don't really prefer to work in US. (no offense here, it's just my preferences)
141-
142133
> As a typical user, what do I need to be very careful about when using Clubhouse?
143134
144135
1. As a speaker: Always assume that someone is recording your voice. Always think multiple times before you speak. Don't speak out confidential/personal stuff. I am not saying that the Clubhouse is recording your voice. There are chances that some trolls or reporters are trying to record multiple chatrooms.
@@ -153,13 +144,6 @@ Mainly two reasons:
153144

154145
I will not open these for the time being. You can send me a message or make your own fork, and I will take a look whenever I'm free
155146

156-
> How can I contact you?
157-
158-
* Instagram: [@brokenpacifist](https://www.instagram.com/brokenpacifist/)
159-
* Twitter: [@stereotype32](https://twitter.com/stereotype32)
160-
* Clubhouse: @stypr
161-
162-
163147
## Clubhouse API written in Python
164148

165149
`clubhouse-py` is originally developed for the sake of interoperability.
@@ -348,14 +332,8 @@ $ python3 cli.py
348332
* def update_is_membership_private(self, club_id, is_membership_private):
349333
* def update_is_community(self, club_id, is_community):
350334
* def update_club_description(self, club_id, description):
351-
352-
## Unsupported features
353-
354-
### Endpoints
355-
356-
* def update_club_rules(self):
357-
* def update_club_topics(self):
358-
* def get_events_for_user(self):
335+
* def get_events_for_user(self, user_id='', page_size=25, page=1):
336+
* def update_club_rules(self, club_id='', rules=()):
359337

360338
### PubNub
361339

clubhouse/clubhouse.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1563,7 +1563,7 @@ def update_club_description(self, club_id, description):
15631563
return req.json()
15641564

15651565
@require_authentication
1566-
def update_club_rules(self, club_id='', rules=None):
1566+
def update_club_rules(self, club_id='', rules=()):
15671567
""" (Clubhouse, str, list) -> dict
15681568
15691569
Update Club's rules (Maximum upto 3 rules)

0 commit comments

Comments
 (0)