From 7c6d7d9d8029787438bd355e787ea0b0f9e969b6 Mon Sep 17 00:00:00 2001 From: Offray Luna Date: Sun, 15 May 2022 12:39:10 -0500 Subject: [PATCH] Improving tweets scraping. --- .../TweetsCollection.class/instance/nextCursor.st | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Socialmetrica.package/TweetsCollection.class/instance/nextCursor.st diff --git a/Socialmetrica.package/TweetsCollection.class/instance/nextCursor.st b/Socialmetrica.package/TweetsCollection.class/instance/nextCursor.st new file mode 100644 index 0000000..006e172 --- /dev/null +++ b/Socialmetrica.package/TweetsCollection.class/instance/nextCursor.st @@ -0,0 +1,3 @@ +accessing +nextCursor + ^ self messages last metadata values detect: [ :v | v class= ByteString and: [ v beginsWith: 'https://' ]]. \ No newline at end of file