About 557,000 results
Open links in new tab
  1. How I can convert file with any format to text format using Python …

    May 1, 2017 · I am trying to have a converter that can convert any file of any format to text, so that processing becomes easier to me. I have used the Python textract library. Here is the …

  2. How do I convert a IPython Notebook into a Python file via …

    Jun 13, 2013 · How do I convert a IPython Notebook into a Python file via commandline? Asked 12 years, 6 months ago Modified 1 year, 2 months ago Viewed 567k times

  3. python - How to convert a .ui file to .py file - Stack Overflow

    Dec 9, 2017 · In pyqt5 you can use: convert to none-executable python file : pyuic5 -o pyfilename.py design.ui convert to executable python file : pyuic5 -x -o pyfilename.py design.ui …

  4. python - xls to csv converter - Stack Overflow

    The computationally heavy parts are written in cython or c-extensions to speed up the process and the syntax is very clean. For example, if you want to turn "Sheet1" from the file …

  5. excel - Python convert csv to xlsx - Stack Overflow

    In this post there is a Python example to convert from csv to xls. However, my file has more than 65536 rows so xls does not work. If I name the file xlsx it doesnt make a difference. Is there a P...

  6. How can I convert a .py to .exe for Python? - Stack Overflow

    Steps to convert .py to .exe in Python 3.6 Install Python 3.6. Install cx_Freeze, (open your command prompt and type pip install cx_Freeze. Install idna, (open your command prompt …

  7. multiple .doc to .docx file conversion using python

    Jul 20, 2016 · I want to convert all the .doc files from a particular folder to .docx file. I tried using the following code, import subprocess import os for filename in os.listdir(os.getcwd()): if filename.

  8. can bus - Python CAN Log Converter for the following log types …

    Aug 4, 2022 · 1 Bear with me as I'm new to Python and coding in general. I was looking to create a script that is able to convert the following common CAN logging formats (ASC, BLF, txt, csv, …

  9. python - How can I manually generate a .pyc file from a .py file ...

    For some reason, I can not depend on Python's "import" statement to generate .pyc file automatically Is there a way to implement a function as following? def py_to_pyc(py_filepath, …

  10. Best way to convert .ipynb to .py in VSCode - Stack Overflow

    Oct 10, 2020 · If you don't want to modify your settings.json file (or don't know where it is stored), you can actually change how python files are exported through the VSCode IDE.