Ensta

Latest version: v5.2.9

Safety actively analyzes 665704 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 7 of 11

5.0.3.1

You can do a lot with ensta, here's some code:

<details>

<summary>Proxy Support</summary><br>

python
from ensta import Host

host = Host(username, password, proxy={"http": "http://1.2.3.4", "https": "https://1.2.3.4"})


</details>

<details>

<summary>Username Password Login</summary><br>

python
from ensta import Host

host = Host(username, password)


</details>

<details>

<summary>Upload Posts</summary><br>

python
from ensta import Host

host = Host(username, password)

host.upload_post(
photo_path="Picture.jpg",
caption="Travelling 🌆",
)


</details>

<details>

<summary>Upload Reels</summary><br>

python
from ensta import Host

host = Host(username, password)

host.upload_reel(
video_path="Video.mp4",
thumbnail_path="Thumbnail.jpg",
caption="Enjoying the winter! ⛄"
)


</details>

<details>

<summary>Check Username Availability</summary><br>

python
from ensta import Guest

guest = Guest()

print(guest.username_availability("theusernameiwant"))


</details>

<details>

<summary>Fetch Profile Data</summary><br>

python
from ensta import Host

host = Host(username, password)
profile = host.profile("leomessi")

print(profile.full_name)
print(profile.biography)
print(profile.follower_count)


</details>

<details>

<summary>Convert Username to UID, and vice versa.</summary><br>

python
from ensta import Host

host = Host(username, password)

username = host.get_username(427553890)
uid = host.get_uid("leomessi")

print(username, uid)


</details>

<details>

<summary>Follow / Unfollow Users</summary><br>

python
from ensta import Host

host = Host(username, password)

print(host.follow("leomessi"))
print(host.unfollow("leomessi"))


</details>

<details>

<summary>Generate Followers / Followings List</summary><br>

python
from ensta import Host

host = Host(username, password)

followers = host.followers("leomessi", count=100) Want full list? Set count to '0'
followings = host.followings("leomessi", count=100) Want full list? Set count to '0'

for user in followers:
print(user.username)

for user in followings:
print(user.username)


</details>

<details>

<summary>Switch Account Type - Public/Private</summary><br>

python
from ensta import Host

host = Host(username, password)

print(host.switch_to_public_account())
print(host.switch_to_private_account())


</details>

<details>

<summary>Fetch Someone's Posts</summary><br>

python
from ensta import Host

host = Host(username, password)
posts = host.posts("leomessi", 100) Want full list? Set count to '0'

for post in posts:
print(post.caption_text)
print(post.like_count)

...


</details>

<details>

<summary>Fetch Data of Individual Post</summary><br>

python
from ensta import Host

host = Host(username, password)
post = host.post("https://www.instagram.com/p/Czgyw07t_c3/")

print(post.caption_text)
print(post.like_count)

...


</details>

<details>

<summary>Like/Unlike Posts</summary><br>

python
...

post.like()
post.unlike()


</details>

<details>

<summary>Edit Biography, Display Name</summary><br>

python
from ensta import Host

host = Host(username, password)

host.change_display_name("Lionel Messi")
host.change_bio("Athlete")


</details>

<details>

<summary>Fetch Your Email, Gender, Birthday, etc.</summary><br>

python
from ensta import Host

host = Host(username, password)
me = host.private_info()

print(me.email)
print(me.gender)
print(me.birthday)


</details>

5.0.2

Supported Actions
You can do a lot with ensta, here's some code:

<details>

<summary>Username, Password & SessionID Login</summary><br>

**Login using Username & Password:**
python
from ensta import Host

host = Host(username, password)


**Login using SessionID:**
python
from ensta import BaseHost

host = BaseHost(session_id)


</details>

<details>

<summary>Upload Posts</summary><br>

python
from ensta import Host

host = Host(username, password)

host.upload_post(
photo_path="Picture.jpg",
caption="Travelling 🌆",
)


</details>

<details>

<summary>Upload Reels</summary><br>

python
from ensta import Host

host = Host(username, password)

host.upload_reel(
video_path="Video.mp4",
thumbnail_path="Thumbnail.jpg",
caption="Enjoying the winter! ⛄"
)


