zefoo
zefoo
Hello, we've been running django-el-pagination for years... and it seems the upgrade from 3.2.2 to 3.2.3 breaks our pagination. eg. "1 2 3 4 5 6 >" is no longer...
I see under the hood this runs Flask-SQLAlchemy. Is it possible to use regular SQLAlchemy? I'm thinking no, I don't think it's a drop in replacement. If not, can I...
Howdy. instalooter==2.4.4 Noticing this: ``` venv/lib/python3.6/site-packages/instalooter/looters.py(147)_login() -> token = get_shared_data(res.text)['config']['csrf_token'] (Pdb) res.text '{"message": "checkpoint_required", "checkpoint_url": "https://www.instagram.com/challenge/?next=/", "lock": false, "flow_render_type": 0, "status": "fail"}' (Pdb) get_shared_data(res.text)['config']['csrf_token'] *** AttributeError: 'NoneType' object has no...
On v1 public API is there a way to delete a share? I found this: https://developer.linkedin.com/docs/guide/v2/shares/share-api#delete - only available on v2 of API, I think I need to request permission...
First, great library – glad I found this! Thank ya'll. 1. I want to get the segment ID from a specific time that I pull via activity stream of an...
Running latest version, 1.0. ``` File ~/.pyenv/versions/3.10.2/lib/python3.10/site-packages/pyicloud/base.py:271, in PyiCloudService.__init__(self, apple_id, password, cookie_directory, verify, client_id, with_family) 265 except: # pylint: disable=bare-except 266 # Most likely a pickled cookiejar from earlier versions....
Howdy. I started getting this error a few days ago: PyiCloudServiceNotActivatedException: Webservice not available (fmf) Specifically when I go to icloud.friends.following (where icloud = PyiCloudService("email", password) I think 1 of...
Hello, I seem to have an issue with different subdomains when I explicitly specify a subdomain - sometimes. It's as if, the connection times out or doesn't properly exit, the...
Is it possible to set 12 hour parsing versus 24 hour parsing? eg. someone says 1:00 and it gets parsed as 1am, when they mean 1pm. If I could pass...
I have this function: def get_time(value, timezone_string): cal = parsedatetime.Calendar() datetime_obj, parse_status = cal.parseDT(datetimeString=value, sourceTime=arrow.get().to(timezone_string).datetime, tzinfo=timezone(timezone_string)) if not parse_status: return None return datetime_obj Look at these 3 differences (all processed...