Python Forum
Problem installing instaloader
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Problem installing instaloader
#10
Look at link:
Discussed in issue #121.
There is a example that work.
from datetime import datetime
from itertools import dropwhile, takewhile

import instaloader

L = instaloader.Instaloader()

posts = L.get_hashtag_posts('milfgarden')
# or
# posts = instaloader.Profile.from_username(L.context, PROFILE).get_posts()

SINCE = datetime(2015, 5, 1)
UNTIL = datetime(2015, 3, 1)

for post in takewhile(lambda p: p.date > UNTIL, dropwhile(lambda p: p.date > SINCE, posts)):
    print(post.date)
    L.download_post(post, '#milfgarden')
I do get the same Warning,but it's just a Warning if code works you will get output.
Output:
2015-04-16 09:06:30 2015-04-16 09:06:30 #milfgarden/2015-04-16_09-06-30_UTC.jpg 2015-04-16 09:06:30 #milfgarden/2015-04-16_09-06-30_UTC.jpg [#Baum #klettern #MilfGarden #…] 2015-04-16 09:06:30 #milfgarden/2015-04-16_09-06-30_UTC.jpg [#Baum #klettern #MilfGarden #…] comments 2015-04-16 09:06:30 #milfgarden/2015-04-16_09-06-30_UTC.jpg [#Baum #klettern #MilfGarden #…] comments json 2015-04-16 09:06:30 #milfgarden/2015-04-16_09-06-30_UTC.jpg [#Baum #klettern #MilfGarden #…] comments json 2015-04-08 11:53:02 .....
Reply


Messages In This Thread
Problem installing instaloader - by ledgreve - Oct-27-2019, 12:29 PM
RE: Problem installing instaloader - by Larz60+ - Oct-27-2019, 02:17 PM
RE: Problem installing instaloader - by ledgreve - Oct-28-2019, 08:22 AM
RE: Problem installing instaloader - by Larz60+ - Oct-28-2019, 11:01 AM
RE: Problem installing instaloader - by ledgreve - Oct-29-2019, 08:28 AM
RE: Problem installing instaloader - by Larz60+ - Oct-29-2019, 08:41 AM
RE: Problem installing instaloader - by ledgreve - Oct-29-2019, 09:20 AM
RE: Problem installing instaloader - by snippsat - Oct-29-2019, 12:39 PM
RE: Problem installing instaloader - by ledgreve - Nov-04-2019, 08:53 AM
RE: Problem installing instaloader - by snippsat - Nov-04-2019, 05:04 PM
RE: Problem installing instaloader - by ledgreve - Nov-05-2019, 09:14 AM
RE: Problem installing instaloader - by buran - Nov-05-2019, 09:23 AM
RE: Problem installing instaloader - by ledgreve - Nov-05-2019, 09:47 AM
RE: Problem installing instaloader - by buran - Nov-05-2019, 10:08 AM
RE: Problem installing instaloader - by ledgreve - Nov-05-2019, 10:27 AM
RE: Problem installing instaloader - by baquerik - Nov-05-2019, 10:35 AM
RE: Problem installing instaloader - by ledgreve - Nov-05-2019, 10:38 AM
RE: Problem installing instaloader - by baquerik - Nov-05-2019, 11:03 AM
RE: Problem installing instaloader - by buran - Nov-05-2019, 11:17 AM
RE: Problem installing instaloader - by buran - Nov-05-2019, 11:25 AM
RE: Problem installing instaloader - by snippsat - Nov-05-2019, 01:25 PM
RE: Problem installing instaloader - by ledgreve - Nov-18-2019, 11:28 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
Photo Problem installing turtle MasterJediKnight7 17 24,918 Mar-18-2024, 10:22 AM
Last Post: bmohamadyar313
  [WORKED AROUND] Problem installing elitech-datareader, 'cannot import build_py_2to3' NeilUK 4 1,828 Jul-09-2023, 10:01 AM
Last Post: NeilUK
  Problem Installing rasterio gw1500se 1 2,243 Mar-24-2020, 06:28 PM
Last Post: gw1500se
  Problem installing library thunderspeed 2 2,369 Mar-22-2020, 11:04 PM
Last Post: thunderspeed
  Please help: problem installing/importing langdetect module in Jupyter Notebook ledgreve 3 7,388 Dec-30-2019, 08:17 AM
Last Post: LeanbridgeTech
  Problem with installing PyPDF2 Pavel_47 2 6,095 Nov-10-2019, 02:58 PM
Last Post: Pavel_47
  Problem installing numpy and matplotlib achondrite 1 3,177 Jan-16-2019, 11:43 PM
Last Post: snippsat
  Big problem for installing PyCharm sylas 2 3,963 Nov-12-2017, 05:17 PM
Last Post: sylas
  Problem installing urlparse4 package BobLoblaw 2 5,801 Oct-06-2017, 05:16 PM
Last Post: BobLoblaw

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020