</details>

<details>

<summary>Check Username Availability</summary><br>

python
from ensta import Guest

guest = Guest()

print(guest.username_availability("theusernameiwant"))


</details>

<details>

<summary>Fetch Profile Data</summary><br>

python
from ensta import Host

host = Host(username, password)
profile = host.profile("leomessi")

print(profile.full_name)
print(profile.biography)
print(profile.follower_count)


</details>

<details>

<summary>Convert Username to UID, and vice versa.</summary><br>

python
from ensta import Host

host = Host(username, password)

username = host.get_username(427553890)
uid = host.get_uid("leomessi")

print(username, uid)


</details>

<details>

<summary>Follow / Unfollow Users</summary><br>

python
from ensta import Host

host = Host(username, password)

print(host.follow("leomessi"))
print(host.unfollow("leomessi"))


</details>

<details>

<summary>Generate Followers / Followings List</summary><br>

python
from ensta import Host

host = Host(username, password)

followers = host.followers("leomessi", count=100) Want full list? Set count to '0'
followings = host.followings("leomessi", count=100) Want full list? Set count to '0'

for user in followers:
print(user.username)

for user in followings:
print(user.username)


</details>

<details>

<summary>Switch Account Type - Public/Private</summary><br>

python
from ensta import Host

host = Host(username, password)

print(host.switch_to_public_account())
print(host.switch_to_private_account())


</details>

<details>

<summary>Fetch Someone's Posts</summary><br>

python
from ensta import Host

host = Host(username, password)
posts = host.posts("leomessi", 100) Want full list? Set count to '0'

for post in posts:
print(post.caption_text)
print(post.like_count)

...


</details>

<details>

<summary>Fetch Data of Individual Post</summary><br>

python
from ensta import Host

host = Host(username, password)
post = host.post("https://www.instagram.com/p/Czgyw07t_c3/")

print(post.caption_text)
print(post.like_count)

...


</details>

<details>

<summary>Like/Unlike Posts</summary><br>

python
...

post.like()
post.unlike()


</details>

<details>

<summary>Edit Biography, Display Name</summary><br>

python
from ensta import Host

host = Host(username, password)

host.change_display_name("Lionel Messi")
host.change_bio("Athlete")


</details>

<details>

<summary>Fetch Your Email, Gender, Birthday, etc.</summary><br>

python
from ensta import Host

host = Host(username, password)
me = host.private_info()

print(me.email)
print(me.gender)
print(me.birthday)


</details>

5.0.1

Supported Actions
You can do a lot with ensta, here's some code:

<details>

<summary>Username, Password & SessionID Login</summary><br>

**Login using Username & Password:**
python
from ensta import Host

host = Host(username, password)


**Login using SessionID:**
python
from ensta import BaseHost

host = BaseHost(session_id)


</details>

<details>

<summary>Upload Posts</summary><br>

python
from ensta import Host

host = Host(username, password)

host.upload_post(
photo_path="Picture.jpg",
caption="Travelling 🌆",
)


</details>

<details>

<summary>Upload Reels</summary><br>

python
from ensta import Host

host = Host(username, password)

host.upload_reel(
video_path="Video.mp4",
thumbnail_path="Thumbnail.jpg",
caption="Enjoying the winter! ⛄"
)


</details>

<details>

<summary>Check Username Availability</summary><br>

python
from ensta import Guest

guest = Guest()

print(guest.username_availability("theusernameiwant"))


</details>

<details>

<summary>Fetch Profile Data</summary><br>

python
from ensta import Host

host = Host(username, password)
profile = host.profile("leomessi")

print(profile.full_name)
print(profile.biography)
print(profile.follower_count)


</details>

<details>

<summary>Convert Username to UID, and vice versa.</summary><br>

python
from ensta import Host

host = Host(username, password)

username = host.get_username(427553890)
uid = host.get_uid("leomessi")

print(username, uid)


</details>

<details>

<summary>Follow / Unfollow Users</summary><br>

python
from ensta import Host

host = Host(username, password)

print(host.follow("leomessi"))
print(host.unfollow("leomessi"))


</details>

<details>

<summary>Generate Followers / Followings List</summary><br>

