creating a csv from information I have printed to screen

2020-05-21 Thread CiarĂ¡n Hudson
How do I edit the code below to create a csv file which includes the information I have printed at the bottom? I'm pulling arrival data from an airport website and printing out only the flight info. I want to save that flight info to a CSV file. import requests from bs4 import BeautifulSoup c

PyCharm, how to setup self contained subprojects

2020-05-21 Thread zljubisic
Hi, I should provide python code for (Spring) microservice patform. In microservice paradigm, each microservice should do a simple task, so python code beneath it should be very small. As a PyCharm (community) user, I don't know how to set up such development environment. Each microservice co

Re: Installation Error

2020-05-21 Thread Souvik Dutta
Do you have DirectX latest version? It should have solved the problem. If not already installed then you might try to install it. On Thu, 21 May, 2020, 10:29 pm Charles Seagraves, wrote: > Hi, > I have been learning and using Python to create a program to play Mah Jongg > and it was going well u

Re: Installation Error

2020-05-21 Thread Mike Dewhirst
On 21/05/2020 5:28 am, Charles Seagraves wrote: Hi, I have been learning and using Python to create a program to play Mah Jongg and it was going well until my windows 10 computer started receiving an update. My computer restarted and Python was gone. I have attempted to reinstall with a message t

Re: Display, EasyProcess

2020-05-21 Thread Larry Martell
On Thu, May 21, 2020 at 3:44 AM Peter Otten <__pete...@web.de> wrote: > > Larry Martell wrote: > > > I have some code that uses the pyvirtualdisplay package and it works fine. > > > > pyvirtualdisplay,Display calls EasyProcess like this: > > > >@classmethod > >def check_installed(cl

Installation Error

2020-05-21 Thread Charles Seagraves
Hi, I have been learning and using Python to create a program to play Mah Jongg and it was going well until my windows 10 computer started receiving an update. My computer restarted and Python was gone. I have attempted to reinstall with a message that the install was successful. When I started to

Re: Getting value of a variable without changing the expression in Python

2020-05-21 Thread Peter Otten
ansari.aafaq1...@gmail.com wrote: > Lets say i have a expression: > flowrate=(veloctiy*area) > i can find the flowrate with this expression > but if i dont wanna change the expression and want to find the velocity by > giving it value of area and flowrate ,how do i do this in python? is there > an

Re: Getting value of a variable without changing the expression in Python

2020-05-21 Thread Richard Damon
On 5/21/20 5:56 AM, ansari.aafaq1...@gmail.com wrote: > Lets say i have a expression: > flowrate=(veloctiy*area) > i can find the flowrate with this expression > but if i dont wanna change the expression and want to find the velocity by > giving it value of area and flowrate ,how do i do this in p

Getting value of a variable without changing the expression in Python

2020-05-21 Thread ansari . aafaq1994
Lets say i have a expression: flowrate=(veloctiy*area) i can find the flowrate with this expression but if i dont wanna change the expression and want to find the velocity by giving it value of area and flowrate ,how do i do this in python? is there any library or package or module for this? -- h

pip UX studies: Test pip's new resolver and help us document dependency conflicts

2020-05-21 Thread Bernard Tyers - Sane UX Design
Hi there, It's Bernard and Nicole from the pip Team. The team is working on the improving the way that pip resolves package dependency conflicts. We're asking for your help to test pip's new resolver. We're especially interested in hearing from people who have projects with complex dependencies

Re: Display, EasyProcess

2020-05-21 Thread Peter Otten
Larry Martell wrote: > I have some code that uses the pyvirtualdisplay package and it works fine. > > pyvirtualdisplay,Display calls EasyProcess like this: > >@classmethod >def check_installed(cls): >EasyProcess([PROGRAM, '-help'], url=URL, >ub