odaislib 1.0.6__tar.gz → 1.0.8__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: odaislib
3
- Version: 1.0.6
3
+ Version: 1.0.8
4
4
  Summary: Facebook Authentication Library with multiple login methods
5
5
  Home-page:
6
6
  Author: Odai
@@ -1,6 +1,7 @@
1
- #The Script And The Library For Odai - @K33Kz -- @K33Ka
2
- #السكربت و المكتبة لعدي @K33Kz - @K33Ka
1
+ # The Script And The Library For Odai - @K33Kz -- @K33Ka
2
+ # السكربت و المكتبة لعدي @K33Kz - @K33Ka
3
3
  import requests,re,json,time;from uuid import uuid4
4
+
4
5
  class basic:
5
6
  @staticmethod
6
7
  def login(email, password, proxies=None):
@@ -329,6 +330,7 @@ class apps:
329
330
  apps_matches = re.findall(r'\",\"app_name\":\"([^\"]+)\",\"', response.text)
330
331
  linked_apps = list(set(apps_matches))
331
332
  return linked_apps
333
+
332
334
  import requests, re, json, time, os, random
333
335
  from typing import Optional, Dict, Any, Tuple
334
336
  from datetime import datetime
@@ -620,4 +622,15 @@ def cev6(usernames) -> Dict[str, Any]:
620
622
 
621
623
  def reset_password(username: str) -> Dict[str, Any]:
622
624
  tool = InstaResetTool()
623
- return tool.reset_password(username)
625
+ return tool.reset_password(username)
626
+
627
+ # إضافة الدوال الناقصة التي يحاول المستخدم استيرادها
628
+ def analyze_instagram_only(response_text: str) -> Dict[str, Any]:
629
+ """Alias for analyze_response_only for compatibility"""
630
+ tool = InstaResetTool()
631
+ return tool.analyze_response_only(response_text)
632
+
633
+ def analyze_instagram_json(json_str: str) -> Dict[str, Any]:
634
+ """Analyze Instagram JSON response"""
635
+ tool = InstaResetTool()
636
+ return tool.analyze_response_only(json_str)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: odaislib
3
- Version: 1.0.6
3
+ Version: 1.0.8
4
4
  Summary: Facebook Authentication Library with multiple login methods
5
5
  Home-page:
6
6
  Author: Odai
@@ -3,7 +3,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
3
3
  long_description = fh.read()
4
4
  setup(
5
5
  name="odaislib",
6
- version="1.0.6",
6
+ version="1.0.8",
7
7
  author="Odai",
8
8
  author_email="odaiobeidat00@gmail.com",
9
9
  description="Facebook Authentication Library with multiple login methods",
File without changes
File without changes