python
from ensta import Host

host = Host(username, password)

followers = host.followers("leomessi", count=100) Want full list? Set count to '0'
followings = host.followings("leomessi", count=100) Want full list? Set count to '0'

for user in followers:
print(user.username)

for user in followings:
print(user.username)


</details>

<details>

<summary>Switch Account Type - Public/Private</summary><br>

python
from ensta import Host

host = Host(username, password)

print(host.switch_to_public_account())
print(host.switch_to_private_account())


</details>

<details>

<summary>Fetch Someone's Posts</summary><br>

python
from ensta import Host

host = Host(username, password)
posts = host.posts("leomessi", 100) Want full list? Set count to '0'

for post in posts:
print(post.caption_text)
print(post.like_count)

...


</details>

<details>

<summary>Fetch Data of Individual Post</summary><br>

python
from ensta import Host

host = Host(username, password)
post = host.post("https://www.instagram.com/p/Czgyw07t_c3/")

print(post.caption_text)
print(post.like_count)

...


</details>

<details>

<summary>Like/Unlike Posts</summary><br>

python
...

post.like()
post.unlike()


</details>

<details>

<summary>Edit Biography, Display Name</summary><br>

python
from ensta import Host

host = Host(username, password)

host.change_display_name("Lionel Messi")
host.change_bio("Athlete")


</details>

<details>

<summary>Fetch Your Email, Gender, Birthday, etc.</summary><br>

python
from ensta import Host

host = Host(username, password)
me = host.private_info()

print(me.email)
print(me.gender)
print(me.birthday)


</details>

5.0.0

Supported Actions
You can do a lot with ensta, here's some code:

<details>

<summary>Username, Password & SessionID Login</summary><br>

**Login using Username & Password:**
python
from ensta import Host

host = Host(username, password)


**Login using SessionID:**
python
from ensta import BaseHost

host = BaseHost(session_id)


</details>

<details>

<summary>Upload Posts</summary><br>

python
from ensta import Host

host = Host(username, password)

host.upload_post(
photo_path="Picture.jpg",
caption="Travelling 🌆",
)


</details>

<details>

<summary>Upload Reels</summary><br>

python
from ensta import Host

host = Host(username, password)

host.upload_reel(
video_path="Video.mp4",
thumbnail_path="Thumbnail.jpg",
caption="Enjoying the winter! ⛄"
)


</details>

<details>

<summary>Check Username Availability</summary><br>

python
from ensta import Guest

guest = Guest()

print(guest.username_availability("theusernameiwant"))


</details>

<details>

<summary>Fetch Profile Data</summary><br>

python
from ensta import Host

host = Host(username, password)
profile = host.profile("leomessi")

print(profile.full_name)
print(profile.biography)
print(profile.follower_count)


</details>

<details>

<summary>Convert Username to UID, and vice versa.</summary><br>

python
from ensta import Host

host = Host(username, password)

username = host.get_username(427553890)
uid = host.get_uid("leomessi")

print(username, uid)


</details>

<details>

<summary>Follow / Unfollow Users</summary><br>

python
from ensta import Host

host = Host(username, password)

print(host.follow("leomessi"))
print(host.unfollow("leomessi"))


</details>

<details>

<summary>Generate Followers / Followings List</summary><br>

python
from ensta import Host

host = Host(username, password)

followers = host.followers("leomessi", count=100) Want full list? Set count to '0'
followings = host.followings("leomessi", count=100) Want full list? Set count to '0'

for user in followers:
print(user.username)

for user in followings:
print(user.username)


</details>

<details>

<summary>Switch Account Type - Public/Private</summary><br>

python
from ensta import Host

host = Host(username, password)

print(host.switch_to_public_account())
print(host.switch_to_private_account())


</details>

<details>

<summary>Fetch Someone's Posts</summary><br>

python
from ensta import Host

host = Host(username, password)
posts = host.posts("leomessi", 100) Want full list? Set count to '0'

for post in posts:
print(post.caption_text)
print(post.like_count)

...


</details>

<details>

<summary>Fetch Data of Individual Post</summary><br>

python
from ensta import Host

host = Host(username, password)
post = host.post("https://www.instagram.com/p/Czgyw07t_c3/")

