Nick Young

Results 317 comments of Nick Young

Hi! Could you please clarify a bit what you mean by this? Follower/following extraction is handled here: https://github.com/kevinzg/facebook-scraper/blob/9f184edf4fd726a15d8b33ae9dbd47d670092c9a/facebook_scraper/facebook_scraper.py#L459 As you can see, these just call the function `get_collection`, either with...

You would need to keep track of pagination URLs. See https://github.com/kevinzg/facebook-scraper/issues/310#issuecomment-852652846

https://github.com/kevinzg/facebook-scraper/commit/23bddcea388d09950b8e43532cbf343c44c1d161 should fix this. Published in v0.2.56

Can you share an example of a profile with this problem?

Try `get_profile("bahar.gelir1", followers=True) `

Hi, see https://github.com/kevinzg/facebook-scraper/issues/257

See https://github.com/GeoNode/geonode/issues/8983#issuecomment-1094503644

Try this instead: ```javascript var formData = new FormData() formData.set("csrfmiddlewaretoken", $('[name="csrfmiddlewaretoken"]').attr('value')) var filename = "test2.txt" formData.set("title", filename) var fileStringArray = [ "It works!" ]; var blobAttrs = { type: "text/plain"...

You could port my JS to Python? Reimplement the fetch requests with the requests library etc Alternatively see https://docs.geonode.org/en/master/admin/async/index.html

Hi @sharmapn - the result of `fetch("/upload/"` appears to return something different for a shapefile. The returned `redirect_to` parameter looks like `/upload/srs?id=221&force_ajax=true"`. The presence of "srs" suggests geonode is doing...