-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change to graphql api endpoint BirthdayCometRootQuery (#81)
Closes #24 (No locales being used anymore) Closes #32 (No async endpoint used so no domops) Closes #52 (No locales being used anymore) Closes #13 (No locales being used anymore)
- Loading branch information
Showing
9 changed files
with
95 additions
and
432 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
MechanicalSoup | ||
ics>=0.6 | ||
babel | ||
pytz | ||
requests | ||
beautifulsoup4 | ||
lxml | ||
python_dateutil | ||
lxml |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
class FacebookUser: | ||
def __init__(self, id, name, profile_url, profile_picture_uri, birthday_day, birthday_month): | ||
self.id = id | ||
self.name = name | ||
self.profile_url = profile_url | ||
self.profile_picture_uri = profile_picture_uri | ||
self.birthday_day = birthday_day | ||
self.birthday_month = birthday_month | ||
|
||
def __str__(self): | ||
return f'{self.name} ({self.birthday_day}/{self.birthday_month})' | ||
|
||
def __unicode__(self): | ||
return u'{self.name} ({self.birthday_day}/{self.birthday_month})' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.