InstagramPharo/Instagram/InstagramDownloader.class.st

18 lines
358 B
Smalltalk

Class {
#name : #InstagramDownloader,
#superclass : #Object,
#category : #Instagram
}
{ #category : #'as yet unclassified' }
InstagramDownloader >> initialize [
super initialize.
]
{ #category : #'as yet unclassified' }
InstagramDownloader >> installDefault [
| py |
py := PyEnv new.
py createEnv: 'InstagramDownloader' in: FileLocator documents
]