A database package to store variables in an online database for free.
Project description
Usage
This is used to store global variables in a database. You can retrieve the variables from unique variableIDs.
Functions
createVar(auth, name, value)
Creates a new variable and returns the Variable ID, which you can use to retrieve the value using the getValueFromID() Function.
Example Script:
moneyID = createVar("myUniqueAuth", "money", "$1,291")
value = getValueFromID(moneyID)
print(value)
Example Response:
>>> $1, 291
getValueFromID(ID)
Retrieve the value from the Variable ID.
Example Script:
moneyID = createVar("myUniqueAuth", "money", "$1,291")
value = getValueFromID(moneyID)
print(value)
Example Response:
>>> $1, 291
getJSONFromID(ID)
Retrieve the JSON from the Variable ID.
Does not work for userGen() Variable IDs, use getUserJSON() instead...
Example Script:
moneyID = createVar("myUniqueAuth", "money", "$1,291")
json = getJSONFromID(moneyID)
print(json)
Example Response:
>>> {'_id': '633cbfd65057d14f0004d011', 'name': 'Hi', 'auth': 'John', 'value': 15}
userGen(amount_of_users, statusUpdate)
Generate completely random users with phone numbers, usernames, passwords, adresses, emails, and more.
Params:
amount_of_users: int -> How many users to generate. Must be an int such as 1, 219, or 173. | Generates a maximum of 999 users.
statusUpdate: bool -> Print updates on the user generation status. If True -> Will print update for each user created. If False -> Will not print update. BETA MODE DO NOT RECOMEND!
Example Script:
ranUser = userGen(5, True)
print(ranUser[0])
print("\n"+ranUser[1]["name"])
print("\n"+str(ranUser[2]["age"]))
Example Response:
User #1 Created!
User #2 Created!
User #3 Created!
User #4 Created!
User #5 Created!
{'_id': '633c78f45057d14f0004c7d4', 'pass': '9Clifford57',
'name': 'Bobbie Towne', 'email':
'Hortense.Mayert@yahoo.com', 'user': 'Carolina_Ruecker',
'age': 89, 'phone': '040-533-6820', 'address': '6724
Rodriguez Turnpike\nLake Edgardo, UT 84745', '_mock': True}
Chelsey Gusikowski
96
_id and _mock are debug elements, ignore them
setVar(ID, new_value)
Updates an already existing variable and returns the Variable ID, which you can use to retrieve the value using the getValueFromID() Function.
Example Script:
moneyID = createVar("myUniqueAuth", "money", "$1,291")
value = getValueFromID(moneyID)
print(value)
updatedMoney = setVar(moneyID, "$1,801")
updated_value = getValueFromID(moneyID)
print(updated_value)
Example Response:
>> $1, 291
>> $1, 801
removeVar(ID)
Deletes an already created variable.
Example Script:
moneyID = createVar("myUniqueAuth", "money", "$1,291")
value = getValueFromID(moneyID)
print(value)
removeVar(moneyID)
print(getJSONFromID(moneyID))
print(getValueFromID(moneyID))
Example Response:
>> $1, 291
>> []
>> Traceback (most recent call last):
File "main.py", line 262, in <module>
print(getValueFromID(moneyID))
File "main.py", line 58, in getValueFromID
value = response.json()["value"]
TypeError: list indices must be integers or slices, not str
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file variableDatabase-0.0.3.tar.gz
.
File metadata
- Download URL: variableDatabase-0.0.3.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2a9c20f31e52f87892bfa8751aacae90456a5116e5aaa5299b63bf219922af24 |
|
MD5 | 7aa8b6f11a457732aeeb12e4a1b5fc95 |
|
BLAKE2b-256 | 0740109a2df97688c96ef4f538c29258fbbdc3573c03fa03dbe3a87f5822a27e |
File details
Details for the file variableDatabase-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: variableDatabase-0.0.3-py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ce39baecd69da781760118db5e83f163d23071e22c870087dcbbc16bc2a795bf |
|
MD5 | 745af1f7bd1c06b031f42eb864fbf181 |
|
BLAKE2b-256 | 1cffeca2956f9fd5bbd8ed02a49c315cedc1a659bb3be2a323a717e782909b9b |