Datalux / Osintgram

Osintgram is a OSINT tool on Instagram. It offers an interactive shell to perform analysis on Instagram account of any users by its nickname
GNU General Public License v3.0
9.4k stars 2.05k forks source link

Osintgram.__init__.py missing 3 positional arguments? 'is_cli','outputs_dir','clear_cookies' #840

Open Tom-affleck opened 1 year ago

Tom-affleck commented 1 year ago

There is no init() file api=Osintgram(args.id,args.file,args.json) init.py file needed....

pradumon14 commented 1 year ago

If you're working with a Python project and you need an init.py file, you can easily create it yourself. The __init__.py file is used to mark a directory as a Python package, allowing it to be imported and used by other modules.

To create an __init__.py file, follow these steps:

  1. Open the directory where you need the __init__.py file.
  2. Create a new file and name it __init__.py. Make sure to include the double underscores before and after "init."
  3. Save the file in the directory.

Once you have the __init__.py file in place, you should be able to import the package or module without any issues.

Please note that in newer versions of Python (3.3 and above), the __init__.py file is not required to mark a directory as a package. However, if you're working with an older Python version or need to ensure compatibility, it's still a good practice to include it.

Tom-affleck commented 1 year ago

Yeah i have init .py file but i need to wrte some code for it thats what i want