Skip to main content

Fayouts can do a lot, but they are just a tool

Project description

Datetime Module

Datetime allows you to work with the current date and time. It adds only one function, and it allows you to get the date and time. Datetime is based on your PC's time zone.

Datetime Docs

First, you need to call the getData () function, which is called without parameters, then, separated by a period, you should indicate what you want to get, for example, minutes.

1| print(getData().minutes)
31
1| print(getData().year)
2022
1| print(getData().dateUs)
03.01.2022
1| print(getData().weekday)
Monday

Start Module

The Start Module allows you to create a new Python project, it creates a whole tree, including files, folders for source files, and so on. The module is called by a single import in a python file.

Start Docs

1 Create a folder with the name of your project

2 Create a main.py file in the root of the folder

3 In the file, write the following command

1| import fayouts.start.newproject

4 Run the main.py file, after creating the project, delete it

Files Module

The Files module lets you work with files much easier than in the original Python.

Files Docs

Functions

1 writeFile will let you write anything to a file

2 readFile will allow you to read all text from a file

3 addToFile will allow you to add some text to the file Differences: Python

file = open('name.txt', 'w')
file.write('Some text')
file.close()

Fayouts

writeFile('name.txt', 'Some text')

Python

file = open('name.txt', 'r')
print(file.read())
file.close()

Fayouts

print(readFile('name.txt'))

Aiobot Module

Attention! This module does not work correctly on versions below 1.0.3!

So far, the Aiobot module only allows you to create a template for the aiogram project, but soon there will be much more options. Unfortunately, it is impossible to guess exactly the structure of each bot, so my module creates just a simple template that everyone needs. I do not want to shove everything that is possible into this module at once, this is wrong, because this is how all customization disappears, all the opportunity to customize the bot for yourself.

Aiobot Docs

To create a project, you need to create a main.py file and write:

import fayouts.aiobot.startproject

You can configure the bot in config.py, you must store all your filters in filters.py, and everything related to the bot itself in bot.py. bot.py is the entry point to your bot's program

Discobot Module

The Discobot module allows you to work with the Discord plugin to create discord bots.

Discobot Docs

To create a project, you need to create a main.py file and write:

import fayouts.discobot.startproject

Fayouts Module

version 1.1.0+

The Fayouts module will allow you to create fields that persist even after the program is closed, you can refer to them by name from the Python code or from a .fy file.

Fayouts Docs

First, you need to create a file with the extension .fy and any name, in my case it will be main.fy, create it near the file from which you will access it.

Next, we need to initialize our fayout, this is done with the following line in the main.py file:

# Connecting a module to work with fayouts
from fayouts.fayouts.main import *

# Fayout initialize
myfayout = Fayout('main')

After that, our fayout is ready to go. Let's get acquainted with its methods:

# Create a new field
myfayout.New('Field Name', 'Field Content')

# Reading an already created field
print(myfayout.Read('Field Name'))
-> Field Content

# Modifying an already created field
myfayout.Edit('Field Name', 'New Field Content')

# Deleting an already created field by name
myfayout.Delete('Field Name')

# Deleting the already created first field
myfayout.FPop()

# Deleting an already created last field
myfayout.LPop()

# Get the index of the field
myfayout.GetIndex('Field Name')

How to work with fayout fields:

1 You cannot create more than one field with the same name

2 Can't read an uncreated field

3 You cannot edit a field that has not yet been created.

4 You cannot delete a field that has not yet been created.

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

fayouts-1.1.0.tar.gz (28.3 kB view hashes)

Uploaded Source

Built Distribution

fayouts-1.1.0-py3-none-any.whl (24.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page