print(post.caption_text)
print(post.like_count)

...


</details>

<details>

<summary>Like/Unlike Posts</summary><br>

python
...

post.like()
post.unlike()


</details>

<details>

<summary>Edit Biography, Display Name</summary><br>

python
from ensta import Host

host = Host(username, password)

host.change_display_name("Lionel Messi")
host.change_bio("Athlete")


</details>

<details>

<summary>Fetch Your Email, Gender, Birthday, etc.</summary><br>

python
from ensta import Host

host = Host(username, password)
me = host.private_info()

print(me.email)
print(me.gender)
print(me.birthday)


</details>

4.9

Supported Actions
You can do a lot with ensta, here's some code:

<details>

<summary>Username, Password & SessionID Login</summary><br>

**Login using Username & Password:**
python
from ensta import Host

host = Host(username, password)


**Login using SessionID:**
python
from ensta import BaseHost

host = BaseHost(session_id)


</details>

<details>

<summary>Upload Posts</summary><br>

python
from ensta import Host

host = Host(username, password)

host.upload_post(
photo_path="Picture.jpg",
caption="Travelling 🌆",
)


</details>

<details>

<summary>Check Username Availability</summary><br>

python
from ensta import Guest

guest = Guest()

print(guest.username_availability("theusernameiwant"))


</details>

<details>

<summary>Fetch Profile Data</summary><br>

python
from ensta import Host

host = Host(username, password)
profile = host.profile("leomessi")

print(profile.full_name)
print(profile.biography)
print(profile.follower_count)


</details>

<details>

<summary>Convert Username to UID, and vice versa.</summary><br>

python
from ensta import Host

host = Host(username, password)

username = host.get_username(427553890)
uid = host.get_uid("leomessi")

print(username, uid)


</details>

<details>

<summary>Follow / Unfollow Users</summary><br>

python
from ensta import Host

host = Host(username, password)

print(host.follow("leomessi"))
print(host.unfollow("leomessi"))


</details>

<details>

<summary>Generate Followers / Followings List</summary><br>

python
from ensta import Host

host = Host(username, password)

followers = host.followers("leomessi", count=100) Want full list? Set count to '0'
followings = host.followings("leomessi", count=100) Want full list? Set count to '0'

for user in followers:
print(user.username)

for user in followings:
print(user.username)


</details>

<details>

<summary>Switch Account Type - Public/Private</summary><br>

python
from ensta import Host

host = Host(username, password)

print(host.switch_to_public_account())
print(host.switch_to_private_account())


</details>

<details>

<summary>Fetch Someone's Posts</summary><br>

python
from ensta import Host

host = Host(username, password)
posts = host.posts("leomessi", 100) Want full list? Set count to '0'

for post in posts:
print(post.caption_text)
print(post.like_count)

...


</details>

<details>

<summary>Fetch Data of Individual Post</summary><br>

python
from ensta import Host

host = Host(username, password)
post = host.post("https://www.instagram.com/p/Czgyw07t_c3/")

print(post.caption_text)
print(post.like_count)

...


</details>

<details>

<summary>Like/Unlike Posts</summary><br>

python
...

post.like()
post.unlike()


</details>

<details>

<summary>Edit Biography, Display Name</summary><br>

python
from ensta import Host

host = Host(username, password)

host.change_display_name("Lionel Messi")
host.change_bio("Athlete")


</details>

<details>

<summary>Fetch Your Email, Gender, Birthday, etc.</summary><br>

python
from ensta import Host

host = Host(username, password)
me = host.private_info()

print(me.email)
print(me.gender)
print(me.birthday)


</details>

4.8

Supported Actions
You can do a lot with ensta, here's a list:

- Username/Password & SessionID Login
- Upload Posts - With Caption, Comments Enabled, etc.
- Check Username Availability
- Fetch Profile Data
- Convert Username to UID, and vice versa.
- Follow/Unfollow Users
- Generate Followers/Followings List
- Change Account Type - Public/Private
- Generate Posts List
- Fetch Post Data
- Like/Unlike Post
- Edit Biography & Display Name
- Fetch your Email, Gender, Date of birth, etc.

Page 7 of 11

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.