About 11,600,000 results
Open links in new tab
  1. How to import a .cer certificate into a java keystore?

    A workaround I have found is to import the certificate in IE and export it as a .pfx file. This file can be loaded as a keystore and can be used to authenticate with the webservice. However I …

  2. python - Importing files from different folder - Stack Overflow

    I have this folder structure: application ├── app │ └── folder │ └── file.py └── app2 └── some_folder └── some_file.py How can I import a function from file.py, from within som...

  3. Import CSV file into SQL Server - Stack Overflow

    I am looking for help to import a .csv file into SQL Server using BULK INSERT and I have few basic questions. Issues: The CSV file data may have , (comma) in between (Ex: description), …

  4. ImportError: No module named requests - Stack Overflow

    I tried importing requests: import requests But I get an error: ImportError: No module named requests

  5. python - ImportError: cannot import name - Stack Overflow

    In my case, I refactored a single python script into different modules, leaving some old .py and .pyc files around, and stumbled on the "cannot import name" error.

  6. How to import an Oracle database from dmp file and log file?

    How was the database exported? If it was exported using exp and a full schema was exported, then Create the user: create user <username> identified by <password> default tablespace …

  7. How can I import an Excel file into SQL Server? - Stack Overflow

    The SQL Import wizard is frustrating and you can't save the config unless you have SIS. The OPENROWSET approach looked useful but is a dependency & security nightmare. I have …

  8. Import pfx file into particular certificate store from command line

    It's relatively easy to import a certificate into the user's personal store from a pfx file by using CertUtil: certutil –f –p [certificate_password] –importpfx C:\ [certificate_path_and_name].pfx ...

  9. ImportError: No module named Crypto.Cipher - Stack Overflow

    To date, I'm having same issue when importing from Crypto.Cipher import AES even when I've installed/reinstalled pycrypto a few times. End up it's because pip defaulted to python3.

  10. Import multiple CSV files into pandas and concatenate into one …

    I would like to read several CSV files from a directory into pandas and concatenate them into one big DataFrame. I have not been able to figure it out though. Here is what I have so far: import …