Re: Concatenation of multiple video files in single file

2020-05-09 Thread Wildman via Python-list
On Sat, 09 May 2020 22:06:01 +0530, Akshay Ghodake wrote: > Hello, > > I want a help to concatenation of multiple video files into a single file > in python. > > Any help will be greatly appreciated. > > Best regards, > Akshay Ghodake This might help... https://kkroening.github.io/ffmpeg-pyth

Re: Should setuptools version propagate to a module's __version__? If so, how?

2020-05-09 Thread Cameron Simpson
On 08May2020 18:07, John Ladasky wrote: I just came across a package in PyPI which is in a state of neglect. The official version on the PyPI page is 1.3.1 -- but the installed module reports its version as 1.2.0. This is confusing. There are several bugs in this package besides the mismatc

Re: IP address to binary conversion

2020-05-09 Thread al . alexiev
Hi Alan, Yes, agreed that any '!I' or '!L' combination will work on different type of platforms in a consistent manner, when applied in both directions. I was referring to Alex Martelli's output, where the conversion back to IP seems to be reversed, even with '!L', which means that he's already

Re: Concatenation of multiple video files in single file

2020-05-09 Thread Chris Angelico
On Sun, May 10, 2020 at 8:50 AM Akshay Ghodake wrote: > > Hello, > > I want a help to concatenation of multiple video files into a single file > in python. > > Any help will be greatly appreciated. Step 1: import subprocess Step 2: Run ffmpeg ChrisA -- https://mail.python.org/mailman/listinfo/

Re: Pandas Dataframe Numbers Comma Formatted

2020-05-09 Thread Python
Joydeep C wrote: On Sat, 09 May 2020 14:42:43 +0200, Python wrote: Joydeep wrote: I have a Pandas dataframe like below. XY 0 1234567890 1 54321N/A 2 67890123456 I need to make these numbers comma formatted. For example, 12345 => 12,345. >>> value = 12345 f'{v

Re: Pandas Dataframe Numbers Comma Formatted

2020-05-09 Thread Python
Joydeep C wrote: On Sat, 09 May 2020 17:24:41 +0200, Python wrote: Joydeep C wrote: On Sat, 09 May 2020 15:46:27 +0200, Python wrote: Joydeep C wrote: On Sat, 09 May 2020 14:42:43 +0200, Python wrote: Joydeep wrote: I have a Pandas dataframe like below. XY 0 1234567

Re: Pandas Dataframe Numbers Comma Formatted

2020-05-09 Thread Python
Joydeep wrote: I have a Pandas dataframe like below. XY 0 1234567890 1 54321N/A 2 67890123456 I need to make these numbers comma formatted. For example, 12345 => 12,345. >>> value = 12345 >>> f'{value:,}' # >= 3.6 '12,345' >>> '{:,}'.format(value) # >= 2.7 '12,34

Re: Pandas Dataframe Numbers Comma Formatted

2020-05-09 Thread Python
Joydeep C wrote: On Sat, 09 May 2020 15:46:27 +0200, Python wrote: Joydeep C wrote: On Sat, 09 May 2020 14:42:43 +0200, Python wrote: Joydeep wrote: I have a Pandas dataframe like below. XY 0 1234567890 1 54321N/A 2 67890123456 I need to make these numbers co

Concatenation of multiple video files in single file

2020-05-09 Thread Akshay Ghodake
Hello, I want a help to concatenation of multiple video files into a single file in python. Any help will be greatly appreciated. Best regards, Akshay Ghodake -- https://mail.python.org/mailman/listinfo/python-list

Re: Pandas Dataframe Numbers Comma Formatted

2020-05-09 Thread Joydeep C
On Sat, 09 May 2020 17:24:41 +0200, Python wrote: > Joydeep C wrote: >> On Sat, 09 May 2020 15:46:27 +0200, Python wrote: >> >>> Joydeep C wrote: On Sat, 09 May 2020 14:42:43 +0200, Python wrote: > Joydeep wrote: >> I have a Pandas dataframe like below. >> >>X

Re: Pandas Dataframe Numbers Comma Formatted

2020-05-09 Thread Joydeep C
On Sat, 09 May 2020 15:46:27 +0200, Python wrote: > Joydeep C wrote: >> On Sat, 09 May 2020 14:42:43 +0200, Python wrote: >> >>> Joydeep wrote: I have a Pandas dataframe like below. XY 0 1234567890 1 54321N/A 2 67890123456 I need to make

Re: Pandas Dataframe Numbers Comma Formatted

2020-05-09 Thread Peter Otten
Joydeep C wrote: > On Sat, 09 May 2020 14:42:43 +0200, Python wrote: > >> Joydeep wrote: >>> I have a Pandas dataframe like below. >>> >>> XY >>> 0 1234567890 1 54321N/A 2 67890123456 >>> >>> I need to make these numbers comma formatted. For example, 12345 => >>> 12,

Re: Pandas Dataframe Numbers Comma Formatted

2020-05-09 Thread Joydeep C
On Sat, 09 May 2020 14:42:43 +0200, Python wrote: > Joydeep wrote: >> I have a Pandas dataframe like below. >> >> XY >> 0 1234567890 1 54321N/A 2 67890123456 >> >> I need to make these numbers comma formatted. For example, 12345 => >> 12,345. > > >>> value = 12345 f

Pandas Dataframe Numbers Comma Formatted

2020-05-09 Thread Joydeep C
I have a Pandas dataframe like below. XY 0 1234567890 1 54321N/A 2 67890123456 I need to make these numbers comma formatted. For example, 12345 => 12,345. Please help. Thanks. -- https://mail.python.org/mailman/listinfo/python-list

Re: Not able use installed modules

2020-05-09 Thread Bob Gailer
On May 8, 2020 2:15 PM, "boB Stepp" wrote: [snip] > This may be a naive question on my part, but, as far as I can tell, most > instructions that I have encountered for installing Python packages state the > installation instructions as "pip install ...", which seems to repeatedly > lead to these t