Tagged Questions
1
vote
1answer
58 views
SqlAlchemy Core and bare exists query
I have faced a problem where I have to find if the data exists in the table using SqlAlchemy Core.
I think the best way to do this query is to use exists method, which stops searching as soon as the ...
3
votes
2answers
64 views
How to access a possibly existing element derived from a JSON data tree?
I have a rather complex data structure derived from JSON with json.load(<filehandle>), e.g.
{
"sensors": {
"measurements": [
[
null,
...
-1
votes
5answers
1k views
How to check whether a tuple exists in a Python list?
I am new to Python, and I am trying to check whether a pair [a,b] exists in a list l=[[a,b],[c,d],[d,e]]. I searched many questions, but couldn't find precise solution. Please can someone tell me the ...
2
votes
2answers
2k views
sqlalchemy exists for query
How to check that data in query is exists?
For example:
users_query = User.query.filter_by(email='x@x.com')
How I can check that users with that email exists?
Now i check this with
...
0
votes
1answer
115 views
Why this query doesn't work (problem with EXISTS)
I'm struggling with such query (generated by sqlalchemy. I've renamed it for clarity)
SELECT table.x + :dx AS cx, table.y + :dy AS cy
FROM table
WHERE NOT (EXISTS (SELECT * FROM table AS table_1
...
2
votes
2answers
1k views
PySVN - Determine if a repository exists
I'm writing a small script that manages several SVN repositories. Users pass through the ID of the repository they want to change (the root of the repos are of the form https://www.mydomain.com/).
I ...
2
votes
3answers
326 views
C#'s equivalent to Python's os.path.exists()?
I can use os.path.exists() to check if the file exists or not with Python.
What's the equivalent function in C#?
0
votes
1answer
532 views
python: check if variable is defined and return its value or return other value
I am trying to use this code
result = arr['key1'] or arr['key2'] or arr['key3']
explanation:
I want to have value in result from either or dict keys .. the availability of keys depends on the ...
0
votes
3answers
175 views
Python different functions depending on input
I wrote a program to solve the problems for my physics chapter which takes all the given data and does everything it can with it. I used a long string of if statements to check which functions are ...
1
vote
1answer
5k views
Does File exist in Python? [duplicate]
Possible Duplicate:
Pythonic way to check if a file exists?
How can Check if file exist with python 2.6?
If file exists run exec redo.py.
If file does not exists exec file start.py
The ...
20
votes
4answers
4k views
Check if multiple strings exist in another string
How can I check if any of the strings in an array exists in another string?
Like:
a = ['a', 'b', 'c']
str = "a123"
if a in str:
print "some of the strings found in str"
else:
print "no strings ...
0
votes
3answers
1k views
Testing for the existence of a field in a class
i have a quick question. I have a 2D array that stores an instance of a class. The elements of the array are assigned a particular class based on a text file that is read earlier in the program. Since ...
3
votes
2answers
6k views
ALTER TABLE Sqlite: how to check if a column exists before alter the table?
I need to execute in python a SQL query that adds a new column, in sqlite3.
The problem is that sometimes it already exists. So previous to executing the query I need to check if the column already ...
